Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/values/strings.xml')
-rw-r--r--app/src/main/res/values/strings.xml64
1 files changed, 38 insertions, 26 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 76584528..be48cc29 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -117,6 +117,7 @@
<string name="pref_key_theme" translatable="false">darkTheme</string>
<string name="pref_key_font" translatable="false">font</string>
<string name="pref_key_branding" translatable="false">branding</string>
+ <string name="pref_key_gridview" translatable="false">gridview</string>
<string name="pref_key_font_size" translatable="false">fontSize</string>
<string name="pref_key_wifi_only" translatable="false">wifiOnly</string>
<string name="pref_key_lock" translatable="false">lock</string>
@@ -193,6 +194,7 @@
<string name="change_note_title">Change note title</string>
<string name="menu_edit_title">Edit title</string>
<string name="settings_branding">Branding</string>
+ <string name="settings_gridview">Grid view 🆕</string>
<string name="simple_security">Security</string>
<string name="simple_appearance">Appearance</string>
<string name="simple_synchronization">Synchronization</string>
@@ -235,8 +237,13 @@
<item quantity="other">%d selected</item>
</plurals>
+ <!-- Formatting help -->
+
<string name="formatting_help_title" translatable="false"># %1$s</string>
+ <string name="formatting_help_title_level_3" translatable="false">### %1$s</string>
<string name="formatting_help_divider" translateable="false">---</string>
+ <string name="formatting_help_codefence_inline" translateable="false">`%1$s`</string>
+ <string name="formatting_help_codefence_inline_escaped" translateable="false">\\`%1$s\\`</string>
<string name="formatting_help_codefence" translateable="false">```</string>
<string name="formatting_help_codefence_escaped" translatable="false">\\`\\`\\`</string>
<string name="formatting_help_javascript_1" translatable="false">if (isAwesome){</string>
@@ -244,51 +251,56 @@
<string name="formatting_help_javascript_3" translatable="false">}</string>
<string name="formatting_help_codefence_javascript_escaped" translatable="false">\\`\\`\\`javascript</string>
<string name="formatting_help_codefence_javascript" translateable="false">```javascript</string>
+ <string name="formatting_help_code_javascript_inline" translatable="false">var example = true</string>
+ <string name="formatting_help_ol" translatable="false">%1$d. %2$s</string>
+ <string name="formatting_help_ul" translatable="false">- %1$s</string>
+ <string name="formatting_help_checkbox_checked" translatable="false">- [x] %1$s</string>
+ <string name="formatting_help_checkbox_unchecked" translatable="false">- [ ] %1$s</string>
+ <string name="formatting_help_quote" translatable="false">&gt; %1$s</string>
+ <string name="formatting_help_quote_keyword" translatable="false">&gt;</string>
+ <string name="formatting_help_strike_through" translatable="false">~~</string>
+ <string name="formatting_help_bold" translatable="false">**</string>
+ <string name="formatting_help_italic" translatable="false">*</string>
<string name="formatting_help_cbf_title">Context based formatting</string>
<string name="formatting_help_cbf_body_1">A major design goal of the Notes app is to provide a distraction free tool. Though you will be able to format your texts with Markdown. For various of the below mentioned examples, you can use shortcuts so you can format your notes without typing in the codes below.</string>
- <string name="formatting_help_cbf_body_2">Just select a range of text or tap on your cursor at any position and you will get a popup menu which contains next to the default entries `Cut`, `Copy`, `Select all` entries like `Link` or `Checkbox`.</string>
+ <string name="formatting_help_cbf_body_2">Just select a range of text or tap on your cursor at any position and you will get a popup menu which contains next to the default entries %1$s, %2$s, %3$s entries like %4$s or %5$s.</string>
<string name="formatting_help_text_title">Text</string>
- <string name="formatting_help_text_body">It\'s very easy to make some words **bold** and other words *italic* with Markdown. You can ~~strike~~ some words through and even [link to Nextcloud](https://nextcloud.com).</string>
+ <string name="formatting_help_text_body">It\'s very easy to make some words %1$sbold%1$s and other words %2$sitalic%2$s with Markdown. You can %3$sstrike%3$s some words through and even [link to Nextcloud](https://nextcloud.com).</string>
<string name="formatting_help_lists_title">Lists</string>
<string name="formatting_help_lists_body_1">Sometimes you want numbered lists:</string>
- <string name="formatting_help_lists_body_2">1. One</string>
- <string name="formatting_help_lists_body_3">2. Two</string>
- <string name="formatting_help_lists_body_4">3. Three</string>
+ <string name="formatting_help_lists_body_2">One</string>
+ <string name="formatting_help_lists_body_3">Two</string>
+ <string name="formatting_help_lists_body_4">Three</string>
<string name="formatting_help_lists_body_5">Sometimes you want bullet points:</string>
- <string name="formatting_help_lists_body_6">* Start a line with a star</string>
- <string name="formatting_help_lists_body_7">* Profit!</string>
- <string name="formatting_help_lists_body_8">Alternatively,</string>
- <string name="formatting_help_lists_body_9">- Dashes work just as well</string>
- <string name="formatting_help_lists_body_10">- And if you have sub points, put two spaces before the dash or star:</string>
- <string name="formatting_help_lists_body_11">- Like this</string>
- <string name="formatting_help_lists_body_12">- And this</string>
+ <string name="formatting_help_lists_body_6">Start a line with a dash</string>
+ <string name="formatting_help_lists_body_7">And if you have sub points, put two spaces before the dash or star:</string>
+ <string name="formatting_help_lists_body_8">Like this</string>
+ <string name="formatting_help_lists_body_9">And this</string>
<string name="formatting_help_checkboxes_title">Checkboxes</string>
<string name="formatting_help_checkboxes_body_1">To create a checkbox, use a list followed by brackets</string>
- <string name="formatting_help_checkboxes_body_2">- [ ] Item 1</string>
- <string name="formatting_help_checkboxes_body_3">* [ ] Item 2</string>
+ <string name="formatting_help_checkboxes_body_2">Item 1</string>
+ <string name="formatting_help_checkboxes_body_3">Item 2</string>
<string name="formatting_help_structured_documents_title">Structured documents</string>
- <string name="formatting_help_structured_documents_body_1">Sometimes it\'s useful to have different levels of headings to structure your documents. Start lines with a `#` to create headings. Multiple `##` in a row denote smaller heading sizes.</string>
- <string name="formatting_help_structured_documents_body_2">### This is a third-tier heading</string>
- <string name="formatting_help_structured_documents_body_3">You can use one `#` all the way up to `######` six for different heading sizes.</string>
- <string name="formatting_help_structured_documents_body_4">If you\'d like to quote someone, use the > character before the line:</string>
- <string name="formatting_help_structured_documents_body_5">> Coffee. The finest organic suspension ever devised… I beat the Borg with it.</string>
- <string name="formatting_help_structured_documents_body_6">> - Captain Janeway</string>
+ <string name="formatting_help_structured_documents_body_1">Sometimes it\'s useful to have different levels of headings to structure your documents. Start lines with a %1$s to create headings. Multiple %2$s in a row denote smaller heading sizes.</string>
+ <string name="formatting_help_structured_documents_body_2">This is a third-tier heading</string>
+ <string name="formatting_help_structured_documents_body_3">You can use one %1$s all the way up to %2$s six for different heading sizes.</string>
+ <string name="formatting_help_structured_documents_body_4">If you\'d like to quote someone, use the %1$s character before the line:</string>
+ <string name="formatting_help_structured_documents_body_5">Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world.</string>
+ <string name="formatting_help_structured_documents_body_6">- Albert Einstein</string>
<string name="formatting_help_code_title">Code</string>
<string name="formatting_help_code_body_1">There are many different ways to style code with Markdown. If you have inline code blocks, wrap them in backticks:</string>
- <string name="formatting_help_code_body_2">\\`var example = true\\`</string>
- <string name="formatting_help_code_body_3">`var example = true`</string>
- <string name="formatting_help_code_body_4">Markdown also supports something called code fencing, which allows for multiple lines without indentation:</string>
- <string name="formatting_help_code_body_5">And if you\'d like to use syntax highlighting, include the language:</string>
+ <string name="formatting_help_code_body_2">Markdown also supports something called code fencing, which allows for multiple lines without indentation:</string>
+ <string name="formatting_help_code_body_3">And if you\'d like to use syntax highlighting, include the language:</string>
<string name="formatting_help_unsupported_title">Unsupported</string>
<string name="formatting_help_unsupported_body_1">While we try to continuously improve the support for Markdown, there are a few features which are not yet supported by Notes:</string>
- <string name="formatting_help_unsupported_body_2">- Tables</string>
- <string name="formatting_help_unsupported_body_3">- Images</string>
+ <string name="formatting_help_unsupported_body_2">Tables</string>
+ <string name="formatting_help_unsupported_body_3">Images</string>
<string name="formatting_help_unsupported_body_4">If you are interested in contributing support for one of those features, get in contact with us via GitHub or E-Mail.</string>
</resources>