Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Mon, 09 Oct 2023 17:40:39 UTC Commit: 3fbc4269063230facc8104b8cab0bd5c74de3fe6 https://github.com/geany/geany/commit/3fbc4269063230facc8104b8cab0bd5c74de3f...
Log Message: ----------- Remove translatable strings where not needed
Modified Paths: -------------- src/symbols.c
Modified: src/symbols.c 9 lines changed, 3 insertions(+), 6 deletions(-) =================================================================== @@ -1523,14 +1523,11 @@ static void show_goto_popup(GeanyDocument *doc, GPtrArray *tags, gboolean have_b sym = g_strdup("");
if (! first && have_best) - /* For translators: it's the filename and the line number of a symbol in the goto-symbol popup menu */ - text = g_markup_printf_escaped(_("<b>%s:%lu</b>"), fname, tmtag->line); + text = g_markup_printf_escaped("<b>%s:%lu</b>", fname, tmtag->line); else - /* For translators: it's the filename and the line number of a symbol in the goto-symbol popup menu */ - text = g_markup_printf_escaped(_("%s:%lu"), fname, tmtag->line); + text = g_markup_printf_escaped("%s:%lu", fname, tmtag->line);
- /* For translators: it's the filename, line number, and signature of a symbol in the goto-symbol popup menu */ - tooltip = g_markup_printf_escaped(_("%s:%lu\n<small><tt>%s</tt></small>"), fname, tmtag->line, sym); + tooltip = g_markup_printf_escaped("%s:%lu\n<small><tt>%s</tt></small>", fname, tmtag->line, sym);
image = gtk_image_new_from_pixbuf(symbols_icons[get_tag_class(tmtag)].pixbuf); box = g_object_new(GTK_TYPE_BOX, "orientation", GTK_ORIENTATION_HORIZONTAL, "spacing", 12, NULL);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).