Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: Spaces after dots in translatable strings #769

Merged
merged 1 commit into from
Aug 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion geanyvc/src/geanyvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion workbench/src/dialogs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. "
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally the leading space here would also be on the previous line, but that's OK with this.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will do it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ops, merged.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did see the leading space to late. Will change it directly

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not a problem as there are many strings like that in the workbench plugin

"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);
Expand Down