From 3acb5de407ec332fe187ca4c3fb71a9445d3102b Mon Sep 17 00:00:00 2001 From: Eucaly Date: Wed, 1 Oct 2014 18:36:04 +0800 Subject: [PATCH 01/28] update JavaScript Macros reference link to dev document --- editions/tw5.com/tiddlers/concepts/Macros.tid | 2 +- editions/tw5.com/tiddlers/wikitext/Macros in WikiText.tid | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/editions/tw5.com/tiddlers/concepts/Macros.tid b/editions/tw5.com/tiddlers/concepts/Macros.tid index d1ec46dd9..fbeb98fd9 100644 --- a/editions/tw5.com/tiddlers/concepts/Macros.tid +++ b/editions/tw5.com/tiddlers/concepts/Macros.tid @@ -10,7 +10,7 @@ Macros are snippets of text that can be inserted with a concise shortcut: <> ``` -You can write your own [[Macros in WikiText]] or for more flexibility you can write [[JavaScript Macros]]. +You can write your own [[Macros in WikiText]] or for more flexibility you can write [[JavaScript Macros|http://tiddlywiki.com/dev/index.html#JavaScript%20Macros]]. The following macros are built-in to the TiddlyWiki core: diff --git a/editions/tw5.com/tiddlers/wikitext/Macros in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Macros in WikiText.tid index 8ad4ff5bd..aa242e4c1 100644 --- a/editions/tw5.com/tiddlers/wikitext/Macros in WikiText.tid +++ b/editions/tw5.com/tiddlers/wikitext/Macros in WikiText.tid @@ -31,7 +31,7 @@ Global macros can be defined in any tiddler with the tag [[$:/tags/Macro]]. They Macros can be imported from other tiddlers with the ImportVariablesWidget. -[[JavaScript Macros]] can also be used for more flexibility. +[[JavaScript Macros|http://tiddlywiki.com/dev/index.html#JavaScript%20Macros]] can also be used for more flexibility. ! Using Macros From e343ccc45895ec37f56cfbd37f1f5fdbe79fd978 Mon Sep 17 00:00:00 2001 From: gernert Date: Wed, 1 Oct 2014 19:54:34 +0200 Subject: [PATCH 02/28] Update Lists in WikiText.tid An extra example with numbers as first level --- .../tw5.com/tiddlers/wikitext/Lists in WikiText.tid | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid index 67b43026f..4cb448e6e 100644 --- a/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +++ b/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid @@ -33,6 +33,16 @@ You can also mix ordered and unordered list items: *## And the other ">> +or the other way around (numbers as first level): + +<> + ! CSS Classes You can also assign a CSS class to an individual member of a list with this notation: From f85b07e70b71d0622a9459e4b04e2027540abda8 Mon Sep 17 00:00:00 2001 From: Mario Pietsch Date: Thu, 2 Oct 2014 15:41:40 +0200 Subject: [PATCH 03/28] tc-untagged-label because button.tc-tag-label is more specific and also defines the background color. ... weak design --- themes/tiddlywiki/vanilla/base.tid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/tiddlywiki/vanilla/base.tid b/themes/tiddlywiki/vanilla/base.tid index d9ffa81a8..65328e4a8 100644 --- a/themes/tiddlywiki/vanilla/base.tid +++ b/themes/tiddlywiki/vanilla/base.tid @@ -339,7 +339,7 @@ button.tc-tag-label, span.tc-tag-label { background: <>; } -.tc-untagged-label { +button.tc-untagged-label { background-color: <>; } From d9ccac21d0aaf3287215483dbcf984e9f38af93c Mon Sep 17 00:00:00 2001 From: Eucaly Date: Thu, 2 Oct 2014 23:02:48 +0800 Subject: [PATCH 04/28] add WidgetVariable documentation --- .../filters/FilterOperator fields.tid | 3 +- .../tw5.com/tiddlers/variables/Variables.tid | 13 +++++++ .../WidgetVariable_ currentTiddler.tid | 20 +++++++++++ .../WidgetVariable_ storyTiddler.tid | 10 ++++++ .../WidgetVariable_ transclusion.tid | 35 +++++++++++++++++++ .../wikitext/Variables in WikiText.tid | 27 ++++++++++++++ 6 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 editions/tw5.com/tiddlers/variables/Variables.tid create mode 100644 editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid create mode 100644 editions/tw5.com/tiddlers/variables/WidgetVariable_ storyTiddler.tid create mode 100644 editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid create mode 100644 editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid diff --git a/editions/tw5.com/tiddlers/filters/FilterOperator fields.tid b/editions/tw5.com/tiddlers/filters/FilterOperator fields.tid index 82cbda969..9434bf6f9 100644 --- a/editions/tw5.com/tiddlers/filters/FilterOperator fields.tid +++ b/editions/tw5.com/tiddlers/filters/FilterOperator fields.tid @@ -1,5 +1,6 @@ +caption: fields created: 20140924115616653 -modified: 20140924115627781 +modified: 20141002150019737 tags: Filters title: FilterOperator: fields type: text/vnd.tiddlywiki diff --git a/editions/tw5.com/tiddlers/variables/Variables.tid b/editions/tw5.com/tiddlers/variables/Variables.tid new file mode 100644 index 000000000..1f52b5f3e --- /dev/null +++ b/editions/tw5.com/tiddlers/variables/Variables.tid @@ -0,0 +1,13 @@ +created: 20141002133113496 +modified: 20141002142932824 +tags: Reference +title: Variables +type: text/vnd.tiddlywiki + +Variables together with [[Widgets]] and [[Macros]] are essential for dynamic WikiText. + +You can define your own [[Variables in WikiText]] or use built-in variables. + +More detailed information of built-in variables could be found in below: + +<> \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid b/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid new file mode 100644 index 000000000..dee4ab522 --- /dev/null +++ b/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid @@ -0,0 +1,20 @@ +caption: currentTiddler +created: 20141001232824187 +modified: 20141002133837818 +tags: Variables +title: WidgetVariable: currentTiddler +type: text/vnd.tiddlywiki + +<<< +The ''currentTiddler'' variable containes the title of the current tiddler. + +The ListWidget assigns the list result to the ''currentTiddler'' variable, unless the `variable` attribute is specified. + +A couple of [[Widgets]] and [[Macros]] by default apply to the tiddler according to the ''currentTiddler'' variable. + +The TranscludeWidget (or WikiText `{{||TemplateTitle}}`) transcludes a tiddler without changing the ''currentTiddler'' variable. +<<< + +These mechanisms together allow you to write references like `<$view field="title" format="link"/>` in TemplateTiddlers or inside the ListWidget hierarchy without explicitly specifying the tiddler that it applies to. + +See also [[WidgetVariable: storyTiddler]] \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/variables/WidgetVariable_ storyTiddler.tid b/editions/tw5.com/tiddlers/variables/WidgetVariable_ storyTiddler.tid new file mode 100644 index 000000000..2153fc6e3 --- /dev/null +++ b/editions/tw5.com/tiddlers/variables/WidgetVariable_ storyTiddler.tid @@ -0,0 +1,10 @@ +caption: storyTiddler +created: 20141001232753952 +modified: 20141002133957245 +tags: Variables +title: WidgetVariable: storyTiddler +type: text/vnd.tiddlywiki + +The ''storyTiddler'' variable is set by the [[default viewtemplate|$:/core/ui/ViewTemplate]] to the name of the current tiddler within tiddlers in the story river, and is not defined within the sidebar. + +See also [[WidgetVariable: currentTiddler]] \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid b/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid new file mode 100644 index 000000000..63051d770 --- /dev/null +++ b/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid @@ -0,0 +1,35 @@ +caption: transclusion +created: 20141002004621385 +modified: 20141002133923307 +tags: Variables +title: WidgetVariable: transclusion +type: text/vnd.tiddlywiki + +The ''transclusion'' variable is set automatically by the transclude widget to contain a string that identifies the position of the current node within the widget tree. In the sidebar it is set to `{|$:/core/ui/PageTemplate/sidebar|||}` and within the tiddler "HelloThere" in the story river it is set to `{HelloThere|HelloThere|||}`. Each nested level of transclusion appends another curly bracketed list of symbols. + +The QualifyMacro uses the ''transclusion'' variable to identify the stack of transcluded tiddlers. + +! Example: + +``` +\define mymacro() +Hello from mymacro +<$list filter="[prefix[{|$:/core/ui/PageTemplate/sidebar|||}]]" emptyMessage="in a tiddler"> + in the sidebar + +\end + +<> +``` + +Result in story tiddler + +``` +Hello from mymacro in a tiddler +``` + +Result in the sidebar + +``` +Hello from mymacro in the sidebar +``` diff --git a/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid new file mode 100644 index 000000000..37cdead02 --- /dev/null +++ b/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid @@ -0,0 +1,27 @@ +created: 20141002141231992 +modified: 20141002144153170 +tags: WikiText +title: Variables in WikiText +type: text/vnd.tiddlywiki +caption: Hard Linebreaks +! Defining Variables + +Variables contains values defined by [[Widgets]]. +Variables are available within the widget that defines them, and the child widgets in the widget tree. + +Variables are defined by: + +* TiddlyWiki core and viewtemplate +* SetWidget +* ListWidget +* [[Macro definition|Macros in WikiText]] + +! Using Variables + +Variables are used with: + +* Variable substitution `$(name)$` +* Concise shortcut `<>` +* [[Filter expression|Introduction to Filters]] `[operator]` + +Built-in [[variables|Variables]] are useful for dynamic WikiText. \ No newline at end of file From 52a2d5ade21b8064d07e493cdd9b63c4051c7207 Mon Sep 17 00:00:00 2001 From: Eucaly Date: Fri, 3 Oct 2014 07:15:06 +0800 Subject: [PATCH 05/28] update WidgetVariable documentation --- editions/tw5.com/tiddlers/variables/Variables.tid | 6 ++++-- .../variables/WidgetVariable_ currentTiddler.tid | 8 +++++--- .../variables/WidgetVariable_ transclusion.tid | 5 +++-- .../tiddlers/wikitext/Variables in WikiText.tid | 11 ++++++----- 4 files changed, 18 insertions(+), 12 deletions(-) diff --git a/editions/tw5.com/tiddlers/variables/Variables.tid b/editions/tw5.com/tiddlers/variables/Variables.tid index 1f52b5f3e..490987001 100644 --- a/editions/tw5.com/tiddlers/variables/Variables.tid +++ b/editions/tw5.com/tiddlers/variables/Variables.tid @@ -1,5 +1,5 @@ created: 20141002133113496 -modified: 20141002142932824 +modified: 20141002230631361 tags: Reference title: Variables type: text/vnd.tiddlywiki @@ -10,4 +10,6 @@ You can define your own [[Variables in WikiText]] or use built-in variables. More detailed information of built-in variables could be found in below: -<> \ No newline at end of file +<> + +See also DumpVariablesMacro \ No newline at end of file diff --git a/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid b/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid index dee4ab522..e66fb5131 100644 --- a/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid +++ b/editions/tw5.com/tiddlers/variables/WidgetVariable_ currentTiddler.tid @@ -1,11 +1,12 @@ caption: currentTiddler created: 20141001232824187 -modified: 20141002133837818 +modified: 20141002161518301 tags: Variables title: WidgetVariable: currentTiddler type: text/vnd.tiddlywiki -<<< +! Mechanism + The ''currentTiddler'' variable containes the title of the current tiddler. The ListWidget assigns the list result to the ''currentTiddler'' variable, unless the `variable` attribute is specified. @@ -13,7 +14,8 @@ The ListWidget assigns the list result to the ''currentTiddler'' variable, unles A couple of [[Widgets]] and [[Macros]] by default apply to the tiddler according to the ''currentTiddler'' variable. The TranscludeWidget (or WikiText `{{||TemplateTitle}}`) transcludes a tiddler without changing the ''currentTiddler'' variable. -<<< + +! Using currentTiddler Variable These mechanisms together allow you to write references like `<$view field="title" format="link"/>` in TemplateTiddlers or inside the ListWidget hierarchy without explicitly specifying the tiddler that it applies to. diff --git a/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid b/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid index 63051d770..5526d4cf6 100644 --- a/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid +++ b/editions/tw5.com/tiddlers/variables/WidgetVariable_ transclusion.tid @@ -1,15 +1,16 @@ caption: transclusion created: 20141002004621385 -modified: 20141002133923307 +modified: 20141002162057822 tags: Variables title: WidgetVariable: transclusion type: text/vnd.tiddlywiki +! Mechanism The ''transclusion'' variable is set automatically by the transclude widget to contain a string that identifies the position of the current node within the widget tree. In the sidebar it is set to `{|$:/core/ui/PageTemplate/sidebar|||}` and within the tiddler "HelloThere" in the story river it is set to `{HelloThere|HelloThere|||}`. Each nested level of transclusion appends another curly bracketed list of symbols. The QualifyMacro uses the ''transclusion'' variable to identify the stack of transcluded tiddlers. -! Example: +! Example ``` \define mymacro() diff --git a/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid index 37cdead02..6ff83d226 100644 --- a/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid +++ b/editions/tw5.com/tiddlers/wikitext/Variables in WikiText.tid @@ -1,11 +1,11 @@ +caption: Variables created: 20141002141231992 -modified: 20141002144153170 +modified: 20141002230751664 tags: WikiText title: Variables in WikiText type: text/vnd.tiddlywiki -caption: Hard Linebreaks -! Defining Variables +! Defining Variables Variables contains values defined by [[Widgets]]. Variables are available within the widget that defines them, and the child widgets in the widget tree. @@ -18,10 +18,11 @@ Variables are defined by: ! Using Variables -Variables are used with: +Variables are used in: * Variable substitution `$(name)$` * Concise shortcut `<>` * [[Filter expression|Introduction to Filters]] `[operator]` +* Some default behaviors of [[Widgets]] -Built-in [[variables|Variables]] are useful for dynamic WikiText. \ No newline at end of file +See also [[currentTiddler|WidgetVariable: currentTiddler]] variable and built-in [[variables|Variables]]. \ No newline at end of file From fb799a57ffcdb5cb6a66e861fd2f5ad8d962d854 Mon Sep 17 00:00:00 2001 From: Andrey Yankin Date: Mon, 29 Sep 2014 15:37:36 +0400 Subject: [PATCH 06/28] Start russian translation --- editions/tw5.com/tiddlywiki.info | 3 +- languages/ru-RU/Buttons.multids | 60 +++++++++++ languages/ru-RU/ControlPanel.multids | 98 +++++++++++++++++ languages/ru-RU/Docs/ModuleTypes.multids | 21 ++++ languages/ru-RU/Docs/PaletteColours.multids | 101 ++++++++++++++++++ languages/ru-RU/EditTemplate.multids | 17 +++ languages/ru-RU/Fields.multids | 35 ++++++ languages/ru-RU/Filters.multids | 12 +++ languages/ru-RU/GettingStarted.tid | 13 +++ languages/ru-RU/Help/build.tid | 11 ++ languages/ru-RU/Help/clearpassword.tid | 8 ++ languages/ru-RU/Help/default.tid | 22 ++++ languages/ru-RU/Help/help.tid | 10 ++ languages/ru-RU/Help/init.tid | 23 ++++ languages/ru-RU/Help/load.tid | 16 +++ languages/ru-RU/Help/makelibrary.tid | 14 +++ languages/ru-RU/Help/notfound.tid | 3 + languages/ru-RU/Help/output.tid | 10 ++ languages/ru-RU/Help/password.tid | 9 ++ languages/ru-RU/Help/rendertiddler.tid | 12 +++ languages/ru-RU/Help/rendertiddlers.tid | 18 ++++ languages/ru-RU/Help/savetiddler.tid | 12 +++ languages/ru-RU/Help/savetiddlers.tid | 12 +++ languages/ru-RU/Help/server.tid | 37 +++++++ languages/ru-RU/Help/setfield.tid | 18 ++++ languages/ru-RU/Help/verbose.tid | 8 ++ languages/ru-RU/Help/version.tid | 8 ++ languages/ru-RU/Import.multids | 14 +++ languages/ru-RU/Misc.multids | 33 ++++++ languages/ru-RU/Modals/Download.tid | 13 +++ languages/ru-RU/Modals/SaveInstructions.tid | 22 ++++ languages/ru-RU/Notifications.multids | 4 + languages/ru-RU/Search.multids | 15 +++ languages/ru-RU/SideBar.multids | 16 +++ languages/ru-RU/SiteSubtitle.tid | 3 + languages/ru-RU/SiteTitle.tid | 3 + languages/ru-RU/TiddlerInfo.multids | 21 ++++ .../ru-RU/Types/application_javascript.tid | 4 + languages/ru-RU/Types/application_json.tid | 4 + .../application_x_tiddler_dictionary.tid | 4 + languages/ru-RU/Types/image_gif.tid | 4 + languages/ru-RU/Types/image_jpeg.tid | 4 + languages/ru-RU/Types/image_png.tid | 4 + languages/ru-RU/Types/image_svg_xml.tid | 4 + languages/ru-RU/Types/image_x-icon.tid | 4 + languages/ru-RU/Types/text_css.tid | 4 + languages/ru-RU/Types/text_html.tid | 4 + languages/ru-RU/Types/text_plain.tid | 4 + languages/ru-RU/Types/text_vnd.tiddlywiki.tid | 4 + languages/ru-RU/Types/text_x-tiddlywiki.tid | 4 + languages/ru-RU/icon.tid | 13 +++ languages/ru-RU/plugin.info | 8 ++ 52 files changed, 827 insertions(+), 1 deletion(-) create mode 100644 languages/ru-RU/Buttons.multids create mode 100644 languages/ru-RU/ControlPanel.multids create mode 100644 languages/ru-RU/Docs/ModuleTypes.multids create mode 100644 languages/ru-RU/Docs/PaletteColours.multids create mode 100644 languages/ru-RU/EditTemplate.multids create mode 100644 languages/ru-RU/Fields.multids create mode 100644 languages/ru-RU/Filters.multids create mode 100644 languages/ru-RU/GettingStarted.tid create mode 100644 languages/ru-RU/Help/build.tid create mode 100644 languages/ru-RU/Help/clearpassword.tid create mode 100644 languages/ru-RU/Help/default.tid create mode 100644 languages/ru-RU/Help/help.tid create mode 100644 languages/ru-RU/Help/init.tid create mode 100644 languages/ru-RU/Help/load.tid create mode 100644 languages/ru-RU/Help/makelibrary.tid create mode 100644 languages/ru-RU/Help/notfound.tid create mode 100644 languages/ru-RU/Help/output.tid create mode 100644 languages/ru-RU/Help/password.tid create mode 100644 languages/ru-RU/Help/rendertiddler.tid create mode 100644 languages/ru-RU/Help/rendertiddlers.tid create mode 100644 languages/ru-RU/Help/savetiddler.tid create mode 100644 languages/ru-RU/Help/savetiddlers.tid create mode 100644 languages/ru-RU/Help/server.tid create mode 100644 languages/ru-RU/Help/setfield.tid create mode 100644 languages/ru-RU/Help/verbose.tid create mode 100644 languages/ru-RU/Help/version.tid create mode 100644 languages/ru-RU/Import.multids create mode 100644 languages/ru-RU/Misc.multids create mode 100644 languages/ru-RU/Modals/Download.tid create mode 100644 languages/ru-RU/Modals/SaveInstructions.tid create mode 100644 languages/ru-RU/Notifications.multids create mode 100644 languages/ru-RU/Search.multids create mode 100644 languages/ru-RU/SideBar.multids create mode 100644 languages/ru-RU/SiteSubtitle.tid create mode 100644 languages/ru-RU/SiteTitle.tid create mode 100644 languages/ru-RU/TiddlerInfo.multids create mode 100644 languages/ru-RU/Types/application_javascript.tid create mode 100644 languages/ru-RU/Types/application_json.tid create mode 100644 languages/ru-RU/Types/application_x_tiddler_dictionary.tid create mode 100644 languages/ru-RU/Types/image_gif.tid create mode 100644 languages/ru-RU/Types/image_jpeg.tid create mode 100644 languages/ru-RU/Types/image_png.tid create mode 100644 languages/ru-RU/Types/image_svg_xml.tid create mode 100644 languages/ru-RU/Types/image_x-icon.tid create mode 100644 languages/ru-RU/Types/text_css.tid create mode 100644 languages/ru-RU/Types/text_html.tid create mode 100644 languages/ru-RU/Types/text_plain.tid create mode 100644 languages/ru-RU/Types/text_vnd.tiddlywiki.tid create mode 100644 languages/ru-RU/Types/text_x-tiddlywiki.tid create mode 100644 languages/ru-RU/icon.tid create mode 100644 languages/ru-RU/plugin.info diff --git a/editions/tw5.com/tiddlywiki.info b/editions/tw5.com/tiddlywiki.info index ff5620b2e..8ddc7ce10 100644 --- a/editions/tw5.com/tiddlywiki.info +++ b/editions/tw5.com/tiddlywiki.info @@ -25,7 +25,8 @@ "zh-Hans", "zh-Hant", "it-IT", - "ja-JP" + "ja-JP", + "ru-RU" ], "build": { "index": [ diff --git a/languages/ru-RU/Buttons.multids b/languages/ru-RU/Buttons.multids new file mode 100644 index 000000000..dac85e315 --- /dev/null +++ b/languages/ru-RU/Buttons.multids @@ -0,0 +1,60 @@ +title: $:/language/Buttons/ + +AdvancedSearch/Caption: advanced search +AdvancedSearch/Hint: Advanced search +Cancel/Caption: cancel +Cancel/Hint: Cancel editing this tiddler +Clone/Caption: clone +Clone/Hint: Clone this tiddler +Close/Caption: close +Close/Hint: Close this tiddler +CloseAll/Caption: close all +CloseAll/Hint: Close all tiddlers +CloseOthers/Caption: close others +CloseOthers/Hint: Close other tiddlers +ControlPanel/Caption: control panel +ControlPanel/Hint: Open control panel +Delete/Caption: delete +Delete/Hint: Delete this tiddler +Edit/Caption: edit +Edit/Hint: Edit this tiddler +Encryption/Caption: encryption +Encryption/Hint: Set or clear a password for saving this wiki +Encryption/ClearPassword/Caption: clear password +Encryption/ClearPassword/Hint: Clear the password and save this wiki without encryption +Encryption/SetPassword/Caption: set password +Encryption/SetPassword/Hint: Set a password for saving this wiki with encryption +FullScreen/Caption: full-screen +FullScreen/Hint: Enter or leave full-screen mode +Import/Caption: import +Import/Hint: Import files +Info/Caption: info +Info/Hint: Show information for this tiddler +Home/Caption: home +Home/Hint: Open the default tiddlers +Language/Caption: language +Language/Hint: Choose the user interface language +NewTiddler/Caption: new tiddler +NewTiddler/Hint: Create a new tiddler +More/Caption: more +More/Hint: More actions +Permalink/Caption: permalink +Permalink/Hint: Set browser address bar to a direct link to this tiddler +Permaview/Caption: permaview +Permaview/Hint: Set browser address bar to a direct link to all the tiddlers in this story +Refresh/Caption: refresh +Refresh/Hint: Perform a full refresh of the wiki +Save/Caption: save +Save/Hint: Save this tiddler +SaveWiki/Caption: save changes +SaveWiki/Hint: Save changes +StoryView/Caption: storyview +StoryView/Hint: Choose the story visualisation +HideSideBar/Caption: hide sidebar +HideSideBar/Hint: Hide sidebar +ShowSideBar/Caption: show sidebar +ShowSideBar/Hint: Show sidebar +TagManager/Caption: tag manager +TagManager/Hint: Open tag manager +Theme/Caption: theme +Theme/Hint: Choose the display theme diff --git a/languages/ru-RU/ControlPanel.multids b/languages/ru-RU/ControlPanel.multids new file mode 100644 index 000000000..7bb60a790 --- /dev/null +++ b/languages/ru-RU/ControlPanel.multids @@ -0,0 +1,98 @@ +title: $:/language/ControlPanel/ + +Advanced/Caption: Advanced +Advanced/Hint: Internal information about this TiddlyWiki +Appearance/Caption: Appearance +Appearance/Hint: Ways to customise the appearance of your TiddlyWiki. +Basics/AnimDuration/Prompt: Animation duration: +Basics/Caption: Basics +Basics/DefaultTiddlers/BottomHint: Use [[double square brackets]] for titles with spaces. Or you can choose to <$button set="$:/DefaultTiddlers" setTo="[list[$:/StoryList]]">retain story ordering +Basics/DefaultTiddlers/Prompt: Default tiddlers: +Basics/DefaultTiddlers/TopHint: Choose which tiddlers are displayed at startup: +Basics/Language/Prompt: Hello! Current language: +Basics/OverriddenShadowTiddlers/Prompt: Number of overridden shadow tiddlers: +Basics/ShadowTiddlers/Prompt: Number of shadow tiddlers: +Basics/Subtitle/Prompt: Subtitle: +Basics/SystemTiddlers/Prompt: Number of system tiddlers: +Basics/Tags/Prompt: Number of tags: +Basics/Tiddlers/Prompt: Number of tiddlers: +Basics/Title/Prompt: Title of this ~TiddlyWiki: +Basics/Username/Prompt: Username for signing edits: +Basics/Version/Prompt: ~TiddlyWiki version: +EditorTypes/Caption: Editor Types +EditorTypes/Editor/Caption: Editor +EditorTypes/Hint: These tiddlers determine which editor is used to edit specific tiddler types. +EditorTypes/Type/Caption: Type +Info/Caption: Info +Info/Hint: Information about this TiddlyWiki +LoadedModules/Caption: Loaded Modules +LoadedModules/Hint: These are the currently loaded tiddler modules linked to their source tiddlers. Any italicised modules lack a source tiddler, typically because they were setup during the boot process. +Palette/Caption: Palette +Palette/Editor/Clone/Caption: clone +Palette/Editor/Clone/Prompt: It is recommended that you clone this shadow palette before editing it +Palette/Editor/Prompt/Modified: This shadow palette has been modified +Palette/Editor/Prompt: Editing +Palette/Editor/Reset/Caption: reset +Palette/HideEditor/Caption: hide editor +Palette/Prompt: Current palette: +Palette/ShowEditor/Caption: show editor +Plugins/Caption: Plugins +Plugins/Disable/Caption: disable +Plugins/Disable/Hint: Disable this plugin when reloading page +Plugins/Disabled/Status: (disabled) +Plugins/Empty/Hint: None +Plugins/Enable/Caption: enable +Plugins/Enable/Hint: Enable this plugin when reloading page +Plugins/Language/Prompt: Languages +Plugins/Plugin/Prompt: Plugins +Plugins/Theme/Prompt: Themes +Saving/Caption: Saving +Saving/Heading: Saving +Saving/TiddlySpot/Advanced/Heading: Advanced Settings +Saving/TiddlySpot/BackupDir: Backup Directory +Saving/TiddlySpot/Backups: Backups +Saving/TiddlySpot/Description: These settings are only used when saving to http://tiddlyspot.com or a compatible remote server +Saving/TiddlySpot/Filename: Upload Filename +Saving/TiddlySpot/Heading: ~TiddlySpot +Saving/TiddlySpot/Hint: //The server URL defaults to `http://.tiddlyspot.com/store.cgi` and can be changed to use a custom server address// +Saving/TiddlySpot/Password: Password +Saving/TiddlySpot/ServerURL: Server URL +Saving/TiddlySpot/UploadDir: Upload Directory +Saving/TiddlySpot/UserName: Wiki Name +Settings/AutoSave/Caption: Autosave +Settings/AutoSave/Disabled/Description: Do not save changes automatically +Settings/AutoSave/Enabled/Description: Save changes automatically +Settings/AutoSave/Hint: Automatically save changes during editing +Settings/Caption: Settings +Settings/Hint: These settings let you customise the behaviour of TiddlyWiki. +Settings/NavigationAddressBar/Caption: Navigation Address Bar +Settings/NavigationAddressBar/Hint: Behaviour of the browser address bar when navigating to a tiddler: +Settings/NavigationAddressBar/No/Description: Do not update the address bar +Settings/NavigationAddressBar/Permalink/Description: Include the target tiddler +Settings/NavigationAddressBar/Permaview/Description: Include the target tiddler and the current story sequence +Settings/NavigationHistory/Caption: Navigation History +Settings/NavigationHistory/Hint: Update browser history when navigating to a tiddler: +Settings/NavigationHistory/No/Description: Do not update history +Settings/NavigationHistory/Yes/Description: Update history +Settings/ToolbarButtons/Caption: Toolbar Buttons +Settings/ToolbarButtons/Hint: Default toolbar button appearance: +Settings/ToolbarButtons/Icons/Description: Include icon +Settings/ToolbarButtons/Text/Description: Include text +StoryView/Caption: Story View +StoryView/Prompt: Current view: +Theme/Caption: Theme +Theme/Prompt: Current theme: +TiddlerFields/Caption: Tiddler Fields +TiddlerFields/Hint: This is the full set of TiddlerFields in use in this wiki (including system tiddlers but excluding shadow tiddlers). +Toolbars/Caption: Toolbars +Toolbars/EditToolbar/Caption: Edit Toolbar +Toolbars/EditToolbar/Hint: Choose which buttons are displayed for tiddlers in edit mode +Toolbars/Hint: Select which toolbar buttons are displayed +Toolbars/PageControls/Caption: Page Toolbar +Toolbars/PageControls/Hint: Choose which buttons are displayed on the main page toolbar +Toolbars/ViewToolbar/Caption: View Toolbar +Toolbars/ViewToolbar/Hint: Choose which buttons are displayed for tiddlers in view mode +Tools/Caption: Tools +Tools/Download/Full/Caption: Download full wiki +Tools/Export/AllAsStaticHTML/Caption: Download all tiddlers as static HTML +Tools/Export/Heading: Export diff --git a/languages/ru-RU/Docs/ModuleTypes.multids b/languages/ru-RU/Docs/ModuleTypes.multids new file mode 100644 index 000000000..6f7f08d30 --- /dev/null +++ b/languages/ru-RU/Docs/ModuleTypes.multids @@ -0,0 +1,21 @@ +title: $:/language/Docs/ModuleTypes/ + +animation: Animations that may be used with the RevealWidget. +command: Commands that can be executed under Node.js. +config: Data to be inserted into `$tw.config`. +filteroperator: Individual filter operator methods. +global: Global data to be inserted into `$tw`. +isfilteroperator: Operands for the ''is'' filter operator. +macro: JavaScript macro definitions. +parser: Parsers for different content types. +saver: Savers handle different methods for saving files from the browser. +startup: Startup functions. +storyview: Story views customise the animation and behaviour of list widgets. +tiddlerdeserializer: Converts different content types into tiddlers. +tiddlerfield: Defines the behaviour of an individual tiddler field. +tiddlermethod: Adds methods to the `$tw.Tiddler` prototype. +utils: Adds methods to `$tw.utils`. +utils-node: Adds Node.js-specific methods to `$tw.utils`. +widget: Widgets encapsulate DOM rendering and refreshing. +wikimethod: Adds methods to `$tw.Wiki`. +wikirule: Individual parser rules for the main WikiText parser. diff --git a/languages/ru-RU/Docs/PaletteColours.multids b/languages/ru-RU/Docs/PaletteColours.multids new file mode 100644 index 000000000..778b679c5 --- /dev/null +++ b/languages/ru-RU/Docs/PaletteColours.multids @@ -0,0 +1,101 @@ +title: $:/language/Docs/PaletteColours/ + +alert-background: Alert background +alert-border: Alert border +alert-highlight: Alert highlight +alert-muted-foreground: Alert muted foreground +background: General background +blockquote-bar: Blockquote bar +dirty-indicator: Unsaved changes indicator +code-background: Code background +code-border: Code border +code-foreground: Code foreground +download-background: Download button background +download-foreground: Download button foreground +dragger-background: Dragger background +dragger-foreground: Dragger foreground +dropdown-background: Dropdown background +dropdown-border: Dropdown border +dropdown-tab-background-selected: Dropdown tab background for selected tabs +dropdown-tab-background: Dropdown tab background +dropzone-background: Dropzone background +external-link-background-hover: External link background hover +external-link-background-visited: External link background visited +external-link-background: External link background +external-link-foreground-hover: External link foreground hover +external-link-foreground-visited: External link foreground visited +external-link-foreground: External link foreground +foreground: General foreground +message-background: Message box background +message-border: Message box border +message-foreground: Message box foreground +modal-backdrop: Modal backdrop +modal-background: Modal background +modal-border: Modal border +modal-footer-background: Modal footer background +modal-footer-border: Modal footer border +modal-header-border: Modal header border +muted-foreground: General muted foreground +notification-background: Notification background +notification-border: Notification border +page-background: Page background +pre-background: Preformatted code background +pre-border: Preformatted code border +primary: General primary +sidebar-button-foreground: Sidebar button foreground +sidebar-controls-foreground-hover: Sidebar controls foreground hover +sidebar-controls-foreground: Sidebar controls foreground +sidebar-foreground-shadow: Sidebar foreground shadow +sidebar-foreground: Sidebar foreground +sidebar-muted-foreground-hover: Sidebar muted foreground hover +sidebar-muted-foreground: Sidebar muted foreground +sidebar-tab-background-selected: Sidebar tab background for selected tabs +sidebar-tab-background: Sidebar tab background +sidebar-tab-border-selected: Sidebar tab border for selected tabs +sidebar-tab-border: Sidebar tab border +sidebar-tab-divider: Sidebar tab divider +sidebar-tab-foreground-selected: Sidebar tab foreground for selected tabs +sidebar-tab-foreground: Sidebar tab foreground +sidebar-tiddler-link-foreground-hover: Sidebar tiddler link foreground hover +sidebar-tiddler-link-foreground: Sidebar tiddler link foreground +static-alert-foreground: Static alert foreground +tab-background-selected: Tab background for selected tabs +tab-background: Tab background +tab-border-selected: Tab border for selected tabs +tab-border: Tab border +tab-divider: Tab divider +tab-foreground-selected: Tab foreground for selected tabs +tab-foreground: Tab foreground +table-border: Table border +table-footer-background: Table footer background +table-header-background: Table header background +tag-background: Tag background +tag-foreground: Tag foreground +tiddler-background: Tiddler background +tiddler-border: Tiddler border +tiddler-controls-foreground-hover: Tiddler controls foreground hover +tiddler-controls-foreground-selected: Tiddler controls foreground for selected controls +tiddler-controls-foreground: Tiddler controls foreground +tiddler-editor-background: Tiddler editor background +tiddler-editor-border-image: Tiddler editor border image +tiddler-editor-border: Tiddler editor border +tiddler-editor-fields-even: Tiddler editor background for even fields +tiddler-editor-fields-odd: Tiddler editor background for odd fields +tiddler-info-background: Tiddler info panel background +tiddler-info-border: Tiddler info panel border +tiddler-info-tab-background: Tiddler info panel tab background +tiddler-link-background: Tiddler link background +tiddler-link-foreground: Tiddler link foreground +tiddler-subtitle-foreground: Tiddler subtitle foreground +tiddler-title-foreground: Tiddler title foreground +toolbar-new-button: Toolbar 'new tiddler' button foreground +toolbar-options-button: Toolbar 'options' button foreground +toolbar-save-button: Toolbar 'save' button foreground +toolbar-info-button: Toolbar 'info' button foreground +toolbar-edit-button: Toolbar 'edit' button foreground +toolbar-close-button: Toolbar 'close' button foreground +toolbar-delete-button: Toolbar 'delete' button foreground +toolbar-cancel-button: Toolbar 'cancel' button foreground +toolbar-done-button: Toolbar 'done' button foreground +untagged-background: Untagged pill background +very-muted-foreground: Very muted foreground diff --git a/languages/ru-RU/EditTemplate.multids b/languages/ru-RU/EditTemplate.multids new file mode 100644 index 000000000..e703907c6 --- /dev/null +++ b/languages/ru-RU/EditTemplate.multids @@ -0,0 +1,17 @@ +title: $:/language/EditTemplate/ + +Body/External/Hint: This is an external tiddler stored outside of the main TiddlyWiki file. You can edit the tags and fields but cannot directly edit the content itself +Body/Hint: Use [[wiki text|http://tiddlywiki.com/static/WikiText.html]] to add formatting, images, and dynamic features +Body/Placeholder: Type the text for this tiddler +Body/Preview/Button/Hide: hide preview +Body/Preview/Button/Show: show preview +Fields/Add/Button: add +Fields/Add/Name/Placeholder: field name +Fields/Add/Prompt: Add a new field: +Fields/Add/Value/Placeholder: field value +Shadow/Warning: This is a shadow tiddler. Any changes will override the default version +Shadow/OverriddenWarning: This is a modified shadow tiddler. You can revert to the default version by deleting this tiddler +Tags/Add/Button: add +Tags/Add/Placeholder: tag name +Type/Placeholder: content type +Type/Prompt: Type: diff --git a/languages/ru-RU/Fields.multids b/languages/ru-RU/Fields.multids new file mode 100644 index 000000000..683e745e6 --- /dev/null +++ b/languages/ru-RU/Fields.multids @@ -0,0 +1,35 @@ +title: $:/language/Docs/Fields/ + +_canonical_uri: The full URI of an external image tiddler +bag: The name of the bag from which a tiddler came +caption: The text to be displayed on a tab or button +color: The CSS color value associated with a tiddler +component: The name of the component responsible for an [[alert tiddler|AlertMechanism]] +current-tiddler: Used to cache the top tiddler in a [[history list|HistoryMechanism]] +created: The date a tiddler was created +creator: The name of the person who created a tiddler +dependents: For a plugin, lists the dependent plugin titles +description: The descriptive text for a plugin, or a modal dialogue +draft.of: For draft tiddlers, contains the title of the tiddler of which this is a draft +draft.title: For draft tiddlers, contains the proposed new title of the tiddler +footer: The footer text for a wizard +hack-to-give-us-something-to-compare-against: A temporary storage field used in [[$:/core/templates/static.content]] +icon: The title of the tiddler containing the icon associated with a tiddler +library: If set to "yes" indicates that a tiddler should be saved as a JavaScript library +list: An ordered list of tiddler titles associated with a tiddler +list-before: If set, the title of a tiddler before which this tiddler should be added to the ordered list of tiddler titles, or at the start of the list if this field is present but empty +list-after: If set, the title of the tiddler after which this tiddler should be added to the ordered list of tiddler titles +modified: The date and time at which a tiddler was last modified +modifier: The tiddler title associated with the person who last modified a tiddler +name: The human readable name associated with a plugin tiddler +plugin-priority: A numerical value indicating the priority of a plugin tiddler +plugin-type: The type of plugin in a plugin tiddler +revision: The revision of the tiddler held at the server +released: Date of a TiddlyWiki release +source: The source URL associated with a tiddler +subtitle: The subtitle text for a wizard +tags: A list of tags associated with a tiddler +text: The body text of a tiddler +title: The unique name of a tiddler +type: The content type of a tiddler +version: Version information for a plugin diff --git a/languages/ru-RU/Filters.multids b/languages/ru-RU/Filters.multids new file mode 100644 index 000000000..e004db926 --- /dev/null +++ b/languages/ru-RU/Filters.multids @@ -0,0 +1,12 @@ +title: $:/language/Filters/ + +AllTiddlers: All tiddlers except system tiddlers +RecentTiddlers: Recently modified tiddlers +AllTags: All tags except system tags +Missing: Missing tiddlers +Drafts: Draft tiddlers +Orphans: Orphan tiddlers +SystemTiddlers: System tiddlers +ShadowTiddlers: Shadow tiddlers +OverriddenShadowTiddlers: Overridden shadow tiddlers +SystemTags: System tags diff --git a/languages/ru-RU/GettingStarted.tid b/languages/ru-RU/GettingStarted.tid new file mode 100644 index 000000000..37253b1f0 --- /dev/null +++ b/languages/ru-RU/GettingStarted.tid @@ -0,0 +1,13 @@ +title: GettingStarted + +Welcome to TiddlyWiki, the non-linear personal web notebook. + +To get started, first verify that you can save changes successfully - see http://tiddlywiki.com/ for detailed instructions. + +Then you can: + +* Create new tiddlers using the 'plus' button in the sidebar +* Visit the [[control panel|$:/ControlPanel]] using the 'cog' button in the sidebar to customise your wiki +** Stop this message appearing by changing the default tiddlers under the ''Basics'' tab +* Save changes using the 'download' button in the sidebar +* Learn more about [[WikiText|http://tiddlywiki.com/static/WikiText.html]] diff --git a/languages/ru-RU/Help/build.tid b/languages/ru-RU/Help/build.tid new file mode 100644 index 000000000..4ffb848b0 --- /dev/null +++ b/languages/ru-RU/Help/build.tid @@ -0,0 +1,11 @@ +title: $:/language/Help/build +description: Automatically run configured commands + +Build the specified build targets for the current wiki. If no build targets are specified then all available targets will be built. + +``` +--build [ ...] +``` + +Build targets are defined in the `tiddlywiki.info` file of a wiki folder. + diff --git a/languages/ru-RU/Help/clearpassword.tid b/languages/ru-RU/Help/clearpassword.tid new file mode 100644 index 000000000..936d9b75c --- /dev/null +++ b/languages/ru-RU/Help/clearpassword.tid @@ -0,0 +1,8 @@ +title: $:/language/Help/clearpassword +description: Clear a password for subsequent crypto operations + +Clear the password for subsequent crypto operations + +``` +--clearpassword +``` diff --git a/languages/ru-RU/Help/default.tid b/languages/ru-RU/Help/default.tid new file mode 100644 index 000000000..0a8fce44c --- /dev/null +++ b/languages/ru-RU/Help/default.tid @@ -0,0 +1,22 @@ +title: $:/language/Help/default + +\define commandTitle() +$:/language/Help/$(command)$ +\end +``` +usage: tiddlywiki [] [-- [...]...] +``` + +Available commands: + +
    +<$list filter="[commands[]sort[title]]" variable="command"> +
  • <$link to=<>><$macrocall $name="command" $type="text/plain" $output="text/plain"/>: <$transclude tiddler=<> field="description"/>
  • + +
+ +To get detailed help on a command: + +``` +tiddlywiki --help +``` diff --git a/languages/ru-RU/Help/help.tid b/languages/ru-RU/Help/help.tid new file mode 100644 index 000000000..88bb38a8f --- /dev/null +++ b/languages/ru-RU/Help/help.tid @@ -0,0 +1,10 @@ +title: $:/language/Help/help +description: Display help for TiddlyWiki commands + +Displays help text for a command: + +``` +--help [] +``` + +If the command name is omitted then a list of available commands is displayed. diff --git a/languages/ru-RU/Help/init.tid b/languages/ru-RU/Help/init.tid new file mode 100644 index 000000000..71a7be224 --- /dev/null +++ b/languages/ru-RU/Help/init.tid @@ -0,0 +1,23 @@ +title: $:/language/Help/init +description: Initialise a new wiki folder + +Initialise an empty [[WikiFolder|WikiFolders]] with a copy of the specified edition. + +``` +--init [ ...] +``` + +For example: + +``` +tiddlywiki ./MyWikiFolder --init empty +``` + +Note: + +* The wiki folder directory will be created if necessary +* The "edition" defaults to ''empty'' +* The init command will fail if the wiki folder is not empty +* The init command removes any `includeWikis` definitions in the edition's `tiddlywiki.info` file +* When multiple editions are specified, editions initialised later will overwrite any files shared with earlier editions (so, the final `tiddlywiki.info` file will be copied from the last edition) +* `--help editions` returns a list of available editions diff --git a/languages/ru-RU/Help/load.tid b/languages/ru-RU/Help/load.tid new file mode 100644 index 000000000..e1100250f --- /dev/null +++ b/languages/ru-RU/Help/load.tid @@ -0,0 +1,16 @@ +title: $:/language/Help/load +description: Load tiddlers from a file + +Load tiddlers from 2.x.x TiddlyWiki files (`.html`), `.tiddler`, `.tid`, `.json` or other files + +``` +--load +``` + +To load tiddlers from an encrypted TiddlyWiki file you should first specify the password with the PasswordCommand. For example: + +``` +tiddlywiki ./MyWiki --password pa55w0rd --load my_encrypted_wiki.html +``` + +Note that TiddlyWiki will not load an older version of an already loaded plugin. diff --git a/languages/ru-RU/Help/makelibrary.tid b/languages/ru-RU/Help/makelibrary.tid new file mode 100644 index 000000000..cff8d392e --- /dev/null +++ b/languages/ru-RU/Help/makelibrary.tid @@ -0,0 +1,14 @@ +title: $:/language/Help/makelibrary +description: Construct library plugin required by upgrade process + +Constructs the `$:/UpgradeLibrary` tiddler for the upgrade process. + +The upgrade library is formatted as an ordinary plugin tiddler with the plugin type `library`. It contains a copy of each of the plugins, themes and language packs available within the TiddlyWiki5 repository. + +This command is intended for internal use; it is only relevant to users constructing a custom upgrade procedure. + +``` +--makelibrary +``` + +The title argument defaults to `$:/UpgradeLibrary`. diff --git a/languages/ru-RU/Help/notfound.tid b/languages/ru-RU/Help/notfound.tid new file mode 100644 index 000000000..83eca6baa --- /dev/null +++ b/languages/ru-RU/Help/notfound.tid @@ -0,0 +1,3 @@ +title: $:/language/Help/notfound + +No such help item \ No newline at end of file diff --git a/languages/ru-RU/Help/output.tid b/languages/ru-RU/Help/output.tid new file mode 100644 index 000000000..527b52f2e --- /dev/null +++ b/languages/ru-RU/Help/output.tid @@ -0,0 +1,10 @@ +title: $:/language/Help/output +description: Set the base output directory for subsequent commands + +Sets the base output directory for subsequent commands. The default output directory is the `output` subdirectory of the edition directory. + +``` +--output <pathname> +``` + +If the specified pathname is relative then it is resolved relative to the current working directory. diff --git a/languages/ru-RU/Help/password.tid b/languages/ru-RU/Help/password.tid new file mode 100644 index 000000000..d9e87a503 --- /dev/null +++ b/languages/ru-RU/Help/password.tid @@ -0,0 +1,9 @@ +title: $:/language/Help/password +description: Set a password for subsequent crypto operations + +Set a password for subsequent crypto operations + +``` +--password <password> +``` + diff --git a/languages/ru-RU/Help/rendertiddler.tid b/languages/ru-RU/Help/rendertiddler.tid new file mode 100644 index 000000000..70db526f2 --- /dev/null +++ b/languages/ru-RU/Help/rendertiddler.tid @@ -0,0 +1,12 @@ +title: $:/language/Help/rendertiddler +description: Render an individual tiddler as a specified ContentType + +Render an individual tiddler as a specified ContentType, defaults to `text/html` and save it to the specified filename: + +``` +--rendertiddler <title> <filename> [<type>] +``` + +By default, the filename is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory. + +Any missing directories in the path to the filename are automatically created. diff --git a/languages/ru-RU/Help/rendertiddlers.tid b/languages/ru-RU/Help/rendertiddlers.tid new file mode 100644 index 000000000..158872f23 --- /dev/null +++ b/languages/ru-RU/Help/rendertiddlers.tid @@ -0,0 +1,18 @@ +title: $:/language/Help/rendertiddlers +description: Render tiddlers matching a filter to a specified ContentType + +Render a set of tiddlers matching a filter to separate files of a specified ContentType (defaults to `text/html`) and extension (defaults to `.html`). + +``` +--rendertiddlers <filter> <template> <pathname> [<type>] [<extension>] +``` + +For example: + +``` +--rendertiddlers [!is[system]] $:/core/templates/static.tiddler.html ./static text/plain +``` + +By default, the pathname is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory. + +Any files in the target directory are deleted. The target directory is recursively created if it is missing. diff --git a/languages/ru-RU/Help/savetiddler.tid b/languages/ru-RU/Help/savetiddler.tid new file mode 100644 index 000000000..da86126e6 --- /dev/null +++ b/languages/ru-RU/Help/savetiddler.tid @@ -0,0 +1,12 @@ +title: $:/language/Help/savetiddler +description: Saves a raw tiddler to a file + +Saves an individual tiddler in its raw text or binary format to the specified filename. + +``` +--savetiddler <title> <filename> +``` + +By default, the filename is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory. + +Any missing directories in the path to the filename are automatically created. diff --git a/languages/ru-RU/Help/savetiddlers.tid b/languages/ru-RU/Help/savetiddlers.tid new file mode 100644 index 000000000..61b9ba30e --- /dev/null +++ b/languages/ru-RU/Help/savetiddlers.tid @@ -0,0 +1,12 @@ +title: $:/language/Help/savetiddlers +description: Saves a group of raw tiddlers to a directory + +Saves a group of tiddlers in their raw text or binary format to the specified directory. + +``` +--savetiddlers <filter> <pathname> +``` + +By default, the pathname is resolved relative to the `output` subdirectory of the edition directory. The `--output` command can be used to direct output to a different directory. + +Any missing directories in the pathname are automatically created. diff --git a/languages/ru-RU/Help/server.tid b/languages/ru-RU/Help/server.tid new file mode 100644 index 000000000..c8a989c2e --- /dev/null +++ b/languages/ru-RU/Help/server.tid @@ -0,0 +1,37 @@ +title: $:/language/Help/server +description: Provides an HTTP server interface to TiddlyWiki + +The server built in to TiddlyWiki5 is very simple. Although compatible with TiddlyWeb it doesn't support many of the features needed for robust Internet-facing usage. + +At the root, it serves a rendering of a specified tiddler. Away from the root, it serves individual tiddlers encoded in JSON, and supports the basic HTTP operations for `GET`, `PUT` and `DELETE`. + +``` +--server <port> <roottiddler> <rendertype> <servetype> <username> <password> <host> <pathprefix> +``` + +The parameters are: + +* ''port'' - port number to serve from (defaults to "8080") +* ''roottiddler'' - the tiddler to serve at the root (defaults to "$:/core/save/all") +* ''rendertype'' - the content type to which the root tiddler should be rendered (defaults to "text/plain") +* ''servetype'' - the content type with which the root tiddler should be served (defaults to "text/html") +* ''username'' - the default username for signing edits +* ''password'' - optional password for basic authentication +* ''host'' - optional hostname to serve from (defaults to "127.0.0.1" aka "localhost") +* ''pathprefix'' - optional prefix for paths + +If the password parameter is specified then the browser will prompt the user for the username and password. Note that the password is transmitted in plain text so this implementation isn't suitable for general use. + +For example: + +``` +--server 8080 $:/core/save/all text/plain text/html MyUserName passw0rd +``` + +The username and password can be specified as empty strings if you need to set the hostname or pathprefix and don't want to require a password: + +``` +--server 8080 $:/core/save/all text/plain text/html "" "" 192.168.0.245 +``` + +To run multiple TiddlyWiki servers at the same time you'll need to put each one on a different port. diff --git a/languages/ru-RU/Help/setfield.tid b/languages/ru-RU/Help/setfield.tid new file mode 100644 index 000000000..8e09380da --- /dev/null +++ b/languages/ru-RU/Help/setfield.tid @@ -0,0 +1,18 @@ +title: $:/language/Help/setfield +description: Prepares external tiddlers for use + +//Note that this command is experimental and may change or be replaced before being finalised// + +Sets the specified field of a group of tiddlers to the result of wikifying a template tiddler with the `currentTiddler` variable set to the tiddler. + +``` +--setfield <filter> <fieldname> <templatetitle> <rendertype> +``` + +The parameters are: + +* ''filter'' - filter identifying the tiddlers to be affected +* ''fieldname'' - the field to modify (defaults to "text") +* ''templatetitle'' - the tiddler to wikify into the specified field. If blank or missing then the specified field is deleted +* ''type'' - the text type to render (defaults to "text/plain"; "text/html" can be used to include HTML tags) + diff --git a/languages/ru-RU/Help/verbose.tid b/languages/ru-RU/Help/verbose.tid new file mode 100644 index 000000000..395321a30 --- /dev/null +++ b/languages/ru-RU/Help/verbose.tid @@ -0,0 +1,8 @@ +title: $:/language/Help/verbose +description: Triggers verbose output mode + +Triggers verbose output, useful for debugging + +``` +--verbose +``` diff --git a/languages/ru-RU/Help/version.tid b/languages/ru-RU/Help/version.tid new file mode 100644 index 000000000..4d9ba0bae --- /dev/null +++ b/languages/ru-RU/Help/version.tid @@ -0,0 +1,8 @@ +title: $:/language/Help/version +description: Displays the version number of TiddlyWiki + +Displays the version number of TiddlyWiki. + +``` +--version +``` diff --git a/languages/ru-RU/Import.multids b/languages/ru-RU/Import.multids new file mode 100644 index 000000000..536ace2aa --- /dev/null +++ b/languages/ru-RU/Import.multids @@ -0,0 +1,14 @@ +title: $:/language/Import/ + +Listing/Cancel/Caption: Cancel +Listing/Hint: These tiddlers are ready to import: +Listing/Import/Caption: Import +Listing/Select/Caption: Select +Listing/Status/Caption: Status +Listing/Title/Caption: Title +Upgrader/Plugins/Suppressed/Incompatible: Blocked incompatible or obsolete plugin +Upgrader/Plugins/Suppressed/Version: Blocked plugin (due to incoming <<incoming>> being older than existing <<existing>>) +Upgrader/Plugins/Upgraded: Upgraded plugin from <<incoming>> to <<upgraded>> +Upgrader/State/Suppressed: Blocked temporary state tiddler +Upgrader/System/Suppressed: Blocked system tiddler +Upgrader/ThemeTweaks/Created: Migrated theme tweak from <$text text=<<from>>/> diff --git a/languages/ru-RU/Misc.multids b/languages/ru-RU/Misc.multids new file mode 100644 index 000000000..0e9b91d2c --- /dev/null +++ b/languages/ru-RU/Misc.multids @@ -0,0 +1,33 @@ +title: $:/language/ + +BinaryWarning/Prompt: This tiddler contains binary data +ClassicWarning/Hint: This tiddler is written in TiddlyWiki Classic wiki text format, which is not fully compatible with TiddlyWiki version 5. See http://tiddlywiki.com/static/Upgrading.html for more details. +ClassicWarning/Upgrade/Caption: upgrade +CloseAll/Button: close all +ConfirmCancelTiddler: Do you wish to discard changes to the tiddler "<$text text=<<title>>/>"? +ConfirmDeleteTiddler: Do you wish to delete the tiddler "<$text text=<<title>>/>"? +ConfirmOverwriteTiddler: Do you wish to overwrite the tiddler "<$text text=<<title>>/>"? +ConfirmEditShadowTiddler: You are about to edit a ShadowTiddler. Any changes will override the default system making future upgrades non-trivial. Are you sure you want to edit "<$text text=<<title>>/>"? +DropMessage: Drop here (or click escape to cancel) +InvalidFieldName: Illegal characters in field name "<$text text=<<fieldName>>/>". Fields can only contain lowercase letters, digits and the characters underscore (`_`), hyphen (`-`) and period (`.`) +MissingTiddler/Hint: Missing tiddler "<$text text=<<currentTiddler>>/>" - click {{$:/core/images/edit-button}} to create +RecentChanges/DateFormat: DDth MMM YYYY +RelativeDate/Future/Days: <<period>> days from now +RelativeDate/Future/Hours: <<period>> hours from now +RelativeDate/Future/Minutes: <<period>> minutes from now +RelativeDate/Future/Months: <<period>> months from now +RelativeDate/Future/Second: 1 second from now +RelativeDate/Future/Seconds: <<period>> seconds from now +RelativeDate/Future/Years: <<period>> years from now +RelativeDate/Past/Days: <<period>> days ago +RelativeDate/Past/Hours: <<period>> hours ago +RelativeDate/Past/Minutes: <<period>> minutes ago +RelativeDate/Past/Months: <<period>> months ago +RelativeDate/Past/Second: 1 second ago +RelativeDate/Past/Seconds: <<period>> seconds ago +RelativeDate/Past/Years: <<period>> years ago +SystemTiddler/Tooltip: This is a system tiddler +TagManager/Colour/Heading: Colour +TagManager/Icon/Heading: Icon +TagManager/Tag/Heading: Tag +UnsavedChangesWarning: You have unsaved changes in TiddlyWiki diff --git a/languages/ru-RU/Modals/Download.tid b/languages/ru-RU/Modals/Download.tid new file mode 100644 index 000000000..49ea95d59 --- /dev/null +++ b/languages/ru-RU/Modals/Download.tid @@ -0,0 +1,13 @@ +title: $:/language/Modals/Download +type: text/vnd.tiddlywiki +subtitle: Download changes +footer: <$button message="tm-close-tiddler">Close</$button> +help: http://tiddlywiki.com/static/DownloadingChanges.html + +Your browser only supports manual saving. + +To save your modified wiki, right click on the download link below and select "Download file" or "Save file", and then choose the folder and filename. + +//You can marginally speed things up by clicking the link with the control key (Windows) or the options/alt key (Mac OS X). You will not be prompted for the folder or filename, but your browser is likely to give it an unrecognisable name -- you may need to rename the file to include an `.html` extension before you can do anything useful with it.// + +On smartphones that do not allow files to be downloaded you can instead bookmark the link, and then sync your bookmarks to a desktop computer from where the wiki can be saved normally. diff --git a/languages/ru-RU/Modals/SaveInstructions.tid b/languages/ru-RU/Modals/SaveInstructions.tid new file mode 100644 index 000000000..61f46dea0 --- /dev/null +++ b/languages/ru-RU/Modals/SaveInstructions.tid @@ -0,0 +1,22 @@ +title: $:/language/Modals/SaveInstructions +type: text/vnd.tiddlywiki +subtitle: Save your work +footer: <$button message="tm-close-tiddler">Close</$button> +help: http://tiddlywiki.com/static/SavingChanges.html + +Your changes to this wiki need to be saved as a ~TiddlyWiki HTML file. + +!!! Desktop browsers + +# Select ''Save As'' from the ''File'' menu +# Choose a filename and location +#* Some browsers also require you to explicitly specify the file saving format as ''Webpage, HTML only'' or similar +# Close this tab + +!!! Smartphone browsers + +# Create a bookmark to this page +#* If you've got iCloud or Google Sync set up then the bookmark will automatically sync to your desktop where you can open it and save it as above +# Close this tab + +//If you open the bookmark again in Mobile Safari you will see this message again. If you want to go ahead and use the file, just click the ''close'' button below// diff --git a/languages/ru-RU/Notifications.multids b/languages/ru-RU/Notifications.multids new file mode 100644 index 000000000..0d9b891bd --- /dev/null +++ b/languages/ru-RU/Notifications.multids @@ -0,0 +1,4 @@ +title: $:/language/Notifications/ + +Save/Done: Saved wiki +Save/Starting: Starting to save wiki diff --git a/languages/ru-RU/Search.multids b/languages/ru-RU/Search.multids new file mode 100644 index 000000000..987428164 --- /dev/null +++ b/languages/ru-RU/Search.multids @@ -0,0 +1,15 @@ +title: $:/language/Search/ + +Filter/Caption: Filter +Filter/Hint: Search via a [[filter expression|http://tiddlywiki.com/static/Filters.html]] +Filter/Matches: //<small><$count filter={{$:/temp/advancedsearch}}/> matches</small>// +Matches: //<small><$count filter="[!is[system]search{$:/temp/search}]"/> matches</small>// +Shadows/Caption: Shadows +Shadows/Hint: Search for shadow tiddlers +Shadows/Matches: //<small><$count filter="[all[shadows]search{$:/temp/advancedsearch}]"/> matches</small>// +Standard/Caption: Standard +Standard/Hint: Search for standard tiddlers +Standard/Matches: //<small><$count filter="[!is[system]search{$:/temp/advancedsearch}]"/> matches</small>// +System/Caption: System +System/Hint: Search for system tiddlers +System/Matches: //<small><$count filter="[is[system]search{$:/temp/advancedsearch}]"/> matches</small>// diff --git a/languages/ru-RU/SideBar.multids b/languages/ru-RU/SideBar.multids new file mode 100644 index 000000000..1ae4439dd --- /dev/null +++ b/languages/ru-RU/SideBar.multids @@ -0,0 +1,16 @@ +title: $:/language/SideBar/ + +All/Caption: All +Contents/Caption: Contents +Drafts/Caption: Drafts +Missing/Caption: Missing +More/Caption: More +Open/Caption: Open +Orphans/Caption: Orphans +Recent/Caption: Recent +Shadows/Caption: Shadows +System/Caption: System +Tags/Caption: Tags +Tags/Untagged/Caption: untagged +Tools/Caption: Tools +Types/Caption: Types diff --git a/languages/ru-RU/SiteSubtitle.tid b/languages/ru-RU/SiteSubtitle.tid new file mode 100644 index 000000000..692ebddbb --- /dev/null +++ b/languages/ru-RU/SiteSubtitle.tid @@ -0,0 +1,3 @@ +title: $:/SiteSubtitle + +a non-linear personal web notebook \ No newline at end of file diff --git a/languages/ru-RU/SiteTitle.tid b/languages/ru-RU/SiteTitle.tid new file mode 100644 index 000000000..9f522664a --- /dev/null +++ b/languages/ru-RU/SiteTitle.tid @@ -0,0 +1,3 @@ +title: $:/SiteTitle + +My ~TiddlyWiki \ No newline at end of file diff --git a/languages/ru-RU/TiddlerInfo.multids b/languages/ru-RU/TiddlerInfo.multids new file mode 100644 index 000000000..a395ce19b --- /dev/null +++ b/languages/ru-RU/TiddlerInfo.multids @@ -0,0 +1,21 @@ +title: $:/language/TiddlerInfo/ + +Advanced/Caption: Advanced +Advanced/PluginInfo/Empty/Hint: none +Advanced/PluginInfo/Heading: Plugin Details +Advanced/PluginInfo/Hint: This plugin contains the following shadow tiddlers: +Advanced/ShadowInfo/Heading: Shadow Status +Advanced/ShadowInfo/NotShadow/Hint: The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is not a shadow tiddler +Advanced/ShadowInfo/Shadow/Hint: The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is a shadow tiddler +Advanced/ShadowInfo/Shadow/Source: It is defined in the plugin <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link> +Advanced/ShadowInfo/OverriddenShadow/Hint: It is overridden by an ordinary tiddler +Fields/Caption: Fields +List/Caption: List +List/Empty: This tiddler does not have a list +Listed/Caption: Listed +Listed/Empty: This tiddler is not listed by any others +References/Caption: References +References/Empty: No tiddlers link to this one +Tagging/Caption: Tagging +Tagging/Empty: No tiddlers are tagged with this one +Tools/Caption: Tools diff --git a/languages/ru-RU/Types/application_javascript.tid b/languages/ru-RU/Types/application_javascript.tid new file mode 100644 index 000000000..fda69c6e1 --- /dev/null +++ b/languages/ru-RU/Types/application_javascript.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/application/javascript +description: JavaScript code +name: application/javascript +group: Developer diff --git a/languages/ru-RU/Types/application_json.tid b/languages/ru-RU/Types/application_json.tid new file mode 100644 index 000000000..27b129821 --- /dev/null +++ b/languages/ru-RU/Types/application_json.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/application/json +description: JSON data +name: application/json +group: Developer diff --git a/languages/ru-RU/Types/application_x_tiddler_dictionary.tid b/languages/ru-RU/Types/application_x_tiddler_dictionary.tid new file mode 100644 index 000000000..13ab6943e --- /dev/null +++ b/languages/ru-RU/Types/application_x_tiddler_dictionary.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/application/x-tiddler-dictionary +description: Data dictionary +name: application/x-tiddler-dictionary +group: Developer diff --git a/languages/ru-RU/Types/image_gif.tid b/languages/ru-RU/Types/image_gif.tid new file mode 100644 index 000000000..bca7d7d28 --- /dev/null +++ b/languages/ru-RU/Types/image_gif.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/image/gif +description: GIF image +name: image/gif +group: Image diff --git a/languages/ru-RU/Types/image_jpeg.tid b/languages/ru-RU/Types/image_jpeg.tid new file mode 100644 index 000000000..943f19341 --- /dev/null +++ b/languages/ru-RU/Types/image_jpeg.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/image/jpeg +description: JPEG image +name: image/jpeg +group: Image diff --git a/languages/ru-RU/Types/image_png.tid b/languages/ru-RU/Types/image_png.tid new file mode 100644 index 000000000..59fb3f865 --- /dev/null +++ b/languages/ru-RU/Types/image_png.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/image/png +description: PNG image +name: image/png +group: Image diff --git a/languages/ru-RU/Types/image_svg_xml.tid b/languages/ru-RU/Types/image_svg_xml.tid new file mode 100644 index 000000000..ddb6912dd --- /dev/null +++ b/languages/ru-RU/Types/image_svg_xml.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/image/svg+xml +description: Structured Vector Graphics image +name: image/svg+xml +group: Image diff --git a/languages/ru-RU/Types/image_x-icon.tid b/languages/ru-RU/Types/image_x-icon.tid new file mode 100644 index 000000000..ff8d12f81 --- /dev/null +++ b/languages/ru-RU/Types/image_x-icon.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/image/x-icon +description: ICO format icon file +name: image/x-icon +group: Image diff --git a/languages/ru-RU/Types/text_css.tid b/languages/ru-RU/Types/text_css.tid new file mode 100644 index 000000000..15785f0a0 --- /dev/null +++ b/languages/ru-RU/Types/text_css.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/text/css +description: Static stylesheet +name: text/css +group: Developer diff --git a/languages/ru-RU/Types/text_html.tid b/languages/ru-RU/Types/text_html.tid new file mode 100644 index 000000000..cd8d8221e --- /dev/null +++ b/languages/ru-RU/Types/text_html.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/text/html +description: HTML markup +name: text/html +group: Text diff --git a/languages/ru-RU/Types/text_plain.tid b/languages/ru-RU/Types/text_plain.tid new file mode 100644 index 000000000..83da10bc8 --- /dev/null +++ b/languages/ru-RU/Types/text_plain.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/text/plain +description: Plain text +name: text/plain +group: Text diff --git a/languages/ru-RU/Types/text_vnd.tiddlywiki.tid b/languages/ru-RU/Types/text_vnd.tiddlywiki.tid new file mode 100644 index 000000000..e946d9a4a --- /dev/null +++ b/languages/ru-RU/Types/text_vnd.tiddlywiki.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/text/vnd.tiddlywiki +description: TiddlyWiki 5 +name: text/vnd.tiddlywiki +group: Text diff --git a/languages/ru-RU/Types/text_x-tiddlywiki.tid b/languages/ru-RU/Types/text_x-tiddlywiki.tid new file mode 100644 index 000000000..e593430ee --- /dev/null +++ b/languages/ru-RU/Types/text_x-tiddlywiki.tid @@ -0,0 +1,4 @@ +title: $:/language/Docs/Types/text/x-tiddlywiki +description: TiddlyWiki Classic +name: text/x-tiddlywiki +group: Text diff --git a/languages/ru-RU/icon.tid b/languages/ru-RU/icon.tid new file mode 100644 index 000000000..1967b895f --- /dev/null +++ b/languages/ru-RU/icon.tid @@ -0,0 +1,13 @@ +title: $:/languages/en-GB/icon +type: image/svg+xml + +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="1200" height="600"> +<clipPath id="t"> + <path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/> +</clipPath> +<path d="M0,0 v30 h60 v-30 z" fill="#00247d"/> +<path d="M0,0 L60,30 M60,0 L0,30" stroke="#fff" stroke-width="6"/> +<path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(#t)" stroke="#cf142b" stroke-width="4"/> +<path d="M30,0 v30 M0,15 h60" stroke="#fff" stroke-width="10"/> +<path d="M30,0 v30 M0,15 h60" stroke="#cf142b" stroke-width="6"/> +</svg> diff --git a/languages/ru-RU/plugin.info b/languages/ru-RU/plugin.info new file mode 100644 index 000000000..af78ee47a --- /dev/null +++ b/languages/ru-RU/plugin.info @@ -0,0 +1,8 @@ +{ + "title": "$:/languages/ru-RU", + "name": "ru-RU", + "plugin-type": "language", + "description": "Russian (Russia)", + "author": "AndreyYankin aka andrey013", + "core-version": ">=5.0.0" +} From 9add9464843218916b6c0cb8f85e490f2197e017 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Mon, 29 Sep 2014 16:01:36 +0400 Subject: [PATCH 07/28] Russian flag --- languages/ru-RU/icon.tid | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/languages/ru-RU/icon.tid b/languages/ru-RU/icon.tid index 1967b895f..5941c2ed1 100644 --- a/languages/ru-RU/icon.tid +++ b/languages/ru-RU/icon.tid @@ -1,13 +1,8 @@ -title: $:/languages/en-GB/icon +title: $:/languages/ru-RU/icon type: image/svg+xml -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30" width="1200" height="600"> -<clipPath id="t"> - <path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z"/> -</clipPath> -<path d="M0,0 v30 h60 v-30 z" fill="#00247d"/> -<path d="M0,0 L60,30 M60,0 L0,30" stroke="#fff" stroke-width="6"/> -<path d="M0,0 L60,30 M60,0 L0,30" clip-path="url(#t)" stroke="#cf142b" stroke-width="4"/> -<path d="M30,0 v30 M0,15 h60" stroke="#fff" stroke-width="10"/> -<path d="M30,0 v30 M0,15 h60" stroke="#cf142b" stroke-width="6"/> -</svg> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 6" width="900" height="600"> +<rect fill="#fff" width="9" height="3"/> +<rect fill="#d52b1e" y="3" width="9" height="3"/> +<rect fill="#0039a6" y="2" width="9" height="2"/> +</svg> \ No newline at end of file From 10e7e53a10eebaa3e201664edd7c5a8b59986098 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Mon, 29 Sep 2014 17:07:25 +0400 Subject: [PATCH 08/28] Russian buttons --- languages/ru-RU/Buttons.multids | 116 ++++++++++++++++---------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/languages/ru-RU/Buttons.multids b/languages/ru-RU/Buttons.multids index dac85e315..cbb35b779 100644 --- a/languages/ru-RU/Buttons.multids +++ b/languages/ru-RU/Buttons.multids @@ -1,60 +1,60 @@ title: $:/language/Buttons/ -AdvancedSearch/Caption: advanced search -AdvancedSearch/Hint: Advanced search -Cancel/Caption: cancel -Cancel/Hint: Cancel editing this tiddler -Clone/Caption: clone -Clone/Hint: Clone this tiddler -Close/Caption: close -Close/Hint: Close this tiddler -CloseAll/Caption: close all -CloseAll/Hint: Close all tiddlers -CloseOthers/Caption: close others -CloseOthers/Hint: Close other tiddlers -ControlPanel/Caption: control panel -ControlPanel/Hint: Open control panel -Delete/Caption: delete -Delete/Hint: Delete this tiddler -Edit/Caption: edit -Edit/Hint: Edit this tiddler -Encryption/Caption: encryption -Encryption/Hint: Set or clear a password for saving this wiki -Encryption/ClearPassword/Caption: clear password -Encryption/ClearPassword/Hint: Clear the password and save this wiki without encryption -Encryption/SetPassword/Caption: set password -Encryption/SetPassword/Hint: Set a password for saving this wiki with encryption -FullScreen/Caption: full-screen -FullScreen/Hint: Enter or leave full-screen mode -Import/Caption: import -Import/Hint: Import files -Info/Caption: info -Info/Hint: Show information for this tiddler -Home/Caption: home -Home/Hint: Open the default tiddlers -Language/Caption: language -Language/Hint: Choose the user interface language -NewTiddler/Caption: new tiddler -NewTiddler/Hint: Create a new tiddler -More/Caption: more -More/Hint: More actions -Permalink/Caption: permalink -Permalink/Hint: Set browser address bar to a direct link to this tiddler -Permaview/Caption: permaview -Permaview/Hint: Set browser address bar to a direct link to all the tiddlers in this story -Refresh/Caption: refresh -Refresh/Hint: Perform a full refresh of the wiki -Save/Caption: save -Save/Hint: Save this tiddler -SaveWiki/Caption: save changes -SaveWiki/Hint: Save changes -StoryView/Caption: storyview -StoryView/Hint: Choose the story visualisation -HideSideBar/Caption: hide sidebar -HideSideBar/Hint: Hide sidebar -ShowSideBar/Caption: show sidebar -ShowSideBar/Hint: Show sidebar -TagManager/Caption: tag manager -TagManager/Hint: Open tag manager -Theme/Caption: theme -Theme/Hint: Choose the display theme +AdvancedSearch/Caption: расширенный поиск +AdvancedSearch/Hint: Расширенный поиск +Cancel/Caption: отмена +Cancel/Hint: Отменить редактирование заметки +Clone/Caption: клонировать +Clone/Hint: Создать копию заметки +Close/Caption: закрыть +Close/Hint: Закрыть заметку +CloseAll/Caption: закрыть все +CloseAll/Hint: Закрыть все заметки +CloseOthers/Caption: закрыть остальные +CloseOthers/Hint: Закрыть остальные заметки +ControlPanel/Caption: панель управления +ControlPanel/Hint: Открыть панель управления +Delete/Caption: удалить +Delete/Hint: Удалить заметку +Edit/Caption: редактировать +Edit/Hint: Редактировать заметку +Encryption/Caption: шифрование +Encryption/Hint: Установить или сбросить пароль +Encryption/ClearPassword/Caption: сбросить пароль +Encryption/ClearPassword/Hint: Сбросить пароль и сохранить без использования шифрования +Encryption/SetPassword/Caption: установить пароль +Encryption/SetPassword/Hint: Установить пароль и включить шифрование +FullScreen/Caption: полный экран +FullScreen/Hint: Включить или выключить полноэкранный режим +Import/Caption: импортировать +Import/Hint: Импорт файлов +Info/Caption: информация +Info/Hint: Показать информацию об этой заметке +Home/Caption: главная +Home/Hint: Открыть заметки по умолчанию +Language/Caption: язык +Language/Hint: Выбрать язык пользовательского интерфейса +NewTiddler/Caption: новая заметка +NewTiddler/Hint: Создать новую заметку +More/Caption: ещё +More/Hint: Другие действия +Permalink/Caption: прямая ссылка +Permalink/Hint: Показать прямую ссылку на заметку в адресной строке браузера +Permaview/Caption: прямая ссылка +Permaview/Hint: Показать прямую ссылку на открытые заметки в адресной строке браузера +Refresh/Caption: oбновить +Refresh/Hint: Выполнить обновление страницы +Save/Caption: сохранить +Save/Hint: Сохранить заметку +SaveWiki/Caption: сохранить изменения +SaveWiki/Hint: Сохранить изменения +StoryView/Caption: отображение заметок +StoryView/Hint: Выбрать способ отображения заметок +HideSideBar/Caption: скрыть боковую панель +HideSideBar/Hint: Скрыть боковую панель +ShowSideBar/Caption: показать боковую панель +ShowSideBar/Hint: Показать боковую панель +TagManager/Caption: управление метками +TagManager/Hint: Открыть панель управления метками +Theme/Caption: тема +Theme/Hint: Выбрать тему From 65ba441e810766d59f03696db799f2b2e7147613 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Mon, 29 Sep 2014 18:00:10 +0400 Subject: [PATCH 09/28] Russian sidebar --- languages/ru-RU/Notifications.multids | 4 ++-- languages/ru-RU/SideBar.multids | 28 +++++++++++++-------------- languages/ru-RU/SiteSubtitle.tid | 2 +- languages/ru-RU/SiteTitle.tid | 2 +- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/languages/ru-RU/Notifications.multids b/languages/ru-RU/Notifications.multids index 0d9b891bd..67fd17723 100644 --- a/languages/ru-RU/Notifications.multids +++ b/languages/ru-RU/Notifications.multids @@ -1,4 +1,4 @@ title: $:/language/Notifications/ -Save/Done: Saved wiki -Save/Starting: Starting to save wiki +Save/Done: Успешно сохранено +Save/Starting: Идёт сохранение diff --git a/languages/ru-RU/SideBar.multids b/languages/ru-RU/SideBar.multids index 1ae4439dd..f97a27a02 100644 --- a/languages/ru-RU/SideBar.multids +++ b/languages/ru-RU/SideBar.multids @@ -1,16 +1,16 @@ title: $:/language/SideBar/ -All/Caption: All -Contents/Caption: Contents -Drafts/Caption: Drafts -Missing/Caption: Missing -More/Caption: More -Open/Caption: Open -Orphans/Caption: Orphans -Recent/Caption: Recent -Shadows/Caption: Shadows -System/Caption: System -Tags/Caption: Tags -Tags/Untagged/Caption: untagged -Tools/Caption: Tools -Types/Caption: Types +All/Caption: Все +Contents/Caption: Оглавление +Drafts/Caption: Черновики +Missing/Caption: Отсутствующие +More/Caption: Ещё +Open/Caption: Открытые +Orphans/Caption: Потерянные +Recent/Caption: Последние +Shadows/Caption: Встроенные +System/Caption: Системные +Tags/Caption: Метки +Tags/Untagged/Caption: без метки +Tools/Caption: Инструменты +Types/Caption: Типы diff --git a/languages/ru-RU/SiteSubtitle.tid b/languages/ru-RU/SiteSubtitle.tid index 692ebddbb..8de3a253b 100644 --- a/languages/ru-RU/SiteSubtitle.tid +++ b/languages/ru-RU/SiteSubtitle.tid @@ -1,3 +1,3 @@ title: $:/SiteSubtitle -a non-linear personal web notebook \ No newline at end of file +нелинейная личная сетевая записная книжка \ No newline at end of file diff --git a/languages/ru-RU/SiteTitle.tid b/languages/ru-RU/SiteTitle.tid index 9f522664a..cae6a8a7d 100644 --- a/languages/ru-RU/SiteTitle.tid +++ b/languages/ru-RU/SiteTitle.tid @@ -1,3 +1,3 @@ title: $:/SiteTitle -My ~TiddlyWiki \ No newline at end of file +Моя ~TiddlyWiki \ No newline at end of file From b3114099240d9cf882a5ca6d52b7781b64d80aa1 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Tue, 30 Sep 2014 01:44:16 +0400 Subject: [PATCH 10/28] edit form, filters, getting started, importer, search and info form russian translation --- languages/ru-RU/EditTemplate.multids | 30 +++++++++++----------- languages/ru-RU/Filters.multids | 20 +++++++-------- languages/ru-RU/GettingStarted.tid | 16 ++++++------ languages/ru-RU/Import.multids | 12 ++++----- languages/ru-RU/Search.multids | 26 +++++++++---------- languages/ru-RU/TiddlerInfo.multids | 38 ++++++++++++++-------------- 6 files changed, 71 insertions(+), 71 deletions(-) diff --git a/languages/ru-RU/EditTemplate.multids b/languages/ru-RU/EditTemplate.multids index e703907c6..05e46d7c0 100644 --- a/languages/ru-RU/EditTemplate.multids +++ b/languages/ru-RU/EditTemplate.multids @@ -1,17 +1,17 @@ title: $:/language/EditTemplate/ -Body/External/Hint: This is an external tiddler stored outside of the main TiddlyWiki file. You can edit the tags and fields but cannot directly edit the content itself -Body/Hint: Use [[wiki text|http://tiddlywiki.com/static/WikiText.html]] to add formatting, images, and dynamic features -Body/Placeholder: Type the text for this tiddler -Body/Preview/Button/Hide: hide preview -Body/Preview/Button/Show: show preview -Fields/Add/Button: add -Fields/Add/Name/Placeholder: field name -Fields/Add/Prompt: Add a new field: -Fields/Add/Value/Placeholder: field value -Shadow/Warning: This is a shadow tiddler. Any changes will override the default version -Shadow/OverriddenWarning: This is a modified shadow tiddler. You can revert to the default version by deleting this tiddler -Tags/Add/Button: add -Tags/Add/Placeholder: tag name -Type/Placeholder: content type -Type/Prompt: Type: +Body/External/Hint: Содержимое этой заметки находится вне TiddlyWiki. Но вы можете редактировать метки и поля +Body/Hint: Воспользуйтесь [[WikiText|http://tiddlywiki.com/static/WikiText.html]] для форматирования, добавления изображений и макросов +Body/Placeholder: Введите текст заметки +Body/Preview/Button/Hide: скрыть предпросмотр +Body/Preview/Button/Show: предпросмотр +Fields/Add/Button: добавить +Fields/Add/Name/Placeholder: название поля +Fields/Add/Prompt: Добавить новое поле: +Fields/Add/Value/Placeholder: значение +Shadow/Warning: Это встроенная заметка. Любое изменение переопределит стандартное значение +Shadow/OverriddenWarning: Это переопределённая встроенная заметка. Для восстановления стандартного значения просто удалите её +Tags/Add/Button: добавить +Tags/Add/Placeholder: название метки +Type/Placeholder: тип содержимого +Type/Prompt: Тип: diff --git a/languages/ru-RU/Filters.multids b/languages/ru-RU/Filters.multids index e004db926..0abcee2ea 100644 --- a/languages/ru-RU/Filters.multids +++ b/languages/ru-RU/Filters.multids @@ -1,12 +1,12 @@ title: $:/language/Filters/ -AllTiddlers: All tiddlers except system tiddlers -RecentTiddlers: Recently modified tiddlers -AllTags: All tags except system tags -Missing: Missing tiddlers -Drafts: Draft tiddlers -Orphans: Orphan tiddlers -SystemTiddlers: System tiddlers -ShadowTiddlers: Shadow tiddlers -OverriddenShadowTiddlers: Overridden shadow tiddlers -SystemTags: System tags +AllTiddlers: Все заметки, кроме системных +RecentTiddlers: Недавно измененные заметки +AllTags: Все метки, кроме системных +Missing: Отсутствующие заметки +Drafts: Черновики +Orphans: Потерянные заметки +SystemTiddlers: Системные заметки +ShadowTiddlers: Встроенные заметки +OverriddenShadowTiddlers: Переопределённые встроенные заметки +SystemTags: Системные метки diff --git a/languages/ru-RU/GettingStarted.tid b/languages/ru-RU/GettingStarted.tid index 37253b1f0..3116fbe5b 100644 --- a/languages/ru-RU/GettingStarted.tid +++ b/languages/ru-RU/GettingStarted.tid @@ -1,13 +1,13 @@ title: GettingStarted -Welcome to TiddlyWiki, the non-linear personal web notebook. +Добро пожаловать в TiddlyWiki, нелинейную личную сетевую записную книжку. -To get started, first verify that you can save changes successfully - see http://tiddlywiki.com/ for detailed instructions. +Для начала убедитесь, что у вас работает сохранение - подробные инструкции на http://tiddlywiki.com/. -Then you can: +Затем вы можете: -* Create new tiddlers using the 'plus' button in the sidebar -* Visit the [[control panel|$:/ControlPanel]] using the 'cog' button in the sidebar to customise your wiki -** Stop this message appearing by changing the default tiddlers under the ''Basics'' tab -* Save changes using the 'download' button in the sidebar -* Learn more about [[WikiText|http://tiddlywiki.com/static/WikiText.html]] +* Создавать новые заметки, используя кнопку 'плюс' на боковой панели +* Зайти в [[панель управления|$:/ControlPanel]], используя кнопку с изображением 'шестерёнки' на боковой панели и настроить TiddlyWiki на свой вкус +** Убрать это сообщение, изменив настройку 'заметки по умолчанию' на вкладке ''Основные'' +* Сохранить изменения при помощи кнопки 'скачать' на боковой панели +* Изучить подробнее [[WikiText|http://tiddlywiki.com/static/WikiText.html]] diff --git a/languages/ru-RU/Import.multids b/languages/ru-RU/Import.multids index 536ace2aa..142b81d66 100644 --- a/languages/ru-RU/Import.multids +++ b/languages/ru-RU/Import.multids @@ -1,11 +1,11 @@ title: $:/language/Import/ -Listing/Cancel/Caption: Cancel -Listing/Hint: These tiddlers are ready to import: -Listing/Import/Caption: Import -Listing/Select/Caption: Select -Listing/Status/Caption: Status -Listing/Title/Caption: Title +Listing/Cancel/Caption: Отмена +Listing/Hint: Импортируемые заметки: +Listing/Import/Caption: Импортировать +Listing/Select/Caption: Выбор +Listing/Status/Caption: Примечание +Listing/Title/Caption: Название Upgrader/Plugins/Suppressed/Incompatible: Blocked incompatible or obsolete plugin Upgrader/Plugins/Suppressed/Version: Blocked plugin (due to incoming <<incoming>> being older than existing <<existing>>) Upgrader/Plugins/Upgraded: Upgraded plugin from <<incoming>> to <<upgraded>> diff --git a/languages/ru-RU/Search.multids b/languages/ru-RU/Search.multids index 987428164..20b5047a5 100644 --- a/languages/ru-RU/Search.multids +++ b/languages/ru-RU/Search.multids @@ -1,15 +1,15 @@ title: $:/language/Search/ -Filter/Caption: Filter -Filter/Hint: Search via a [[filter expression|http://tiddlywiki.com/static/Filters.html]] -Filter/Matches: //<small><$count filter={{$:/temp/advancedsearch}}/> matches</small>// -Matches: //<small><$count filter="[!is[system]search{$:/temp/search}]"/> matches</small>// -Shadows/Caption: Shadows -Shadows/Hint: Search for shadow tiddlers -Shadows/Matches: //<small><$count filter="[all[shadows]search{$:/temp/advancedsearch}]"/> matches</small>// -Standard/Caption: Standard -Standard/Hint: Search for standard tiddlers -Standard/Matches: //<small><$count filter="[!is[system]search{$:/temp/advancedsearch}]"/> matches</small>// -System/Caption: System -System/Hint: Search for system tiddlers -System/Matches: //<small><$count filter="[is[system]search{$:/temp/advancedsearch}]"/> matches</small>// +Filter/Caption: Фильтр +Filter/Hint: Поиск с помощью [[фильтров|http://tiddlywiki.com/static/Filters.html]] +Filter/Matches: //<small><$count filter={{$:/temp/advancedsearch}}/> совпадений</small>// +Matches: //<small><$count filter="[!is[system]search{$:/temp/search}]"/> совпадений</small>// +Shadows/Caption: Встроенные +Shadows/Hint: Поиск встроенных заметок +Shadows/Matches: //<small><$count filter="[all[shadows]search{$:/temp/advancedsearch}]"/> совпадений</small>// +Standard/Caption: Обычные +Standard/Hint: Поиск обычных заметок +Standard/Matches: //<small><$count filter="[!is[system]search{$:/temp/advancedsearch}]"/> совпадений</small>// +System/Caption: Системные +System/Hint: Поиск системных заметок +System/Matches: //<small><$count filter="[is[system]search{$:/temp/advancedsearch}]"/> совпадений</small>// diff --git a/languages/ru-RU/TiddlerInfo.multids b/languages/ru-RU/TiddlerInfo.multids index a395ce19b..0457eaa74 100644 --- a/languages/ru-RU/TiddlerInfo.multids +++ b/languages/ru-RU/TiddlerInfo.multids @@ -1,21 +1,21 @@ title: $:/language/TiddlerInfo/ -Advanced/Caption: Advanced -Advanced/PluginInfo/Empty/Hint: none -Advanced/PluginInfo/Heading: Plugin Details -Advanced/PluginInfo/Hint: This plugin contains the following shadow tiddlers: -Advanced/ShadowInfo/Heading: Shadow Status -Advanced/ShadowInfo/NotShadow/Hint: The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is not a shadow tiddler -Advanced/ShadowInfo/Shadow/Hint: The tiddler <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> is a shadow tiddler -Advanced/ShadowInfo/Shadow/Source: It is defined in the plugin <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link> -Advanced/ShadowInfo/OverriddenShadow/Hint: It is overridden by an ordinary tiddler -Fields/Caption: Fields -List/Caption: List -List/Empty: This tiddler does not have a list -Listed/Caption: Listed -Listed/Empty: This tiddler is not listed by any others -References/Caption: References -References/Empty: No tiddlers link to this one -Tagging/Caption: Tagging -Tagging/Empty: No tiddlers are tagged with this one -Tools/Caption: Tools +Advanced/Caption: Расширенные +Advanced/PluginInfo/Empty/Hint: нет +Advanced/PluginInfo/Heading: Сведения о плагине +Advanced/PluginInfo/Hint: Плагин содержит следующие встроенные заметки: +Advanced/ShadowInfo/Heading: Встроенность +Advanced/ShadowInfo/NotShadow/Hint: Заметка <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> не является встроенной +Advanced/ShadowInfo/Shadow/Hint: Заметка <$link to=<<infoTiddler>>><$text text=<<infoTiddler>>/></$link> является встроенной +Advanced/ShadowInfo/Shadow/Source: Она принадлежит плагину <$link to=<<pluginTiddler>>><$text text=<<pluginTiddler>>/></$link> +Advanced/ShadowInfo/OverriddenShadow/Hint: Она переопределена обычной заметкой +Fields/Caption: Поля +List/Caption: Список +List/Empty: У этой заметки нет списка +Listed/Caption: В списках +Listed/Empty: Этой заметки нет в списках +References/Caption: Ссылки +References/Empty: Другие заметки не ссылаются на эту +Tagging/Caption: Отмеченные +Tagging/Empty: Нет заметок, отмеченных этой +Tools/Caption: Инструменты From ad71a102c285ba23b3cbdbd954733232c6f696cc Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Tue, 30 Sep 2014 12:05:08 +0400 Subject: [PATCH 11/28] Sign the CLA --- licenses/cla-individual.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/licenses/cla-individual.md b/licenses/cla-individual.md index 32c37ad20..6c3ab1f26 100644 --- a/licenses/cla-individual.md +++ b/licenses/cla-individual.md @@ -172,3 +172,5 @@ Mal Gamble, @malgam, 2014/09/19 Ton Gerner, @gernert, 2014/09/19 Julie Bertrand, @Evolena, 2014/09/22 + +Andrey Yankin, @andrey013, 2014/09/30 From 40cc1fcf5ed28ccf89df89c17e239368ec70c5dc Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Tue, 30 Sep 2014 13:04:23 +0400 Subject: [PATCH 12/28] misc --- languages/ru-RU/Misc.multids | 60 ++++++++++++++++++------------------ 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/languages/ru-RU/Misc.multids b/languages/ru-RU/Misc.multids index 0e9b91d2c..647cdc86f 100644 --- a/languages/ru-RU/Misc.multids +++ b/languages/ru-RU/Misc.multids @@ -1,33 +1,33 @@ title: $:/language/ -BinaryWarning/Prompt: This tiddler contains binary data -ClassicWarning/Hint: This tiddler is written in TiddlyWiki Classic wiki text format, which is not fully compatible with TiddlyWiki version 5. See http://tiddlywiki.com/static/Upgrading.html for more details. -ClassicWarning/Upgrade/Caption: upgrade -CloseAll/Button: close all -ConfirmCancelTiddler: Do you wish to discard changes to the tiddler "<$text text=<<title>>/>"? -ConfirmDeleteTiddler: Do you wish to delete the tiddler "<$text text=<<title>>/>"? -ConfirmOverwriteTiddler: Do you wish to overwrite the tiddler "<$text text=<<title>>/>"? -ConfirmEditShadowTiddler: You are about to edit a ShadowTiddler. Any changes will override the default system making future upgrades non-trivial. Are you sure you want to edit "<$text text=<<title>>/>"? -DropMessage: Drop here (or click escape to cancel) -InvalidFieldName: Illegal characters in field name "<$text text=<<fieldName>>/>". Fields can only contain lowercase letters, digits and the characters underscore (`_`), hyphen (`-`) and period (`.`) -MissingTiddler/Hint: Missing tiddler "<$text text=<<currentTiddler>>/>" - click {{$:/core/images/edit-button}} to create +BinaryWarning/Prompt: Эта заметка содержит двоичные данные +ClassicWarning/Hint: Эта заметка написана в формате TiddlyWiki Classic WikiText, который не совместим с TiddlyWiki 5. Подробнее: http://tiddlywiki.com/static/Upgrading.html +ClassicWarning/Upgrade/Caption: обновление +CloseAll/Button: закрыть все +ConfirmCancelTiddler: Отменить изменения заметки "<$text text=<<title>>/>"? +ConfirmDeleteTiddler: Удалить заметку "<$text text=<<title>>/>"? +ConfirmOverwriteTiddler: Заменить заметку "<$text text=<<title>>/>"? +ConfirmEditShadowTiddler: Вы собираетесь редактировать встроенную заметку. Любое изменение переопределит стандартное значение и может привести к проблемам при обновлении TiddlyWiki. Вы действительно хотите редактировать "<$text text=<<title>>/>"? +DropMessage: Перетащите сюда (или нажмите escape для отмены) +InvalidFieldName: Недопустимые символы в названии поля "<$text text=<<fieldName>>/>". Поля могут содержать только латинские буквы нижнего регистра, цифры и символы: подчеркивание (`_`), дефис (`-`) и точку (`.`) +MissingTiddler/Hint: Заметка "<$text text=<<currentTiddler>>/>" отсутствует - нажмите {{$:/core/images/edit-button}} чтобы её создать RecentChanges/DateFormat: DDth MMM YYYY -RelativeDate/Future/Days: <<period>> days from now -RelativeDate/Future/Hours: <<period>> hours from now -RelativeDate/Future/Minutes: <<period>> minutes from now -RelativeDate/Future/Months: <<period>> months from now -RelativeDate/Future/Second: 1 second from now -RelativeDate/Future/Seconds: <<period>> seconds from now -RelativeDate/Future/Years: <<period>> years from now -RelativeDate/Past/Days: <<period>> days ago -RelativeDate/Past/Hours: <<period>> hours ago -RelativeDate/Past/Minutes: <<period>> minutes ago -RelativeDate/Past/Months: <<period>> months ago -RelativeDate/Past/Second: 1 second ago -RelativeDate/Past/Seconds: <<period>> seconds ago -RelativeDate/Past/Years: <<period>> years ago -SystemTiddler/Tooltip: This is a system tiddler -TagManager/Colour/Heading: Colour -TagManager/Icon/Heading: Icon -TagManager/Tag/Heading: Tag -UnsavedChangesWarning: You have unsaved changes in TiddlyWiki +RelativeDate/Future/Days: через <<period>> дней +RelativeDate/Future/Hours: через <<period>> часов +RelativeDate/Future/Minutes: через <<period>> минут +RelativeDate/Future/Months: через <<period>> месяцев +RelativeDate/Future/Second: через 1 секунду +RelativeDate/Future/Seconds: через <<period>> секунд +RelativeDate/Future/Years: через <<period>> лет +RelativeDate/Past/Days: <<period>> дней назад +RelativeDate/Past/Hours: <<period>> часов назад +RelativeDate/Past/Minutes: <<period>> минут назад +RelativeDate/Past/Months: <<period>> месяцев назад +RelativeDate/Past/Second: 1 секунду назад +RelativeDate/Past/Seconds: <<period>> секунд назад +RelativeDate/Past/Years: <<period>> лет назад +SystemTiddler/Tooltip: Это системная заметка +TagManager/Colour/Heading: Цвет +TagManager/Icon/Heading: Значок +TagManager/Tag/Heading: Метка +UnsavedChangesWarning: Изменения TiddlyWiki не сохранены From 352c3189da06e6910b204a2cce5e372443cdeb3d Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Tue, 30 Sep 2014 23:19:15 +0400 Subject: [PATCH 13/28] Russian control panel --- languages/ru-RU/ControlPanel.multids | 188 +++++++++++++-------------- 1 file changed, 94 insertions(+), 94 deletions(-) diff --git a/languages/ru-RU/ControlPanel.multids b/languages/ru-RU/ControlPanel.multids index 7bb60a790..2a7c1fb93 100644 --- a/languages/ru-RU/ControlPanel.multids +++ b/languages/ru-RU/ControlPanel.multids @@ -1,98 +1,98 @@ title: $:/language/ControlPanel/ -Advanced/Caption: Advanced -Advanced/Hint: Internal information about this TiddlyWiki -Appearance/Caption: Appearance -Appearance/Hint: Ways to customise the appearance of your TiddlyWiki. -Basics/AnimDuration/Prompt: Animation duration: -Basics/Caption: Basics -Basics/DefaultTiddlers/BottomHint: Use [[double square brackets]] for titles with spaces. Or you can choose to <$button set="$:/DefaultTiddlers" setTo="[list[$:/StoryList]]">retain story ordering</$button> -Basics/DefaultTiddlers/Prompt: Default tiddlers: -Basics/DefaultTiddlers/TopHint: Choose which tiddlers are displayed at startup: -Basics/Language/Prompt: Hello! Current language: -Basics/OverriddenShadowTiddlers/Prompt: Number of overridden shadow tiddlers: -Basics/ShadowTiddlers/Prompt: Number of shadow tiddlers: -Basics/Subtitle/Prompt: Subtitle: -Basics/SystemTiddlers/Prompt: Number of system tiddlers: -Basics/Tags/Prompt: Number of tags: -Basics/Tiddlers/Prompt: Number of tiddlers: -Basics/Title/Prompt: Title of this ~TiddlyWiki: -Basics/Username/Prompt: Username for signing edits: -Basics/Version/Prompt: ~TiddlyWiki version: -EditorTypes/Caption: Editor Types -EditorTypes/Editor/Caption: Editor -EditorTypes/Hint: These tiddlers determine which editor is used to edit specific tiddler types. -EditorTypes/Type/Caption: Type -Info/Caption: Info -Info/Hint: Information about this TiddlyWiki -LoadedModules/Caption: Loaded Modules +Advanced/Caption: Расширенные +Advanced/Hint: Системные сведения об этой TiddlyWiki +Appearance/Caption: Внешний вид +Appearance/Hint: Способы настройки внешнего вида TiddlyWiki. +Basics/AnimDuration/Prompt: Продолжительность анимации: +Basics/Caption: Основные +Basics/DefaultTiddlers/BottomHint: Заметки, содержащие пробелы нужно взять в [[двойные квадратные скобки]]. А также можно возвращать <$button set="$:/DefaultTiddlers" setTo="[list[$:/StoryList]]">открытые ранее заметки</$button> +Basics/DefaultTiddlers/Prompt: Открывать при старте: +Basics/DefaultTiddlers/TopHint: Выберите заметки открытые при запуске: +Basics/Language/Prompt: Привет! Текущий язык: +Basics/OverriddenShadowTiddlers/Prompt: Количество переопределённых встроенных заметок: +Basics/ShadowTiddlers/Prompt: Количество встроенных заметок: +Basics/Subtitle/Prompt: Подзаголовок: +Basics/SystemTiddlers/Prompt: Количество системных заметок: +Basics/Tags/Prompt: Количество меток: +Basics/Tiddlers/Prompt: Количество заметок: +Basics/Title/Prompt: Заголовок этой ~TiddlyWiki: +Basics/Username/Prompt: Имя пользователя для подписи под изменениями: +Basics/Version/Prompt: Версия ~TiddlyWiki: +EditorTypes/Caption: Редакторы +EditorTypes/Editor/Caption: Редактор +EditorTypes/Hint: Эти заметки определяют, какой редактор используется для конкретного типа заметки. +EditorTypes/Type/Caption: Тип содержимого +Info/Caption: Сведения +Info/Hint: Сведения об этой TiddlyWiki +LoadedModules/Caption: Загруженные модули LoadedModules/Hint: These are the currently loaded tiddler modules linked to their source tiddlers. Any italicised modules lack a source tiddler, typically because they were setup during the boot process. -Palette/Caption: Palette -Palette/Editor/Clone/Caption: clone -Palette/Editor/Clone/Prompt: It is recommended that you clone this shadow palette before editing it -Palette/Editor/Prompt/Modified: This shadow palette has been modified -Palette/Editor/Prompt: Editing -Palette/Editor/Reset/Caption: reset -Palette/HideEditor/Caption: hide editor -Palette/Prompt: Current palette: -Palette/ShowEditor/Caption: show editor -Plugins/Caption: Plugins -Plugins/Disable/Caption: disable -Plugins/Disable/Hint: Disable this plugin when reloading page -Plugins/Disabled/Status: (disabled) -Plugins/Empty/Hint: None -Plugins/Enable/Caption: enable -Plugins/Enable/Hint: Enable this plugin when reloading page -Plugins/Language/Prompt: Languages -Plugins/Plugin/Prompt: Plugins -Plugins/Theme/Prompt: Themes -Saving/Caption: Saving -Saving/Heading: Saving -Saving/TiddlySpot/Advanced/Heading: Advanced Settings -Saving/TiddlySpot/BackupDir: Backup Directory -Saving/TiddlySpot/Backups: Backups -Saving/TiddlySpot/Description: These settings are only used when saving to http://tiddlyspot.com or a compatible remote server -Saving/TiddlySpot/Filename: Upload Filename +Palette/Caption: Цветовая схема +Palette/Editor/Clone/Caption: скопировать +Palette/Editor/Clone/Prompt: Перед редактированием рекомендуется скопировать встроенную цветовую схему +Palette/Editor/Prompt/Modified: Эта встроенная цветовая схема изменена +Palette/Editor/Prompt: Редактирование +Palette/Editor/Reset/Caption: сброс +Palette/HideEditor/Caption: скрыть редактор +Palette/Prompt: Текущая цветовая схема: +Palette/ShowEditor/Caption: показать редактор +Plugins/Caption: Плагины +Plugins/Disable/Caption: Выключить +Plugins/Disable/Hint: Выключить этот плагин +Plugins/Disabled/Status: (выключен) +Plugins/Empty/Hint: Нет +Plugins/Enable/Caption: включить +Plugins/Enable/Hint: Выключить этот плагин +Plugins/Language/Prompt: Языки +Plugins/Plugin/Prompt: Плагины +Plugins/Theme/Prompt: Темы +Saving/Caption: Сохранение +Saving/Heading: Сохранение +Saving/TiddlySpot/Advanced/Heading: Расширенные настройки +Saving/TiddlySpot/BackupDir: Каталог для резервной копии +Saving/TiddlySpot/Backups: Резервная копия +Saving/TiddlySpot/Description: Эти настройки нужны для сохранения на http://tiddlyspot.com или совместимый с ним удаленный сервер +Saving/TiddlySpot/Filename: Имя файла для загрузки Saving/TiddlySpot/Heading: ~TiddlySpot -Saving/TiddlySpot/Hint: //The server URL defaults to `http://<wikiname>.tiddlyspot.com/store.cgi` and can be changed to use a custom server address// -Saving/TiddlySpot/Password: Password -Saving/TiddlySpot/ServerURL: Server URL -Saving/TiddlySpot/UploadDir: Upload Directory -Saving/TiddlySpot/UserName: Wiki Name -Settings/AutoSave/Caption: Autosave -Settings/AutoSave/Disabled/Description: Do not save changes automatically -Settings/AutoSave/Enabled/Description: Save changes automatically -Settings/AutoSave/Hint: Automatically save changes during editing -Settings/Caption: Settings -Settings/Hint: These settings let you customise the behaviour of TiddlyWiki. -Settings/NavigationAddressBar/Caption: Navigation Address Bar -Settings/NavigationAddressBar/Hint: Behaviour of the browser address bar when navigating to a tiddler: -Settings/NavigationAddressBar/No/Description: Do not update the address bar -Settings/NavigationAddressBar/Permalink/Description: Include the target tiddler -Settings/NavigationAddressBar/Permaview/Description: Include the target tiddler and the current story sequence -Settings/NavigationHistory/Caption: Navigation History -Settings/NavigationHistory/Hint: Update browser history when navigating to a tiddler: -Settings/NavigationHistory/No/Description: Do not update history -Settings/NavigationHistory/Yes/Description: Update history -Settings/ToolbarButtons/Caption: Toolbar Buttons -Settings/ToolbarButtons/Hint: Default toolbar button appearance: -Settings/ToolbarButtons/Icons/Description: Include icon -Settings/ToolbarButtons/Text/Description: Include text -StoryView/Caption: Story View -StoryView/Prompt: Current view: -Theme/Caption: Theme -Theme/Prompt: Current theme: -TiddlerFields/Caption: Tiddler Fields -TiddlerFields/Hint: This is the full set of TiddlerFields in use in this wiki (including system tiddlers but excluding shadow tiddlers). -Toolbars/Caption: Toolbars -Toolbars/EditToolbar/Caption: Edit Toolbar -Toolbars/EditToolbar/Hint: Choose which buttons are displayed for tiddlers in edit mode -Toolbars/Hint: Select which toolbar buttons are displayed -Toolbars/PageControls/Caption: Page Toolbar -Toolbars/PageControls/Hint: Choose which buttons are displayed on the main page toolbar -Toolbars/ViewToolbar/Caption: View Toolbar -Toolbars/ViewToolbar/Hint: Choose which buttons are displayed for tiddlers in view mode -Tools/Caption: Tools -Tools/Download/Full/Caption: Download full wiki -Tools/Export/AllAsStaticHTML/Caption: Download all tiddlers as static HTML -Tools/Export/Heading: Export +Saving/TiddlySpot/Hint: //URL сервера по умолчанию - `http://<wikiname>.tiddlyspot.com/store.cgi`. Его можно указать если используется другой сервер// +Saving/TiddlySpot/Password: Пароль +Saving/TiddlySpot/ServerURL: URL сервера +Saving/TiddlySpot/UploadDir: Каталог загрузки +Saving/TiddlySpot/UserName: Название Wiki +Settings/AutoSave/Caption: Автосохранение +Settings/AutoSave/Disabled/Description: Не сохранять изменения автоматически +Settings/AutoSave/Enabled/Description: Сохранять изменения автоматически +Settings/AutoSave/Hint: Сохранять изменения автоматически в процессе редактирования +Settings/Caption: Настройки +Settings/Hint: Эти настройки позволяют изменить поведение TiddlyWiki. +Settings/NavigationAddressBar/Caption: Адресная строка браузера +Settings/NavigationAddressBar/Hint: Поведение адресной строки браузера при открытии заметки: +Settings/NavigationAddressBar/No/Description: Не изменять адресную строку +Settings/NavigationAddressBar/Permalink/Description: Включить целевую заметку +Settings/NavigationAddressBar/Permaview/Description: Включить целевую заметку и все открытые заметки +Settings/NavigationHistory/Caption: История браузера +Settings/NavigationHistory/Hint: Обновлять историю браузера при открытии заметки: +Settings/NavigationHistory/No/Description: Не обновлять историю +Settings/NavigationHistory/Yes/Description: Обновлять историю +Settings/ToolbarButtons/Caption: Кнопки +Settings/ToolbarButtons/Hint: Внешний вид кнопок: +Settings/ToolbarButtons/Icons/Description: Показывать значок +Settings/ToolbarButtons/Text/Description: Показывать текст +StoryView/Caption: Поведение открытых заметок +StoryView/Prompt: Текущий вид: +Theme/Caption: Тема +Theme/Prompt: Текущая тема: +TiddlerFields/Caption: Поля заметок +TiddlerFields/Hint: Это полный набор полей заметок (включая системные заметки, но без встроенных). +Toolbars/Caption: Панели инструментов +Toolbars/EditToolbar/Caption: При редактировании +Toolbars/EditToolbar/Hint: Выберите кнопки, отображаемые во время редактирования заметок +Toolbars/Hint: Выберите отображаемые кнопки +Toolbars/PageControls/Caption: Боковой панели +Toolbars/PageControls/Hint: Выберите кнопки, отображаемые на боковой панели +Toolbars/ViewToolbar/Caption: При просмотре +Toolbars/ViewToolbar/Hint: Выберите кнопки, отображаемые во время просмотра заметок +Tools/Caption: Инструменты +Tools/Download/Full/Caption: Скачать wiki целиком +Tools/Export/AllAsStaticHTML/Caption: Скачать все заметки в виде статического HTML +Tools/Export/Heading: Экспорт From 9a5c7a063cf6dcb76c0eba3a10c4decfa06ccf7d Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Tue, 30 Sep 2014 23:19:44 +0400 Subject: [PATCH 14/28] Date format --- languages/ru-RU/Misc.multids | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/ru-RU/Misc.multids b/languages/ru-RU/Misc.multids index 647cdc86f..eb47864b8 100644 --- a/languages/ru-RU/Misc.multids +++ b/languages/ru-RU/Misc.multids @@ -11,7 +11,7 @@ ConfirmEditShadowTiddler: Вы собираетесь редактировать DropMessage: Перетащите сюда (или нажмите escape для отмены) InvalidFieldName: Недопустимые символы в названии поля "<$text text=<<fieldName>>/>". Поля могут содержать только латинские буквы нижнего регистра, цифры и символы: подчеркивание (`_`), дефис (`-`) и точку (`.`) MissingTiddler/Hint: Заметка "<$text text=<<currentTiddler>>/>" отсутствует - нажмите {{$:/core/images/edit-button}} чтобы её создать -RecentChanges/DateFormat: DDth MMM YYYY +RecentChanges/DateFormat: DD MMM YYYY RelativeDate/Future/Days: через <<period>> дней RelativeDate/Future/Hours: через <<period>> часов RelativeDate/Future/Minutes: через <<period>> минут From a81375b4322d7974fb4e96246c545286a3f8f324 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Tue, 30 Sep 2014 23:20:18 +0400 Subject: [PATCH 15/28] small fix --- languages/ru-RU/GettingStarted.tid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/ru-RU/GettingStarted.tid b/languages/ru-RU/GettingStarted.tid index 3116fbe5b..32f08558f 100644 --- a/languages/ru-RU/GettingStarted.tid +++ b/languages/ru-RU/GettingStarted.tid @@ -6,7 +6,7 @@ title: GettingStarted Затем вы можете: -* Создавать новые заметки, используя кнопку 'плюс' на боковой панели +* Создать новые заметки, используя кнопку 'плюс' на боковой панели * Зайти в [[панель управления|$:/ControlPanel]], используя кнопку с изображением 'шестерёнки' на боковой панели и настроить TiddlyWiki на свой вкус ** Убрать это сообщение, изменив настройку 'заметки по умолчанию' на вкладке ''Основные'' * Сохранить изменения при помощи кнопки 'скачать' на боковой панели From 3fd52fab0c3790dbb0befcec38e490cb3a19dc62 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Wed, 1 Oct 2014 00:05:54 +0400 Subject: [PATCH 16/28] LoadedModules incomplete translation --- languages/ru-RU/ControlPanel.multids | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/languages/ru-RU/ControlPanel.multids b/languages/ru-RU/ControlPanel.multids index 2a7c1fb93..19b146b3e 100644 --- a/languages/ru-RU/ControlPanel.multids +++ b/languages/ru-RU/ControlPanel.multids @@ -26,7 +26,7 @@ EditorTypes/Type/Caption: Тип содержимого Info/Caption: Сведения Info/Hint: Сведения об этой TiddlyWiki LoadedModules/Caption: Загруженные модули -LoadedModules/Hint: These are the currently loaded tiddler modules linked to their source tiddlers. Any italicised modules lack a source tiddler, typically because they were setup during the boot process. +LoadedModules/Hint: Это загруженные в настоящий момент модули, ссылающиеся на их исходные заметки. Модули, обозначенные курсивом, не имеют исходных заметок (typically because they were setup during the boot process). Palette/Caption: Цветовая схема Palette/Editor/Clone/Caption: скопировать Palette/Editor/Clone/Prompt: Перед редактированием рекомендуется скопировать встроенную цветовую схему @@ -37,7 +37,7 @@ Palette/HideEditor/Caption: скрыть редактор Palette/Prompt: Текущая цветовая схема: Palette/ShowEditor/Caption: показать редактор Plugins/Caption: Плагины -Plugins/Disable/Caption: Выключить +Plugins/Disable/Caption: выключить Plugins/Disable/Hint: Выключить этот плагин Plugins/Disabled/Status: (выключен) Plugins/Empty/Hint: Нет From 2188ecb91d5f2b70c6daec5af8034260ee1d31f1 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Wed, 1 Oct 2014 00:06:32 +0400 Subject: [PATCH 17/28] Upgrader Russian translation --- languages/ru-RU/Import.multids | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/languages/ru-RU/Import.multids b/languages/ru-RU/Import.multids index 142b81d66..ebefc9092 100644 --- a/languages/ru-RU/Import.multids +++ b/languages/ru-RU/Import.multids @@ -6,9 +6,9 @@ Listing/Import/Caption: Импортировать Listing/Select/Caption: Выбор Listing/Status/Caption: Примечание Listing/Title/Caption: Название -Upgrader/Plugins/Suppressed/Incompatible: Blocked incompatible or obsolete plugin -Upgrader/Plugins/Suppressed/Version: Blocked plugin (due to incoming <<incoming>> being older than existing <<existing>>) -Upgrader/Plugins/Upgraded: Upgraded plugin from <<incoming>> to <<upgraded>> -Upgrader/State/Suppressed: Blocked temporary state tiddler -Upgrader/System/Suppressed: Blocked system tiddler -Upgrader/ThemeTweaks/Created: Migrated theme tweak from <$text text=<<from>>/> +Upgrader/Plugins/Suppressed/Incompatible: Заблокированный несовместимый или устаревший плагин +Upgrader/Plugins/Suppressed/Version: Заблокированный плагин (импотируемый <<incoming>> старее существующего <<existing>>) +Upgrader/Plugins/Upgraded: Обновляемый плагин с версии <<incoming>> до <<upgraded>> +Upgrader/State/Suppressed: Заблокированная временная внутренняя заметка +Upgrader/System/Suppressed: Заблокированная системная заметка +Upgrader/ThemeTweaks/Created: Импортированная настройка темы из <$text text=<<from>>/> From 443dae39ba850962c65b6e6b8b5e574df2933f4e Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Wed, 1 Oct 2014 00:07:10 +0400 Subject: [PATCH 18/28] move fields translation to docs folder --- languages/ru-RU/{ => Docs}/Fields.multids | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename languages/ru-RU/{ => Docs}/Fields.multids (100%) diff --git a/languages/ru-RU/Fields.multids b/languages/ru-RU/Docs/Fields.multids similarity index 100% rename from languages/ru-RU/Fields.multids rename to languages/ru-RU/Docs/Fields.multids From e14d151273d16a115c77bbc0bec469d361b0354d Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Wed, 1 Oct 2014 00:39:28 +0400 Subject: [PATCH 19/28] types --- languages/ru-RU/Types/application_javascript.tid | 2 +- languages/ru-RU/Types/application_json.tid | 2 +- languages/ru-RU/Types/application_x_tiddler_dictionary.tid | 2 +- languages/ru-RU/Types/image_gif.tid | 4 ++-- languages/ru-RU/Types/image_jpeg.tid | 4 ++-- languages/ru-RU/Types/image_png.tid | 4 ++-- languages/ru-RU/Types/image_svg_xml.tid | 4 ++-- languages/ru-RU/Types/image_x-icon.tid | 4 ++-- languages/ru-RU/Types/text_css.tid | 2 +- languages/ru-RU/Types/text_html.tid | 4 ++-- languages/ru-RU/Types/text_plain.tid | 4 ++-- languages/ru-RU/Types/text_vnd.tiddlywiki.tid | 2 +- languages/ru-RU/Types/text_x-tiddlywiki.tid | 2 +- 13 files changed, 20 insertions(+), 20 deletions(-) diff --git a/languages/ru-RU/Types/application_javascript.tid b/languages/ru-RU/Types/application_javascript.tid index fda69c6e1..2b207ed08 100644 --- a/languages/ru-RU/Types/application_javascript.tid +++ b/languages/ru-RU/Types/application_javascript.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/application/javascript description: JavaScript code name: application/javascript -group: Developer +group: Разработка diff --git a/languages/ru-RU/Types/application_json.tid b/languages/ru-RU/Types/application_json.tid index 27b129821..bfe82ce92 100644 --- a/languages/ru-RU/Types/application_json.tid +++ b/languages/ru-RU/Types/application_json.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/application/json description: JSON data name: application/json -group: Developer +group: Разработка diff --git a/languages/ru-RU/Types/application_x_tiddler_dictionary.tid b/languages/ru-RU/Types/application_x_tiddler_dictionary.tid index 13ab6943e..5acd30275 100644 --- a/languages/ru-RU/Types/application_x_tiddler_dictionary.tid +++ b/languages/ru-RU/Types/application_x_tiddler_dictionary.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/application/x-tiddler-dictionary description: Data dictionary name: application/x-tiddler-dictionary -group: Developer +group: Разработка diff --git a/languages/ru-RU/Types/image_gif.tid b/languages/ru-RU/Types/image_gif.tid index bca7d7d28..84ccfa5ab 100644 --- a/languages/ru-RU/Types/image_gif.tid +++ b/languages/ru-RU/Types/image_gif.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/image/gif -description: GIF image +description: GIF изображение name: image/gif -group: Image +group: Изображение diff --git a/languages/ru-RU/Types/image_jpeg.tid b/languages/ru-RU/Types/image_jpeg.tid index 943f19341..1130c3604 100644 --- a/languages/ru-RU/Types/image_jpeg.tid +++ b/languages/ru-RU/Types/image_jpeg.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/image/jpeg -description: JPEG image +description: JPEG изображение name: image/jpeg -group: Image +group: Изображение diff --git a/languages/ru-RU/Types/image_png.tid b/languages/ru-RU/Types/image_png.tid index 59fb3f865..e3951cf2e 100644 --- a/languages/ru-RU/Types/image_png.tid +++ b/languages/ru-RU/Types/image_png.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/image/png -description: PNG image +description: PNG изображение name: image/png -group: Image +group: Изображение diff --git a/languages/ru-RU/Types/image_svg_xml.tid b/languages/ru-RU/Types/image_svg_xml.tid index ddb6912dd..b87be1518 100644 --- a/languages/ru-RU/Types/image_svg_xml.tid +++ b/languages/ru-RU/Types/image_svg_xml.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/image/svg+xml -description: Structured Vector Graphics image +description: Structured Vector Graphics изображение name: image/svg+xml -group: Image +group: Изображение diff --git a/languages/ru-RU/Types/image_x-icon.tid b/languages/ru-RU/Types/image_x-icon.tid index ff8d12f81..fc268f917 100644 --- a/languages/ru-RU/Types/image_x-icon.tid +++ b/languages/ru-RU/Types/image_x-icon.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/image/x-icon -description: ICO format icon file +description: ICO значок name: image/x-icon -group: Image +group: Изображение diff --git a/languages/ru-RU/Types/text_css.tid b/languages/ru-RU/Types/text_css.tid index 15785f0a0..c97ab1c2c 100644 --- a/languages/ru-RU/Types/text_css.tid +++ b/languages/ru-RU/Types/text_css.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/text/css description: Static stylesheet name: text/css -group: Developer +group: Разработка diff --git a/languages/ru-RU/Types/text_html.tid b/languages/ru-RU/Types/text_html.tid index cd8d8221e..59d7edb0f 100644 --- a/languages/ru-RU/Types/text_html.tid +++ b/languages/ru-RU/Types/text_html.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/text/html -description: HTML markup +description: HTML разметка name: text/html -group: Text +group: Текст diff --git a/languages/ru-RU/Types/text_plain.tid b/languages/ru-RU/Types/text_plain.tid index 83da10bc8..883ad13d4 100644 --- a/languages/ru-RU/Types/text_plain.tid +++ b/languages/ru-RU/Types/text_plain.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/text/plain -description: Plain text +description: Обычный текст name: text/plain -group: Text +group: Текст diff --git a/languages/ru-RU/Types/text_vnd.tiddlywiki.tid b/languages/ru-RU/Types/text_vnd.tiddlywiki.tid index e946d9a4a..422ae2170 100644 --- a/languages/ru-RU/Types/text_vnd.tiddlywiki.tid +++ b/languages/ru-RU/Types/text_vnd.tiddlywiki.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/text/vnd.tiddlywiki description: TiddlyWiki 5 name: text/vnd.tiddlywiki -group: Text +group: Текст diff --git a/languages/ru-RU/Types/text_x-tiddlywiki.tid b/languages/ru-RU/Types/text_x-tiddlywiki.tid index e593430ee..cc14cf776 100644 --- a/languages/ru-RU/Types/text_x-tiddlywiki.tid +++ b/languages/ru-RU/Types/text_x-tiddlywiki.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/text/x-tiddlywiki description: TiddlyWiki Classic name: text/x-tiddlywiki -group: Text +group: Текст From 90ac097f3884c0645386df3ecbbd5c242a7f0e7e Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Wed, 1 Oct 2014 00:41:09 +0400 Subject: [PATCH 20/28] svg --- languages/ru-RU/Types/image_svg_xml.tid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/ru-RU/Types/image_svg_xml.tid b/languages/ru-RU/Types/image_svg_xml.tid index b87be1518..a4a02a816 100644 --- a/languages/ru-RU/Types/image_svg_xml.tid +++ b/languages/ru-RU/Types/image_svg_xml.tid @@ -1,4 +1,4 @@ title: $:/language/Docs/Types/image/svg+xml -description: Structured Vector Graphics изображение +description: SVG изображение name: image/svg+xml group: Изображение From cf6c8e23fbda9e2f4465601f5c1a86e45cb20a92 Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Thu, 2 Oct 2014 12:23:22 +0400 Subject: [PATCH 21/28] Russian ModuleTypes --- languages/ru-RU/Docs/ModuleTypes.multids | 38 ++++++++++++------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/languages/ru-RU/Docs/ModuleTypes.multids b/languages/ru-RU/Docs/ModuleTypes.multids index 6f7f08d30..0941813d2 100644 --- a/languages/ru-RU/Docs/ModuleTypes.multids +++ b/languages/ru-RU/Docs/ModuleTypes.multids @@ -1,21 +1,21 @@ title: $:/language/Docs/ModuleTypes/ -animation: Animations that may be used with the RevealWidget. -command: Commands that can be executed under Node.js. -config: Data to be inserted into `$tw.config`. -filteroperator: Individual filter operator methods. -global: Global data to be inserted into `$tw`. -isfilteroperator: Operands for the ''is'' filter operator. -macro: JavaScript macro definitions. -parser: Parsers for different content types. -saver: Savers handle different methods for saving files from the browser. -startup: Startup functions. -storyview: Story views customise the animation and behaviour of list widgets. -tiddlerdeserializer: Converts different content types into tiddlers. -tiddlerfield: Defines the behaviour of an individual tiddler field. -tiddlermethod: Adds methods to the `$tw.Tiddler` prototype. -utils: Adds methods to `$tw.utils`. -utils-node: Adds Node.js-specific methods to `$tw.utils`. -widget: Widgets encapsulate DOM rendering and refreshing. -wikimethod: Adds methods to `$tw.Wiki`. -wikirule: Individual parser rules for the main WikiText parser. +animation: Анимации для виджета Reveal. +command: Команды, исполняемые Node.js. +config: Данные для вставки в `$tw.config`. +filteroperator: Отдельные методы операторов фильтра. +global: Глобальные данные для вставки в `$tw`. +isfilteroperator: Операнды для оператора фильтра ''is''. +macro: Макросы JavaScript. +parser: Парсеры для разных типов содержимого. +saver: Методы сохранения. +startup: Функции, выполняемые при загрузке. +storyview: Настройка анимации и поведения виджета List. +tiddlerdeserializer: Превращают разные типы содержимого в заметки. +tiddlerfield: Определяет поведение отдельных полей заметок. +tiddlermethod: Добавляет методы к прототипу заметки `$tw.Tiddler`. +utils: Добавляет методы в `$tw.utils`. +utils-node: Добавляет специфичные для Node.js методы в `$tw.utils`. +widget: Виджеты отвечают за отображение и обновление DOM. +wikimethod: Добавляет методы в `$tw.Wiki`. +wikirule: Отдельные правила для главного парсера WikiText. From 46749d5f466edef1dd48d42860bfb007b4d20c4e Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Thu, 2 Oct 2014 13:24:02 +0400 Subject: [PATCH 22/28] Russian fields --- languages/ru-RU/Docs/Fields.multids | 66 ++++++++++++++--------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/languages/ru-RU/Docs/Fields.multids b/languages/ru-RU/Docs/Fields.multids index 683e745e6..b4dbe745f 100644 --- a/languages/ru-RU/Docs/Fields.multids +++ b/languages/ru-RU/Docs/Fields.multids @@ -1,35 +1,35 @@ title: $:/language/Docs/Fields/ -_canonical_uri: The full URI of an external image tiddler -bag: The name of the bag from which a tiddler came -caption: The text to be displayed on a tab or button -color: The CSS color value associated with a tiddler -component: The name of the component responsible for an [[alert tiddler|AlertMechanism]] -current-tiddler: Used to cache the top tiddler in a [[history list|HistoryMechanism]] -created: The date a tiddler was created -creator: The name of the person who created a tiddler -dependents: For a plugin, lists the dependent plugin titles -description: The descriptive text for a plugin, or a modal dialogue -draft.of: For draft tiddlers, contains the title of the tiddler of which this is a draft -draft.title: For draft tiddlers, contains the proposed new title of the tiddler -footer: The footer text for a wizard -hack-to-give-us-something-to-compare-against: A temporary storage field used in [[$:/core/templates/static.content]] -icon: The title of the tiddler containing the icon associated with a tiddler -library: If set to "yes" indicates that a tiddler should be saved as a JavaScript library -list: An ordered list of tiddler titles associated with a tiddler -list-before: If set, the title of a tiddler before which this tiddler should be added to the ordered list of tiddler titles, or at the start of the list if this field is present but empty -list-after: If set, the title of the tiddler after which this tiddler should be added to the ordered list of tiddler titles -modified: The date and time at which a tiddler was last modified -modifier: The tiddler title associated with the person who last modified a tiddler -name: The human readable name associated with a plugin tiddler -plugin-priority: A numerical value indicating the priority of a plugin tiddler -plugin-type: The type of plugin in a plugin tiddler -revision: The revision of the tiddler held at the server -released: Date of a TiddlyWiki release -source: The source URL associated with a tiddler -subtitle: The subtitle text for a wizard -tags: A list of tags associated with a tiddler -text: The body text of a tiddler -title: The unique name of a tiddler -type: The content type of a tiddler -version: Version information for a plugin +_canonical_uri: Полный URI заметки, содержащей внешнюю картинку +bag: Название "мешка" заметки из TiddlyWeb +caption: Текст на вкладке или кнопке +color: CSS значение цвета заметки +component: Название компонента, ответственного за [[заметку-тревогу|AlertMechanism]] +current-tiddler: Использовалось для хранения верхней заметки в [[списке истории|HistoryMechanism]] +created: Дата создания заметки +creator: Имя создателя заметки +dependents: Для плагина, перечисляет названия зависимых плагинов +description: Описание плагина или модального окна +draft.of: Для черновиков, содержит название редактируемой заметки +draft.title: Для черновиков, содержит новое название заметки +footer: Текст "подвала" мастера +hack-to-give-us-something-to-compare-against: Временное поле используемое в [[$:/core/templates/static.content]] +icon: Название заметки, содержащей значок заметки +library: Если "yes", то заметка сохраняется как библиотека JavaScript +list: Упорядоченный список названий связанных заметок +list-before: Название заметки, перед которой эта заметка добавляется в упорядоченный список; если это поле создано и имеет пустое значение, то заметка добавляется в начало списка +list-after: Название заметки, после которой эта заметка добавляется в упорядоченный список +modified: Дата последнего изменения заметки +modifier: Имя редактора заметки +name: Название плагина +plugin-priority: Число - приоритет плагина +plugin-type: Тип плагина +revision: Версия заметки на сервере +released: Дата выпуска TiddlyWiki +source: Исходный URL связанный с заметкой +subtitle: Подзаголовок мастера +tags: Список меток связанный с заметкой +text: Содержимое заметки +title: Уникальное название заметки +type: Тип содержимого заметки +version: Версия плагина From e624f5237409a7089440163413ae61dad54effeb Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Thu, 2 Oct 2014 16:32:24 +0400 Subject: [PATCH 23/28] Russian palette colours not finished --- languages/ru-RU/Docs/PaletteColours.multids | 198 ++++++++++---------- 1 file changed, 99 insertions(+), 99 deletions(-) diff --git a/languages/ru-RU/Docs/PaletteColours.multids b/languages/ru-RU/Docs/PaletteColours.multids index 778b679c5..32e8b034a 100644 --- a/languages/ru-RU/Docs/PaletteColours.multids +++ b/languages/ru-RU/Docs/PaletteColours.multids @@ -1,101 +1,101 @@ title: $:/language/Docs/PaletteColours/ -alert-background: Alert background -alert-border: Alert border -alert-highlight: Alert highlight -alert-muted-foreground: Alert muted foreground -background: General background -blockquote-bar: Blockquote bar -dirty-indicator: Unsaved changes indicator -code-background: Code background -code-border: Code border -code-foreground: Code foreground -download-background: Download button background -download-foreground: Download button foreground -dragger-background: Dragger background -dragger-foreground: Dragger foreground -dropdown-background: Dropdown background -dropdown-border: Dropdown border -dropdown-tab-background-selected: Dropdown tab background for selected tabs -dropdown-tab-background: Dropdown tab background -dropzone-background: Dropzone background -external-link-background-hover: External link background hover -external-link-background-visited: External link background visited -external-link-background: External link background -external-link-foreground-hover: External link foreground hover -external-link-foreground-visited: External link foreground visited -external-link-foreground: External link foreground -foreground: General foreground -message-background: Message box background -message-border: Message box border -message-foreground: Message box foreground -modal-backdrop: Modal backdrop -modal-background: Modal background -modal-border: Modal border -modal-footer-background: Modal footer background -modal-footer-border: Modal footer border -modal-header-border: Modal header border -muted-foreground: General muted foreground -notification-background: Notification background -notification-border: Notification border -page-background: Page background -pre-background: Preformatted code background -pre-border: Preformatted code border -primary: General primary -sidebar-button-foreground: Sidebar button foreground -sidebar-controls-foreground-hover: Sidebar controls foreground hover -sidebar-controls-foreground: Sidebar controls foreground -sidebar-foreground-shadow: Sidebar foreground shadow -sidebar-foreground: Sidebar foreground -sidebar-muted-foreground-hover: Sidebar muted foreground hover -sidebar-muted-foreground: Sidebar muted foreground -sidebar-tab-background-selected: Sidebar tab background for selected tabs -sidebar-tab-background: Sidebar tab background -sidebar-tab-border-selected: Sidebar tab border for selected tabs -sidebar-tab-border: Sidebar tab border -sidebar-tab-divider: Sidebar tab divider -sidebar-tab-foreground-selected: Sidebar tab foreground for selected tabs -sidebar-tab-foreground: Sidebar tab foreground -sidebar-tiddler-link-foreground-hover: Sidebar tiddler link foreground hover -sidebar-tiddler-link-foreground: Sidebar tiddler link foreground -static-alert-foreground: Static alert foreground -tab-background-selected: Tab background for selected tabs -tab-background: Tab background -tab-border-selected: Tab border for selected tabs -tab-border: Tab border -tab-divider: Tab divider -tab-foreground-selected: Tab foreground for selected tabs -tab-foreground: Tab foreground -table-border: Table border -table-footer-background: Table footer background -table-header-background: Table header background -tag-background: Tag background -tag-foreground: Tag foreground -tiddler-background: Tiddler background -tiddler-border: Tiddler border -tiddler-controls-foreground-hover: Tiddler controls foreground hover -tiddler-controls-foreground-selected: Tiddler controls foreground for selected controls -tiddler-controls-foreground: Tiddler controls foreground -tiddler-editor-background: Tiddler editor background -tiddler-editor-border-image: Tiddler editor border image -tiddler-editor-border: Tiddler editor border -tiddler-editor-fields-even: Tiddler editor background for even fields -tiddler-editor-fields-odd: Tiddler editor background for odd fields -tiddler-info-background: Tiddler info panel background -tiddler-info-border: Tiddler info panel border -tiddler-info-tab-background: Tiddler info panel tab background -tiddler-link-background: Tiddler link background -tiddler-link-foreground: Tiddler link foreground -tiddler-subtitle-foreground: Tiddler subtitle foreground -tiddler-title-foreground: Tiddler title foreground -toolbar-new-button: Toolbar 'new tiddler' button foreground -toolbar-options-button: Toolbar 'options' button foreground -toolbar-save-button: Toolbar 'save' button foreground -toolbar-info-button: Toolbar 'info' button foreground -toolbar-edit-button: Toolbar 'edit' button foreground -toolbar-close-button: Toolbar 'close' button foreground -toolbar-delete-button: Toolbar 'delete' button foreground -toolbar-cancel-button: Toolbar 'cancel' button foreground -toolbar-done-button: Toolbar 'done' button foreground -untagged-background: Untagged pill background -very-muted-foreground: Very muted foreground +alert-background: Фон сообщения об ошибке +alert-border: Граница сообщения об ошибке +alert-highlight: Подсветка сообщения об ошибке +alert-muted-foreground: Приглушенный цвет текста сообщения об ошибке +background: Общий фон +blockquote-bar: Оформление цитаты +dirty-indicator: Индикатор несохранённых изменений +code-background: Фон блоков кода +code-border: Граница блоков кода +code-foreground: Цвет текста блоков кода +download-background: Фон кнопки Скачать +download-foreground: Цвет текста кнопки Скачать +dragger-background: Dragger фон +dragger-foreground: Dragger цвет текста +dropdown-background: Dropdown фон +dropdown-border: Dropdown граница +dropdown-tab-background-selected: Dropdown tab фон for selected tabs +dropdown-tab-background: Dropdown tab фон +dropzone-background: Фон области перетаскивания +external-link-background-hover: Фон внешней ссылки при наведении +external-link-background-visited: Фон посещённой внешней ссылки +external-link-background: фон внешней ссылки +external-link-foreground-hover: Цвет текста внешней ссылки при наведении +external-link-foreground-visited: Цвет текста посещённой внешней ссылки +external-link-foreground: Цвет текста внешней ссылки +foreground: Общий цвет текста +message-background: Фон сообщений +message-border: Граница сообщений +message-foreground: Цвет текста сообщений +modal-backdrop: Цвет фона за модальным окном +modal-background: Фон модального окна +modal-border: Граница модального окна +modal-footer-background: Фон подвала модального окна +modal-footer-border: Граница подвала модального окна +modal-header-border: Граница шапки модального окна +muted-foreground: Приглушенный цвет текста +notification-background: Фон уведомлений +notification-border: Граница уведомлений +page-background: Фон страницы +pre-background: Фон неформатированного текста +pre-border: Граница неформатированного текста +primary: Первичный цвет +sidebar-button-foreground: Цвет текста кнопок боковой панели +sidebar-controls-foreground-hover: Цвет элементов управления боковой панели при наведении +sidebar-controls-foreground: Цвет элементов управления боковой панели +sidebar-foreground-shadow: Цвет тени текста на боковой панели +sidebar-foreground: Цвет текста на боковой панели +sidebar-muted-foreground-hover: Приглушенный цвет текста на боковой панели при наведении +sidebar-muted-foreground: Приглушенный цвет текста на боковой панели +sidebar-tab-background-selected: Фон выбранных вкладок на боковой панели +sidebar-tab-background: Фон вкладок на боковой панели +sidebar-tab-border-selected: Граница выбранных вкладок на боковой панели +sidebar-tab-border: Граница вкладок на боковой панели +sidebar-tab-divider: Разделитель вкладок на боковой панели +sidebar-tab-foreground-selected: Цвет текста выбранных вкладок на боковой панели +sidebar-tab-foreground: Цвет текста вкладок на боковой панели +sidebar-tiddler-link-foreground-hover: Цвет ссылок на заметки на боковой панели при наведении +sidebar-tiddler-link-foreground: Цвет ссылок на заметки на боковой панели +static-alert-foreground: Static alert цвет текста +tab-background-selected: Фон выбранных вкладок +tab-background: Фон вкладок +tab-border-selected: Граница выбранных вкладок +tab-border: Граница вкладок +tab-divider: Разделитель вкладок +tab-foreground-selected: Цвет текста выбранных вкладок +tab-foreground: Цвет текста вкладок +table-border: Граница таблиц +table-footer-background: Фон подвала таблиц +table-header-background: Фон шапки таблиц +tag-background: Фон меток +tag-foreground: Цвет текста меток +tiddler-background: Фон заметок +tiddler-border: Граница заметок +tiddler-controls-foreground-hover: Цвет элементов управления заметки при наведении +tiddler-controls-foreground-selected: Цвет выбранных элементов управления заметки +tiddler-controls-foreground: Цвет элементов управления заметки +tiddler-editor-background: Фон редактора заметок +tiddler-editor-border-image: Граница редактора изображений +tiddler-editor-border: Граница редактора заметок +tiddler-editor-fields-even: Фон четных полей +tiddler-editor-fields-odd: Фон нечётных полей +tiddler-info-background: Фон информационной панели заметки +tiddler-info-border: Граница информационной панели заметки +tiddler-info-tab-background: Фон вкладок информационной панели заметки +tiddler-link-background: Фон ссылок на заметку +tiddler-link-foreground: Цвет текста ссылок на заметку +tiddler-subtitle-foreground: Цвет текста подзаголовка заметки +tiddler-title-foreground: Цвет текста заголовка заметки +toolbar-new-button: Цвет кнопки 'создать' +toolbar-options-button: Цвет кнопки 'настройки' +toolbar-save-button: Цвет кнопки 'сохранить' +toolbar-info-button: Цвет кнопки 'информация' +toolbar-edit-button: Цвет кнопки 'редактировать' +toolbar-close-button: Цвет кнопки 'закрыть' +toolbar-delete-button: Цвет кнопки 'удалить' +toolbar-cancel-button: Цвет кнопки 'отменить' +toolbar-done-button: Цвет кнопки 'готово' +untagged-background: Untagged pill фон +very-muted-foreground: Очень приглушенный цвет текста From 1c5c8990962fa11f2dc2a032668b6a80e8032a3e Mon Sep 17 00:00:00 2001 From: Andrey Yankin <yankin013@gmail.com> Date: Fri, 3 Oct 2014 11:46:03 +0400 Subject: [PATCH 24/28] dragger, dropdown, untagged pill, static alert --- languages/ru-RU/Docs/PaletteColours.multids | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/languages/ru-RU/Docs/PaletteColours.multids b/languages/ru-RU/Docs/PaletteColours.multids index 32e8b034a..9024da21d 100644 --- a/languages/ru-RU/Docs/PaletteColours.multids +++ b/languages/ru-RU/Docs/PaletteColours.multids @@ -12,12 +12,12 @@ code-border: Граница блоков кода code-foreground: Цвет текста блоков кода download-background: Фон кнопки Скачать download-foreground: Цвет текста кнопки Скачать -dragger-background: Dragger фон -dragger-foreground: Dragger цвет текста -dropdown-background: Dropdown фон -dropdown-border: Dropdown граница -dropdown-tab-background-selected: Dropdown tab фон for selected tabs -dropdown-tab-background: Dropdown tab фон +dragger-background: Фон перетаскиваемой ссылки +dragger-foreground: Цвет текста перетаскиваемой ссылки +dropdown-background: Фон выпадающего меню +dropdown-border: Граница выпадающего меню +dropdown-tab-background-selected: Фон выбранных вкладок выпадающего меню +dropdown-tab-background: Фон вкладок выпадающего меню dropzone-background: Фон области перетаскивания external-link-background-hover: Фон внешней ссылки при наведении external-link-background-visited: Фон посещённой внешней ссылки @@ -58,7 +58,7 @@ sidebar-tab-foreground-selected: Цвет текста выбранных вкл sidebar-tab-foreground: Цвет текста вкладок на боковой панели sidebar-tiddler-link-foreground-hover: Цвет ссылок на заметки на боковой панели при наведении sidebar-tiddler-link-foreground: Цвет ссылок на заметки на боковой панели -static-alert-foreground: Static alert цвет текста +static-alert-foreground: Цвет текста статической версии сообщения об ошибке tab-background-selected: Фон выбранных вкладок tab-background: Фон вкладок tab-border-selected: Граница выбранных вкладок @@ -97,5 +97,5 @@ toolbar-close-button: Цвет кнопки 'закрыть' toolbar-delete-button: Цвет кнопки 'удалить' toolbar-cancel-button: Цвет кнопки 'отменить' toolbar-done-button: Цвет кнопки 'готово' -untagged-background: Untagged pill фон +untagged-background: Фон метки 'без метки' very-muted-foreground: Очень приглушенный цвет текста From 15905f3b7a5f1d1317f104d800eb7797af4e3dc4 Mon Sep 17 00:00:00 2001 From: Jermolene <jeremy@osmosoft.com> Date: Sun, 5 Oct 2014 12:44:06 +0100 Subject: [PATCH 25/28] Correct fix for #282 Thanks @pmario and @andrey013 --- themes/tiddlywiki/vanilla/base.tid | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/themes/tiddlywiki/vanilla/base.tid b/themes/tiddlywiki/vanilla/base.tid index 8bb41eff3..b57302cd7 100644 --- a/themes/tiddlywiki/vanilla/base.tid +++ b/themes/tiddlywiki/vanilla/base.tid @@ -531,7 +531,6 @@ button.tc-tag-label, span.tc-tag-label { margin-bottom: 28px; background-color: <<colour tiddler-background>>; border: 1px solid <<colour tiddler-border>>; - overflow: hidden; /* https://github.com/Jermolene/TiddlyWiki5/issues/282 */ } .tc-tiddler-info { @@ -707,6 +706,10 @@ canvas.tc-edit-bitmapeditor { line-height: 22px; } +.tc-tiddler-title, .tc-titlebar { + overflow: hidden; /* https://github.com/Jermolene/TiddlyWiki5/issues/282 */ +} + /* ** Toolbar buttons */ From 535b695167b9a56fa081ed55f08db70be19238f9 Mon Sep 17 00:00:00 2001 From: Jermolene <jeremy@osmosoft.com> Date: Sun, 5 Oct 2014 16:18:56 +0100 Subject: [PATCH 26/28] Docs edit --- editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid b/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid index 4cb448e6e..bf17bc110 100644 --- a/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid +++ b/editions/tw5.com/tiddlers/wikitext/Lists in WikiText.tid @@ -33,7 +33,7 @@ You can also mix ordered and unordered list items: *## And the other ">> -or the other way around (numbers as first level): +Here's an example the other way around, with numbers as the first level: <<wikitext-example src:"# To do today #* Eat From cc576b052e2b05fd93fcb4f3eb8d9ee5278abf3e Mon Sep 17 00:00:00 2001 From: Jermolene <jeremy@osmosoft.com> Date: Sun, 5 Oct 2014 16:25:01 +0100 Subject: [PATCH 27/28] Fix "each" filter operator with missing tiddlers Fixes #930 --- core/modules/filters/each.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/modules/filters/each.js b/core/modules/filters/each.js index 11395c5ef..591dfeae0 100644 --- a/core/modules/filters/each.js +++ b/core/modules/filters/each.js @@ -20,7 +20,12 @@ exports.each = function(source,operator,options) { values = {}; source(function(tiddler,title) { if(tiddler) { - var value = tiddler.getFieldString(operator.operand); + var value; + if((operator.operand === "") || (operator.operand === "title")) { + value = title; + } else { + value = tiddler.getFieldString(operator.operand); + } if(!$tw.utils.hop(values,value)) { values[value] = true; results.push(title); From 3048b79a45359ce386509f4632fac3f2cced7b1b Mon Sep 17 00:00:00 2001 From: Jermolene <jeremy@osmosoft.com> Date: Sun, 5 Oct 2014 16:33:05 +0100 Subject: [PATCH 28/28] Update button widget docs Fixes #927 --- editions/tw5.com/tiddlers/widgets/ButtonWidget.tid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid b/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid index e5399fd79..cd96a91cf 100644 --- a/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid +++ b/editions/tw5.com/tiddlers/widgets/ButtonWidget.tid @@ -25,7 +25,7 @@ The content of the `<$button>` widget is displayed within the button. |setTo |The new value to assign to the TextReference identified in the `set` attribute | |popup |Title of a state tiddler for a popup that is toggled when the button is clicked | |aria-label |Optional [[Accessibility]] label | -|title |Optional tooltip | +|tooltip |Optional tooltip | |class |An optional CSS class name to be assigned to the HTML element | |style |An optional CSS style attribute to be assigned to the HTML element | |selectedClass |An optional additional CSS class to be assigned if the popup is triggered or the tiddler specified in `set` already has the value specified in `setTo` |