├── .gitignore ├── LICENSE ├── README.md ├── assets └── redactor │ ├── langs │ ├── ar.js │ ├── cs.js │ ├── da.js │ ├── de.js │ ├── en.js │ ├── es.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── he.js │ ├── hr.js │ ├── hu.js │ ├── it.js │ ├── ja.js │ ├── ko.js │ ├── nl.js │ ├── no.js │ ├── pl.js │ ├── pt_br.js │ ├── ro.js │ ├── ru.js │ ├── sk.js │ ├── sl.js │ ├── sv.js │ ├── tr.js │ ├── zh_cn.js │ └── zh_tw.js │ ├── plugins │ ├── alignment │ │ └── alignment.min.js │ ├── beyondgrammar │ │ └── beyondgrammar.min.js │ ├── clips │ │ ├── clips.min.css │ │ └── clips.min.js │ ├── counter │ │ └── counter.min.js │ ├── definedlinks │ │ └── definedlinks.min.js │ ├── filemanager │ │ ├── filemanager.min.css │ │ └── filemanager.min.js │ ├── fontcolor │ │ └── fontcolor.min.js │ ├── fontfamily │ │ └── fontfamily.min.js │ ├── fontsize │ │ └── fontsize.min.js │ ├── fullscreen │ │ └── fullscreen.min.js │ ├── handle │ │ ├── handle.min.css │ │ └── handle.min.js │ ├── imagemanager │ │ └── imagemanager.min.js │ ├── inlinestyle │ │ ├── inlinestyle.min.css │ │ └── inlinestyle.min.js │ ├── limiter │ │ └── limiter.min.js │ ├── properties │ │ └── properties.min.js │ ├── specialchars │ │ └── specialchars.min.js │ ├── table │ │ └── table.min.js │ ├── textdirection │ │ └── textdirection.min.js │ ├── textexpander │ │ └── textexpander.min.js │ ├── variable │ │ ├── variable.min.css │ │ └── variable.min.js │ ├── video │ │ └── video.min.js │ └── widget │ │ └── widget.min.js │ ├── redactor-backend-extras.css │ ├── redactor.min.css │ └── redactor.min.js ├── composer.json ├── config ├── config.yaml ├── routes.yaml └── services.yaml ├── easy-coding-standard.yml ├── screenshots └── redactor.png ├── src ├── Controller │ ├── Images.php │ └── Upload.php ├── Entity │ └── RedactorField.php ├── Extension.php ├── RedactorConfig.php ├── RedactorInjectorWidget.php └── TwigExtension.php └── templates ├── injector.html.twig └── redactor.html.twig /.gitignore: -------------------------------------------------------------------------------- 1 | ### Platfom-specific files 2 | .DS_Store 3 | thumbs.db 4 | Vagrantfile 5 | .vagrant* 6 | .idea 7 | .vscode/* 8 | appveyor.yml 9 | 10 | vendor/ 11 | composer.lock 12 | var/ 13 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Bob den Otter 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 📝 Bolt Redactor Extension 2 | 3 | This extension provides a "Redactor" field type, which is a sophisticated, 4 | lightweight and elegant WYSIWYG editor component for 5 | [Bolt](https://boltcms.io). The editor itself is developed by 6 | [Imperavi][redactor], and is licensed for usage in Bolt. 7 | 8 | This extension allows you to add fields of `type: redactor` in your 9 | ContentTypes, as defined in `contenttypes.yaml`, like any other Field type. 10 | 11 | ## Installation 12 | 13 | Note: Installation is not required if you've installed the default Bolt 14 | project. In that case it's already present. If you've installed Bolt through 15 | different means, you'll need to run the command below: 16 | 17 | ```bash 18 | composer require bolt/redactor 19 | ``` 20 | 21 | After installation, you can add it to any ContentType in your 22 | `contenttypes.yaml`, like any other field. For example: 23 | 24 | ```yaml 25 | blogposts: 26 | name: Blogposts 27 | singular_name: Blogpost 28 | fields: 29 | title: 30 | type: text 31 | slug: 32 | type: slug 33 | uses: title 34 | content: 35 | type: redactor 36 | ``` 37 | 38 | The result will be like this: 39 | 40 | ![](https://user-images.githubusercontent.com/1833361/90637112-dbf59f80-e22b-11ea-8bfd-574b72a79fdc.png) 41 | 42 | You can configure the editor in `config/extensions/bolt-redactor.yaml`. This 43 | configuration affects all the instances of the Redactor field that you've 44 | configured in your ContentTypes. The default configuration looks like this: 45 | 46 | ```yaml 47 | default: 48 | buttons: [ bold, italic, format, lists, link, html, image ] 49 | plugins: [ fullscreen, table, inlinestyle, video, widget ] 50 | source: true 51 | 52 | plugins: 53 | ~ 54 | ``` 55 | 56 | ## Configuring the buttons 57 | 58 | Bolt's version of Redactor ships with all the official plugins and options. you 59 | can add or remove buttons by configuring them in the `buttons:` and `plugins:` 60 | parameters. Check the official Redactor documentation for [all available 61 | buttons][buttons]. Note that some buttons might require you to enable the 62 | corresponding plugin as well. See here for a list of 63 | [the available plugins][plugins]. 64 | 65 | ## Settings 66 | 67 | Where applicable, you can add extra settings under the `default:` key in the 68 | `bolt-redactor.yaml` configuration. See the documentation for available 69 | settings. 70 | 71 | Note that this documentation uses Javascript, whilst Bolt's configuration uses 72 | Yaml. For example, the documentation for '[Paste][paste]' has this example: 73 | 74 | ```javascript 75 | $R('#content', { 76 | pastePlainText: true 77 | }); 78 | ``` 79 | 80 | In `bolt-redactor.yaml` you can add this as: 81 | 82 | ```yaml 83 | default: 84 | buttons: [ …] 85 | plugins: [ … ] 86 | pastePlainText: true 87 | ``` 88 | 89 | ## Adding custom plugins 90 | 91 | If you've written your own plugin for Redactor according to the documentation 92 | [for Creating Plugins][create-plugin], you can add it to the editor in Bolt, by 93 | placing it in `/public/assets/redactor/plugins`. Then, add it to the 94 | `bolt-redactor.yaml` configuration: 95 | 96 | ```yaml 97 | default: 98 | buttons: [ … ] 99 | plugins: [ … ] 100 | 101 | plugins: 102 | myplugin: [ 'myplugin/myplugin.js', 'myplugin/myplugin.css' ] 103 | ``` 104 | 105 | ------- 106 | 107 | The part below is only for _developing_ the extension. Not required for general 108 | usage of the extension in your Bolt Project 109 | 110 | ## Running PHPStan and Easy Codings Standard 111 | 112 | First, make sure dependencies are installed: 113 | 114 | ```bash 115 | COMPOSER_MEMORY_LIMIT=-1 composer update 116 | ``` 117 | 118 | And then run ECS: 119 | 120 | ```bash 121 | vendor/bin/ecs check src --fix 122 | ``` 123 | 124 | [redactor]: https://imperavi.com/redactor/ 125 | [create-plugin]: https://imperavi.com/redactor/docs/how-to/create-a-plugin/ 126 | [buttons]: https://imperavi.com/redactor/examples/buttons/change-buttons-in-the-toolbar/ 127 | [plugins]: https://imperavi.com/redactor/plugins/ 128 | [paste]: https://imperavi.com/redactor/docs/settings/paste/ 129 | -------------------------------------------------------------------------------- /assets/redactor/langs/ar.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ar'] = { 4 | "format": "تنسيق", 5 | "image": "صورة", 6 | "file": "ملف", 7 | "link": "رابط", 8 | "bold": "متين", 9 | "italic": "مائل", 10 | "deleted": "مشطوب", 11 | "underline": "مسطر", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "قوائم", 21 | "link-insert": "إدراج رابط", 22 | "link-edit": "تحرير الرابط", 23 | "link-in-new-tab": "فتح الرابط في تبويب جديد", 24 | "unlink": "إلغاء الرابط", 25 | "cancel": "إلغاء", 26 | "close": "إغلاق", 27 | "insert": "إدراج", 28 | "save": "حفظ", 29 | "delete": "حذف", 30 | "text": "النص", 31 | "edit": "تحرير", 32 | "title": "العنوان", 33 | "paragraph": "نص عادي", 34 | "quote": "اقتباس", 35 | "code": "كود", 36 | "heading1": "عنوان 1", 37 | "heading2": "عنوان 2", 38 | "heading3": "عنوان 3", 39 | "heading4": "عنوان 4", 40 | "heading5": "عنوان 5", 41 | "heading6": "عنوان 6", 42 | "filename": "الاسم", 43 | "optional": "اختياري", 44 | "unorderedlist": "قائمة نقطية", 45 | "orderedlist": "قائمة رقمية", 46 | "outdent": "زيادة المسافة البادئة", 47 | "indent": "إنقاض المسافة البادئة", 48 | "horizontalrule": "خط أفقي", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "محرر النص الغني", 53 | "caption": "الشرح", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/cs.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['cs'] = { 4 | "format": "Formát", 5 | "image": "Obrázek", 6 | "file": "Soubor", 7 | "link": "Odkaz", 8 | "bold": "Tučné", 9 | "italic": "Kurzíva", 10 | "deleted": "Přeškrtnuté", 11 | "underline": "Podtržené", 12 | "superscript": "Horní index", 13 | "subscript": "Dolní index", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Seznamy", 21 | "link_insert": "Vložit odkaz ...", 22 | "link_edit": "Upravit odkaz", 23 | "link_new_tab": "Otevírat odkaz v novém okně", 24 | "unlink": "Odstranit odkaz", 25 | "cancel": "Zrušit", 26 | "close": "Zavřít", 27 | "insert": "Vložit", 28 | "save": "Uložit", 29 | "delete": "Smazat", 30 | "text": "Text", 31 | "edit": "Upravit", 32 | "title": "Titulek", 33 | "paragraph": "Odstavec", 34 | "quote": "Citace", 35 | "code": "Kód", 36 | "header1": "Nadpis 1", 37 | "header2": "Nadpis 2", 38 | "header3": "Nadpis 3", 39 | "header4": "Nadpis 4", 40 | "header5": "Nadpis 5", 41 | "header6": "Nadpis 6", 42 | "filename": "Název (volitelné)", 43 | "optional": "volitelný", 44 | "unorderedlist": "Seznam s odrážkami", 45 | "orderedlist": "Číslovaný seznam", 46 | "outdent": "Zmenšit odsazení", 47 | "indent": "Zvětšit odsazení", 48 | "horizontalrule": "Vodorovná čára", 49 | "upload": "Nahrát", 50 | "upload-label": "Přesuňte sem soubory nebo klikněte pro výběr", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich textový editor", 53 | "caption": "Titulok", 54 | "bulletslist": "Odrážek", 55 | "numberslist": "Číslováníe", 56 | "image_position": "Zarovnání", 57 | "none": "Žádné", 58 | "left": "Vlevo", 59 | "right": "Vpravo", 60 | "center": "Center", 61 | "undo": "Zpět", 62 | "redo": "Obnovit" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/da.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['da'] = { 4 | "format": "Format", 5 | "image": "Billede", 6 | "file": "Fil", 7 | "link": "link", 8 | "bold": "Fed", 9 | "italic": "Kursiv", 10 | "deleted": "Slettet", 11 | "underline": "Understreg", 12 | "superscript": "Hævet", 13 | "subscript": "Sænket", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lister", 21 | "link-insert": "Indsæt link", 22 | "link-edit": "Redigér link", 23 | "link-in-new-tab": "Åbn link i ny fane", 24 | "unlink": "Fjern link", 25 | "cancel": "Fortryd", 26 | "close": "Luk", 27 | "insert": "Indsæt", 28 | "save": "Gem", 29 | "delete": "Slet", 30 | "text": "Tekst", 31 | "edit": "Redigér", 32 | "title": "Titel", 33 | "paragraph": "Paragraf", 34 | "quote": "Citat", 35 | "code": "Kode", 36 | "heading1": "Overskrift 1", 37 | "heading2": "Overskrift 2", 38 | "heading3": "Overskrift 3", 39 | "heading4": "Overskrift 4", 40 | "heading5": "Overskrift 5", 41 | "heading6": "Overskrift 6", 42 | "filename": "Navn", 43 | "optional": "valgfri", 44 | "unorderedlist": "Usorteret liste", 45 | "orderedlist": "Sorteret liste", 46 | "outdent": "Formindsk indrykning", 47 | "indent": "Forøg indrykning", 48 | "horizontalrule": "Vandret linje", 49 | "upload": "Upload", 50 | "upload-label": "Slip filer her eller klik for at uploade", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Tekst editor", 53 | "caption": "Caption", 54 | "bulletslist": "Punktliste", 55 | "numberslist": "Nummereret liste", 56 | "image-position": "Position", 57 | "none": "Ingen", 58 | "left": "Venstre", 59 | "right": "Højre", 60 | "center": "Center", 61 | "undo": "Fortryd", 62 | "redo": "Annullér fortryd" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/de.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang["de"] = { 4 | "format": "Format", 5 | "image": "Bild", 6 | "file": "Datei", 7 | "link": "Link", 8 | "bold": "Fett", 9 | "italic": "Kursiv", 10 | "deleted": "Durchgestrichen", 11 | "underline": "Unterstrichen", 12 | "superscript": "Hochgestellt", 13 | "subscript": "Tiefgestellt", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Hoch", 19 | "subscript-abbr": "Tief", 20 | "lists": "Liste", 21 | "link-insert": "Link einfügen", 22 | "link-edit": "Link bearbeiten", 23 | "link-in-new-tab": "Link in neuem Tab öffnen", 24 | "unlink": "Link entfernen", 25 | "cancel": "Abbrechen", 26 | "close": "Schließen", 27 | "insert": "Einfügen", 28 | "save": "Speichern", 29 | "delete": "Löschen", 30 | "text": "Text", 31 | "edit": "Bearbeiten", 32 | "title": "Titel", 33 | "paragraph": "Normaler Text", 34 | "quote": "Zitat", 35 | "code": "Code", 36 | "heading1": "Überschrift 1", 37 | "heading2": "Überschrift 2", 38 | "heading3": "Überschrift 3", 39 | "heading4": "Überschrift 4", 40 | "heading5": "Überschrift 5", 41 | "heading6": "Überschrift 6", 42 | "filename": "Name", 43 | "optional": "Optional", 44 | "unorderedlist": "Aufzählung", 45 | "orderedlist": "Nummerierung", 46 | "outdent": "Einzug verkleinern", 47 | "indent": "Einzug vergrößern", 48 | "horizontalrule": "Linie", 49 | "upload": "Upload", 50 | "upload-label": "Bilder hier ablegen oder für Upload klicken", 51 | "upload-change-label": "Neues Bild hier ablegen", 52 | "accessibility-help-label": "Rich-Text-Editor", 53 | "caption": "Beschriftung", 54 | "bulletslist": "Aufzählung", 55 | "numberslist": "Nummerierung", 56 | "image-position": "Position", 57 | "none": "Keine", 58 | "left": "Links", 59 | "right": "Rechts", 60 | "center": "Mitte", 61 | "undo": "Rückgängig", 62 | "redo": "Wiederholen", 63 | 64 | /* Table plugin */ 65 | "table": "Tabelle", 66 | "insert-table": "Tabelle einfügen", 67 | "insert-row-above": "Zeile oberhalb hinzufügen", 68 | "insert-row-below": "Zeile unterhalb hinzufügen", 69 | "insert-column-left": "Spalte links einfügen", 70 | "insert-column-right": "Spalte rechts einfügen", 71 | "add-head": "Tabellenrubrik einfügen", 72 | "delete-head": "Tabellenrubrik löschen", 73 | "delete-column": "Spalte löschen", 74 | "delete-row": "Zeile löschen", 75 | "delete-table": "Tabelle löschen", 76 | 77 | /* Fullscreen plugin */ 78 | "fullscreen": "Vollbildanzeige", 79 | 80 | /* Font color plugin */ 81 | "fontcolor": "Schriftfarbe", 82 | "highlight": "Hintergrundsfarbe", 83 | 84 | /* Font family plugin */ 85 | "fontfamily": "Schriftfamilie", 86 | "remove-font-family": "Schriftart zurücksetzen", 87 | 88 | /* Font size plugin */ 89 | "size": "Schriftgrösse", 90 | "remove-size": "Textgröße zurücksetzen", 91 | 92 | /* Imagemanager/Filemanager plugin */ 93 | "choose": "Wählen", 94 | 95 | /* Alignment plugin */ 96 | "align": "Ausrichten", 97 | "align-left": "Text links ausrichten", 98 | "align-center": "Text zentrieren", 99 | "align-right": "Text rechts ausrichten", 100 | "align-justify": "Text ausrichten", 101 | 102 | /* Video plugin */ 103 | "video": "Video", 104 | "video-html-code": "Video von Youtube oder Vimeo einbetten" 105 | }; 106 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/en.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['en'] = { 4 | "format": "Format", 5 | "image": "Image", 6 | "file": "File", 7 | "link": "Link", 8 | "bold": "Bold", 9 | "italic": "Italic", 10 | "deleted": "Strikethrough", 11 | "underline": "Underline", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lists", 21 | "link-insert": "Insert Link", 22 | "link-edit": "Edit Link", 23 | "link-in-new-tab": "Open link in new tab", 24 | "unlink": "Unlink", 25 | "cancel": "Cancel", 26 | "close": "Close", 27 | "insert": "Insert", 28 | "save": "Save", 29 | "delete": "Delete", 30 | "text": "Text", 31 | "edit": "Edit", 32 | "title": "Title", 33 | "paragraph": "Normal text", 34 | "quote": "Quote", 35 | "code": "Code", 36 | "heading1": "Heading 1", 37 | "heading2": "Heading 2", 38 | "heading3": "Heading 3", 39 | "heading4": "Heading 4", 40 | "heading5": "Heading 5", 41 | "heading6": "Heading 6", 42 | "filename": "Name", 43 | "optional": "optional", 44 | "unorderedlist": "Unordered List", 45 | "orderedlist": "Ordered List", 46 | "outdent": "Outdent", 47 | "indent": "Indent", 48 | "horizontalrule": "Line", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/es.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['es'] = { 4 | "format": "Formato", 5 | "image": "Imagen", 6 | "file": "Archivo", 7 | "link": "Enlace", 8 | "bold": "Negrita", 9 | "italic": "Cursiva", 10 | "deleted": "Tachado", 11 | "underline": "Subrayado", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "N", 15 | "italic-abbr": "C", 16 | "deleted-abbr": "T", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listas", 21 | "link-insert": "Insertar enlace", 22 | "link-edit": "Editar enlace", 23 | "link-in-new-tab": "Abrir enlace en nueva pestaña", 24 | "unlink": "Quitar enlace", 25 | "cancel": "Cancelar", 26 | "close": "Cerrar", 27 | "insert": "Insertar", 28 | "save": "Guardar", 29 | "delete": "Borrar", 30 | "text": "Texto", 31 | "edit": "Editar", 32 | "title": "Título", 33 | "paragraph": "Texto normal", 34 | "quote": "Citar", 35 | "code": "Código", 36 | "heading1": "Cabecera 1", 37 | "heading2": "Cabecera 2", 38 | "heading3": "Cabecera 3", 39 | "heading4": "Cabecera 4", 40 | "heading5": "Cabecera 5", 41 | "heading6": "Cabecera 6", 42 | "filename": "Nombre", 43 | "optional": "Opcional", 44 | "unorderedlist": "Lista sin orden", 45 | "orderedlist": "Lista ordenada", 46 | "outdent": "Quitar sangría", 47 | "indent": "Sangría", 48 | "horizontalrule": "Línea", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Editor de texto enriquecido", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); 65 | -------------------------------------------------------------------------------- /assets/redactor/langs/fa.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['fa'] = { 4 | "format": "فرمت", 5 | "image": "تصویر", 6 | "file": "فایل", 7 | "link": "لینک", 8 | "bold": "ضخیم", 9 | "italic": "کج", 10 | "deleted": "خط خورده", 11 | "underline": "زیرخط دار", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "لیست", 21 | "link-insert": "اضافه کردن لینک", 22 | "link-edit": "ویرایش لینک", 23 | "link-in-new-tab": "باز شدن لینک در صفحه جدید", 24 | "unlink": "غیرفعال کردن لینک", 25 | "cancel": "لغو", 26 | "close": "بستن", 27 | "insert": "اضافه", 28 | "save": "ذخیره", 29 | "delete": "حذف", 30 | "text": "متن", 31 | "edit": "ویرایش", 32 | "title": "عنوان", 33 | "paragraph": "متن معمولی", 34 | "quote": "نقل قول", 35 | "code": "کد", 36 | "heading1": "سربرگ ۱", 37 | "heading2": "سربرگ ۲", 38 | "heading3": "سربرگ ۳", 39 | "heading4": "سربرگ ۴", 40 | "heading5": "سربرگ ۵", 41 | "heading6": "سربرگ ۶", 42 | "filename": "نام", 43 | "optional": "اختیاری", 44 | "unorderedlist": "لیست نامرتب", 45 | "orderedlist": "لیست مرتب", 46 | "outdent": "بیرون آمدگی", 47 | "indent": "تورفتگی", 48 | "horizontalrule": "خط", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "ویرایشگر متن پیشرفته", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/fi.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['fi'] = { 4 | "format": "Muotoilut", 5 | "image": "Kuva", 6 | "file": "Tiedosto", 7 | "link": "Linkki", 8 | "bold": "Lihavointi", 9 | "italic": "Kursivointi", 10 | "deleted": "Poistettu", 11 | "underline": "Alleviivaa", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Luettelot", 21 | "link-insert": "Lisää linkki", 22 | "link-edit": "Muokkaa linkkiä", 23 | "link-in-new-tab": "Avaa linkki uudessa välilehdessä", 24 | "unlink": "Poista linkki", 25 | "cancel": "Peru", 26 | "close": "Sulkea", 27 | "insert": "Lisää", 28 | "save": "Tallenna", 29 | "delete": "Poista", 30 | "text": "Teksti", 31 | "edit": "Muokata", 32 | "title": "Title", 33 | "paragraph": "Normaaliteksti", 34 | "quote": "Lainaus", 35 | "code": "Koodi", 36 | "heading1": "Otsikko 1", 37 | "heading2": "Otsikko 2", 38 | "heading3": "Otsikko 3", 39 | "heading4": "Otsikko 4", 40 | "heading5": "Otsikko 5", 41 | "heading6": "Otsikko 6", 42 | "filename": "Nimi (valinnainen)", 43 | "optional": "valinnainen", 44 | "unorderedlist": "Luettelo luettelomerkein", 45 | "orderedlist": "Numeroitu luettelo", 46 | "outdent": "Vähennä sisennystä", 47 | "indent": "Lisää sisennystä", 48 | "horizontalrule": "Viiva", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/fr.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['fr'] = { 4 | "format": "Format", 5 | "image": "Image", 6 | "file": "Fichier", 7 | "link": "Lien", 8 | "bold": "Gras", 9 | "italic": "Italique", 10 | "deleted": "Barré", 11 | "underline": "Souligné", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listes", 21 | "link-insert": "Insérer un lien", 22 | "link-edit": "Editer le lien", 23 | "link-in-new-tab": "Ouvrir le lien dans un nouvel onglet", 24 | "unlink": "Retirer le lien", 25 | "cancel": "Annuler", 26 | "close": "Fermer", 27 | "insert": "Insérer", 28 | "save": "Sauvegarder", 29 | "delete": "Supprimer", 30 | "text": "Texte", 31 | "edit": "Editer", 32 | "title": "Titre", 33 | "paragraph": "Texte normal", 34 | "quote": "Citation", 35 | "code": "Code", 36 | "heading1": "Titre 1", 37 | "heading2": "Titre 2", 38 | "heading3": "Titre 3", 39 | "heading4": "Titre 4", 40 | "heading5": "Titre 5", 41 | "heading6": "Titre 6", 42 | "filename": "Nom", 43 | "optional": "Optionnel", 44 | "unorderedlist": "Liste non-ordonnée", 45 | "orderedlist": "Liste ordonnée", 46 | "outdent": "Réduire le retrait", 47 | "indent": "Augmenter le retrait", 48 | "horizontalrule": "Ligne", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Editeur de texte enrichi", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/he.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['he'] = { 4 | "format": "פורמט", 5 | "image": "תמונה", 6 | "file": "קובץ", 7 | "link": "קישור", 8 | "bold": "מודגש", 9 | "italic": "נטוי", 10 | "deleted": "מחוק", 11 | "underline": "Underline", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "רשימות", 21 | "link-insert": "הוסף קישור", 22 | "link-edit": "ערוך קישור", 23 | "link-in-new-tab": "פתח קישור בחלון חדש", 24 | "unlink": "הסר קישור", 25 | "cancel": "בטל", 26 | "close": "סגור", 27 | "insert": "הכנס", 28 | "save": "שמור", 29 | "delete": "מחק", 30 | "text": "טקסט", 31 | "edit": "ערוך", 32 | "title": "כותרת", 33 | "paragraph": "טקסט רגיל", 34 | "quote": "ציטוט", 35 | "code": "קוד", 36 | "heading1": "כותרת 1", 37 | "heading2": "כותרת 2", 38 | "heading3": "כותרת 3", 39 | "heading4": "כותרת 4", 40 | "heading5": "כותרת 5", 41 | "heading6": "כותרת 6", 42 | "filename": "שם", 43 | "optional": "אופציונאלי", 44 | "unorderedlist": "רשימת נקודות", 45 | "orderedlist": "רשימה ממוספרת", 46 | "outdent": "קרב לשוליים", 47 | "indent": "הרחק מהשוליים", 48 | "horizontalrule": "קו אופקי", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "עורך טקסט עשיר", 53 | "caption": "כיתוב", 54 | "bulletslist": "נקודות", 55 | "numberslist": "ממוספר", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/hr.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['en'] = { 4 | "format": "Oblikovanje", 5 | "image": "Slika", 6 | "file": "Datoteka", 7 | "link": "Poveznica", 8 | "bold": "Podebljano", 9 | "italic": "Kurziv", 10 | "deleted": "Precrtano", 11 | "underline": "Podcrtano", 12 | "superscript": "Eksponent", 13 | "subscript": "Indeks", 14 | "bold-abbr": "P", 15 | "italic-abbr": "K", 16 | "deleted-abbr": "Pr", 17 | "underline-abbr": "Po", 18 | "superscript-abbr": "Eks", 19 | "subscript-abbr": "Ind", 20 | "lists": "Liste", 21 | "link-insert": "Umetni poveznicu", 22 | "link-edit": "Uredi poveznicu", 23 | "link-in-new-tab": "Otvori poveznicu u novoj kartici", 24 | "unlink": "Ukloni poveznicu", 25 | "cancel": "Odustani", 26 | "close": "Zatvori", 27 | "insert": "Umetni", 28 | "save": "Spremi", 29 | "delete": "Obriši", 30 | "text": "Tekst", 31 | "edit": "Uredi", 32 | "title": "Naslov", 33 | "paragraph": "Obični tekst", 34 | "quote": "Citat", 35 | "code": "Kod", 36 | "heading1": "Naslov 1", 37 | "heading2": "Naslov 2", 38 | "heading3": "Naslov 3", 39 | "heading4": "Naslov 4", 40 | "heading5": "Naslov 5", 41 | "heading6": "Naslov 6", 42 | "filename": "Naziv", 43 | "optional": "opcionalno", 44 | "unorderedlist": "Lista s oznakama", 45 | "orderedlist": "Numerirana lista", 46 | "outdent": "Izvučenost", 47 | "indent": "Uvučenost", 48 | "horizontalrule": "Redak", 49 | "upload": "Učitaj", 50 | "upload-label": "Povuci datoteke ovdje ili klikni za učitavanje", 51 | "upload-change-label": "Povuci ovdje novu sliku kako bi se promijenila", 52 | "accessibility-help-label": "Rich text uređivanje", 53 | "caption": "Natpis", 54 | "bulletslist": "Natuknice", 55 | "numberslist": "Brojevi", 56 | "image-position": "Pozicija", 57 | "none": "Nijedno", 58 | "left": "Lijevo", 59 | "right": "Desno", 60 | "center": "Sredina", 61 | "undo": "Poništi korak", 62 | "redo": "Ponovi korak" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/hu.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['hu'] = { 4 | "format": "Formázás", 5 | "image": "Kép", 6 | "file": "Fájl", 7 | "link": "Hivatkozás", 8 | "bold": "Félkövér", 9 | "italic": "Dőlt", 10 | "deleted": "Áthúzott", 11 | "underline": "Aláhúzott", 12 | "superscript": "Felső index", 13 | "subscript": "Alsó index", 14 | "bold-abbr": "F", 15 | "italic-abbr": "D", 16 | "deleted-abbr": "H", 17 | "underline-abbr": "A", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listák", 21 | "link-insert": "Hivatkozás beszúrása", 22 | "link-edit": "Hivatkozás módosítása", 23 | "link-in-new-tab": "Megnyitás új lapon", 24 | "unlink": "Hivatkozás törlése", 25 | "cancel": "Mégsem", 26 | "close": "Bezárás", 27 | "insert": "Beillesztés", 28 | "save": "Mentés", 29 | "delete": "Törlés", 30 | "text": "Szöveg", 31 | "edit": "Szerkesztés", 32 | "title": "Cím", 33 | "paragraph": "Normál szöveg", 34 | "quote": "Idézet", 35 | "code": "Forráskód", 36 | "heading1": "Címsor 1", 37 | "heading2": "Címsor 2", 38 | "heading3": "Címsor 3", 39 | "heading4": "Címsor 4", 40 | "heading5": "Címsor 5", 41 | "heading6": "Címsor 6", 42 | "filename": "Név", 43 | "optional": "választható", 44 | "unorderedlist": "Rendezett lista", 45 | "orderedlist": "Számozott lista", 46 | "outdent": "Behúzás csökkentése", 47 | "indent": "Behúzás növelése", 48 | "horizontalrule": "Vonal", 49 | "upload": "Feltöltés", 50 | "upload-label": "Át a fájlokat vagy kattintson ide, hogy kiválassza", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Szövegszerkesztő", 53 | "caption": "Felirat", 54 | "bulletslist": "Golyók", 55 | "numberslist": "Számok", 56 | "image-position": "Pozíció", 57 | "none": "Egyik sem", 58 | "left": "Balra", 59 | "right": "Jobb", 60 | "center": "Középre", 61 | "undo": "Kibont", 62 | "redo": "Újra" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/it.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['it'] = { 4 | "format": "Formato", 5 | "image": "Immagine", 6 | "file": "File", 7 | "link": "Link", 8 | "bold": "Grassetto", 9 | "italic": "Corsivo", 10 | "deleted": "Barrato", 11 | "underline": "Sottolineato", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "G", 15 | "italic-abbr": "C", 16 | "deleted-abbr": "B", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Liste", 21 | "link-insert": "Inserisci link", 22 | "link-edit": "Modifica link", 23 | "link-in-new-tab": "Apri link in un nuovo tab", 24 | "unlink": "Elimina link", 25 | "cancel": "Annulla", 26 | "close": "Chiudi", 27 | "insert": "Inserisci", 28 | "save": "Salva", 29 | "delete": "Cancella", 30 | "text": "Testo", 31 | "edit": "Modifica", 32 | "title": "Titolo", 33 | "paragraph": "Testo Normale", 34 | "quote": "Citazione", 35 | "code": "Codice", 36 | "heading1": "Titolo 1", 37 | "heading2": "Titolo 2", 38 | "heading3": "Titolo 3", 39 | "heading4": "Titolo 4", 40 | "heading5": "Titolo 5", 41 | "heading6": "Titolo 6", 42 | "filename": "Nome", 43 | "optional": "opzionale", 44 | "unorderedlist": "Lista non ordinata", 45 | "orderedlist": "Lista ordinata", 46 | "outdent": "De-indenta", 47 | "indent": "Indenta", 48 | "horizontalrule": "Linea", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Editor di testo", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/ja.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ja'] = { 4 | "format": "フォーマットする", 5 | "image": "画像", 6 | "file": "ファイル", 7 | "link": "リンク", 8 | "bold": "太字", 9 | "italic": "イタリック体", 10 | "deleted": "取り消し線", 11 | "underline": "下線", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "リスト", 21 | "link-insert": "リンクを挿入する", 22 | "link-edit": "リンクを編集する", 23 | "link-in-new-tab": "新しいタブでリンクを開く", 24 | "unlink": "リンクを解除する", 25 | "cancel": "取り消す", 26 | "close": "閉じる", 27 | "insert": "挿入する", 28 | "save": "保存する", 29 | "delete": "削除する", 30 | "text": "テキスト", 31 | "edit": "編集する", 32 | "title": "タイトル", 33 | "paragraph": "標準テキスト", 34 | "quote": "引用", 35 | "code": "コード", 36 | "heading1": "見出し 1", 37 | "heading2": "見出し 2", 38 | "heading3": "見出し 3", 39 | "heading4": "見出し 4", 40 | "heading5": "見出し 5", 41 | "heading6": "見出し 6", 42 | "filename": "名前", 43 | "optional": "任意", 44 | "unorderedlist": "番号なしリスト", 45 | "orderedlist": "番号付きリスト", 46 | "outdent": "インデントを戻す", 47 | "indent": "インデントする", 48 | "horizontalrule": "線", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "リッチテキストエディタ", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/ko.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ko'] = { 4 | "format": "포맷", 5 | "image": "이미지", 6 | "file": "파일", 7 | "link": "링크", 8 | "bold": "굵게", 9 | "italic": "기울임꼴", 10 | "deleted": "취소선", 11 | "underline": "밑줄", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "목록", 21 | "link-insert": "링크 삽입", 22 | "link-edit": "링크 편집", 23 | "link-in-new-tab": "새 탭에 링크 열기", 24 | "unlink": "링크 끊기", 25 | "cancel": "취소", 26 | "close": "닫기", 27 | "insert": "삽입", 28 | "save": "저장", 29 | "delete": "삭제", 30 | "text": "글", 31 | "edit": "편집", 32 | "title": "제목", 33 | "paragraph": "보통 글", 34 | "quote": "인용", 35 | "code": "코드", 36 | "heading1": "제목 1", 37 | "heading2": "제목 2", 38 | "heading3": "제목 3", 39 | "heading4": "제목 4", 40 | "heading5": "제목 5", 41 | "heading6": "제목 6", 42 | "filename": "이름", 43 | "optional": "선택", 44 | "unorderedlist": "주문 안된 목록", 45 | "orderedlist": "주문 목록", 46 | "outdent": "내어쓰기", 47 | "indent": "들여쓰기", 48 | "horizontalrule": "행", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text 편집기", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/nl.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['nl'] = { 4 | "format": "Format", 5 | "image": "Afbeelding", 6 | "file": "Bestand", 7 | "link": "Link", 8 | "bold": "Vet", 9 | "italic": "Cursief", 10 | "deleted": "Doorstreept", 11 | "underline": "Onderstreept", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lijsten", 21 | "link-insert": "Link invoegen", 22 | "link-edit": "Link Bewerken", 23 | "link-in-new-tab": "Open link in nieuw tabblad", 24 | "unlink": "Ontkoppelen", 25 | "cancel": "Annuleren", 26 | "close": "Afsluiten", 27 | "insert": "Invoegen", 28 | "save": "Opslaan", 29 | "delete": "Verwijder", 30 | "text": "Tekst", 31 | "edit": "Bewerken", 32 | "title": "Titel", 33 | "paragraph": "Normale tekst", 34 | "quote": "Citaat", 35 | "code": "Code", 36 | "heading1": "Koptekst 1", 37 | "heading2": "Koptekst 2", 38 | "heading3": "Koptekst 3", 39 | "heading4": "Koptekst 4", 40 | "heading5": "Koptekst 5", 41 | "heading6": "Koptekst 6", 42 | "filename": "Bestandsnaam", 43 | "optional": "Optioneel", 44 | "unorderedlist": "Ongeordende lijst", 45 | "orderedlist": "Geordende lijst", 46 | "outdent": "Uitspringen", 47 | "indent": "Inspringen", 48 | "horizontalrule": "Streep", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "RTF editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/no.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['no'] = { 4 | "format": "Format", 5 | "image": "Bilde", 6 | "file": "Fil", 7 | "link": "Link", 8 | "bold": "Fet", 9 | "italic": "Kursiv", 10 | "deleted": "Gjennomstreking", 11 | "underline": "Understreking", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "F", 15 | "italic-abbr": "K", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Punkt", 21 | "link-insert": "Sett inn link", 22 | "link-edit": "Rediger link", 23 | "link-in-new-tab": "Åpne link i ny fane", 24 | "unlink": "Fjern Understreking", 25 | "cancel": "Abryt", 26 | "close": "Lukk", 27 | "insert": "Sett inn", 28 | "save": "Lagre", 29 | "delete": "Slett", 30 | "text": "Tekst", 31 | "edit": "Rediger", 32 | "title": "Tittel", 33 | "paragraph": "Normal tekst", 34 | "quote": "Sitat", 35 | "code": "Kode", 36 | "heading1": "Overskrift 1", 37 | "heading2": "Overskrift 2", 38 | "heading3": "Overskrift 3", 39 | "heading4": "Overskrift 4", 40 | "heading5": "Overskrift 5", 41 | "heading6": "Overskrift 6", 42 | "filename": "Navn", 43 | "optional": "valgfri", 44 | "unorderedlist": "Unordered List", 45 | "orderedlist": "Punktliste", 46 | "outdent": "Reduser innrykk", 47 | "indent": "Øk innrykk", 48 | "horizontalrule": "Linje", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rik-tekst behandler", 53 | "caption": "Bildetekst", 54 | "bulletslist": "Punkter", 55 | "numberslist": "Nummerering", 56 | "image-position": "Posisjon", 57 | "none": "Ingen", 58 | "left": "Venstre", 59 | "right": "Høgre", 60 | "center": "Senter", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/pl.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['pl'] = { 4 | "format": "Formatuj", 5 | "image": "Obrazek", 6 | "file": "Plik", 7 | "link": "Link", 8 | "bold": "Pogrubienie", 9 | "italic": "Kursywa", 10 | "deleted": "Przekreślenie", 11 | "underline": "Podkreślenie", 12 | "superscript": "Indeks górny", 13 | "subscript": "Indeks dolny", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lista", 21 | "link-insert": "Wstaw link", 22 | "link-edit": "Edytuj link", 23 | "link-in-new-tab": "Otwórz link w nowej karcie", 24 | "unlink": "Usuń link", 25 | "cancel": "Anuluj", 26 | "close": "Zamknij", 27 | "insert": "Wstaw", 28 | "save": "Zapisz", 29 | "delete": "Usuń", 30 | "text": "Text", 31 | "edit": "Edytuj", 32 | "title": "Tytuł", 33 | "paragraph": "Zwykły tekst", 34 | "quote": "Cytat", 35 | "code": "Kod", 36 | "heading1": "Nagłówek 1", 37 | "heading2": "Nagłówek 2", 38 | "heading3": "Nagłówek 3", 39 | "heading4": "Nagłówek 4", 40 | "heading5": "Nagłówek 5", 41 | "heading6": "Nagłówek 6", 42 | "filename": "Nazwa", 43 | "optional": "opcjonalnie", 44 | "unorderedlist": "Lista punktowana", 45 | "orderedlist": "Lista numerowana", 46 | "outdent": "Zmniejsz wcięcie", 47 | "indent": "Zwiększ wcięcie", 48 | "horizontalrule": "Linia pozioma", 49 | "upload": "Przekazać plik", 50 | "upload-label": "Upuść pliki tutaj lub kliknij, aby przesłać", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Edytor tekstu", 53 | "caption": "Podpis", 54 | "bulletslist": "Kule", 55 | "numberslist": "Liczby", 56 | "image-position": "Pozycja", 57 | "none": "Żaden", 58 | "left": "Lewo", 59 | "right": "Prawa", 60 | "center": "Centrum", 61 | "undo": "Cofnij", 62 | "redo": "Ponów" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/pt_br.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['pt_br'] = { 4 | "format": "Formato", 5 | "image": "Imagem", 6 | "file": "Arquivo", 7 | "link": "Link", 8 | "bold": "Negrito", 9 | "italic": "Itálico", 10 | "deleted": "Tachado", 11 | "underline": "Sublinhado", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "N", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "T", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listas", 21 | "link-insert": "Inserir link", 22 | "link-edit": "Editar link", 23 | "link-in-new-tab": "Abrir link em nova guia", 24 | "unlink": "Desvincular", 25 | "cancel": "Cancelar", 26 | "close": "Fechar", 27 | "insert": "Inserir", 28 | "save": "Salvar", 29 | "delete": "Excluir", 30 | "text": "Texto", 31 | "edit": "Editar", 32 | "title": "Título", 33 | "paragraph": "Texto normal", 34 | "quote": "Citação", 35 | "code": "Código", 36 | "header1": "Cabeçalho 1", 37 | "header2": "Cabeçalho 2", 38 | "header3": "Cabeçalho 3", 39 | "header4": "Cabeçalho 4", 40 | "header5": "Cabeçalho 5", 41 | "header6": "Cabeçalho 6", 42 | "filename": "Nome", 43 | "optional": "Opcional", 44 | "unorderedlist": "Lista não ordenada", 45 | "orderedlist": "Lista ordenada", 46 | "outdent": "Diminuir recuo", 47 | "indent": "Recuar", 48 | "horizontalrule": "Linha", 49 | "upload": "Enviar", 50 | "upload-label": "Solte os arquivos aqui ou clique para enviar", 51 | "upload-change-label": "Solte uma nova imagem para alterar", 52 | "accessibility-help-label": "Editor de Rich Text", 53 | "caption": "Subtitulo", 54 | "bulletslist": "Lista com ponto", 55 | "numberslist": "Lista numérica", 56 | "image-position": "Posição", 57 | "none": "Nenhum", 58 | "left": "Esquerda", 59 | "right": "Direita", 60 | "center": "Centro", 61 | "undo": "Desfazer", 62 | "redo": "Refazer", 63 | "table": "Tabela", 64 | "insert-table": "Inserir tabela", 65 | "insert-row-above": "Inserir linha à acima", 66 | "insert-row-below": "Inserir linha à abaixo", 67 | "insert-column-left": "Inserir coluna à esquerda", 68 | "insert-column-right": "Inserir coluna à direita", 69 | "add-head": "Adicionar cabeçalho", 70 | "delete-head": "Remover cabeçalho", 71 | "delete-column": "Remover coluna", 72 | "delete-row": "Remover linha", 73 | "delete-table": "Remover tabela", 74 | "fontcolor": "Cor do texto", 75 | "text": "Texto", 76 | "highlight": "Destaque", 77 | "fontfamily": "Fonte", 78 | "remove-font-family": "Remover fonte", 79 | "choose": "Escolher", 80 | "size": "Tamanho", 81 | "remove-size": "Remover tamanho da fonte", 82 | "fullscreen": "Tela cheia", 83 | "align": "Alinhar", 84 | "align-left": "Alinhar à esquerda", 85 | "align-center": "Alinhar ao centro", 86 | "align-right": "Alinhar à direita", 87 | "align-justify": "Alinhar justificado", 88 | "words": "Palavras", 89 | "chars": "Caracteres", 90 | "style": "Estilo", 91 | "properties": "Propriedades", 92 | "specialchars": "Caracteres especiais", 93 | "change-text-direction": "Direção do texto", 94 | "left-to-right": "Esquerda para direita", 95 | "right-to-left": "Direita para esquerda", 96 | "change": "Trocar", 97 | "variable": "Variável", 98 | "variable-select": "Por favor, selecione a variável", 99 | "video": "Vídeo", 100 | "video-html-code": "Código de incorporação de vídeo ou link do YouTube/Vimeo", 101 | "widget": "Widget", 102 | "widget-html-code": "Código HTML do Widget" 103 | }; 104 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/ro.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ro'] = { 4 | "format": "Format", 5 | "image": "Imagine", 6 | "file": "Fișier", 7 | "link": "Link", 8 | "bold": "Aldin", 9 | "italic": "Cursiv", 10 | "deleted": "Tăiere cu o linie", 11 | "underline": "Subliniere", 12 | "superscript": "Exponent", 13 | "subscript": "Indice", 14 | "bold-abbr": "A", 15 | "italic-abbr": "C", 16 | "deleted-abbr": "T", 17 | "underline-abbr": "S", 18 | "superscript-abbr": "Exp", 19 | "subscript-abbr": "Ind", 20 | "lists": "Liste", 21 | "link-insert": "Inserare link", 22 | "link-edit": "Editare link", 23 | "link-in-new-tab": "Deschidere link în filă nouă", 24 | "unlink": "Anulare link", 25 | "cancel": "Revocare", 26 | "close": "Închidere", 27 | "insert": "Inserare", 28 | "save": "Salvare", 29 | "delete": "Ștergere", 30 | "text": "Text", 31 | "edit": "Editare", 32 | "title": "Titlu", 33 | "paragraph": "Text normal", 34 | "quote": "Citat", 35 | "code": "Cod", 36 | "heading1": "Antet 1", 37 | "heading2": "Antet 2", 38 | "heading3": "Antet 3", 39 | "heading4": "Antet 4", 40 | "heading5": "Antet 5", 41 | "heading6": "Antet 6", 42 | "filename": "Nume", 43 | "optional": "opțional", 44 | "unorderedlist": "Listă neordonată", 45 | "orderedlist": "Listă ordonată", 46 | "outdent": "Indentare negativă", 47 | "indent": "Indentare", 48 | "horizontalrule": "Linie", 49 | "upload": "Încărcare", 50 | "upload-label": "Fixați fișierele aici sau faceți clic pentru a le încărca", 51 | "upload-change-label": "Fixați o nouă imagine pentru a schimba", 52 | "accessibility-help-label": "Editor de text îmbogățit", 53 | "caption": "Legendă", 54 | "bulletslist": "Marcatori", 55 | "numberslist": "Numere", 56 | "image-position": "Poziție", 57 | "none": "Niciuna/niciunul", 58 | "left": "Stânga", 59 | "right": "Dreapta", 60 | "center": "Centru", 61 | "undo": "Anulare", 62 | "redo": "Refacere" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/ru.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['ru'] = { 4 | "format": "Формат", 5 | "image": "Картинка", 6 | "file": "Файл", 7 | "link": "Ссылка", 8 | "bold": "Полужирный", 9 | "italic": "Курсив", 10 | "deleted": "Зачеркнутый", 11 | "underline": "Подчеркнутый", 12 | "superscript": "Надстрочный", 13 | "subscript": "Подстрочный", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Списки", 21 | "link-insert": "Вставить ссылку", 22 | "link-edit": "Редактировать ссылку", 23 | "link-in-new-tab": "Открыть ссылку в новом табе", 24 | "unlink": "Удалить ссылку", 25 | "cancel": "Отменить", 26 | "close": "Закрыть", 27 | "insert": "Вставить", 28 | "save": "Сохранить", 29 | "delete": "Удалить", 30 | "text": "Текст", 31 | "edit": "Редактировать", 32 | "title": "Title", 33 | "paragraph": "Обычный текст", 34 | "quote": "Цитата", 35 | "code": "Код", 36 | "heading1": "Заголовок 1", 37 | "heading2": "Заголовок 2", 38 | "heading3": "Заголовок 3", 39 | "heading4": "Заголовок 4", 40 | "heading5": "Заголовок 5", 41 | "heading6": "Заголовок 6", 42 | "filename": "Имя файла", 43 | "optional": "необязательно", 44 | "unorderedlist": "Ненумерованный список", 45 | "orderedlist": "Нумерованный список", 46 | "outdent": "Убрать отступ", 47 | "indent": "Добавить отступ", 48 | "horizontalrule": "Линия", 49 | "upload": "Загрузить", 50 | "upload-label": "Перетащите файлы или нажмите для загрузки", 51 | "upload-change-label": "Перетащите новую картинку", 52 | "accessibility-help-label": "Редактор форматированного текста", 53 | "caption": "Подпись", 54 | "bulletslist": "Маркеры", 55 | "numberslist": "Нумерация", 56 | "image-position": "Обтекание", 57 | "none": "Нет", 58 | "left": "Слева", 59 | "right": "Справа", 60 | "center": "По центру", 61 | "undo": "Отменить", 62 | "redo": "Повторить" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/sk.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['sk'] = { 4 | "format": "Formát", 5 | "image": "Obrázok", 6 | "file": "Súbor", 7 | "link": "Odkaz", 8 | "bold": "Tučné", 9 | "italic": "Kurzíva", 10 | "deleted": "Preškrtnuté", 11 | "underline": "Podčiarknuté", 12 | "superscript": "Horný index", 13 | "subscript": "Spodný index", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Zoznam", 21 | "link-insert": "Vložiť odkaz", 22 | "link-edit": "Upraviť odkaz", 23 | "link-in-new-tab": "Otvoriť odkaz v novom okne", 24 | "unlink": "Zrušiť odkaz", 25 | "cancel": "Zrušiť", 26 | "close": "Zatvoriť", 27 | "insert": "Vložiť", 28 | "save": "Uložiť", 29 | "delete": "Vymazať", 30 | "text": "Text", 31 | "edit": "Upraviť", 32 | "title": "Názov", 33 | "paragraph": "Odsek", 34 | "quote": "Citácia", 35 | "code": "Kód", 36 | "heading1": "Nadpis 1", 37 | "heading2": "Nadpis 2", 38 | "heading3": "Nadpis 3", 39 | "heading4": "Nadpis 4", 40 | "heading5": "Nadpis 5", 41 | "heading6": "Nadpis 6", 42 | "filename": "Meno", 43 | "optional": "voliteľné", 44 | "unorderedlist": "Nezoradený zoznam", 45 | "orderedlist": "Zoradený zoznam", 46 | "outdent": "Predsadiť", 47 | "indent": "Odsadiť", 48 | "horizontalrule": "Linka", 49 | "upload": "Nahrať", 50 | "upload-label": "Presuňte sem súbory alebo kliknite pre výber", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Titulok", 54 | "bulletslist": "odrážkový zoznam", 55 | "numberslist": "číslovaný zoznam", 56 | "image-position": "Pozícia", 57 | "none": "Žiadne", 58 | "left": "Vľavo", 59 | "right": "Vpravo", 60 | "center": "Na stred", 61 | "undo": "Späť", 62 | "redo": "Obnoviť" 63 | }; 64 | })(Redactor); 65 | -------------------------------------------------------------------------------- /assets/redactor/langs/sl.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['sl'] = { 4 | "format": "Oblikovanje", 5 | "image": "Slika", 6 | "file": "Datoteka", 7 | "link": "Povezava", 8 | "bold": "Krepko", 9 | "italic": "Ležeče", 10 | "deleted": "Prečrtano", 11 | "underline": "Podčrtano", 12 | "superscript": "Nadpisano", 13 | "subscript": "Podpisano", 14 | "bold-abbr": "K", 15 | "italic-abbr": "L", 16 | "deleted-abbr": "P", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Nad", 19 | "subscript-abbr": "Pod", 20 | "lists": "Seznami", 21 | "link-insert": "Vstavi povezavo", 22 | "link-edit": "Uredi povezavo", 23 | "link-in-new-tab": "Odpri povezavo v novem zavihku", 24 | "unlink": "Odstrani povezavo", 25 | "cancel": "Prekliči", 26 | "close": "Zapri", 27 | "insert": "Vstavi", 28 | "save": "Shrani", 29 | "delete": "Izbriši", 30 | "text": "Besedilo", 31 | "edit": "Uredi", 32 | "title": "Naslov", 33 | "paragraph": "Navadno besedilo", 34 | "quote": "Navedek", 35 | "code": "Koda", 36 | "heading1": "Naslov 1", 37 | "heading2": "Naslov 2", 38 | "heading3": "Naslov 3", 39 | "heading4": "Naslov 4", 40 | "heading5": "Naslov 5", 41 | "heading6": "Naslov 6", 42 | "filename": "Ime", 43 | "optional": "izbirno", 44 | "unorderedlist": "Označen seznam", 45 | "orderedlist": "Oštevilčen seznam", 46 | "outdent": "Zmanjšaj zamik", 47 | "indent": "Povečaj zamik", 48 | "horizontalrule": "Črta", 49 | "upload": "Naloži", 50 | "upload-label": "Povleci datoteke sem ali klikni za nalaganje", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Urejevalnik obogatenega besedila", 53 | "caption": "Napis", 54 | "bulletslist": "Oznake", 55 | "numberslist": "Številčenje", 56 | "image-position": "Položaj", 57 | "none": "Brez", 58 | "left": "Levo", 59 | "right": "Desno", 60 | "center": "Sredinsko", 61 | "undo": "Razveljavi", 62 | "redo": "Uveljavi" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/sv.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['sv'] = { 4 | "format": "Format", 5 | "image": "Bild", 6 | "file": "Fil", 7 | "link": "Länk", 8 | "bold": "Fet", 9 | "italic": "Kursiv", 10 | "deleted": "Överstruken", 11 | "underline": "Understruken", 12 | "superscript": "Upphöjd", 13 | "subscript": "Nedsänkt", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Lista", 21 | "link-insert": "Infoga länk", 22 | "link-edit": "Redigera länk", 23 | "link-in-new-tab": "Öppna länk i nytt fönster", 24 | "unlink": "Radera länk", 25 | "cancel": "Avbryt", 26 | "close": "Stäng", 27 | "insert": "Infoga", 28 | "save": "Spara", 29 | "delete": "Radera", 30 | "text": "Text", 31 | "edit": "Redigera", 32 | "title": "Titel", 33 | "paragraph": "Normal text", 34 | "quote": "Citat", 35 | "code": "Kod", 36 | "heading1": "Titel 1", 37 | "heading2": "Titel 2", 38 | "heading3": "Titel 3", 39 | "heading4": "Titel 4", 40 | "heading5": "Titel 5", 41 | "heading6": "Titel 6", 42 | "filename": "Namn", 43 | "optional": "valfritt", 44 | "unorderedlist": "Osorterad lista", 45 | "orderedlist": "Sorterad lista", 46 | "outdent": "Minska utdrag", 47 | "indent": "Öka utdrag", 48 | "horizontalrule": "Linje", 49 | "upload": "Ladda upp", 50 | "upload-label": "Släpp filer här eller klicka för att ladda upp", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Textredigerare", 53 | "caption": "Undertext", 54 | "bulletslist": "Punkter", 55 | "numberslist": "Nummer", 56 | "image-position": "Position", 57 | "none": "Ingen", 58 | "left": "Vänster", 59 | "right": "Höger", 60 | "center": "Centrerad", 61 | "undo": "Ångra", 62 | "redo": "Gör om", 63 | 64 | /* Table plugin */ 65 | "table": "Tabell", 66 | "insert-table": "Infoga tabell", 67 | "insert-row-above": "Infoga rad ovanför", 68 | "insert-row-below": "Infoga rad undertill", 69 | "insert-column-left": "Infoga kolumn till vänster", 70 | "insert-column-right": "Infoga kolumn till höger", 71 | "add-head": "Lägg till rubrikrad", 72 | "delete-head": "Ta bort rubrikrad", 73 | "delete-column": "Ta bort kolumn", 74 | "delete-row": "Ta bort rad", 75 | "delete-table": "Ta bort tabell", 76 | 77 | /* Fullscreen plugin */ 78 | "fullscreen": "Fullskärm", 79 | 80 | /* Font color plugin */ 81 | "fontcolor": "Textfärg", 82 | "highlight": "Färgöverstrykning", 83 | 84 | /* Font family plugin */ 85 | "fontfamily": "Typsnitt", 86 | "remove-font-family": "Återställ typsnitt", 87 | 88 | /* Font size plugin */ 89 | "size": "Storlek", 90 | "remove-size": "Återställ textstorlek", 91 | 92 | /* Imagemanager/Filemanager plugin */ 93 | "choose": "Välj", 94 | 95 | /* Alignment plugin */ 96 | "align": "Justera", 97 | "align-left": "Vänsterjustera", 98 | "align-center": "Mittenjustera", 99 | "align-right": "Högerjustera", 100 | "align-justify": "Marginaljustera", 101 | 102 | /* Video plugin */ 103 | "video": "Video", 104 | "video-html-code": "Inbäddningslänk eller Youtube/Vimeo länk" 105 | 106 | }; 107 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/tr.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['tr'] = { 4 | "format": "Format", 5 | "image": "Görsel", 6 | "file": "Dosya", 7 | "link": "Link", 8 | "bold": "Kalın", 9 | "italic": "İtalik", 10 | "deleted": "Üzeri çizgili", 11 | "underline": "Altı çizgili", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "Listeleme", 21 | "link-insert": "Link ekle", 22 | "link-edit": "Linki düzenle", 23 | "link-in-new-tab": "Yeni bir pencerede aç", 24 | "unlink": "Linki Kaldır", 25 | "cancel": "Vazgeç", 26 | "close": "Kapat", 27 | "insert": "Ekle", 28 | "save": "Kaydet", 29 | "delete": "Sil", 30 | "text": "Metin", 31 | "edit": "Düzenle", 32 | "title": "Başlık", 33 | "paragraph": "Normal yazı", 34 | "quote": "Alıntı", 35 | "code": "Kod", 36 | "heading1": "Başlık 1", 37 | "heading2": "Başlık 2", 38 | "heading3": "Başlık 3", 39 | "heading4": "Başlık 4", 40 | "heading5": "Başlık 5", 41 | "heading6": "Başlık 6", 42 | "filename": "İsim", 43 | "optional": "opsiyonel", 44 | "unorderedlist": "Sırasız Liste", 45 | "orderedlist": "Sıralı Liste", 46 | "outdent": "Dışarı Doğru", 47 | "indent": "İçeri Doğru", 48 | "horizontalrule": "Çizgi", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Zenginleştirilmiş yazı editorü", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/zh_cn.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['zh_cn'] = { 4 | "format": "格式", 5 | "image": "图片", 6 | "file": "文件", 7 | "link": "链接", 8 | "bold": "加粗", 9 | "italic": "斜体", 10 | "deleted": "删除线", 11 | "underline": "底线", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "列表", 21 | "link-insert": "插入链接", 22 | "link-edit": "编辑链接", 23 | "link-in-new-tab": "在新页面中打开", 24 | "unlink": "取消链接", 25 | "cancel": "取消", 26 | "close": "关闭", 27 | "insert": "插入", 28 | "save": "保存", 29 | "delete": "删除", 30 | "text": "文本", 31 | "edit": "编辑", 32 | "title": "标题", 33 | "paragraph": "段落", 34 | "quote": "引用", 35 | "code": "代码", 36 | "heading1": "标题 1", 37 | "heading2": "标题 2", 38 | "heading3": "标题 3", 39 | "heading4": "标题 4", 40 | "heading5": "标题 5", 41 | "heading6": "标题 6", 42 | "filename": "文件名", 43 | "optional": "optional", 44 | "unorderedlist": "无序列表", 45 | "orderedlist": "有序列表", 46 | "outdent": "向左缩进", 47 | "indent": "向右缩进", 48 | "horizontalrule": "水平分隔线", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "富文本编辑器", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/langs/zh_tw.js: -------------------------------------------------------------------------------- 1 | (function($R) 2 | { 3 | $R.lang['zh_tw'] = { 4 | "format": "樣式", 5 | "image": "插入圖片", 6 | "file": "插入文件", 7 | "link": "連結", 8 | "bold": "將文字變成粗體", 9 | "italic": "將文字變成斜體", 10 | "deleted": "刪除線", 11 | "underline": "底線", 12 | "superscript": "Superscript", 13 | "subscript": "Subscript", 14 | "bold-abbr": "B", 15 | "italic-abbr": "I", 16 | "deleted-abbr": "S", 17 | "underline-abbr": "U", 18 | "superscript-abbr": "Sup", 19 | "subscript-abbr": "Sub", 20 | "lists": "列表", 21 | "link-insert": "插入連結", 22 | "link-edit": "編輯連結", 23 | "link-in-new-tab": "開啟新分頁", 24 | "unlink": "移除連結", 25 | "cancel": "取消", 26 | "close": "關閉", 27 | "insert": "插入", 28 | "save": "儲存", 29 | "delete": "刪除", 30 | "text": "內文", 31 | "edit": "編輯", 32 | "title": "標題", 33 | "paragraph": "段落", 34 | "quote": "引用", 35 | "code": "原始碼", 36 | "heading1": "標題 1", 37 | "heading2": "標題 2", 38 | "heading3": "標題 3", 39 | "heading4": "標題 4", 40 | "heading5": "標題 5", 41 | "heading6": "標題 6", 42 | "filename": "檔案名稱", 43 | "optional": "optional", 44 | "unorderedlist": "項目列表", 45 | "orderedlist": "編號列表", 46 | "outdent": "減少縮排", 47 | "indent": "增加縮排", 48 | "horizontalrule": "插入水平線", 49 | "upload": "Upload", 50 | "upload-label": "Drop files here or click to upload", 51 | "upload-change-label": "Drop a new image to change", 52 | "accessibility-help-label": "Rich text editor", 53 | "caption": "Caption", 54 | "bulletslist": "Bullets", 55 | "numberslist": "Numbers", 56 | "image-position": "Position", 57 | "none": "None", 58 | "left": "Left", 59 | "right": "Right", 60 | "center": "Center", 61 | "undo": "Undo", 62 | "redo": "Redo" 63 | }; 64 | })(Redactor); -------------------------------------------------------------------------------- /assets/redactor/plugins/alignment/alignment.min.js: -------------------------------------------------------------------------------- 1 | Redactor.add("plugin","alignment",{translations:{en:{align:"Align","align-left":"Align Left","align-center":"Align Center","align-right":"Align Right","align-justify":"Align Justify"}},init:function(t){this.app=t,this.opts=t.opts,this.lang=t.lang,this.block=t.block,this.toolbar=t.toolbar},start:function(){var t={};t.left={title:this.lang.get("align-left"),api:"plugin.alignment.set",args:"left"},t.center={title:this.lang.get("align-center"),api:"plugin.alignment.set",args:"center"},t.right={title:this.lang.get("align-right"),api:"plugin.alignment.set",args:"right"},t.justify={title:this.lang.get("align-justify"),api:"plugin.alignment.set",args:"justify"};var i=this.toolbar.addButton("alignment",{title:this.lang.get("align")});i.setIcon(''),i.setDropdown(t)},set:function(t){if("left"===t&&"ltr"===this.opts.direction)return this._remove();var i={style:{"text-align":t}};this.block.toggle(i)},_remove:function(){this.block.remove({style:"text-align"})}}); -------------------------------------------------------------------------------- /assets/redactor/plugins/beyondgrammar/beyondgrammar.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.add("plugin","beyondgrammar",{init:function(t){this.app=t,this.opts=t.opts,this.editor=t.editor,this.cleaner=t.cleaner},onoriginalblur:function(t){if(a.dom(t.target).hasClass("pwa-suggest")){t.preventDefault(),this.app.stopBlur=!0;var e=this.app.offset.get();setTimeout(function(){this.app.offset.set(e)}.bind(this),10)}else this.app.stopBlur=!1},onsource:{closed:function(){this.editor.focus(),this._activate()}},start:function(){this.GrammarChecker=this._getGrammarChecker(),this.opts.beyondgrammar&&this.GrammarChecker&&(this.cleaner.addUnconvertRules("spellcheck",function(t){t.find(".pwa-mark").unwrap()}),this._activate())},_activate:function(){var t=this.editor.getElement();t.attr("spellcheck",!1);var e=new this.GrammarChecker(t.get(),this.opts.beyondgrammar.service,this.opts.beyondgrammar.grammar);e.init().then(function(){e.activate()})},_getGrammarChecker:function(){return void 0!==window.BeyondGrammar&&window.BeyondGrammar.GrammarChecker}})}(Redactor); -------------------------------------------------------------------------------- /assets/redactor/plugins/clips/clips.min.css: -------------------------------------------------------------------------------- 1 | .redactor-clips-list{list-style:none;margin:0;padding:0}.redactor-clips-list li{display:inline-block;margin-right:4px;margin-bottom:4px}.redactor-clips-list span{white-space:nowrap;background:rgba(0,125,255,.75);color:#fff;display:inline-block;padding:3px 6px;line-height:1;border-radius:4px;cursor:pointer} -------------------------------------------------------------------------------- /assets/redactor/plugins/clips/clips.min.js: -------------------------------------------------------------------------------- 1 | !function(a){a.add("plugin","clips",{translations:{en:{clips:"Clips","clips-select":"Please, select a clip"}},modals:{clips:""},init:function(i){this.app=i,this.opts=i.opts,this.lang=i.lang,this.toolbar=i.toolbar,this.insertion=i.insertion},onmodal:{clips:{open:function(i){this._build(i)}}},start:function(){if(this.opts.clips){var i={title:this.lang.get("clips"),api:"plugin.clips.open"};this.toolbar.addButton("clips",i).setIcon('')}},open:function(i){var t={title:this.lang.get("clips"),width:"600px",name:"clips"};this.app.api("module.modal.build",t)},_build:function(i){var t=i.getBody(),s=this._buildLabel(),l=this._buildList();this._buildItems(l),t.html(""),t.append(s),t.append(l)},_buildLabel:function(){var i=a.dom("