diff options
author | Victor Kareh <[email protected]> | 2019-08-22 08:40:19 -0400 |
---|---|---|
committer | lukefromdc <[email protected]> | 2019-08-24 01:19:54 +0000 |
commit | 951b13aabafb29b7b9a3041229bd0012ef80b551 (patch) | |
tree | 5ac018f28b25cd596841d3d3c76147abd439fb8c /data | |
parent | 91a3a911fb0b8800332533ef6e0ea4e0b8157eb6 (diff) | |
download | pluma-951b13aabafb29b7b9a3041229bd0012ef80b551.tar.bz2 pluma-951b13aabafb29b7b9a3041229bd0012ef80b551.tar.xz |
preferences: Change Draw to Show
Diffstat (limited to 'data')
-rw-r--r-- | data/org.mate.pluma.gschema.xml.in | 28 |
1 files changed, 14 insertions, 14 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> |