diff options
author | rbuj <[email protected]> | 2019-08-19 15:45:23 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-09-17 17:36:26 +0200 |
commit | f7b3e9336d57d1449614518fd4e5502cf9e71145 (patch) | |
tree | d36db74d71524f4d73d552b282e00d3347c78939 | |
parent | 047a14c5de0d1195d4edfcb1d7e42188d48b6d58 (diff) | |
download | caja-f7b3e9336d57d1449614518fd4e5502cf9e71145.tar.bz2 caja-f7b3e9336d57d1449614518fd4e5502cf9e71145.tar.xz |
Fix a grammar mistake reported by translators
-rw-r--r-- | src/caja-query-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/caja-query-editor.c b/src/caja-query-editor.c index ce4120c2..25a9bee4 100644 --- a/src/caja-query-editor.c +++ b/src/caja-query-editor.c @@ -1062,7 +1062,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); @@ -1201,7 +1201,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); |