diff options
-rw-r--r-- | data/org.mate.pluma.gschema.xml.in | 28 | ||||
-rw-r--r-- | pluma/dialogs/pluma-preferences-dialog.ui | 12 |
2 files changed, 20 insertions, 20 deletions
diff --git a/data/org.mate.pluma.gschema.xml.in b/data/org.mate.pluma.gschema.xml.in index 81071391..63beddcc 100644 --- a/data/org.mate.pluma.gschema.xml.in +++ b/data/org.mate.pluma.gschema.xml.in @@ -1,9 +1,9 @@ <?xml version="1.0"?> <schemalist gettext-domain="@GETTEXT_PACKAGE@"> <enum id="org.mate.pluma.SpaceDrawer"> - <value nick="draw-none" value="0"/> - <value nick="draw-trailing" value="1"/> - <value nick="draw-all" value="2"/> + <value nick="show-none" value="0"/> + <value nick="show-trailing" value="1"/> + <value nick="show-all" value="2"/> </enum> <schema id="org.mate.pluma" path="/org/mate/pluma/"> <key name="use-default-font" type="b"> @@ -223,23 +223,23 @@ </key> <key name="enable-space-drawer-newline" type="b"> <default>false</default> - <summary>Draw newline</summary> - <description>Whether pluma should draw newlines in the editor window.</description> + <summary>Show newline</summary> + <description>Whether pluma should show newlines in the editor window.</description> </key> <key name="enable-space-drawer-nbsp" enum="org.mate.pluma.SpaceDrawer"> - <default>'draw-none'</default> - <summary>Draw nbsp</summary> - <description>Whether pluma should draw not breaking spaces in the editor window: 'draw-none' no drawing; 'draw-trailing' drawing only trailing spaces; 'draw-all' drawing all spaces.</description> + <default>'show-none'</default> + <summary>Show nbsp</summary> + <description>Whether pluma should show not breaking spaces in the editor window: 'show-none' no showing; 'show-trailing' showing only trailing spaces; 'show-all' showing all spaces.</description> </key> <key name="enable-space-drawer-tab" enum="org.mate.pluma.SpaceDrawer"> - <default>'draw-none'</default> - <summary>Draw tabs</summary> - <description>Whether pluma should draw tabs in the editor window: 'draw-none' no drawing; 'draw-trailing' drawing only trailing spaces; 'draw-all' drawing all spaces.</description> + <default>'show-none'</default> + <summary>Show tabs</summary> + <description>Whether pluma should show tabs in the editor window: 'show-none' no showing; 'show-trailing' showing only trailing spaces; 'show-all' showing all spaces.</description> </key> <key name="enable-space-drawer-space" enum="org.mate.pluma.SpaceDrawer"> - <default>'draw-none'</default> - <summary>Draw spaces</summary> - <description>Whether pluma should draw spaces in the editor window: 'draw-none' no drawing; 'draw-trailing' drawing only trailing spaces; 'draw-all' drawing all spaces.</description> + <default>'show-none'</default> + <summary>Show spaces</summary> + <description>Whether pluma should show spaces in the editor window: 'show-none' no showing; 'show-trailing' showing only trailing spaces; 'show-all' showing all spaces.</description> </key> </schema> </schemalist> diff --git a/pluma/dialogs/pluma-preferences-dialog.ui b/pluma/dialogs/pluma-preferences-dialog.ui index 41ef4e22..f571d24d 100644 --- a/pluma/dialogs/pluma-preferences-dialog.ui +++ b/pluma/dialogs/pluma-preferences-dialog.ui @@ -916,7 +916,7 @@ <property name="visible">True</property> <property name="can_focus">False</property> <property name="halign">start</property> - <property name="label" translatable="yes">Draw spaces, tabs, newlines</property> + <property name="label" translatable="yes">Show spaces, tabs, newlines</property> <attributes> <attribute name="weight" value="bold"/> </attributes> @@ -950,7 +950,7 @@ </child> <child> <object class="GtkCheckButton" id="draw_tabs_checkbutton"> - <property name="label" translatable="yes">Draw _tabs</property> + <property name="label" translatable="yes">Show _tabs</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> @@ -1000,7 +1000,7 @@ </child> <child> <object class="GtkCheckButton" id="draw_trailing_tabs_checkbutton"> - <property name="label" translatable="yes">Draw _trailing tabs only</property> + <property name="label" translatable="yes">Show _trailing tabs only</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> @@ -1038,7 +1038,7 @@ </child> <child> <object class="GtkCheckButton" id="draw_newlines_checkbutton"> - <property name="label" translatable="yes">Draw _newlines</property> + <property name="label" translatable="yes">Show _newlines</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> @@ -1079,7 +1079,7 @@ </child> <child> <object class="GtkCheckButton" id="draw_spaces_checkbutton"> - <property name="label" translatable="yes">Draw _spaces</property> + <property name="label" translatable="yes">Show _spaces</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> @@ -1129,7 +1129,7 @@ </child> <child> <object class="GtkCheckButton" id="draw_trailing_spaces_checkbutton"> - <property name="label" translatable="yes">Draw _trailing spaces only</property> + <property name="label" translatable="yes">Show _trailing spaces only</property> <property name="visible">True</property> <property name="can_focus">True</property> <property name="receives_default">False</property> |