summaryrefslogtreecommitdiff
path: root/src/caja-query-editor.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2019-08-19 15:45:23 +0200
committerraveit65 <[email protected]>2022-07-20 21:40:41 +0200
commit8f141d78b3ae8d32b6997adca698c676c9d52341 (patch)
tree8deca17efe3ad2170a035af9c2bdcf6ecbfa9dd6 /src/caja-query-editor.c
parentfcc129bc4289468fedd8577594c8ac2c5f865e0a (diff)
downloadcaja-8f141d78b3ae8d32b6997adca698c676c9d52341.tar.bz2
caja-8f141d78b3ae8d32b6997adca698c676c9d52341.tar.xz
Fix a grammar mistake reported by translators
Diffstat (limited to 'src/caja-query-editor.c')
-rw-r--r--src/caja-query-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/caja-query-editor.c b/src/caja-query-editor.c
index 8b4c9277..4875591d 100644
--- a/src/caja-query-editor.c
+++ b/src/caja-query-editor.c
@@ -1081,7 +1081,7 @@ static GtkWidget *modtime_row_create_widgets(CajaQueryEditorRow *row)
gtk_list_store_append(store, &iter);
gtk_list_store_set(store, &iter, 0, FALSE, 1, _("Less than or equal to"), -1);
gtk_list_store_append(store, &iter);
- gtk_list_store_set(store, &iter, 0, TRUE, 1, _("Greater or equal to"), -1);
+ gtk_list_store_set(store, &iter, 0, TRUE, 1, _("Greater than or equal to"), -1);
gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 0);
@@ -1220,7 +1220,7 @@ static GtkWidget *size_row_create_widgets(CajaQueryEditorRow *row)
gtk_list_store_append(store, &iter);
gtk_list_store_set(store, &iter, 0, FALSE, 1, _("Less than or equal to"), -1);
gtk_list_store_append(store, &iter);
- gtk_list_store_set(store, &iter, 0, TRUE, 1, _("Greater or equal to"), -1);
+ gtk_list_store_set(store, &iter, 0, TRUE, 1, _("Greater than or equal to"), -1);
gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 0);