Issue #14689: Add translation context for Extensions

Extensions is used both for file extensions and for
GIMP's planned Extension format. This patch adds translation
context so translators know which one we're referring to.
This commit is contained in:
lillolollo 2025-08-16 19:54:31 +00:00 committed by Alx Sa
parent 6a7911655b
commit 52ffd75330
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ extensions_dialog_new (Gimp *gimp)
GtkWidget *widget;
GtkTreeIter top_iter;
dialog = gimp_dialog_new (_("Extensions"), "gimp-extensions",
dialog = gimp_dialog_new (C_("GIMP extensions", "Extensions"), "gimp-extensions",
NULL, 0, NULL,
GIMP_HELP_EXTENSIONS_DIALOG,
_("_OK"), GTK_RESPONSE_OK,

View file

@ -208,7 +208,7 @@ gimp_file_proc_view_new (Gimp *gimp,
gtk_tree_view_append_column (view, column);
column = gtk_tree_view_column_new ();
gtk_tree_view_column_set_title (column, _("Extensions"));
gtk_tree_view_column_set_title (column, C_("File extension", "Extensions"));
cell = gtk_cell_renderer_text_new ();
gtk_tree_view_column_pack_start (column, cell, TRUE);