Fix ... typo + Add some tooltips
This commit is contained in:
parent
4418cd5633
commit
1940281a23
5 changed files with 11 additions and 8 deletions
|
@ -103,7 +103,7 @@ namespace Webpin {
|
||||||
GLib.OptionEntry [] options = new OptionEntry [4];
|
GLib.OptionEntry [] options = new OptionEntry [4];
|
||||||
options [0] = { "new", 0, 0, OptionArg.NONE, ref new_app, "Create new Webapp", null };
|
options [0] = { "new", 0, 0, OptionArg.NONE, ref new_app, "Create new Webapp", null };
|
||||||
options [1] = { "remove", 0, 0, OptionArg.NONE, ref remove_app, "Remove Webapp", null };
|
options [1] = { "remove", 0, 0, OptionArg.NONE, ref remove_app, "Remove Webapp", null };
|
||||||
options [2] = { "", 0, 0, OptionArg.STRING_ARRAY, ref arg_files, null, "[URI...]" };
|
options [2] = { "", 0, 0, OptionArg.STRING_ARRAY, ref arg_files, null, "[URI…]" };
|
||||||
options [3] = { null };
|
options [3] = { null };
|
||||||
|
|
||||||
var opt_context = new OptionContext ("actions");
|
var opt_context = new OptionContext ("actions");
|
||||||
|
|
|
@ -148,6 +148,8 @@ namespace Webpin {
|
||||||
|
|
||||||
private void header_build_style_switcher () {
|
private void header_build_style_switcher () {
|
||||||
var mode_switch = new Granite.ModeSwitch.from_icon_name ("display-brightness-symbolic", "weather-clear-night-symbolic");
|
var mode_switch = new Granite.ModeSwitch.from_icon_name ("display-brightness-symbolic", "weather-clear-night-symbolic");
|
||||||
|
mode_switch.primary_icon_tooltip_text = _("Light background");
|
||||||
|
mode_switch.secondary_icon_tooltip_text = _("Dark background");
|
||||||
mode_switch.valign = Gtk.Align.CENTER;
|
mode_switch.valign = Gtk.Align.CENTER;
|
||||||
mode_switch.active = settings.use_dark_theme;
|
mode_switch.active = settings.use_dark_theme;
|
||||||
mode_switch.notify["active"].connect (() => {
|
mode_switch.notify["active"].connect (() => {
|
||||||
|
|
|
@ -106,7 +106,7 @@ namespace Webpin.Widgets.Views {
|
||||||
icon_name_entry.set_placeholder_text (_ ("theme icon name"));
|
icon_name_entry.set_placeholder_text (_ ("theme icon name"));
|
||||||
|
|
||||||
var or_label = new Gtk.Label (_ ("or"));
|
var or_label = new Gtk.Label (_ ("or"));
|
||||||
var icon_chooser_button = new Gtk.Button.with_label (_ ("Set from file..."));
|
var icon_chooser_button = new Gtk.Button.with_label (_ ("Set from file…"));
|
||||||
icon_chooser_button.get_style_context ().add_class ("suggested-action");
|
icon_chooser_button.get_style_context ().add_class ("suggested-action");
|
||||||
|
|
||||||
popover_box.margin = 10;
|
popover_box.margin = 10;
|
||||||
|
|
|
@ -60,6 +60,7 @@ namespace Webpin.Windows {
|
||||||
}
|
}
|
||||||
|
|
||||||
spinner = new Gtk.Spinner ();
|
spinner = new Gtk.Spinner ();
|
||||||
|
spinner.tooltip_text = _("Loading…");
|
||||||
spinner.set_size_request (16, 16);
|
spinner.set_size_request (16, 16);
|
||||||
headerbar.pack_end (spinner);
|
headerbar.pack_end (spinner);
|
||||||
|
|
||||||
|
|
|
@ -379,7 +379,7 @@ sp_before_comma = remove # ignore/add/remove/force
|
||||||
# Add or remove space between an open paren and comma: '(,' vs '( ,'
|
# Add or remove space between an open paren and comma: '(,' vs '( ,'
|
||||||
sp_paren_comma = force # ignore/add/remove/force
|
sp_paren_comma = force # ignore/add/remove/force
|
||||||
|
|
||||||
# Add or remove space before the variadic '...' when preceded by a non-punctuator
|
# Add or remove space before the variadic '…' when preceded by a non-punctuator
|
||||||
sp_before_ellipsis = ignore # ignore/add/remove/force
|
sp_before_ellipsis = ignore # ignore/add/remove/force
|
||||||
|
|
||||||
# Add or remove space after class ':'
|
# Add or remove space after class ':'
|
||||||
|
@ -594,11 +594,11 @@ sp_after_oc_at_sel_parens = ignore # ignore/add/remove/force
|
||||||
sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force
|
sp_inside_oc_at_sel_parens = ignore # ignore/add/remove/force
|
||||||
|
|
||||||
# Add or remove space before a block pointer caret
|
# Add or remove space before a block pointer caret
|
||||||
# '^int (int arg){...}' vs. ' ^int (int arg){...}'
|
# '^int (int arg){…}' vs. ' ^int (int arg){…}'
|
||||||
sp_before_oc_block_caret = ignore # ignore/add/remove/force
|
sp_before_oc_block_caret = ignore # ignore/add/remove/force
|
||||||
|
|
||||||
# Add or remove space after a block pointer caret
|
# Add or remove space after a block pointer caret
|
||||||
# '^int (int arg){...}' vs. '^ int (int arg){...}'
|
# '^int (int arg){…}' vs. '^ int (int arg){…}'
|
||||||
sp_after_oc_block_caret = ignore # ignore/add/remove/force
|
sp_after_oc_block_caret = ignore # ignore/add/remove/force
|
||||||
|
|
||||||
# Add or remove space around the ':' in 'b ? t : f'
|
# Add or remove space around the ':' in 'b ? t : f'
|
||||||
|
@ -1345,7 +1345,7 @@ cmt_insert_file_footer = "" # string
|
||||||
|
|
||||||
# The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment.
|
# The filename that contains text to insert before a function implementation if the function isn't preceded with a C/C++ comment.
|
||||||
# Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff.
|
# Will substitute $(function) with the function name and $(javaparam) with the javadoc @param and @return stuff.
|
||||||
# Will also substitute $(fclass) with the class name: void CFoo::Bar() { ... }
|
# Will also substitute $(fclass) with the class name: void CFoo::Bar() { … }
|
||||||
cmt_insert_func_header = "" # string
|
cmt_insert_func_header = "" # string
|
||||||
|
|
||||||
# The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment.
|
# The filename that contains text to insert before a class if the class isn't preceded with a C/C++ comment.
|
||||||
|
@ -1417,14 +1417,14 @@ pp_define_at_level = false # false/true
|
||||||
# put token in quotes
|
# put token in quotes
|
||||||
# - these: ' " and ` are recognized as quote delimiters
|
# - these: ' " and ` are recognized as quote delimiters
|
||||||
#
|
#
|
||||||
# type token1 token2 token3 ...
|
# type token1 token2 token3 …
|
||||||
# ^ optionally specify multiple tokens on a single line
|
# ^ optionally specify multiple tokens on a single line
|
||||||
# define def_token output_token
|
# define def_token output_token
|
||||||
# ^ output_token is optional, then NULL is assumed
|
# ^ output_token is optional, then NULL is assumed
|
||||||
# macro-open token
|
# macro-open token
|
||||||
# macro-close token
|
# macro-close token
|
||||||
# macro-else token
|
# macro-else token
|
||||||
# set id token1 token2 ...
|
# set id token1 token2 …
|
||||||
# ^ optionally specify multiple tokens on a single line
|
# ^ optionally specify multiple tokens on a single line
|
||||||
# ^ id is one of the names in token_enum.h sans the CT_ prefix,
|
# ^ id is one of the names in token_enum.h sans the CT_ prefix,
|
||||||
# e.g. PP_PRAGMA
|
# e.g. PP_PRAGMA
|
||||||
|
|
Loading…
Reference in a new issue