summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLogan Rathbone <poprocks@gmail.com>2023-02-01 22:17:19 -0500
committerLogan Rathbone <poprocks@gmail.com>2023-02-01 22:17:19 -0500
commitbfae60f89d7f75fc73927552e843b961da908003 (patch)
tree81398e5eaea42d37dc9613648639fbc8480c60dd /src
parentac3031b870cebdfc631f2497af1a68321cbf24a6 (diff)
downloadzenity-bfae60f89d7f75fc73927552e843b961da908003.tar.gz
Mark deprecation strings for translation.
Diffstat (limited to 'src')
-rw-r--r--src/option.c4
-rw-r--r--src/tree.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/option.c b/src/option.c
index d638839..4909604 100644
--- a/src/option.c
+++ b/src/option.c
@@ -1475,8 +1475,8 @@ zenity_entry_post_callback (GOptionContext *context, GOptionGroup *group,
static void
show_window_icon_deprecation_warning (void)
{
- g_printerr ("Warning: --window-icon is deprecated and will be removed in a "
- "future version of zenity. Please use --icon instead.\n");
+ g_printerr (_("Warning: --window-icon is deprecated and will be removed in a "
+ "future version of zenity. Ignoring.\n"));
}
static gboolean
diff --git a/src/tree.c b/src/tree.c
index cebbd99..754f40a 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -54,8 +54,8 @@ static void zenity_tree_dialog_output (void);
static void
show_mid_search_deprecation_warning (void)
{
- g_printerr ("Warning: --mid-search is deprecated and will be removed in a "
- "future version of zenity. Ignoring.\n");
+ g_printerr (_("Warning: --mid-search is deprecated and will be removed in a "
+ "future version of zenity. Ignoring.\n"));
}
static gboolean
zenity_tree_handle_stdin (GIOChannel *channel, GIOCondition condition, gpointer data)