[latexila] Build tool dialog: more information in the tooltips
- From: SÃbastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [latexila] Build tool dialog: more information in the tooltips
- Date: Thu, 12 Jul 2012 23:46:44 +0000 (UTC)
commit 220fb6090c1255e08ff5a33391c73ee9fa17ec5e
Author: SÃbastien Wilmet <swilmet src gnome org>
Date: Fri Jul 13 01:45:38 2012 +0200
Build tool dialog: more information in the tooltips
src/build_tool_dialog.vala | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
---
diff --git a/src/build_tool_dialog.vala b/src/build_tool_dialog.vala
index 2fee494..4c93047 100644
--- a/src/build_tool_dialog.vala
+++ b/src/build_tool_dialog.vala
@@ -593,7 +593,8 @@ private class BuildToolDialog : Dialog
{
_entry_extensions.set_tooltip_text (
_("File extensions for which the build tool can be executed.") + "\n" +
- _("The extensions are separated by spaces."));
+ _("The extensions are separated by spaces.") + "\n" +
+ _("If it is empty, all extensions are allowed."));
return Utils.get_dialog_component (_("Extensions"), _entry_extensions);
}
@@ -610,11 +611,14 @@ private class BuildToolDialog : Dialog
Label placeholders = new Label (_("Placeholders:"));
Label placeholder_filename = new Label ("$filename");
- placeholder_filename.set_tooltip_text (_("The active document filename"));
+ placeholder_filename.set_tooltip_text (
+ _("The active document's filename.") + "\n" +
+ _("If the active document belongs to a project, the main file is choosen."));
Label placeholder_shortname = new Label ("$shortname");
placeholder_shortname.set_tooltip_text (
- _("The active document filename without its extension"));
+ _("The active document's filename without its extension.") + "\n" +
+ _("If the active document belongs to a project, the main file is choosen."));
Label placeholder_view = new Label ("$view");
placeholder_view.set_tooltip_text (_("The program for viewing documents"));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]