Branch: refs/heads/master Author: Skif-off Skif-off@users.noreply.github.com Committer: Skif-off Skif-off@users.noreply.github.com Date: Fri, 31 Aug 2018 12:36:12 UTC Commit: 6bb7523baa1b3c67fa2e8438f95d3ab4503bbdbb https://github.com/geany/geany-plugins/commit/6bb7523baa1b3c67fa2e8438f95d3a...
Log Message: ----------- FIX: Spaces after dots in translatable strings
Modified Paths: -------------- geanyvc/src/geanyvc.c workbench/src/dialogs.c
Modified: geanyvc/src/geanyvc.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -1948,7 +1948,7 @@ plugin_configure(GtkDialog * dialog) widgets.cb_attach_to_menubar = gtk_check_button_new_with_label(_("Attach menu to menubar")); gtk_widget_set_tooltip_text(widgets.cb_editor_menu_entries, _("Whether menu for this plugin are getting placed either " - "inside tools menu or directly inside Geany's menubar." + "inside tools menu or directly inside Geany's menubar. " "Will take in account after next start of GeanyVC")); gtk_button_set_focus_on_click(GTK_BUTTON(widgets.cb_attach_to_menubar), FALSE); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(widgets.cb_attach_to_menubar),
Modified: workbench/src/dialogs.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -443,7 +443,7 @@ gboolean dialogs_workbench_settings(WORKBENCH *workbench) ui_table_add_row(GTK_TABLE(table), 1, w_enable_live_update, NULL); gtk_widget_set_tooltip_text(w_enable_live_update, _("If the option is activated (default), then the list of files and the sidebar" - " will be updated automatically if a file or directory is created, removed or renamed." + " will be updated automatically if a file or directory is created, removed or renamed. " "A manual re-scan is not required if the option is enabled.")); enable_live_update_old = workbench_get_enable_live_update(workbench); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(w_enable_live_update), enable_live_update_old);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).