diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-24 04:02:37 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-07-24 04:02:37 +0000 |
commit | 7e39f9285a1ef27606412b42b26fa79c4368050f (patch) | |
tree | 58522f0e7c7e1dc813aaa2eeae99cfa83fec823b /gtk/gtkfilechooserentry.c | |
parent | 4c7d351053c7de6033511990601cde5f7073990a (diff) | |
download | gtk+-7e39f9285a1ef27606412b42b26fa79c4368050f.tar.gz |
Add translator hints
svn path=/trunk/; revision=20902
Diffstat (limited to 'gtk/gtkfilechooserentry.c')
-rw-r--r-- | gtk/gtkfilechooserentry.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk/gtkfilechooserentry.c b/gtk/gtkfilechooserentry.c index 1b08132a77..29149344c3 100644 --- a/gtk/gtkfilechooserentry.c +++ b/gtk/gtkfilechooserentry.c @@ -1064,6 +1064,9 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry) case NO_MATCH: beep (chooser_entry); + /* translators: this text is shown when there are no completions + * for something the user typed in a file chooser entry + */ pop_up_completion_feedback (chooser_entry, _("No match")); break; @@ -1072,6 +1075,9 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry) break; case NOTHING_INSERTED_UNIQUE: + /* translators: this text is shown when there is exactly one completion + * for something the user typed in a file chooser entry + */ pop_up_completion_feedback (chooser_entry, _("Sole completion")); break; @@ -1084,6 +1090,10 @@ explicitly_complete (GtkFileChooserEntry *chooser_entry) break; case COMPLETE_BUT_NOT_UNIQUE: + /* translators: this text is shown when the text in a file chooser + * entry is a complete filename, but could be continued to find + * a longer match + */ pop_up_completion_feedback (chooser_entry, _("Complete, but not unique")); break; @@ -1117,6 +1127,9 @@ start_explicit_completion (GtkFileChooserEntry *chooser_entry) { chooser_entry->load_complete_action = LOAD_COMPLETE_EXPLICIT_COMPLETION; + /* translators: this text is shown while the system is searching + * for possible completions for text in a file chooser entry + */ pop_up_completion_feedback (chooser_entry, _("Completing...")); } } |