├── .gitignore ├── .DS_Store ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── images ├── signature.gif └── page_white_text.png ├── styles ├── images │ ├── help.gif │ ├── info.gif │ ├── lock.png │ ├── title.gif │ ├── arrow-left.gif │ ├── arrow-top.gif │ ├── important.gif │ ├── switch-view-icons.png │ ├── switch-view-icons.psd │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_222222_256x240.png.1 │ └── ui-icons_cccccc_256x240.png └── jquery.alerts.css ├── scripts ├── themes │ └── wordpress │ │ ├── d.png │ │ ├── d_old.png │ │ ├── iconsxx.png │ │ ├── throbber.gif │ │ ├── dot_for_ie.gif │ │ └── style.css ├── jquery.biscuit.js └── jquery.alerts.js ├── languages ├── cms-tree-page-view.mo ├── cms-tree-page-view-el.mo ├── cms-tree-page-view-et.mo ├── cms-tree-page-view-fi.mo ├── cms-tree-page-view-ja.mo ├── cms-tree-page-view-be_BY.mo ├── cms-tree-page-view-cs_CZ.mo ├── cms-tree-page-view-da_DK.mo ├── cms-tree-page-view-es_ES.mo ├── cms-tree-page-view-fr_FR.mo ├── cms-tree-page-view-he_IL.mo ├── cms-tree-page-view-hu_HU.mo ├── cms-tree-page-view-it_IT.mo ├── cms-tree-page-view-lt_LT.mo ├── cms-tree-page-view-nb_NO.mo ├── cms-tree-page-view-nl_NL.mo ├── cms-tree-page-view-pl_PL.mo ├── cms-tree-page-view-pt_BR.mo ├── cms-tree-page-view-ru_RU.mo ├── cms-tree-page-view-sk_SK.mo ├── cms-tree-page-view-sr_RS.mo ├── cms-tree-page-view-sv_SE.mo ├── cms-tree-page-view_ro_RO.mo ├── cms-tree-page-view_uk_UA.mo ├── cms-tree-page-view-fi_FI.mo ├── cms-tree-page-view-be_BY.po ├── cms-tree-page-view-es_ES.po ├── cms-tree-page-view-hu_HU.po ├── cms-tree-page-view-it_IT.po ├── cms-tree-page-view-he_IL.po ├── cms-tree-page-view-nl_NL.po ├── cms-tree-page-view-pt_BR.po ├── cms-tree-page-view_ro_RO.po ├── cms-tree-page-view-et.po ├── cms-tree-page-view-el.po ├── cms-tree-page-view.pot ├── cms-tree-page-view-nb_NO.po ├── cms-tree-page-view-pl_PL.po ├── cms-tree-page-view-da_DK.po ├── cms-tree-page-view-lt_LT.po ├── cms-tree-page-view-ja.po ├── cms-tree-page-view-cs_CZ.po ├── cms-tree-page-view-fi_FI.po ├── cms-tree-page-view-sv_SE.po ├── cms-tree-page-view-sk_SK.po ├── cms-tree-page-view_uk_UA.po ├── cms-tree-page-view-fi.po ├── cms-tree-page-view-fr_FR.po └── cms-tree-page-view-ru_RU.po ├── README.md └── index.php /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/.DS_Store -------------------------------------------------------------------------------- /screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/screenshot-1.png -------------------------------------------------------------------------------- /screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/screenshot-2.png -------------------------------------------------------------------------------- /screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/screenshot-3.png -------------------------------------------------------------------------------- /images/signature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/images/signature.gif -------------------------------------------------------------------------------- /styles/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/help.gif -------------------------------------------------------------------------------- /styles/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/info.gif -------------------------------------------------------------------------------- /styles/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/lock.png -------------------------------------------------------------------------------- /styles/images/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/title.gif -------------------------------------------------------------------------------- /images/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/images/page_white_text.png -------------------------------------------------------------------------------- /styles/images/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/arrow-left.gif -------------------------------------------------------------------------------- /styles/images/arrow-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/arrow-top.gif -------------------------------------------------------------------------------- /styles/images/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/important.gif -------------------------------------------------------------------------------- /scripts/themes/wordpress/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/scripts/themes/wordpress/d.png -------------------------------------------------------------------------------- /languages/cms-tree-page-view.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-el.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-el.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-et.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-et.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-fi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-fi.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-ja.mo -------------------------------------------------------------------------------- /scripts/themes/wordpress/d_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/scripts/themes/wordpress/d_old.png -------------------------------------------------------------------------------- /styles/images/switch-view-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/switch-view-icons.png -------------------------------------------------------------------------------- /styles/images/switch-view-icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/switch-view-icons.psd -------------------------------------------------------------------------------- /languages/cms-tree-page-view-be_BY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-be_BY.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-cs_CZ.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-cs_CZ.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-da_DK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-da_DK.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-es_ES.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-fr_FR.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-he_IL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-he_IL.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-hu_HU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-hu_HU.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-it_IT.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-lt_LT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-lt_LT.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-nb_NO.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-nl_NL.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-pl_PL.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-pt_BR.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-ru_RU.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-sk_SK.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-sr_RS.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-sr_RS.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view-sv_SE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view-sv_SE.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view_ro_RO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view_ro_RO.mo -------------------------------------------------------------------------------- /languages/cms-tree-page-view_uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/languages/cms-tree-page-view_uk_UA.mo -------------------------------------------------------------------------------- /scripts/themes/wordpress/iconsxx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/scripts/themes/wordpress/iconsxx.png -------------------------------------------------------------------------------- /scripts/themes/wordpress/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/scripts/themes/wordpress/throbber.gif -------------------------------------------------------------------------------- /scripts/themes/wordpress/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/scripts/themes/wordpress/dot_for_ie.gif -------------------------------------------------------------------------------- /styles/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /styles/images/ui-icons_222222_256x240.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/ui-icons_222222_256x240.png.1 -------------------------------------------------------------------------------- /styles/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchristopher/cms-tree-page-view/HEAD/styles/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WordPress CMS Tree Page View 2 | 3 | This plugin for WordPress gives you a tree view of all your pages and custom posts in WordPress. 4 | Edit, view, add and search pages, and use drag and drop pages to rearrange the order. 5 | 6 | [Visit the plugin homepage for more information](http://wordpress.org/plugins/cms-tree-page-view/). 7 | 8 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-fi_FI.mo: -------------------------------------------------------------------------------- 1 | Þ•����������4������L�������`������a������y���º��‘������L�����c��������������������Enter title of new page�Hide until next upgrade�Project-Id-Version: 2 | Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view 3 | POT-Creation-Date: 2012-12-26 20:37:31+00:00\n 4 | MIME-Version: 1.0 5 | Content-Type: text/plain; charset=UTF-8 6 | Content-Transfer-Encoding: 8bit 7 | PO-Revision-Date: 2013-03-03 07:23+0000\n 8 | Last-Translator: Jan-Erik Finlander 9 | Language-Team: Finnish \n 10 | X-Generator: Poedit 1.5.4 11 | Plural-Forms: nplurals=2; plural=n != 1; 12 | Language: fi_FI 13 | �Kirjoita uuden sivun otsikko�Piilota seuraavan päivytkseen asti� -------------------------------------------------------------------------------- /styles/jquery.alerts.css: -------------------------------------------------------------------------------- 1 | #popup_container { 2 | font-family: Arial, sans-serif; 3 | font-size: 12px; 4 | min-width: 300px; /* Dialog will be no smaller than this */ 5 | max-width: 600px; /* Dialog will wrap after this width */ 6 | background: #FFF; 7 | border: solid 5px #999; 8 | color: #000; 9 | -moz-border-radius: 5px; 10 | -webkit-border-radius: 5px; 11 | border-radius: 5px; 12 | } 13 | 14 | #popup_title { 15 | font-size: 14px; 16 | font-weight: bold; 17 | text-align: center; 18 | line-height: 1.75em; 19 | color: #666; 20 | background: #CCC url(images/title.gif) top repeat-x; 21 | border: solid 1px #FFF; 22 | border-bottom: solid 1px #999; 23 | cursor: default; 24 | padding: 0em; 25 | margin: 0em; 26 | } 27 | 28 | #popup_content { 29 | background: 16px 16px no-repeat url(images/info.gif); 30 | padding: 1em 1.75em; 31 | margin: 0em; 32 | } 33 | 34 | #popup_content.alert { 35 | background-image: url(images/info.gif); 36 | } 37 | 38 | #popup_content.confirm { 39 | background-image: url(images/important.gif); 40 | } 41 | 42 | #popup_content.prompt { 43 | background-image: url(images/help.gif); 44 | } 45 | 46 | #popup_message { 47 | padding-left: 48px; 48 | } 49 | 50 | #popup_panel { 51 | text-align: center; 52 | margin: 1em 0em 0em 1em; 53 | } 54 | 55 | #popup_prompt { 56 | margin: .5em 0em; 57 | } -------------------------------------------------------------------------------- /languages/cms-tree-page-view-be_BY.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: CTPV\n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2010-04-09 11:39+0000\n" 11 | "PO-Revision-Date: 2010-04-15 23:43+0300\n" 12 | "Last-Translator: FatCow \n" 13 | "Language-Team: Marcis G. \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=utf-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Poedit-Language: Belarusian\n" 18 | "X-Poedit-Country: BELARUS\n" 19 | "X-Poedit-SourceCharset: utf8\n" 20 | 21 | #: functions.php:84 22 | msgid "settings" 23 | msgstr "налады" 24 | 25 | #: functions.php:91 26 | msgid "Show tree" 27 | msgstr "Паказаць дрэва" 28 | 29 | #: functions.php:95 30 | msgid "on the dashboard" 31 | msgstr "у панэлі кіравання" 32 | 33 | #: functions.php:98 34 | msgid "under the pages menu" 35 | msgstr "па старонках меню" 36 | 37 | #: functions.php:105 38 | msgid "Save Changes" 39 | msgstr "Захаваць змены" 40 | 41 | #: functions.php:127 42 | msgid "All" 43 | msgstr "Усё" 44 | 45 | #: functions.php:128 46 | msgid "Public" 47 | msgstr "Публічна" 48 | 49 | #: functions.php:130 50 | msgid "Expand" 51 | msgstr "Разгарнуць" 52 | 53 | #: functions.php:131 54 | msgid "Collapse" 55 | msgstr "Згарнуць" 56 | 57 | #: functions.php:136 58 | msgid "Search" 59 | msgstr "Пошук" 60 | 61 | #: functions.php:137 62 | msgid "Searching..." 63 | msgstr "Пошук..." 64 | 65 | #: functions.php:142 66 | msgid "Loading..." 67 | msgstr "Загрузка..." 68 | 69 | #: functions.php:144 70 | msgid "Search: no pages found" 71 | msgstr "Пошук: старонкі не знойдзены" 72 | 73 | #: functions.php:146 74 | msgid "Loading tree" 75 | msgstr "Загрузка дрэва" 76 | 77 | #: functions.php:248 78 | msgid "" 79 | msgstr "<Безназоўная старонка>" 80 | 81 | #: functions.php:264 82 | msgid "Click to edit. Drag to move." 83 | msgstr "Націсніце для рэдагавання. Цягніце для перасоўвання." 84 | 85 | #: functions.php:380 86 | msgid "New page" 87 | msgstr "Новая старонка" 88 | 89 | #: scripts/cms_tree_page_view.php:85 90 | #: scripts/cms_tree_page_view.php:102 91 | msgid "Enter title of new page" 92 | msgstr "Увядзіце назву новай старонкі" 93 | 94 | #: scripts/cms_tree_page_view.php:283 95 | msgid "child pages" 96 | msgstr "даччыныя старонкі" 97 | 98 | #: scripts/cms_tree_page_view.php:293 99 | msgid "Edit page" 100 | msgstr "Рэдагаваць старонку" 101 | 102 | #: scripts/cms_tree_page_view.php:293 103 | msgid "Edit" 104 | msgstr "Рэдагаваць" 105 | 106 | #: scripts/cms_tree_page_view.php:294 107 | msgid "View page" 108 | msgstr "Прагляд старонкі" 109 | 110 | #: scripts/cms_tree_page_view.php:294 111 | msgid "View" 112 | msgstr "Прагляд" 113 | 114 | #: scripts/cms_tree_page_view.php:296 115 | msgid "Add page" 116 | msgstr "Дадаць старонку" 117 | 118 | #: scripts/cms_tree_page_view.php:297 119 | msgid "Add new page after" 120 | msgstr "Дадаць новую старонку пасля " 121 | 122 | #: scripts/cms_tree_page_view.php:297 123 | msgid "after" 124 | msgstr "пасля" 125 | 126 | #: scripts/cms_tree_page_view.php:298 127 | msgid "Add new page inside" 128 | msgstr "Дадаць новую старонку ўсярэдзіне" 129 | 130 | #: scripts/cms_tree_page_view.php:298 131 | msgid "inside" 132 | msgstr "усярэдзіне" 133 | 134 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-es_ES.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: CTPV\n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2010-04-09 11:39+0000\n" 11 | "PO-Revision-Date: 2010-08-20 03:20-0300\n" 12 | "Last-Translator: Carlos Janini \n" 13 | "Language-Team: Marcis G. \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=utf-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Poedit-Language: Belarusian\n" 18 | "X-Poedit-Country: BELARUS\n" 19 | "X-Poedit-SourceCharset: utf8\n" 20 | 21 | #: functions.php:84 22 | msgid "settings" 23 | msgstr "Configuraciones" 24 | 25 | #: functions.php:91 26 | msgid "Show tree" 27 | msgstr "Ver arbol" 28 | 29 | #: functions.php:95 30 | msgid "on the dashboard" 31 | msgstr "En el escritorio" 32 | 33 | #: functions.php:98 34 | msgid "under the pages menu" 35 | msgstr "Abajo de las paginas menu" 36 | 37 | #: functions.php:105 38 | msgid "Save Changes" 39 | msgstr "Guardar carmbios" 40 | 41 | #: functions.php:127 42 | msgid "All" 43 | msgstr "Todo" 44 | 45 | #: functions.php:128 46 | msgid "Public" 47 | msgstr "Publico" 48 | 49 | #: functions.php:130 50 | msgid "Expand" 51 | msgstr "Expandir" 52 | 53 | #: functions.php:131 54 | msgid "Collapse" 55 | msgstr "Colapsar" 56 | 57 | #: functions.php:136 58 | msgid "Search" 59 | msgstr "Buscar" 60 | 61 | #: functions.php:137 62 | msgid "Searching..." 63 | msgstr "Buscando..." 64 | 65 | #: functions.php:142 66 | msgid "Loading..." 67 | msgstr "Cargando.." 68 | 69 | #: functions.php:144 70 | msgid "Search: no pages found" 71 | msgstr "Busqueda: No se encontraron paginas" 72 | 73 | #: functions.php:146 74 | msgid "Loading tree" 75 | msgstr "Cargando arbol" 76 | 77 | #: functions.php:248 78 | msgid "" 79 | msgstr "< Pagina sin titulo >" 80 | 81 | #: functions.php:264 82 | msgid "Click to edit. Drag to move." 83 | msgstr "Click para editar. Arrastrar para mover." 84 | 85 | #: functions.php:380 86 | msgid "New page" 87 | msgstr "Nueva pagina" 88 | 89 | #: scripts/cms_tree_page_view.php:85 90 | #: scripts/cms_tree_page_view.php:102 91 | msgid "Enter title of new page" 92 | msgstr "Introducir nuevo titulo para la pagina" 93 | 94 | #: scripts/cms_tree_page_view.php:283 95 | msgid "child pages" 96 | msgstr "Paginas hijos" 97 | 98 | #: scripts/cms_tree_page_view.php:293 99 | msgid "Edit page" 100 | msgstr "Editar pagina" 101 | 102 | #: scripts/cms_tree_page_view.php:293 103 | msgid "Edit" 104 | msgstr "Editar" 105 | 106 | #: scripts/cms_tree_page_view.php:294 107 | msgid "View page" 108 | msgstr "Ver pagina" 109 | 110 | #: scripts/cms_tree_page_view.php:294 111 | msgid "View" 112 | msgstr "Ver" 113 | 114 | #: scripts/cms_tree_page_view.php:296 115 | msgid "Add page" 116 | msgstr "Agregar pagina" 117 | 118 | #: scripts/cms_tree_page_view.php:297 119 | msgid "Add new page after" 120 | msgstr "Agregar nueva pagina posterior" 121 | 122 | #: scripts/cms_tree_page_view.php:297 123 | msgid "after" 124 | msgstr "Posterior" 125 | 126 | #: scripts/cms_tree_page_view.php:298 127 | msgid "Add new page inside" 128 | msgstr "Agregar nueva pagina adentro" 129 | 130 | #: scripts/cms_tree_page_view.php:298 131 | msgid "inside" 132 | msgstr "Adentro" 133 | 134 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2010-06-30 19:00+0000\n" 11 | "PO-Revision-Date: 2011-03-08 19:52+0100\n" 12 | "Last-Translator: Szijártó József \n" 13 | "Language-Team: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=utf-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | 18 | #: functions.php:45 19 | msgid "Enter title of new page" 20 | msgstr "Új oldal címének megadása" 21 | 22 | #: functions.php:46 23 | msgid "child pages" 24 | msgstr "aloldalak" 25 | 26 | #: functions.php:47 27 | msgid "Edit page" 28 | msgstr "Oldal szerkesztése" 29 | 30 | #: functions.php:48 31 | msgid "View page" 32 | msgstr "Oldal megtekintése" 33 | 34 | #: functions.php:49 35 | msgid "Edit" 36 | msgstr "Szerkeszt" 37 | 38 | #: functions.php:50 39 | msgid "View" 40 | msgstr "Megtekint" 41 | 42 | #: functions.php:51 43 | msgid "Add page" 44 | msgstr "Oldal hozzáadása" 45 | 46 | #: functions.php:52 47 | msgid "Add new page after" 48 | msgstr "Oldal hozzáadása ezután" 49 | 50 | #: functions.php:53 51 | msgid "after" 52 | msgstr "utána" 53 | 54 | #: functions.php:54 55 | msgid "inside" 56 | msgstr "belső" 57 | 58 | #: functions.php:55 59 | msgid "Add new page inside" 60 | msgstr "Új oldal bele" 61 | 62 | #: functions.php:56 63 | msgid "draft" 64 | msgstr "Vázlat" 65 | 66 | #: functions.php:57 67 | msgid "future" 68 | msgstr "jövő" 69 | 70 | #: functions.php:58 71 | msgid "protected" 72 | msgstr "védett" 73 | 74 | #: functions.php:59 75 | msgid "pending" 76 | msgstr "függőben" 77 | 78 | #: functions.php:60 79 | msgid "private" 80 | msgstr "privát" 81 | 82 | #: functions.php:61 83 | msgid "Password protected page" 84 | msgstr "Jelszóval védett" 85 | 86 | #: functions.php:113 87 | msgid "settings" 88 | msgstr "beállítások" 89 | 90 | #: functions.php:120 91 | msgid "Show tree" 92 | msgstr "Fa mutatása" 93 | 94 | #: functions.php:124 95 | msgid "on the dashboard" 96 | msgstr "a Vezérlőpulton" 97 | 98 | #: functions.php:128 99 | msgid "under the pages menu" 100 | msgstr "az oldalak menüje alatt" 101 | 102 | #: functions.php:135 103 | msgid "Save Changes" 104 | msgstr "Változtatások mentése" 105 | 106 | #: functions.php:150 107 | msgid "No pages found. Maybe you want to add a new page?" 108 | msgstr "Nem található az oldal. Szeretnél hozzáadni egy új oldalt?" 109 | 110 | #: functions.php:157 111 | msgid "All" 112 | msgstr "Összes" 113 | 114 | #: functions.php:158 115 | msgid "Public" 116 | msgstr "Publikus" 117 | 118 | #: functions.php:160 119 | msgid "Expand" 120 | msgstr "Kibont" 121 | 122 | #: functions.php:161 123 | msgid "Collapse" 124 | msgstr "Becsuk" 125 | 126 | #: functions.php:166 127 | msgid "Clear search" 128 | msgstr "Keresés törlése" 129 | 130 | #: functions.php:167 131 | msgid "Search" 132 | msgstr "Keresés" 133 | 134 | #: functions.php:168 135 | msgid "Searching..." 136 | msgstr "Keresés..." 137 | 138 | #: functions.php:173 139 | msgid "Loading..." 140 | msgstr "Betöltés..." 141 | 142 | #: functions.php:175 143 | msgid "Search: no pages found" 144 | msgstr "Keresés: nem találhatók oldalak" 145 | 146 | #: functions.php:177 147 | msgid "Loading tree" 148 | msgstr "Fa betöltése" 149 | 150 | #: functions.php:277 151 | msgid "" 152 | msgstr "" 153 | 154 | #: functions.php:295 155 | msgid "Click to edit. Drag to move." 156 | msgstr "Kattints a szerkesztésért. Fogd a mozgatásért." 157 | 158 | #: functions.php:432 159 | msgid "New page" 160 | msgstr "Új oldal" 161 | 162 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-it_IT.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2010-06-30 19:00+0000\n" 11 | "PO-Revision-Date: 2011-01-17 19:00+0100\n" 12 | "Last-Translator: Andrea Bersi\n" 13 | "Language-Team: \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Poedit-Language: Italian\n" 18 | "X-Poedit-Country: ITALIA\n" 19 | 20 | #: functions.php:45 21 | msgid "Enter title of new page" 22 | msgstr "Inserire titolo pagina" 23 | 24 | #: functions.php:46 25 | msgid "child pages" 26 | msgstr "Pagine figlie" 27 | 28 | #: functions.php:47 29 | msgid "Edit page" 30 | msgstr "Modifica la pagina" 31 | 32 | #: functions.php:48 33 | msgid "View page" 34 | msgstr "Vedi pagina" 35 | 36 | #: functions.php:49 37 | msgid "Edit" 38 | msgstr "Modifica" 39 | 40 | #: functions.php:50 41 | msgid "View" 42 | msgstr "Vedi" 43 | 44 | #: functions.php:51 45 | msgid "Add page" 46 | msgstr "Aggiungi nuova pagina" 47 | 48 | #: functions.php:52 49 | msgid "Add new page after" 50 | msgstr "Aggiungi dopo la pagina" 51 | 52 | #: functions.php:53 53 | msgid "after" 54 | msgstr "dopo" 55 | 56 | #: functions.php:54 57 | msgid "inside" 58 | msgstr "all'interno della pagina" 59 | 60 | #: functions.php:55 61 | msgid "Add new page inside" 62 | msgstr "Aggiungi pagina figlia" 63 | 64 | #: functions.php:56 65 | msgid "draft" 66 | msgstr "Bozza" 67 | 68 | #: functions.php:57 69 | msgid "future" 70 | msgstr "pianificata" 71 | 72 | #: functions.php:58 73 | msgid "protected" 74 | msgstr "protetta" 75 | 76 | #: functions.php:59 77 | msgid "pending" 78 | msgstr "in attesa" 79 | 80 | #: functions.php:60 81 | msgid "private" 82 | msgstr "privata" 83 | 84 | #: functions.php:61 85 | msgid "Password protected page" 86 | msgstr "Pagina protetta da password" 87 | 88 | #: functions.php:113 89 | msgid "settings" 90 | msgstr "impostazioni" 91 | 92 | #: functions.php:120 93 | msgid "Show tree" 94 | msgstr "Mostra gerarchia" 95 | 96 | #: functions.php:124 97 | msgid "on the dashboard" 98 | msgstr "nella bacheca" 99 | 100 | #: functions.php:128 101 | msgid "under the pages menu" 102 | msgstr "nel menù delle pagine" 103 | 104 | #: functions.php:135 105 | msgid "Save Changes" 106 | msgstr "Salva" 107 | 108 | #: functions.php:150 109 | msgid "No pages found. Maybe you want to add a new page?" 110 | msgstr "Nessuna pagina. Vuoi creare una pagina?" 111 | 112 | #: functions.php:157 113 | msgid "All" 114 | msgstr "Tutte le pagine" 115 | 116 | #: functions.php:158 117 | msgid "Public" 118 | msgstr "Pagine pubblicate" 119 | 120 | #: functions.php:160 121 | msgid "Expand" 122 | msgstr "Espandi" 123 | 124 | #: functions.php:161 125 | msgid "Collapse" 126 | msgstr "Contrai" 127 | 128 | #: functions.php:166 129 | msgid "Clear search" 130 | msgstr "Cancella risultati ricerca" 131 | 132 | #: functions.php:167 133 | msgid "Search" 134 | msgstr "Ricerca" 135 | 136 | #: functions.php:168 137 | msgid "Searching..." 138 | msgstr "Ricerca..." 139 | 140 | #: functions.php:173 141 | msgid "Loading..." 142 | msgstr "Caricamento..." 143 | 144 | #: functions.php:175 145 | msgid "Search: no pages found" 146 | msgstr "Ricerca: nessuna pagina trovata" 147 | 148 | #: functions.php:177 149 | msgid "Loading tree" 150 | msgstr "Caricamento gerarchia" 151 | 152 | #: functions.php:277 153 | msgid "" 154 | msgstr "" 155 | 156 | #: functions.php:295 157 | msgid "Click to edit. Drag to move." 158 | msgstr "Clicca per modificare o per variare la gerarchia" 159 | 160 | #: functions.php:432 161 | msgid "New page" 162 | msgstr "Nuova pagina" 163 | 164 | #: functions.php:395 165 | msgid "Last modified" 166 | msgstr "Modificato il" 167 | 168 | #: functions.php:384 169 | msgid "After" 170 | msgstr "dopo" 171 | 172 | #: functions.php:388 173 | msgid "Inside" 174 | msgstr "all'interno della pagina" 175 | 176 | -------------------------------------------------------------------------------- /scripts/jquery.biscuit.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Cookie plugin 3 | * 4 | * Copyright (c) 2006 Klaus Hartl (stilbuero.de) 5 | * Dual licensed under the MIT and GPL licenses: 6 | * http://www.opensource.org/licenses/mit-license.php 7 | * http://www.gnu.org/licenses/gpl.html 8 | * 9 | */ 10 | 11 | /** 12 | * Create a cookie with the given name and value and other optional parameters. 13 | * 14 | * @example $.cookie('the_cookie', 'the_value'); 15 | * @desc Set the value of a cookie. 16 | * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); 17 | * @desc Create a cookie with all available options. 18 | * @example $.cookie('the_cookie', 'the_value'); 19 | * @desc Create a session cookie. 20 | * @example $.cookie('the_cookie', null); 21 | * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain 22 | * used when the cookie was set. 23 | * 24 | * @param String name The name of the cookie. 25 | * @param String value The value of the cookie. 26 | * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. 27 | * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. 28 | * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. 29 | * If set to null or omitted, the cookie will be a session cookie and will not be retained 30 | * when the the browser exits. 31 | * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). 32 | * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). 33 | * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will 34 | * require a secure protocol (like HTTPS). 35 | * @type undefined 36 | * 37 | * @name $.cookie 38 | * @cat Plugins/Cookie 39 | * @author Klaus Hartl/klaus.hartl@stilbuero.de 40 | */ 41 | 42 | /** 43 | * Get the value of a cookie with the given name. 44 | * 45 | * @example $.cookie('the_cookie'); 46 | * @desc Get the value of a cookie. 47 | * 48 | * @param String name The name of the cookie. 49 | * @return The value of the cookie. 50 | * @type String 51 | * 52 | * @name $.cookie 53 | * @cat Plugins/Cookie 54 | * @author Klaus Hartl/klaus.hartl@stilbuero.de 55 | */ 56 | jQuery.cookie = function(name, value, options) { 57 | if (typeof value != 'undefined') { // name and value given, set cookie 58 | options = options || {}; 59 | if (value === null) { 60 | value = ''; 61 | options.expires = -1; 62 | } 63 | var expires = ''; 64 | if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { 65 | var date; 66 | if (typeof options.expires == 'number') { 67 | date = new Date(); 68 | date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); 69 | } else { 70 | date = options.expires; 71 | } 72 | expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE 73 | } 74 | // CAUTION: Needed to parenthesize options.path and options.domain 75 | // in the following expressions, otherwise they evaluate to undefined 76 | // in the packed version for some reason... 77 | var path = options.path ? '; path=' + (options.path) : ''; 78 | var domain = options.domain ? '; domain=' + (options.domain) : ''; 79 | var secure = options.secure ? '; secure' : ''; 80 | document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); 81 | } else { // only name given, get cookie 82 | var cookieValue = null; 83 | if (document.cookie && document.cookie != '') { 84 | var cookies = document.cookie.split(';'); 85 | for (var i = 0; i < cookies.length; i++) { 86 | var cookie = cookies[i].trim(); 87 | // Does this cookie string begin with the name we want? 88 | if (cookie.substring(0, name.length + 1) == (name + '=')) { 89 | cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); 90 | break; 91 | } 92 | } 93 | } 94 | return cookieValue; 95 | } 96 | }; -------------------------------------------------------------------------------- /scripts/themes/wordpress/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jsTree default theme 1.0 3 | * Supported features: dots/no-dots, icons/no-icons, focused, loading 4 | * Supported plugins: ui (hovered, clicked), checkbox, contextmenu, search 5 | */ 6 | 7 | .jstree-wordpress li, 8 | .jstree-wordpress ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; } 9 | .jstree-wordpress li { background-position:-90px 0; background-repeat:repeat-y; } 10 | .jstree-wordpress li.jstree-last { background:transparent; } 11 | .jstree-wordpress .jstree-open > ins { background-position:-72px 0; } 12 | .jstree-wordpress .jstree-closed > ins { background-position:-54px 0; cursor: pointer; } 13 | .jstree-wordpress .jstree-leaf > ins { background-position:-36px 0; } 14 | 15 | .jstree-wordpress .jstree-hovered { background:#e7f4f9; border:1px solid #d8f0fa; padding:0 2px 0 1px; } 16 | .jstree-wordpress .jstree-clicked { background:#beebff; border:1px solid #99defd; padding:0 2px 0 1px; } 17 | .jstree-wordpress a .jstree-icon { background-position:-56px -19px; } 18 | .jstree-wordpress a.jstree-loading .jstree-icon { background:url("throbber.gif") center center no-repeat !important; } 19 | 20 | .jstree-wordpress.jstree-focused { /* background:#ffffee; */ } 21 | 22 | .jstree-wordpress .jstree-no-dots li, 23 | .jstree-wordpress .jstree-no-dots .jstree-leaf > ins { background:transparent; } 24 | .jstree-wordpress .jstree-no-dots .jstree-open > ins { background-position:-18px 0; } 25 | .jstree-wordpress .jstree-no-dots .jstree-closed > ins { background-position:0 0; } 26 | 27 | .jstree-wordpress .jstree-no-icons a .jstree-icon { display:none; } 28 | 29 | .jstree-wordpress .jstree-search { /* font-style:italic; */ } 30 | 31 | .jstree-wordpress .jstree-no-icons .checkbox { display:inline-block; } 32 | .jstree-wordpress .jstree-no-checkboxes .checkbox { display:none !important; } 33 | .jstree-wordpress .jstree-checked > a > .checkbox { background-position:-38px -19px; } 34 | .jstree-wordpress .jstree-unchecked > a > .checkbox { background-position:-2px -19px; } 35 | .jstree-wordpress .jstree-undetermined > a > .checkbox { background-position:-20px -19px; } 36 | .jstree-wordpress .jstree-checked > a > .checkbox:hover { background-position:-38px -37px; } 37 | .jstree-wordpress .jstree-unchecked > a > .checkbox:hover { background-position:-2px -37px; } 38 | .jstree-wordpress .jstree-undetermined > a > .checkbox:hover { background-position:-20px -37px; } 39 | 40 | #vakata-dragged.jstree-wordpress ins { background:transparent !important; } 41 | #vakata-dragged.jstree-wordpress .jstree-ok { background:url("d.png") -2px -53px no-repeat !important; } 42 | #vakata-dragged.jstree-wordpress .jstree-invalid { background:url("d.png") -18px -53px no-repeat !important; } 43 | #jstree-marker.jstree-wordpress { background:url("d.png") -41px -57px no-repeat !important; text-indent:-100px; } 44 | 45 | .jstree-wordpress a.jstree-search { font-weight: bold; background-color: #FFEFBA; } 46 | 47 | #vakata-contextmenu.jstree-wordpress-context, 48 | #vakata-contextmenu.jstree-wordpress-context li ul { background:#f0f0f0; border:1px solid #979797; -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; } 49 | #vakata-contextmenu.jstree-wordpress-context li { } 50 | #vakata-contextmenu.jstree-wordpress-context a { color:black; } 51 | #vakata-contextmenu.jstree-wordpress-context a:hover, 52 | #vakata-contextmenu.jstree-wordpress-context .vakata-hover > a { padding:0 5px; background:#e8eff7; border:1px solid #aecff7; color:black; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; } 53 | #vakata-contextmenu.jstree-wordpress-context li.vakata-separator { background:white; border-top:1px solid #e0e0e0; margin:0; } 54 | #vakata-contextmenu.jstree-wordpress-context li ul { margin-left:-4px; } 55 | 56 | 57 | /* IE6 BEGIN */ 58 | .jstree-wordpress li, 59 | .jstree-wordpress ins, 60 | #vakata-dragged.jstree-wordpress .jstree-invalid, 61 | #vakata-dragged.jstree-wordpress .jstree-ok, 62 | #jstree-marker.jstree-default { _background-image:url("d.gif"); } 63 | .jstree-wordpress .jstree-open ins { _background-position:-72px 0; } 64 | .jstree-wordpress .jstree-closed ins { _background-position:-54px 0; } 65 | .jstree-wordpress .jstree-leaf ins { _background-position:-36px 0; } 66 | .jstree-wordpress a ins.jstree-icon { _background-position:-56px -19px; } 67 | #vakata-contextmenu.jstree-wordpress-context ins { _display:none; } 68 | #vakata-contextmenu.jstree-wordpress-context li { _zoom:1; } 69 | .jstree-wordpress .jstree-undetermined a .jstree-checkbox { _background-position:-20px -19px; } 70 | .jstree-wordpress .jstree-checked a .jstree-checkbox { _background-position:-38px -19px; } 71 | .jstree-wordpress .jstree-unchecked a .jstree-checkbox { _background-position:-2px -19px; } 72 | /* IE6 END */ 73 | 74 | 75 | /* added by pär */ 76 | .jstree-wordpress li { 77 | /*padding-top: 2px; 78 | padding-bottom: 2px;*/ 79 | position: relative; 80 | } 81 | /*.jstree li.jstree-closed, 82 | .jstree li.jstree-open 83 | { 84 | }*/ 85 | 86 | /*.jstree li.hover a, 87 | .jstree li a.hover 88 | { 89 | background-color: #e7f4f9; 90 | } 91 | */ 92 | 93 | .jstree li a:hover { 94 | background-color: #e7f4f9; 95 | } -------------------------------------------------------------------------------- /languages/cms-tree-page-view-he_IL.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: cms-tree-page-view\n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2010-08-28 21:55+0000\n" 11 | "PO-Revision-Date: 2011-02-28 23:55+0200\n" 12 | "Last-Translator: shahar \n" 13 | "Language-Team: ותודה לאחי דקר \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=utf-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Poedit-Language: Hebrew\n" 18 | "X-Poedit-Country: ISRAEL\n" 19 | "X-Poedit-SourceCharset: utf-8\n" 20 | "Plural-Forms: Plural-Forms: nplurals=2; plural=n != 1;\n" 21 | 22 | #: functions.php:53 23 | msgid "Enter title of new page" 24 | msgstr "כתבי כותרת לעמוד החדש" 25 | 26 | #: functions.php:54 27 | msgid "child pages" 28 | msgstr "עמודי-בת" 29 | 30 | #: functions.php:55 31 | #: functions.php:376 32 | msgid "Edit page" 33 | msgstr "עריכת עמוד" 34 | 35 | #: functions.php:56 36 | #: functions.php:377 37 | msgid "View page" 38 | msgstr "הצגת עמוד" 39 | 40 | #: functions.php:57 41 | #: functions.php:376 42 | msgid "Edit" 43 | msgstr "עריכה" 44 | 45 | #: functions.php:58 46 | #: functions.php:377 47 | msgid "View" 48 | msgstr "תצוגה" 49 | 50 | #: functions.php:59 51 | msgid "Add page" 52 | msgstr "הוספת עמוד" 53 | 54 | #: functions.php:60 55 | #: functions.php:381 56 | msgid "Add new page after" 57 | msgstr "הוסיפי עמוד חדש אחרי" 58 | 59 | #: functions.php:61 60 | msgid "after" 61 | msgstr "אחרי" 62 | 63 | #: functions.php:62 64 | msgid "inside" 65 | msgstr "בתוך" 66 | 67 | #: functions.php:63 68 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 69 | msgstr "'צטערת, לא יכולה ליצור תת-עמוד של עמוד בסטטוס \"טיוטה\"" 70 | 71 | #: functions.php:64 72 | #: functions.php:385 73 | msgid "Add new page inside" 74 | msgstr "הוסיפת עמוד חדש בתוך" 75 | 76 | #: functions.php:65 77 | msgid "draft" 78 | msgstr "טיוטה" 79 | 80 | #: functions.php:66 81 | msgid "future" 82 | msgstr "עתידי" 83 | 84 | #: functions.php:67 85 | msgid "protected" 86 | msgstr "מוגן" 87 | 88 | #: functions.php:68 89 | #: functions.php:586 90 | msgid "pending" 91 | msgstr "ממתין" 92 | 93 | #: functions.php:69 94 | msgid "private" 95 | msgstr "פרטית" 96 | 97 | #: functions.php:70 98 | msgid "Password protected page" 99 | msgstr "עמוד מוגן בסיסמה" 100 | 101 | #: functions.php:71 102 | msgid "Adding page..." 103 | msgstr "מוסיפה עמוד..." 104 | 105 | #: functions.php:172 106 | msgid "settings" 107 | msgstr "הגדרות" 108 | 109 | #: functions.php:177 110 | msgid "Select where to show a tree for pages and custom post types" 111 | msgstr "בחרי היכן להציג עץ עבור עמודים ופוסטים מותאמות אישית" 112 | 113 | #: functions.php:201 114 | msgid "On dashboard" 115 | msgstr "בלוח הבקרה" 116 | 117 | #: functions.php:205 118 | msgid "In menu" 119 | msgstr "בתפריט" 120 | 121 | #: functions.php:216 122 | msgid "Save Changes" 123 | msgstr "שמירת שינויים" 124 | 125 | #: functions.php:333 126 | msgid "No posts found." 127 | msgstr "לא נמצאו פוסטים" 128 | 129 | #: functions.php:339 130 | msgid "All" 131 | msgstr "הכל" 132 | 133 | #: functions.php:340 134 | msgid "Public" 135 | msgstr "ציבורי" 136 | 137 | #: functions.php:345 138 | msgid "Expand" 139 | msgstr "פתח הכל" 140 | 141 | #: functions.php:346 142 | msgid "Collapse" 143 | msgstr "סגור הכל" 144 | 145 | #: functions.php:354 146 | msgid "Clear search" 147 | msgstr "ניקוי" 148 | 149 | #: functions.php:355 150 | msgid "Search" 151 | msgstr "חיפוש" 152 | 153 | #: functions.php:356 154 | msgid "Searching..." 155 | msgstr "מחפשת..." 156 | 157 | #: functions.php:357 158 | msgid "Nothing found." 159 | msgstr "לא מצאתי" 160 | 161 | #: functions.php:363 162 | msgid "Loading..." 163 | msgstr "טוענת..." 164 | 165 | #: functions.php:366 166 | msgid "Search: no pages found" 167 | msgstr "חיפוש: לא נמצאו עמודים" 168 | 169 | #: functions.php:369 170 | msgid "Loading tree" 171 | msgstr "טוענת עץ" 172 | 173 | #: functions.php:381 174 | msgid "After" 175 | msgstr "אחרי" 176 | 177 | #: functions.php:385 178 | msgid "Inside" 179 | msgstr "בתוך" 180 | 181 | #: functions.php:389 182 | msgid "Can not create page inside of a page with draft status" 183 | msgstr "לא יכולה ליצור עמוד בתוך עמוד טיוטה" 184 | 185 | #: functions.php:392 186 | msgid "Last modified" 187 | msgstr "שונתה לאחרונה ב..." 188 | 189 | #: functions.php:394 190 | msgid "by" 191 | msgstr "ע\"י" 192 | 193 | #: functions.php:397 194 | msgid "Page ID" 195 | msgstr "מזהה עמוד (ID)" 196 | 197 | #: functions.php:551 198 | msgid "Unknown user" 199 | msgstr "משתמשת לא ידועה" 200 | 201 | #: functions.php:556 202 | msgid "" 203 | msgstr "<ללא שם>" 204 | 205 | #: functions.php:576 206 | msgid "Comments" 207 | msgstr "הערות" 208 | 209 | #: functions.php:583 210 | #, php-format 211 | msgid "%s pending" 212 | msgstr "ממתינה %s" 213 | 214 | #: functions.php:593 215 | msgctxt "comment count" 216 | msgid "0" 217 | msgstr "0" 218 | 219 | #: functions.php:593 220 | msgctxt "comment count" 221 | msgid "1" 222 | msgstr "1" 223 | 224 | #: functions.php:593 225 | msgctxt "comment count" 226 | msgid "%" 227 | msgstr "%" 228 | 229 | #: functions.php:624 230 | msgid "Click to edit. Drag to move." 231 | msgstr "לחצי לעריכה. גררי להזזה" 232 | 233 | #: functions.php:775 234 | msgid "New page" 235 | msgstr "עמוד חדש" 236 | 237 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-nl_NL.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: CMS-tree-page-view\n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2010-08-28 21:55+0000\n" 11 | "PO-Revision-Date: 2011-02-23 13:01+0100\n" 12 | "Last-Translator: Cees van den Heuvel \n" 13 | "Language-Team: Intermediad \n" 14 | "MIME-Version: 1.0\n" 15 | "Content-Type: text/plain; charset=UTF-8\n" 16 | "Content-Transfer-Encoding: 8bit\n" 17 | "X-Poedit-Language: Dutch\n" 18 | "X-Poedit-Country: NETHERLANDS\n" 19 | 20 | #: functions.php:53 21 | msgid "Enter title of new page" 22 | msgstr "Voer de titel van de nieuwe pagina in" 23 | 24 | #: functions.php:54 25 | msgid "child pages" 26 | msgstr "dochter paginas" 27 | 28 | #: functions.php:55 29 | #: functions.php:376 30 | msgid "Edit page" 31 | msgstr "Wijzig pagina" 32 | 33 | #: functions.php:56 34 | #: functions.php:377 35 | msgid "View page" 36 | msgstr "Toon pagina" 37 | 38 | #: functions.php:57 39 | #: functions.php:376 40 | msgid "Edit" 41 | msgstr "Wijzig" 42 | 43 | #: functions.php:58 44 | #: functions.php:377 45 | msgid "View" 46 | msgstr "Toon" 47 | 48 | #: functions.php:59 49 | msgid "Add page" 50 | msgstr "Voeg pagina toe" 51 | 52 | #: functions.php:60 53 | #: functions.php:381 54 | msgid "Add new page after" 55 | msgstr "Voeg nieuwe pagina toe na" 56 | 57 | #: functions.php:61 58 | msgid "after" 59 | msgstr "na" 60 | 61 | #: functions.php:62 62 | msgid "inside" 63 | msgstr "binnen" 64 | 65 | #: functions.php:63 66 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 67 | msgstr "Sorry, kan geen sub pagina maken voor een pagina met de status \"draft\"." 68 | 69 | #: functions.php:64 70 | #: functions.php:385 71 | msgid "Add new page inside" 72 | msgstr "Voeg nieuwe pagina toe binnen" 73 | 74 | #: functions.php:65 75 | msgid "draft" 76 | msgstr "concept" 77 | 78 | #: functions.php:66 79 | msgid "future" 80 | msgstr "toekomstig" 81 | 82 | #: functions.php:67 83 | msgid "protected" 84 | msgstr "beschermd" 85 | 86 | #: functions.php:68 87 | #: functions.php:586 88 | msgid "pending" 89 | msgstr "wacht" 90 | 91 | #: functions.php:69 92 | msgid "private" 93 | msgstr "privé" 94 | 95 | #: functions.php:70 96 | msgid "Password protected page" 97 | msgstr "Wachtwoord beschermde pagina" 98 | 99 | #: functions.php:71 100 | msgid "Adding page..." 101 | msgstr "Toevoegen pagina ..." 102 | 103 | #: functions.php:172 104 | msgid "settings" 105 | msgstr "instellingen" 106 | 107 | #: functions.php:177 108 | msgid "Select where to show a tree for pages and custom post types" 109 | msgstr "Kies waar de boom voor pagina's en eigen berichttypes getoond wordt" 110 | 111 | #: functions.php:201 112 | msgid "On dashboard" 113 | msgstr "Op het Dashboard" 114 | 115 | #: functions.php:205 116 | msgid "In menu" 117 | msgstr "In het Menu" 118 | 119 | #: functions.php:216 120 | msgid "Save Changes" 121 | msgstr "Opslaan wijzigingen" 122 | 123 | #: functions.php:333 124 | msgid "No posts found." 125 | msgstr "Geen berichten gevonden." 126 | 127 | #: functions.php:339 128 | msgid "All" 129 | msgstr "Alle" 130 | 131 | #: functions.php:340 132 | msgid "Public" 133 | msgstr "Openbare" 134 | 135 | #: functions.php:345 136 | msgid "Expand" 137 | msgstr "Uitklappen" 138 | 139 | #: functions.php:346 140 | msgid "Collapse" 141 | msgstr "Inklappen" 142 | 143 | #: functions.php:354 144 | msgid "Clear search" 145 | msgstr "Wis zoekcriteria" 146 | 147 | #: functions.php:355 148 | msgid "Search" 149 | msgstr "Zoek" 150 | 151 | #: functions.php:356 152 | msgid "Searching..." 153 | msgstr "Zoeken ..." 154 | 155 | #: functions.php:357 156 | msgid "Nothing found." 157 | msgstr "Niets gevonden." 158 | 159 | #: functions.php:363 160 | msgid "Loading..." 161 | msgstr "Laden ..." 162 | 163 | #: functions.php:366 164 | msgid "Search: no pages found" 165 | msgstr "Zoek: geen paginas gevonden" 166 | 167 | #: functions.php:369 168 | msgid "Loading tree" 169 | msgstr "Boom laden" 170 | 171 | #: functions.php:381 172 | msgid "After" 173 | msgstr "Na" 174 | 175 | #: functions.php:385 176 | msgid "Inside" 177 | msgstr "Binnen" 178 | 179 | #: functions.php:389 180 | msgid "Can not create page inside of a page with draft status" 181 | msgstr "Kan geen pagina maken binnen een pagina met de status concept" 182 | 183 | #: functions.php:392 184 | msgid "Last modified" 185 | msgstr "Laatst gewijzigd" 186 | 187 | #: functions.php:394 188 | msgid "by" 189 | msgstr "door" 190 | 191 | #: functions.php:397 192 | msgid "Page ID" 193 | msgstr "Pagina ID" 194 | 195 | #: functions.php:551 196 | msgid "Unknown user" 197 | msgstr "Onbekende gebruiker" 198 | 199 | #: functions.php:556 200 | msgid "" 201 | msgstr "" 202 | 203 | #: functions.php:576 204 | msgid "Comments" 205 | msgstr "Opmerkingen" 206 | 207 | #: functions.php:583 208 | #, php-format 209 | msgid "%s pending" 210 | msgstr "% voortgang" 211 | 212 | #: functions.php:593 213 | msgctxt "comment count" 214 | msgid "0" 215 | msgstr "0" 216 | 217 | #: functions.php:593 218 | msgctxt "comment count" 219 | msgid "1" 220 | msgstr "1" 221 | 222 | #: functions.php:593 223 | msgctxt "comment count" 224 | msgid "%" 225 | msgstr "%" 226 | 227 | #: functions.php:624 228 | msgid "Click to edit. Drag to move." 229 | msgstr "Klik om te wijzigen. Sleep om te verplaatsen." 230 | 231 | #: functions.php:775 232 | msgid "New page" 233 | msgstr "Nieuwe pagina" 234 | 235 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-pt_BR.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CMS Tree View\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2010-10-14 16:53-0300\n" 6 | "PO-Revision-Date: 2010-10-14 16:57-0300\n" 7 | "Last-Translator: Ricardo Tomasi \n" 8 | "Language-Team: \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Poedit-KeywordsList: __;_e\n" 13 | "X-Poedit-Basepath: .\n" 14 | "X-Poedit-Language: Portuguese\n" 15 | "X-Poedit-Country: Brazil\n" 16 | "X-Poedit-SourceCharset: utf-8\n" 17 | "X-Poedit-SearchPath-0: ..\n" 18 | "X-Poedit-SearchPath-1: ../scripts\n" 19 | 20 | #: ../functions.php:53 21 | msgid "Enter title of new page" 22 | msgstr "Título da nova página" 23 | 24 | #: ../functions.php:54 25 | msgid "child pages" 26 | msgstr "sub-páginas" 27 | 28 | #: ../functions.php:55 29 | #: ../functions.php:379 30 | msgid "Edit page" 31 | msgstr "Editar página" 32 | 33 | #: ../functions.php:56 34 | #: ../functions.php:380 35 | msgid "View page" 36 | msgstr "Ver página" 37 | 38 | #: ../functions.php:57 39 | #: ../functions.php:379 40 | msgid "Edit" 41 | msgstr "Editar" 42 | 43 | #: ../functions.php:58 44 | #: ../functions.php:380 45 | msgid "View" 46 | msgstr "Ver" 47 | 48 | #: ../functions.php:59 49 | msgid "Add page" 50 | msgstr "Adicionar página" 51 | 52 | #: ../functions.php:60 53 | #: ../functions.php:384 54 | msgid "Add new page after" 55 | msgstr "Adicionar nova página após" 56 | 57 | #: ../functions.php:61 58 | msgid "after" 59 | msgstr "após" 60 | 61 | #: ../functions.php:62 62 | msgid "inside" 63 | msgstr "sub-página" 64 | 65 | #: ../functions.php:63 66 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 67 | msgstr "Desculpe, não é possível criar uma subpágina de uma página com status \"rascunho\"" 68 | 69 | #: ../functions.php:64 70 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 71 | msgstr "Desculpe, não é possível criar uma subpágina de uma página com status \"lixo\"" 72 | 73 | #: ../functions.php:65 74 | msgid "Sorry, can't create a page after a page with status \"trash\"." 75 | msgstr "Desculpe, não é possível criar uma página de uma página com status \"lixo\"" 76 | 77 | #: ../functions.php:66 78 | #: ../functions.php:388 79 | msgid "Add new page inside" 80 | msgstr "Adicionar nova sub-página" 81 | 82 | #: ../functions.php:67 83 | msgid "draft" 84 | msgstr "rascunho" 85 | 86 | #: ../functions.php:68 87 | msgid "future" 88 | msgstr "agendado" 89 | 90 | #: ../functions.php:69 91 | msgid "protected" 92 | msgstr "protegida" 93 | 94 | #: ../functions.php:70 95 | #: ../functions.php:603 96 | msgid "pending" 97 | msgstr "pendente" 98 | 99 | #: ../functions.php:71 100 | msgid "private" 101 | msgstr "privado" 102 | 103 | #: ../functions.php:72 104 | msgid "trash" 105 | msgstr "lixo" 106 | 107 | #: ../functions.php:73 108 | msgid "Password protected page" 109 | msgstr "Página protegida por senha" 110 | 111 | #: ../functions.php:74 112 | msgid "Adding page..." 113 | msgstr "Adicionando página..." 114 | 115 | #: ../functions.php:175 116 | msgid "settings" 117 | msgstr "configurações" 118 | 119 | #: ../functions.php:180 120 | msgid "Select where to show a tree for pages and custom post types" 121 | msgstr "Onde exibir a opção Tree View:" 122 | 123 | #: ../functions.php:204 124 | msgid "On dashboard" 125 | msgstr "No Painel" 126 | 127 | #: ../functions.php:208 128 | msgid "In menu" 129 | msgstr "No menu" 130 | 131 | #: ../functions.php:219 132 | msgid "Save Changes" 133 | msgstr "Salvar alterações" 134 | 135 | #: ../functions.php:335 136 | msgid "No posts found." 137 | msgstr "Nenhum post encontrado." 138 | 139 | #: ../functions.php:341 140 | msgid "All" 141 | msgstr "Todos" 142 | 143 | #: ../functions.php:342 144 | msgid "Public" 145 | msgstr "Público" 146 | 147 | #: ../functions.php:343 148 | msgid "Trash" 149 | msgstr "Lixeira" 150 | 151 | #: ../functions.php:348 152 | msgid "Expand" 153 | msgstr "Expandir" 154 | 155 | #: ../functions.php:349 156 | msgid "Collapse" 157 | msgstr "Minimizar" 158 | 159 | #: ../functions.php:357 160 | msgid "Clear search" 161 | msgstr "Limpar busca" 162 | 163 | #: ../functions.php:358 164 | msgid "Search" 165 | msgstr "Buscar" 166 | 167 | #: ../functions.php:359 168 | msgid "Searching..." 169 | msgstr "Buscando..." 170 | 171 | #: ../functions.php:360 172 | msgid "Nothing found." 173 | msgstr "Nenhum resultado." 174 | 175 | #: ../functions.php:366 176 | msgid "Loading..." 177 | msgstr "Carregando..." 178 | 179 | #: ../functions.php:369 180 | msgid "Search: no pages found" 181 | msgstr "Busca: nenhuma página encontrada" 182 | 183 | #: ../functions.php:372 184 | msgid "Loading tree" 185 | msgstr "Carregando estrutura" 186 | 187 | #: ../functions.php:384 188 | msgid "After" 189 | msgstr "Após" 190 | 191 | #: ../functions.php:388 192 | msgid "Inside" 193 | msgstr "Sub-página" 194 | 195 | #: ../functions.php:392 196 | msgid "Can not create page inside of a page with draft status" 197 | msgstr "Não é possível criar uma página dentro de uma página com status rascunho" 198 | 199 | #: ../functions.php:395 200 | msgid "Last modified" 201 | msgstr "Última modificação" 202 | 203 | #: ../functions.php:397 204 | msgid "by" 205 | msgstr "por" 206 | 207 | #: ../functions.php:400 208 | msgid "Page ID" 209 | msgstr "ID da página" 210 | 211 | #: ../functions.php:568 212 | msgid "Unknown user" 213 | msgstr "Usuário desconhecido" 214 | 215 | #: ../functions.php:573 216 | msgid "" 217 | msgstr "" 218 | 219 | #: ../functions.php:593 220 | msgid "Comments" 221 | msgstr "Comentários" 222 | 223 | #: ../functions.php:600 224 | #, php-format 225 | msgid "%s pending" 226 | msgstr "%s pendentes" 227 | 228 | #: ../functions.php:641 229 | msgid "Click to edit. Drag to move." 230 | msgstr "Clique para editar, arraste para mover." 231 | 232 | #: ../functions.php:792 233 | msgid "New page" 234 | msgstr "Nova página" 235 | 236 | #: ../functions.php:974 237 | msgid "Close" 238 | msgstr "Fechar" 239 | 240 | #: ../functions.php:975 241 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 242 | msgstr "Fórum de suporte" 243 | 244 | #: ../functions.php:976 245 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 246 | msgstr "Suporte este plugin fazendo uma doação." 247 | 248 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view_ro_RO.po: -------------------------------------------------------------------------------- 1 | # This file is distributed under the same license as the package. 2 | msgid "" 3 | msgstr "" 4 | "Project-Id-Version: \n" 5 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 6 | "POT-Creation-Date: 2011-03-06 14:33:36+00:00\n" 7 | "MIME-Version: 1.0\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "PO-Revision-Date: 2012-03-22 17:32+0200\n" 11 | "X-Poedit-Language: Romanian\n" 12 | "X-Poedit-Country: Romania\n" 13 | "Language-Team: Web Geeks\n" 14 | "Last-Translator: \n" 15 | 16 | #: functions.php:53 17 | msgid "Enter title of new page" 18 | msgstr "Introduceţi titlul de pagină nouă" 19 | 20 | #: functions.php:54 21 | msgid "child pages" 22 | msgstr "pagini de copil" 23 | 24 | #: functions.php:55 25 | #: functions.php:381 26 | msgid "Edit page" 27 | msgstr "Editare pagină" 28 | 29 | #: functions.php:56 30 | #: functions.php:382 31 | msgid "View page" 32 | msgstr "Vizualizare pagină" 33 | 34 | #: functions.php:57 35 | #: functions.php:381 36 | msgid "Edit" 37 | msgstr "Editare" 38 | 39 | #: functions.php:58 40 | #: functions.php:382 41 | msgid "View" 42 | msgstr "Vizualizare" 43 | 44 | #: functions.php:59 45 | msgid "Add page" 46 | msgstr "Adăugare pagină" 47 | 48 | #: functions.php:60 49 | #: functions.php:386 50 | msgid "Add new page after" 51 | msgstr "Adăugare pagină după" 52 | 53 | #: functions.php:61 54 | msgid "after" 55 | msgstr "după" 56 | 57 | #: functions.php:62 58 | msgid "inside" 59 | msgstr "interior" 60 | 61 | #: functions.php:63 62 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 63 | msgstr "Ne pare rău, nu se poate crea o pagină sub la o pagină cu statut de \"proiect\"." 64 | 65 | #: functions.php:64 66 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 67 | msgstr "Ne pare rău, nu se poate crea o pagină sub la o pagină cu statut de \"gunoi\"." 68 | 69 | #: functions.php:65 70 | msgid "Sorry, can't create a page after a page with status \"trash\"." 71 | msgstr "Ne pare rău, nu se poate crea o pagină după pagină, cu statut \"gunoi\"." 72 | 73 | #: functions.php:66 74 | #: functions.php:390 75 | msgid "Add new page inside" 76 | msgstr "Adăugare pagină nouă în interiorul" 77 | 78 | #: functions.php:67 79 | msgid "draft" 80 | msgstr "proiectul" 81 | 82 | #: functions.php:68 83 | msgid "future" 84 | msgstr "viitor" 85 | 86 | #: functions.php:69 87 | msgid "protected" 88 | msgstr "protejat" 89 | 90 | #: functions.php:70 91 | #: functions.php:644 92 | msgid "pending" 93 | msgstr "aşteptare" 94 | 95 | #: functions.php:71 96 | msgid "private" 97 | msgstr "privat" 98 | 99 | #: functions.php:72 100 | msgid "trash" 101 | msgstr "gunoi" 102 | 103 | #: functions.php:73 104 | msgid "Password protected page" 105 | msgstr "Pagina protejată prin parolă" 106 | 107 | #: functions.php:74 108 | msgid "Adding page..." 109 | msgstr "Adăugarea de pagină..." 110 | 111 | #: functions.php:175 112 | msgid "settings" 113 | msgstr "Setări" 114 | 115 | #: functions.php:180 116 | msgid "Select where to show a tree for pages and custom post types" 117 | msgstr "Selectaţi de unde pentru a afişa un copac pentru pagini şi tipurile particularizate post" 118 | 119 | #: functions.php:204 120 | msgid "On dashboard" 121 | msgstr "Pe tabloul de bord" 122 | 123 | #: functions.php:208 124 | msgid "In menu" 125 | msgstr "În meniul" 126 | 127 | #: functions.php:219 128 | msgid "Save Changes" 129 | msgstr "Salvaţi modificările" 130 | 131 | #: functions.php:335 132 | msgid "No posts found." 133 | msgstr "Nu posturile de găsit." 134 | 135 | #: functions.php:341 136 | msgid "All" 137 | msgstr "Toate" 138 | 139 | #: functions.php:342 140 | msgid "Public" 141 | msgstr "Publice" 142 | 143 | #: functions.php:343 144 | msgid "Trash" 145 | msgstr "Gunoi" 146 | 147 | #: functions.php:348 148 | msgid "Expand" 149 | msgstr "Extinde" 150 | 151 | #: functions.php:349 152 | msgid "Collapse" 153 | msgstr "Colaps" 154 | 155 | #: functions.php:357 156 | msgid "Clear search" 157 | msgstr "Căutare clar" 158 | 159 | #: functions.php:358 160 | msgid "Search" 161 | msgstr "Căutare" 162 | 163 | #: functions.php:359 164 | msgid "Searching..." 165 | msgstr "Se caută..." 166 | 167 | #: functions.php:360 168 | msgid "Nothing found." 169 | msgstr "Nimic găsit." 170 | 171 | #: functions.php:366 172 | msgid "Loading..." 173 | msgstr "Încărcare..." 174 | 175 | #: functions.php:371 176 | msgid "Search: no pages found" 177 | msgstr "Căutare: nu pagini găsit" 178 | 179 | #: functions.php:374 180 | msgid "Loading tree" 181 | msgstr "Încărcare copac" 182 | 183 | #: functions.php:386 184 | msgid "After" 185 | msgstr "După" 186 | 187 | #: functions.php:390 188 | msgid "Inside" 189 | msgstr "În interiorul" 190 | 191 | #: functions.php:394 192 | msgid "Can not create page inside of a page with draft status" 193 | msgstr "Nu puteţi crea pagina în interiorul o pagină cu statut de proiect" 194 | 195 | #: functions.php:397 196 | msgid "Last modified" 197 | msgstr "Modificat ultima dată" 198 | 199 | #: functions.php:399 200 | msgid "by" 201 | msgstr "de" 202 | 203 | #: functions.php:402 204 | msgid "Page ID" 205 | msgstr "ID-ul page" 206 | 207 | #: functions.php:609 208 | msgid "Unknown user" 209 | msgstr "Utilizator necunoscut" 210 | 211 | #: functions.php:614 212 | msgid "" 213 | msgstr "< Fără titlu pagină >" 214 | 215 | #: functions.php:634 216 | msgid "Comments" 217 | msgstr "Comentarii" 218 | 219 | #: functions.php:641 220 | msgid "%s pending" 221 | msgstr "%s până la" 222 | 223 | #: functions.php:651 224 | msgctxt "comment count" 225 | msgid "0" 226 | msgstr "0" 227 | 228 | #: functions.php:651 229 | msgctxt "comment count" 230 | msgid "1" 231 | msgstr "1" 232 | 233 | #: functions.php:651 234 | msgctxt "comment count" 235 | msgid "%" 236 | msgstr "%" 237 | 238 | #: functions.php:682 239 | msgid "Click to edit. Drag to move." 240 | msgstr "Faceţi clic pentru a edita. Trageţi pentru a muta." 241 | 242 | #: functions.php:833 243 | msgid "New page" 244 | msgstr "Pagină nouă" 245 | 246 | #: functions.php:1015 247 | msgid "Close" 248 | msgstr "Închide" 249 | 250 | #: functions.php:1016 251 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 252 | msgstr " Vă mulţumim pentru folosirea acestui plugin! Dacă aveţi nevoie de ajutor vă rugăm să verificaţi pagina sau Forum ." 253 | 254 | #: functions.php:1017 255 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 256 | msgstr "Dacă vă place acest plug-in, vă rugăm să munca mea prin donarea - sau cel puţin spune ceva frumos despre acest plug-in într-un post pe blog-ul sau Twitter." 257 | 258 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-et.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: \n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2011-03-06 14:33:36+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2012-09-02 16:12+0200\n" 12 | "Last-Translator: \n" 13 | "Language-Team: LANGUAGE \n" 14 | 15 | #: functions.php:53 16 | msgid "Enter title of new page" 17 | msgstr "Sisesta uue lehekülje pealkiri" 18 | 19 | #: functions.php:54 20 | msgid "child pages" 21 | msgstr "alamleht" 22 | 23 | #: functions.php:55 functions.php:381 24 | msgid "Edit page" 25 | msgstr "Muuda lehte" 26 | 27 | #: functions.php:56 functions.php:382 28 | msgid "View page" 29 | msgstr "Vaata lehekülge" 30 | 31 | #: functions.php:57 functions.php:381 32 | msgid "Edit" 33 | msgstr "Muuda" 34 | 35 | #: functions.php:58 functions.php:382 36 | msgid "View" 37 | msgstr "Vaata" 38 | 39 | #: functions.php:59 40 | msgid "Add page" 41 | msgstr "Lisa lehekülg" 42 | 43 | #: functions.php:60 functions.php:386 44 | msgid "Add new page after" 45 | msgstr "Lisa uus lehekülg peale" 46 | 47 | #: functions.php:61 48 | msgid "after" 49 | msgstr "peale" 50 | 51 | #: functions.php:62 52 | msgid "inside" 53 | msgstr "sees" 54 | 55 | #: functions.php:63 56 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 57 | msgstr "Vabandust! Ei saa luua alamlehte, kui lehekülje staatus on \"draft\"." 58 | 59 | #: functions.php:64 60 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 61 | msgstr "Vabandust! Ei saa luua alamlehte, kui lehekülje staatus on \"trash\"." 62 | 63 | #: functions.php:65 64 | msgid "Sorry, can't create a page after a page with status \"trash\"." 65 | msgstr "" 66 | "Vabandust! Ei ei ole võimalik luua uut lehekülge peale lehte, mille staatus " 67 | "on \"trash\"." 68 | 69 | #: functions.php:66 functions.php:390 70 | msgid "Add new page inside" 71 | msgstr "Lisa uus alamleht" 72 | 73 | #: functions.php:67 74 | msgid "draft" 75 | msgstr "mustand" 76 | 77 | #: functions.php:68 78 | msgid "future" 79 | msgstr "võimalus" 80 | 81 | #: functions.php:69 82 | msgid "protected" 83 | msgstr "kaitstud" 84 | 85 | #: functions.php:70 functions.php:644 86 | msgid "pending" 87 | msgstr "pooleliolev" 88 | 89 | #: functions.php:71 90 | msgid "private" 91 | msgstr "privaatne" 92 | 93 | #: functions.php:72 94 | msgid "trash" 95 | msgstr "prügi" 96 | 97 | #: functions.php:73 98 | msgid "Password protected page" 99 | msgstr "Parooliga kaitstud lehekülg" 100 | 101 | #: functions.php:74 102 | msgid "Adding page..." 103 | msgstr "Lisan lehekülge..." 104 | 105 | #: functions.php:175 106 | msgid "settings" 107 | msgstr "seaded" 108 | 109 | #: functions.php:180 110 | msgid "Select where to show a tree for pages and custom post types" 111 | msgstr "Vali kus näidatakse järiekorra muutmise võimalust" 112 | 113 | #: functions.php:204 114 | msgid "On dashboard" 115 | msgstr "Töölaual" 116 | 117 | #: functions.php:208 118 | msgid "In menu" 119 | msgstr "Menüüs" 120 | 121 | #: functions.php:219 122 | msgid "Save Changes" 123 | msgstr "Salvesta muudatused" 124 | 125 | #: functions.php:335 126 | msgid "No posts found." 127 | msgstr "Postitusi ei leitud" 128 | 129 | #: functions.php:341 130 | msgid "All" 131 | msgstr "Kõik" 132 | 133 | #: functions.php:342 134 | msgid "Public" 135 | msgstr "Avalik" 136 | 137 | #: functions.php:343 138 | msgid "Trash" 139 | msgstr "Prügi" 140 | 141 | #: functions.php:348 142 | msgid "Expand" 143 | msgstr "Laienda" 144 | 145 | #: functions.php:349 146 | msgid "Collapse" 147 | msgstr "Kollaps" 148 | 149 | #: functions.php:357 150 | msgid "Clear search" 151 | msgstr "Tühista otsing" 152 | 153 | #: functions.php:358 154 | msgid "Search" 155 | msgstr "Otsi" 156 | 157 | #: functions.php:359 158 | msgid "Searching..." 159 | msgstr "Otsin..." 160 | 161 | #: functions.php:360 162 | msgid "Nothing found." 163 | msgstr "Midagi ei leitud." 164 | 165 | #: functions.php:366 166 | msgid "Loading..." 167 | msgstr "Laen..." 168 | 169 | #: functions.php:371 170 | msgid "Search: no pages found" 171 | msgstr "Otsing: lehekülgi ei leitud" 172 | 173 | #: functions.php:374 174 | msgid "Loading tree" 175 | msgstr "Laen" 176 | 177 | #: functions.php:386 178 | msgid "After" 179 | msgstr "Peale" 180 | 181 | #: functions.php:390 182 | msgid "Inside" 183 | msgstr "Sees" 184 | 185 | #: functions.php:394 186 | msgid "Can not create page inside of a page with draft status" 187 | msgstr "Ei saa luua alamlehte, kui lehekülg on mustand" 188 | 189 | #: functions.php:397 190 | msgid "Last modified" 191 | msgstr "Viimati muudetud" 192 | 193 | #: functions.php:399 194 | msgid "by" 195 | msgstr " " 196 | 197 | #: functions.php:402 198 | msgid "Page ID" 199 | msgstr "Lehekülje ID" 200 | 201 | #: functions.php:609 202 | msgid "Unknown user" 203 | msgstr "Tundmatu kasutaja" 204 | 205 | #: functions.php:614 206 | msgid "" 207 | msgstr "" 208 | 209 | #: functions.php:634 210 | msgid "Comments" 211 | msgstr "Kommentaarid" 212 | 213 | #: functions.php:641 214 | msgid "%s pending" 215 | msgstr "% pooleli" 216 | 217 | #: functions.php:651 218 | msgctxt "comment count" 219 | msgid "0" 220 | msgstr "0" 221 | 222 | #: functions.php:651 223 | msgctxt "comment count" 224 | msgid "1" 225 | msgstr "1" 226 | 227 | #: functions.php:651 228 | msgctxt "comment count" 229 | msgid "%" 230 | msgstr "%" 231 | 232 | #: functions.php:682 233 | msgid "Click to edit. Drag to move." 234 | msgstr "Kliki muutmiseks. Lohista liigutamiseks." 235 | 236 | #: functions.php:833 237 | msgid "New page" 238 | msgstr "Uus lehekülg" 239 | 240 | #: functions.php:1015 241 | msgid "Close" 242 | msgstr "Sulge" 243 | 244 | #: functions.php:1016 245 | msgid "" 246 | "Thank you for using this plugin! If you need help please " 247 | "check out the plugin " 249 | "homepage or the support forum." 251 | msgstr "" 252 | "Tänan et kasutad meie pluginat! Vajadusel külasta plugina " 255 | "kodulehtevõi tugifoorumit." 257 | 258 | #: functions.php:1017 259 | msgid "" 260 | "If you like this plugin, please support my " 262 | "work by donating - or at least say something nice about this plugin in a " 263 | "blog post or tweet." 264 | msgstr "" 265 | "Kui meie plugin sulle meeldib toeta meie " 267 | "tööd annetades." 268 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-el.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2010 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: CMS tree page view v0.7.18\n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2011-03-06 14:33:36+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=utf-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2011-03-21 04:17+0200\n" 12 | "Last-Translator: Mihalis Papanousis \n" 13 | "Language-Team: Mihalis Papanousis - http://aenaon.biz \n" 14 | "Plural-Forms: nplurals=2; plural=(n != 1)\n" 15 | "X-Poedit-Language: Greek\n" 16 | "X-Poedit-Country: GREECE\n" 17 | "X-Poedit-SourceCharset: utf-8\n" 18 | 19 | #: functions.php:53 20 | msgid "Enter title of new page" 21 | msgstr "Δώστε τον τίτλο της νέας σελίδας" 22 | 23 | #: functions.php:54 24 | msgid "child pages" 25 | msgstr "θυγατρικές σελίδες" 26 | 27 | #: functions.php:55 28 | #: functions.php:381 29 | msgid "Edit page" 30 | msgstr "Επεξεργασία σελίδας" 31 | 32 | #: functions.php:56 33 | #: functions.php:382 34 | msgid "View page" 35 | msgstr "Προβολή σελίδας" 36 | 37 | #: functions.php:57 38 | #: functions.php:381 39 | msgid "Edit" 40 | msgstr "Επεξεργασία" 41 | 42 | #: functions.php:58 43 | #: functions.php:382 44 | msgid "View" 45 | msgstr "Προβολή" 46 | 47 | #: functions.php:59 48 | msgid "Add page" 49 | msgstr "Προσθήκη σελίδας" 50 | 51 | #: functions.php:60 52 | #: functions.php:386 53 | msgid "Add new page after" 54 | msgstr "Προσθήκη σελίδας μετά τη" 55 | 56 | #: functions.php:61 57 | msgid "after" 58 | msgstr "μετά" 59 | 60 | #: functions.php:62 61 | msgid "inside" 62 | msgstr "θυγατρική" 63 | 64 | #: functions.php:63 65 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 66 | msgstr "Συγνώμη. Δεν επιτρέπεται η προσθήκη θυγατρικής σελίδας σε σελίδα που είναι \"προσχέδιο\"." 67 | 68 | #: functions.php:64 69 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 70 | msgstr "Συγνώμη. Δεν επιτρέπεται η προσθήκη θυγατρικής σελίδας σε σελίδα που έχει \"διαγραφή\"." 71 | 72 | #: functions.php:65 73 | msgid "Sorry, can't create a page after a page with status \"trash\"." 74 | msgstr "Συγνώμη. Δεν επιτρέπεται η προσθήκη σελίδας μετά απο μια σελίδα που έχει \"διαγραφή\"." 75 | 76 | #: functions.php:66 77 | #: functions.php:390 78 | msgid "Add new page inside" 79 | msgstr "Προσθήκη θυγατρικής σελίδας" 80 | 81 | #: functions.php:67 82 | msgid "draft" 83 | msgstr "προσχέδιο" 84 | 85 | #: functions.php:68 86 | msgid "future" 87 | msgstr "προγραμματισμένη" 88 | 89 | #: functions.php:69 90 | msgid "protected" 91 | msgstr "προστατευμένη" 92 | 93 | #: functions.php:70 94 | #: functions.php:644 95 | msgid "pending" 96 | msgstr "για έλεγχο" 97 | 98 | #: functions.php:71 99 | msgid "private" 100 | msgstr "προσωπική" 101 | 102 | #: functions.php:72 103 | msgid "trash" 104 | msgstr "στον κάδο" 105 | 106 | #: functions.php:73 107 | msgid "Password protected page" 108 | msgstr "Σελίδα προστατευμένη με συνθηματικό " 109 | 110 | #: functions.php:74 111 | msgid "Adding page..." 112 | msgstr "Πρόσθεση σελίδας..." 113 | 114 | #: functions.php:175 115 | msgid "settings" 116 | msgstr "ρυθμίσεις" 117 | 118 | #: functions.php:180 119 | msgid "Select where to show a tree for pages and custom post types" 120 | msgstr "Επιλέξτε που θα θέλατε να εμφανίζεται ένα \"δένδρο\" των σελίδων και των άρθρων ειδικού τύπου" 121 | 122 | #: functions.php:204 123 | msgid "On dashboard" 124 | msgstr "Στον πίνακα ελέγχου" 125 | 126 | #: functions.php:208 127 | msgid "In menu" 128 | msgstr "Στο μενού" 129 | 130 | #: functions.php:219 131 | msgid "Save Changes" 132 | msgstr "Αποθήκευση Αλλαγών" 133 | 134 | #: functions.php:335 135 | msgid "No posts found." 136 | msgstr "Δεν βρέθηκαν άρθρα." 137 | 138 | #: functions.php:341 139 | msgid "All" 140 | msgstr "Όλες" 141 | 142 | #: functions.php:342 143 | msgid "Public" 144 | msgstr "Δημόσιες" 145 | 146 | #: functions.php:343 147 | msgid "Trash" 148 | msgstr "Στον κάδο" 149 | 150 | #: functions.php:348 151 | msgid "Expand" 152 | msgstr "Ανάπτυξη" 153 | 154 | #: functions.php:349 155 | msgid "Collapse" 156 | msgstr "Σύμπτυξη" 157 | 158 | #: functions.php:357 159 | msgid "Clear search" 160 | msgstr "Εκκαθάριση αναζήτησης" 161 | 162 | #: functions.php:358 163 | msgid "Search" 164 | msgstr "Αναζήτηση" 165 | 166 | #: functions.php:359 167 | msgid "Searching..." 168 | msgstr "Αναζήτηση..." 169 | 170 | #: functions.php:360 171 | msgid "Nothing found." 172 | msgstr "Δεν βρέθεικε τίποτα." 173 | 174 | #: functions.php:366 175 | msgid "Loading..." 176 | msgstr "Φόρτωση..." 177 | 178 | #: functions.php:371 179 | msgid "Search: no pages found" 180 | msgstr "Αποτέλεσμα αναζήτησης: δεν βρέθηκαν σελίδες" 181 | 182 | #: functions.php:374 183 | msgid "Loading tree" 184 | msgstr "Φόρτωση \"δένδρου\"" 185 | 186 | #: functions.php:386 187 | msgid "After" 188 | msgstr "Μετά" 189 | 190 | #: functions.php:390 191 | msgid "Inside" 192 | msgstr "Θυγατρική" 193 | 194 | #: functions.php:394 195 | msgid "Can not create page inside of a page with draft status" 196 | msgstr "Δεν είναι δυνατή η δημιουργία θυγατρικής σελίδας μέσα σε γονική που έχει διαγραφεί." 197 | 198 | #: functions.php:397 199 | msgid "Last modified" 200 | msgstr "Τελευταία τροποποίηση" 201 | 202 | #: functions.php:399 203 | msgid "by" 204 | msgstr "απο" 205 | 206 | #: functions.php:402 207 | msgid "Page ID" 208 | msgstr "ID σελίδας" 209 | 210 | #: functions.php:609 211 | msgid "Unknown user" 212 | msgstr "Άγνωστο μέλος" 213 | 214 | #: functions.php:614 215 | msgid "" 216 | msgstr "<Σελίδα χωρίς τίτλο>" 217 | 218 | #: functions.php:634 219 | msgid "Comments" 220 | msgstr "Σχόλια" 221 | 222 | #: functions.php:641 223 | msgid "%s pending" 224 | msgstr "%s είναι για έλεγχο" 225 | 226 | #: functions.php:651 227 | msgctxt "comment count" 228 | msgid "0" 229 | msgstr "0" 230 | 231 | #: functions.php:651 232 | msgctxt "comment count" 233 | msgid "1" 234 | msgstr "1" 235 | 236 | #: functions.php:651 237 | msgctxt "comment count" 238 | msgid "%" 239 | msgstr "%" 240 | 241 | #: functions.php:682 242 | msgid "Click to edit. Drag to move." 243 | msgstr "Κάνετε κλίκ για επεξεργασία. Σύρετε για μετακίνηση." 244 | 245 | #: functions.php:833 246 | msgid "New page" 247 | msgstr "Νέα σελίδα" 248 | 249 | #: functions.php:1015 250 | msgid "Close" 251 | msgstr "Κλείσιμο" 252 | 253 | #: functions.php:1016 254 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 255 | msgstr "Ευχαριστώ που χρησιμοποιείτε αυτό το πρόσθετο! Άν χρειάζεστε βοήθεια παρακαλώ πηγαίνετε στην σελίδα του προσθέτου ή το φόρουμ υποστήριξης." 256 | 257 | #: functions.php:1017 258 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 259 | msgstr "Αν σας αρέσει αυτό το πρόσθετο, παρακαλώ υποστηρίξτε την δουλειά μου κάνοντας κάποια δωρεά - ή τουλάχιστον γράψετε κάτι καλό σχετικά με αυτό σε άρθρο κάποιου blog ή κάντε ένα tweet." 260 | 261 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view.pot: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2013 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: \n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2013-04-16 17:39:45+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | 15 | #: functions.php:66 functions.php:113 functions.php:1396 16 | msgid "Cheatin’ uh?" 17 | msgstr "" 18 | 19 | #: functions.php:321 20 | msgid "Enter title of new page" 21 | msgstr "" 22 | 23 | #: functions.php:322 24 | msgid "child pages" 25 | msgstr "" 26 | 27 | #: functions.php:323 functions.php:970 28 | msgid "Edit page" 29 | msgstr "" 30 | 31 | #: functions.php:324 functions.php:971 32 | msgid "View page" 33 | msgstr "" 34 | 35 | #: functions.php:325 functions.php:970 36 | msgid "Edit" 37 | msgstr "" 38 | 39 | #: functions.php:326 functions.php:971 40 | msgid "View" 41 | msgstr "" 42 | 43 | #: functions.php:327 44 | msgid "Add page" 45 | msgstr "" 46 | 47 | #: functions.php:328 functions.php:979 48 | msgid "Add new page after" 49 | msgstr "" 50 | 51 | #: functions.php:329 52 | msgid "after" 53 | msgstr "" 54 | 55 | #: functions.php:330 56 | msgid "inside" 57 | msgstr "" 58 | 59 | #: functions.php:331 60 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 61 | msgstr "" 62 | 63 | #: functions.php:332 64 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 65 | msgstr "" 66 | 67 | #: functions.php:333 68 | msgid "Sorry, can't create a page after a page with status \"trash\"." 69 | msgstr "" 70 | 71 | #: functions.php:334 functions.php:984 72 | msgid "Add new page inside" 73 | msgstr "" 74 | 75 | #: functions.php:335 functions.php:341 76 | msgid "draft" 77 | msgstr "" 78 | 79 | #: functions.php:336 functions.php:342 80 | msgid "future" 81 | msgstr "" 82 | 83 | #: functions.php:337 functions.php:343 84 | msgid "protected" 85 | msgstr "" 86 | 87 | #: functions.php:338 functions.php:344 functions.php:1296 88 | msgid "pending" 89 | msgstr "" 90 | 91 | #: functions.php:339 functions.php:345 92 | msgid "private" 93 | msgstr "" 94 | 95 | #: functions.php:340 functions.php:346 96 | msgid "trash" 97 | msgstr "" 98 | 99 | #: functions.php:347 100 | msgid "Password protected page" 101 | msgstr "" 102 | 103 | #: functions.php:348 104 | msgid "Adding page..." 105 | msgstr "" 106 | 107 | #: functions.php:349 108 | msgid "Adding ..." 109 | msgstr "" 110 | 111 | #: functions.php:350 functions.php:1057 112 | msgid "No posts found." 113 | msgstr "" 114 | 115 | #: functions.php:448 116 | msgid "Tree View" 117 | msgstr "" 118 | 119 | #: functions.php:457 120 | msgid "List View" 121 | msgstr "" 122 | 123 | #: functions.php:493 124 | msgid "Settings" 125 | msgstr "" 126 | 127 | #: functions.php:533 128 | msgctxt "name of dashboard" 129 | msgid "%1$s Tree" 130 | msgstr "" 131 | 132 | #: functions.php:571 133 | msgctxt "name in menu" 134 | msgid "Tree View" 135 | msgstr "" 136 | 137 | #: functions.php:572 138 | msgctxt "title on page with tree" 139 | msgid "%1$s Tree View" 140 | msgstr "" 141 | 142 | #: functions.php:592 143 | msgid "settings" 144 | msgstr "" 145 | 146 | #: functions.php:598 147 | msgid "Select where to show a tree for pages and custom post types" 148 | msgstr "" 149 | 150 | #: functions.php:642 151 | msgid "On dashboard" 152 | msgstr "" 153 | 154 | #: functions.php:646 155 | msgid "In menu" 156 | msgstr "" 157 | 158 | #: functions.php:650 159 | msgid "On post overview screen" 160 | msgstr "" 161 | 162 | #: functions.php:669 163 | msgid "Save Changes" 164 | msgstr "" 165 | 166 | #: functions.php:913 167 | msgid "All" 168 | msgstr "" 169 | 170 | #: functions.php:918 171 | msgid "Public" 172 | msgstr "" 173 | 174 | #: functions.php:923 175 | msgid "Trash" 176 | msgstr "" 177 | 178 | #: functions.php:931 179 | msgid "Expand" 180 | msgstr "" 181 | 182 | #: functions.php:932 183 | msgid "Collapse" 184 | msgstr "" 185 | 186 | #: functions.php:940 187 | msgid "Clear search" 188 | msgstr "" 189 | 190 | #: functions.php:941 191 | msgid "Search" 192 | msgstr "" 193 | 194 | #: functions.php:942 195 | msgid "Searching..." 196 | msgstr "" 197 | 198 | #: functions.php:943 199 | msgid "Nothing found." 200 | msgstr "" 201 | 202 | #: functions.php:950 203 | msgid "Loading..." 204 | msgstr "" 205 | 206 | #: functions.php:955 207 | msgid "Search: no pages found" 208 | msgstr "" 209 | 210 | #: functions.php:958 211 | msgid "Loading tree" 212 | msgstr "" 213 | 214 | #: functions.php:979 functions.php:1016 215 | msgid "After" 216 | msgstr "" 217 | 218 | #: functions.php:984 functions.php:1017 219 | msgid "Inside" 220 | msgstr "" 221 | 222 | #: functions.php:988 223 | msgid "Can not create page inside of a page with draft status" 224 | msgstr "" 225 | 226 | #: functions.php:1005 227 | msgid "Add page(s)" 228 | msgstr "" 229 | 230 | #: functions.php:1010 231 | msgid "Enter title here" 232 | msgstr "" 233 | 234 | #: functions.php:1015 235 | msgid "Position" 236 | msgstr "" 237 | 238 | #: functions.php:1022 239 | msgid "Status" 240 | msgstr "" 241 | 242 | #: functions.php:1023 243 | msgid "Draft" 244 | msgstr "" 245 | 246 | #: functions.php:1024 247 | msgid "Published" 248 | msgstr "" 249 | 250 | #: functions.php:1028 251 | msgid "Add" 252 | msgstr "" 253 | 254 | #: functions.php:1029 255 | msgid "or" 256 | msgstr "" 257 | 258 | #: functions.php:1030 259 | msgid "cancel" 260 | msgstr "" 261 | 262 | #: functions.php:1040 263 | msgid "Last modified" 264 | msgstr "" 265 | 266 | #: functions.php:1042 267 | msgid "by" 268 | msgstr "" 269 | 270 | #: functions.php:1045 271 | msgid "Page ID" 272 | msgstr "" 273 | 274 | #: functions.php:1088 275 | msgctxt "headline of page with tree" 276 | msgid "%1$s Tree View" 277 | msgstr "" 278 | 279 | #: functions.php:1248 280 | msgid "Unknown user" 281 | msgstr "" 282 | 283 | #: functions.php:1253 284 | msgid "" 285 | msgstr "" 286 | 287 | #: functions.php:1286 288 | msgid "Comments" 289 | msgstr "" 290 | 291 | #: functions.php:1293 292 | msgid "%s pending" 293 | msgstr "" 294 | 295 | #: functions.php:1303 296 | msgctxt "comment count" 297 | msgid "0" 298 | msgstr "" 299 | 300 | #: functions.php:1303 301 | msgctxt "comment count" 302 | msgid "1" 303 | msgstr "" 304 | 305 | #: functions.php:1303 306 | msgctxt "comment count" 307 | msgid "%" 308 | msgstr "" 309 | 310 | #: functions.php:1502 311 | msgid "New page" 312 | msgstr "" 313 | 314 | #: functions.php:1692 315 | msgid "Thanks for using my plugin" 316 | msgstr "" 317 | 318 | #: functions.php:1694 319 | msgid "" 320 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 321 | "as much as I do." 322 | msgstr "" 323 | 324 | #: functions.php:1695 325 | msgid "/Pär Thernström - plugin creator" 326 | msgstr "" 327 | 328 | #: functions.php:1697 329 | msgid "I like this plugin
– how can I thank you?" 330 | msgstr "" 331 | 332 | #: functions.php:1698 333 | msgid "There are serveral ways for you to show your appreciation:" 334 | msgstr "" 335 | 336 | #: functions.php:1700 337 | msgid "" 338 | "Give it a nice review over at the WordPress Plugin " 339 | "Directory" 340 | msgstr "" 341 | 342 | #: functions.php:1701 343 | msgid "Give a donation – any amount will make me happy" 344 | msgstr "" 345 | 346 | #: functions.php:1702 347 | msgid "" 348 | "Post a nice tweet or make a nice blog post about the " 349 | "plugin" 350 | msgstr "" 351 | 352 | #: functions.php:1705 353 | msgid "Support" 354 | msgstr "" 355 | 356 | #: functions.php:1706 357 | msgid "Please see the support forum for help." 358 | msgstr "" 359 | 360 | #: functions.php:1710 361 | msgid "Hide until next upgrade" 362 | msgstr "" 363 | -------------------------------------------------------------------------------- /scripts/jquery.alerts.js: -------------------------------------------------------------------------------- 1 | // jQuery Alert Dialogs Plugin 2 | // 3 | // Version 1.1 4 | // 5 | // Cory S.N. LaViska 6 | // A Beautiful Site (http://abeautifulsite.net/) 7 | // 14 May 2009 8 | // 9 | // Visit http://abeautifulsite.net/notebook/87 for more information 10 | // 11 | // Usage: 12 | // jAlert( message, [title, callback] ) 13 | // jConfirm( message, [title, callback] ) 14 | // jPrompt( message, [value, title, callback] ) 15 | // 16 | // History: 17 | // 18 | // 1.00 - Released (29 December 2008) 19 | // 20 | // 1.01 - Fixed bug where unbinding would destroy all resize events 21 | // 22 | // License: 23 | // 24 | // This plugin is dual-licensed under the GNU General Public License and the MIT License and 25 | // is copyright 2008 A Beautiful Site, LLC. 26 | // 27 | (function($) { 28 | 29 | $.alerts = { 30 | 31 | // These properties can be read/written by accessing $.alerts.propertyName from your scripts at any time 32 | 33 | verticalOffset: -75, // vertical offset of the dialog from center screen, in pixels 34 | horizontalOffset: 0, // horizontal offset of the dialog from center screen, in pixels/ 35 | repositionOnResize: true, // re-centers the dialog on window resize 36 | overlayOpacity: .01, // transparency level of overlay 37 | overlayColor: '#FFF', // base color of overlay 38 | draggable: true, // make the dialogs draggable (requires UI Draggables plugin) 39 | okButton: ' OK ', // text for the OK button 40 | cancelButton: ' Cancel ', // text for the Cancel button 41 | dialogClass: null, // if specified, this class will be applied to all dialogs 42 | 43 | // Public methods 44 | 45 | alert: function(message, title, callback) { 46 | if( title == null ) title = 'Alert'; 47 | $.alerts._show(title, message, null, 'alert', function(result) { 48 | if( callback ) callback(result); 49 | }); 50 | }, 51 | 52 | confirm: function(message, title, callback) { 53 | if( title == null ) title = 'Confirm'; 54 | $.alerts._show(title, message, null, 'confirm', function(result) { 55 | if( callback ) callback(result); 56 | }); 57 | }, 58 | 59 | prompt: function(message, value, title, callback) { 60 | if( title == null ) title = 'Prompt'; 61 | $.alerts._show(title, message, value, 'prompt', function(result) { 62 | if( callback ) callback(result); 63 | }); 64 | }, 65 | 66 | // Private methods 67 | 68 | _show: function(title, msg, value, type, callback) { 69 | 70 | $.alerts._hide(); 71 | $.alerts._overlay('show'); 72 | 73 | $("BODY").append( 74 | ''); 80 | 81 | if( $.alerts.dialogClass ) $("#popup_container").addClass($.alerts.dialogClass); 82 | 83 | // IE6 Fix 84 | // var pos = ($.browser.msie && parseInt($.browser.version) <= 6 ) ? 'absolute' : 'fixed'; 85 | var pos = 'fixed'; 86 | 87 | $("#popup_container").css({ 88 | position: pos, 89 | zIndex: 99999, 90 | padding: 0, 91 | margin: 0 92 | }); 93 | 94 | $("#popup_title").text(title); 95 | $("#popup_content").addClass(type); 96 | $("#popup_message").text(msg); 97 | $("#popup_message").html( $("#popup_message").text().replace(/\n/g, '
') ); 98 | 99 | $("#popup_container").css({ 100 | minWidth: $("#popup_container").outerWidth(), 101 | maxWidth: $("#popup_container").outerWidth() 102 | }); 103 | 104 | $.alerts._reposition(); 105 | $.alerts._maintainPosition(true); 106 | 107 | switch( type ) { 108 | case 'alert': 109 | $("#popup_message").after(''); 110 | $("#popup_ok").click( function() { 111 | $.alerts._hide(); 112 | callback(true); 113 | }); 114 | $("#popup_ok").focus().keypress( function(e) { 115 | if( e.keyCode == 13 || e.keyCode == 27 ) $("#popup_ok").trigger('click'); 116 | }); 117 | break; 118 | case 'confirm': 119 | $("#popup_message").after(''); 120 | $("#popup_ok").click( function() { 121 | $.alerts._hide(); 122 | if( callback ) callback(true); 123 | }); 124 | $("#popup_cancel").click( function() { 125 | $.alerts._hide(); 126 | if( callback ) callback(false); 127 | }); 128 | $("#popup_ok").focus(); 129 | $("#popup_ok, #popup_cancel").keypress( function(e) { 130 | if( e.keyCode == 13 ) $("#popup_ok").trigger('click'); 131 | if( e.keyCode == 27 ) $("#popup_cancel").trigger('click'); 132 | }); 133 | break; 134 | case 'prompt': 135 | $("#popup_message").append('
').after(''); 136 | $("#popup_prompt").width( $("#popup_message").width() ); 137 | $("#popup_ok").click( function() { 138 | var val = $("#popup_prompt").val(); 139 | $.alerts._hide(); 140 | if( callback ) callback( val ); 141 | }); 142 | $("#popup_cancel").click( function() { 143 | $.alerts._hide(); 144 | if( callback ) callback( null ); 145 | }); 146 | $("#popup_prompt, #popup_ok, #popup_cancel").keypress( function(e) { 147 | if( e.keyCode == 13 ) $("#popup_ok").trigger('click'); 148 | if( e.keyCode == 27 ) $("#popup_cancel").trigger('click'); 149 | }); 150 | if( value ) $("#popup_prompt").val(value); 151 | $("#popup_prompt").focus().select(); 152 | break; 153 | } 154 | 155 | // Make draggable 156 | if( $.alerts.draggable ) { 157 | try { 158 | $("#popup_container").draggable({ handle: $("#popup_title") }); 159 | $("#popup_title").css({ cursor: 'move' }); 160 | } catch(e) { /* requires jQuery UI draggables */ } 161 | } 162 | }, 163 | 164 | _hide: function() { 165 | $("#popup_container").remove(); 166 | $.alerts._overlay('hide'); 167 | $.alerts._maintainPosition(false); 168 | }, 169 | 170 | _overlay: function(status) { 171 | switch( status ) { 172 | case 'show': 173 | $.alerts._overlay('hide'); 174 | $("BODY").append(''); 175 | $("#popup_overlay").css({ 176 | position: 'absolute', 177 | zIndex: 99998, 178 | top: '0px', 179 | left: '0px', 180 | width: '100%', 181 | height: $(document).height(), 182 | background: $.alerts.overlayColor, 183 | opacity: $.alerts.overlayOpacity 184 | }); 185 | break; 186 | case 'hide': 187 | $("#popup_overlay").remove(); 188 | break; 189 | } 190 | }, 191 | 192 | _reposition: function() { 193 | var top = (($(window).height() / 2) - ($("#popup_container").outerHeight() / 2)) + $.alerts.verticalOffset; 194 | var left = (($(window).width() / 2) - ($("#popup_container").outerWidth() / 2)) + $.alerts.horizontalOffset; 195 | if( top < 0 ) top = 0; 196 | if( left < 0 ) left = 0; 197 | 198 | // IE6 fix 199 | // if( $.browser.msie && parseInt($.browser.version) <= 6 ) top = top + $(window).scrollTop(); 200 | 201 | $("#popup_container").css({ 202 | top: top + 'px', 203 | left: left + 'px' 204 | }); 205 | $("#popup_overlay").height( $(document).height() ); 206 | }, 207 | 208 | _maintainPosition: function(status) { 209 | if( $.alerts.repositionOnResize ) { 210 | switch(status) { 211 | case true: 212 | $(window).bind('resize', $.alerts._reposition); 213 | break; 214 | case false: 215 | $(window).unbind('resize', $.alerts._reposition); 216 | break; 217 | } 218 | } 219 | } 220 | 221 | } 222 | 223 | // Shortuct functions 224 | jAlert = function(message, title, callback) { 225 | $.alerts.alert(message, title, callback); 226 | } 227 | 228 | jConfirm = function(message, title, callback) { 229 | $.alerts.confirm(message, title, callback); 230 | }; 231 | 232 | jPrompt = function(message, value, title, callback) { 233 | $.alerts.prompt(message, value, title, callback); 234 | }; 235 | 236 | })(jQuery); -------------------------------------------------------------------------------- /languages/cms-tree-page-view-nb_NO.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2013 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: \n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2013-04-16 17:39:45+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2013-06-30 19:31+0100\n" 12 | "Last-Translator: FULL NAME \n" 13 | "Language-Team: LANGUAGE \n" 14 | "X-Generator: Poedit 1.5.5\n" 15 | 16 | #: functions.php:66 functions.php:113 functions.php:1396 17 | msgid "Cheatin’ uh?" 18 | msgstr "" 19 | 20 | #: functions.php:321 21 | msgid "Enter title of new page" 22 | msgstr "Skriv inn tittel op ny side" 23 | 24 | #: functions.php:322 25 | msgid "child pages" 26 | msgstr "undersider" 27 | 28 | #: functions.php:323 functions.php:970 29 | msgid "Edit page" 30 | msgstr "Rediger side" 31 | 32 | #: functions.php:324 functions.php:971 33 | msgid "View page" 34 | msgstr "Se side" 35 | 36 | #: functions.php:325 functions.php:970 37 | msgid "Edit" 38 | msgstr "Rediger" 39 | 40 | #: functions.php:326 functions.php:971 41 | msgid "View" 42 | msgstr "Se på" 43 | 44 | #: functions.php:327 45 | msgid "Add page" 46 | msgstr "Legg til side" 47 | 48 | #: functions.php:328 functions.php:979 49 | msgid "Add new page after" 50 | msgstr "Legg til ny side etter" 51 | 52 | #: functions.php:329 53 | msgid "after" 54 | msgstr "etter" 55 | 56 | #: functions.php:330 57 | msgid "inside" 58 | msgstr "inne i" 59 | 60 | #: functions.php:331 61 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 62 | msgstr "Beklager, kan ikke legge til underside med status \"kladd\"." 63 | 64 | #: functions.php:332 65 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 66 | msgstr "Beklager, kan ikke legge til underside med status \"søppel\"." 67 | 68 | #: functions.php:333 69 | msgid "Sorry, can't create a page after a page with status \"trash\"." 70 | msgstr "" 71 | "Beklager, kan ikke legge til en side etter en side med status \"søppel\"." 72 | 73 | #: functions.php:334 functions.php:984 74 | msgid "Add new page inside" 75 | msgstr "Legg til ny side inne i" 76 | 77 | #: functions.php:335 functions.php:341 78 | msgid "draft" 79 | msgstr "kladd" 80 | 81 | #: functions.php:336 functions.php:342 82 | msgid "future" 83 | msgstr "fremtid" 84 | 85 | #: functions.php:337 functions.php:343 86 | msgid "protected" 87 | msgstr "beskyttet" 88 | 89 | #: functions.php:338 functions.php:344 functions.php:1296 90 | msgid "pending" 91 | msgstr "ventende" 92 | 93 | #: functions.php:339 functions.php:345 94 | msgid "private" 95 | msgstr "privat" 96 | 97 | #: functions.php:340 functions.php:346 98 | msgid "trash" 99 | msgstr "søppel" 100 | 101 | #: functions.php:347 102 | msgid "Password protected page" 103 | msgstr "passorbeskyttet side" 104 | 105 | #: functions.php:348 106 | msgid "Adding page..." 107 | msgstr "Legger til side.." 108 | 109 | #: functions.php:349 110 | msgid "Adding ..." 111 | msgstr "Legger til.." 112 | 113 | #: functions.php:350 functions.php:1057 114 | msgid "No posts found." 115 | msgstr "Ingen innlegg funnet" 116 | 117 | #: functions.php:448 118 | msgid "Tree View" 119 | msgstr "Tremeny" 120 | 121 | #: functions.php:457 122 | msgid "List View" 123 | msgstr "Listemeny" 124 | 125 | #: functions.php:493 126 | msgid "Settings" 127 | msgstr "Innstillinger" 128 | 129 | #: functions.php:533 130 | msgctxt "name of dashboard" 131 | msgid "%1$s Tree" 132 | msgstr "%1$s Tre" 133 | 134 | #: functions.php:571 135 | msgctxt "name in menu" 136 | msgid "Tree View" 137 | msgstr "Tremeny" 138 | 139 | #: functions.php:572 140 | msgctxt "title on page with tree" 141 | msgid "%1$s Tree View" 142 | msgstr "%1$s Tremeny" 143 | 144 | #: functions.php:592 145 | msgid "settings" 146 | msgstr "innstillinger" 147 | 148 | #: functions.php:598 149 | msgid "Select where to show a tree for pages and custom post types" 150 | msgstr "" 151 | 152 | #: functions.php:642 153 | msgid "On dashboard" 154 | msgstr "" 155 | 156 | #: functions.php:646 157 | msgid "In menu" 158 | msgstr "" 159 | 160 | #: functions.php:650 161 | msgid "On post overview screen" 162 | msgstr "" 163 | 164 | #: functions.php:669 165 | msgid "Save Changes" 166 | msgstr "Lagre endringer" 167 | 168 | #: functions.php:913 169 | msgid "All" 170 | msgstr "Alle" 171 | 172 | #: functions.php:918 173 | msgid "Public" 174 | msgstr "Offentlig" 175 | 176 | #: functions.php:923 177 | msgid "Trash" 178 | msgstr "Søppel" 179 | 180 | #: functions.php:931 181 | msgid "Expand" 182 | msgstr "Utvid" 183 | 184 | #: functions.php:932 185 | msgid "Collapse" 186 | msgstr "Kollapse" 187 | 188 | #: functions.php:940 189 | msgid "Clear search" 190 | msgstr "Slett søk" 191 | 192 | #: functions.php:941 193 | msgid "Search" 194 | msgstr "Søk" 195 | 196 | #: functions.php:942 197 | msgid "Searching..." 198 | msgstr "Søker.." 199 | 200 | #: functions.php:943 201 | msgid "Nothing found." 202 | msgstr "Ingenting funnet." 203 | 204 | #: functions.php:950 205 | msgid "Loading..." 206 | msgstr "Laster.." 207 | 208 | #: functions.php:955 209 | msgid "Search: no pages found" 210 | msgstr "Søk: Ingen sider funnet" 211 | 212 | #: functions.php:958 213 | msgid "Loading tree" 214 | msgstr "Laster treet" 215 | 216 | #: functions.php:979 functions.php:1016 217 | msgid "After" 218 | msgstr "Etter" 219 | 220 | #: functions.php:984 functions.php:1017 221 | msgid "Inside" 222 | msgstr "Inne i" 223 | 224 | #: functions.php:988 225 | msgid "Can not create page inside of a page with draft status" 226 | msgstr "Kan ikke lage en side inne i en side med status kladd" 227 | 228 | #: functions.php:1005 229 | msgid "Add page(s)" 230 | msgstr "Legg til side(r)" 231 | 232 | #: functions.php:1010 233 | msgid "Enter title here" 234 | msgstr "Legg til tittel her" 235 | 236 | #: functions.php:1015 237 | msgid "Position" 238 | msgstr "Stilling" 239 | 240 | #: functions.php:1022 241 | msgid "Status" 242 | msgstr "Status" 243 | 244 | #: functions.php:1023 245 | msgid "Draft" 246 | msgstr "Kladd" 247 | 248 | #: functions.php:1024 249 | msgid "Published" 250 | msgstr "Publisert" 251 | 252 | #: functions.php:1028 253 | msgid "Add" 254 | msgstr "Legg til" 255 | 256 | #: functions.php:1029 257 | msgid "or" 258 | msgstr "eller" 259 | 260 | #: functions.php:1030 261 | msgid "cancel" 262 | msgstr "avbryte" 263 | 264 | #: functions.php:1040 265 | msgid "Last modified" 266 | msgstr "Sist endret" 267 | 268 | #: functions.php:1042 269 | msgid "by" 270 | msgstr "av" 271 | 272 | #: functions.php:1045 273 | msgid "Page ID" 274 | msgstr "Sidens ID" 275 | 276 | #: functions.php:1088 277 | msgctxt "headline of page with tree" 278 | msgid "%1$s Tree View" 279 | msgstr "%1$s Tremeny" 280 | 281 | #: functions.php:1248 282 | msgid "Unknown user" 283 | msgstr "Ukjent bruker" 284 | 285 | #: functions.php:1253 286 | msgid "" 287 | msgstr "" 288 | 289 | #: functions.php:1286 290 | msgid "Comments" 291 | msgstr "Kommentarer" 292 | 293 | #: functions.php:1293 294 | msgid "%s pending" 295 | msgstr "%s venter" 296 | 297 | #: functions.php:1303 298 | msgctxt "comment count" 299 | msgid "0" 300 | msgstr "0" 301 | 302 | #: functions.php:1303 303 | msgctxt "comment count" 304 | msgid "1" 305 | msgstr "1" 306 | 307 | #: functions.php:1303 308 | msgctxt "comment count" 309 | msgid "%" 310 | msgstr "%" 311 | 312 | #: functions.php:1502 313 | msgid "New page" 314 | msgstr "Ny side" 315 | 316 | #: functions.php:1692 317 | msgid "Thanks for using my plugin" 318 | msgstr "" 319 | 320 | #: functions.php:1694 321 | msgid "" 322 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 323 | "as much as I do." 324 | msgstr "" 325 | 326 | #: functions.php:1695 327 | msgid "/Pär Thernström - plugin creator" 328 | msgstr "" 329 | 330 | #: functions.php:1697 331 | msgid "I like this plugin
– how can I thank you?" 332 | msgstr "" 333 | 334 | #: functions.php:1698 335 | msgid "There are serveral ways for you to show your appreciation:" 336 | msgstr "" 337 | 338 | #: functions.php:1700 339 | msgid "" 340 | "Give it a nice review over at the WordPress Plugin " 341 | "Directory" 342 | msgstr "" 343 | 344 | #: functions.php:1701 345 | msgid "Give a donation – any amount will make me happy" 346 | msgstr "" 347 | 348 | #: functions.php:1702 349 | msgid "" 350 | "Post a nice tweet or make a nice blog post about the " 351 | "plugin" 352 | msgstr "" 353 | 354 | #: functions.php:1705 355 | msgid "Support" 356 | msgstr "" 357 | 358 | #: functions.php:1706 359 | msgid "Plese see the support forum for help." 360 | msgstr "" 361 | 362 | #: functions.php:1710 363 | msgid "Hide until next upgrade" 364 | msgstr "" 365 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-pl_PL.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CMS Tree Page View\n" 4 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 5 | "POT-Creation-Date: 2010-08-28 21:55+0000\n" 6 | "PO-Revision-Date: 2011-08-08 15:18+0100\n" 7 | "Last-Translator: Michał Księżuk \n" 8 | "Language-Team: gadjukin.net \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=utf-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 | "X-Poedit-Language: Czech\n" 14 | "X-Poedit-SourceCharset: utf-8\n" 15 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" 16 | "X-Textdomain-Support: yes\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #@ default 20 | #: functions.php:639 21 | #, php-format 22 | msgid "%s pending" 23 | msgstr "%s oczekuje" 24 | 25 | #@ cms-tree-page-view 26 | #: functions.php:612 27 | msgid "" 28 | msgstr "" 29 | 30 | #@ cms-tree-page-view 31 | #: functions.php:60 32 | #: functions.php:384 33 | msgid "Add new page after" 34 | msgstr "Dodaj nową stronę po" 35 | 36 | #@ cms-tree-page-view 37 | #: functions.php:66 38 | #: functions.php:388 39 | msgid "Add new page inside" 40 | msgstr "Dodaj nową stroną wewnątrz" 41 | 42 | #@ cms-tree-page-view 43 | #: functions.php:59 44 | msgid "Add page" 45 | msgstr "Dodaj stronę" 46 | 47 | #@ cms-tree-page-view 48 | #: functions.php:74 49 | msgid "Adding page..." 50 | msgstr "Dodaję stronę..." 51 | 52 | #@ cms-tree-page-view 53 | #: functions.php:384 54 | msgid "After" 55 | msgstr "Po" 56 | 57 | #@ cms-tree-page-view 58 | #: functions.php:341 59 | msgid "All" 60 | msgstr "Wszystkie" 61 | 62 | #@ cms-tree-page-view 63 | #: functions.php:392 64 | msgid "Can not create page inside of a page with draft status" 65 | msgstr "Nie można utworzyć strony wewnątrz strony w stanie szkicu" 66 | 67 | #@ cms-tree-page-view 68 | #: functions.php:357 69 | msgid "Clear search" 70 | msgstr "Wyczyść wyszukiwanie" 71 | 72 | #@ cms-tree-page-view 73 | #: functions.php:680 74 | msgid "Click to edit. Drag to move." 75 | msgstr "Kliknij by edytować. Przeciągnij by przenieść." 76 | 77 | #@ cms-tree-page-view 78 | #: functions.php:349 79 | msgid "Collapse" 80 | msgstr "Zwiń" 81 | 82 | #@ default 83 | #: functions.php:632 84 | msgid "Comments" 85 | msgstr "Komentarze" 86 | 87 | #@ cms-tree-page-view 88 | #: functions.php:57 89 | #: functions.php:379 90 | msgid "Edit" 91 | msgstr "Edytuj" 92 | 93 | #@ cms-tree-page-view 94 | #: functions.php:55 95 | #: functions.php:379 96 | msgid "Edit page" 97 | msgstr "Edytuj stronę" 98 | 99 | #@ cms-tree-page-view 100 | #: functions.php:53 101 | msgid "Enter title of new page" 102 | msgstr "Wprowadź tytuł nowej strony" 103 | 104 | #@ cms-tree-page-view 105 | #: functions.php:348 106 | msgid "Expand" 107 | msgstr "Rozwiń" 108 | 109 | #@ cms-tree-page-view 110 | #: functions.php:208 111 | msgid "In menu" 112 | msgstr "W menu" 113 | 114 | #@ cms-tree-page-view 115 | #: functions.php:388 116 | msgid "Inside" 117 | msgstr "Wewnątrz" 118 | 119 | #@ cms-tree-page-view 120 | #: functions.php:395 121 | msgid "Last modified" 122 | msgstr "Ostatnio modyfikowana" 123 | 124 | #@ cms-tree-page-view 125 | #: functions.php:372 126 | msgid "Loading tree" 127 | msgstr "Ładuję drzewo" 128 | 129 | #@ cms-tree-page-view 130 | #: functions.php:366 131 | msgid "Loading..." 132 | msgstr "Ładuję..." 133 | 134 | #@ cms-tree-page-view 135 | #: functions.php:831 136 | msgid "New page" 137 | msgstr "Nowa strona" 138 | 139 | #@ cms-tree-page-view 140 | #: functions.php:335 141 | msgid "No posts found." 142 | msgstr "Nie znaleziono wpisów." 143 | 144 | #@ cms-tree-page-view 145 | #: functions.php:360 146 | msgid "Nothing found." 147 | msgstr "Nic nie znaleziono." 148 | 149 | #@ cms-tree-page-view 150 | #: functions.php:204 151 | msgid "On dashboard" 152 | msgstr "W kokpicie" 153 | 154 | #@ cms-tree-page-view 155 | #: functions.php:400 156 | msgid "Page ID" 157 | msgstr "ID Strony" 158 | 159 | #@ cms-tree-page-view 160 | #: functions.php:73 161 | msgid "Password protected page" 162 | msgstr "Strona chroniona hasłem" 163 | 164 | #@ cms-tree-page-view 165 | #: functions.php:342 166 | msgid "Public" 167 | msgstr "Publiczny" 168 | 169 | #@ cms-tree-page-view 170 | #: functions.php:219 171 | msgid "Save Changes" 172 | msgstr "Zapisz zmiany" 173 | 174 | #@ cms-tree-page-view 175 | #: functions.php:358 176 | msgid "Search" 177 | msgstr "Wyszukaj" 178 | 179 | #@ cms-tree-page-view 180 | #: functions.php:369 181 | msgid "Search: no pages found" 182 | msgstr "Wyszukiwanie: nie znaleziono stron" 183 | 184 | #@ cms-tree-page-view 185 | #: functions.php:359 186 | msgid "Searching..." 187 | msgstr "Szukam..." 188 | 189 | #@ cms-tree-page-view 190 | #: functions.php:180 191 | msgid "Select where to show a tree for pages and custom post types" 192 | msgstr "Wybierz gdzie wyświetlić drzewo stron i własnych typów wpisów" 193 | 194 | #@ cms-tree-page-view 195 | #: functions.php:63 196 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 197 | msgstr "Przepraszamy, nie można utworzyć podstrony dla strony w stanie szkicu" 198 | 199 | #@ cms-tree-page-view 200 | #: functions.php:607 201 | msgid "Unknown user" 202 | msgstr "Nieznany użytkownik" 203 | 204 | #@ cms-tree-page-view 205 | #: functions.php:58 206 | #: functions.php:380 207 | msgid "View" 208 | msgstr "Wyświetl" 209 | 210 | #@ cms-tree-page-view 211 | #: functions.php:56 212 | #: functions.php:380 213 | msgid "View page" 214 | msgstr "Wyświetl stronę" 215 | 216 | #@ cms-tree-page-view 217 | #: functions.php:61 218 | msgid "after" 219 | msgstr "po" 220 | 221 | #@ cms-tree-page-view 222 | #: functions.php:397 223 | msgid "by" 224 | msgstr "od" 225 | 226 | #@ cms-tree-page-view 227 | #: functions.php:54 228 | msgid "child pages" 229 | msgstr "podstrony" 230 | 231 | #@ default 232 | #: functions.php:649 233 | msgctxt "comment count" 234 | msgid "%" 235 | msgstr "%" 236 | 237 | #@ default 238 | #: functions.php:649 239 | msgctxt "comment count" 240 | msgid "0" 241 | msgstr "0" 242 | 243 | #@ default 244 | #: functions.php:649 245 | msgctxt "comment count" 246 | msgid "1" 247 | msgstr "1" 248 | 249 | #@ cms-tree-page-view 250 | #: functions.php:67 251 | msgid "draft" 252 | msgstr "szkic" 253 | 254 | #@ cms-tree-page-view 255 | #: functions.php:68 256 | msgid "future" 257 | msgstr "przyszłe" 258 | 259 | #@ cms-tree-page-view 260 | #: functions.php:62 261 | msgid "inside" 262 | msgstr "wewnątrz" 263 | 264 | #@ cms-tree-page-view 265 | #@ default 266 | #: functions.php:70 267 | #: functions.php:642 268 | msgid "pending" 269 | msgstr "oczekuje" 270 | 271 | #@ cms-tree-page-view 272 | #: functions.php:71 273 | msgid "private" 274 | msgstr "prywatny" 275 | 276 | #@ cms-tree-page-view 277 | #: functions.php:69 278 | msgid "protected" 279 | msgstr "chroniony" 280 | 281 | #@ cms-tree-page-view 282 | #: functions.php:175 283 | msgid "settings" 284 | msgstr "ustawienia" 285 | 286 | #@ cms-tree-page-view 287 | #: functions.php:64 288 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 289 | msgstr "Przepraszamy, nie można utworzyć podstrony dla strony w koszu" 290 | 291 | #@ cms-tree-page-view 292 | #: functions.php:65 293 | msgid "Sorry, can't create a page after a page with status \"trash\"." 294 | msgstr "Przepraszamy, nie można utworzyć strony za stroną w koszu" 295 | 296 | #@ cms-tree-page-view 297 | #: functions.php:72 298 | msgid "trash" 299 | msgstr "kosz" 300 | 301 | #@ cms-tree-page-view 302 | #: functions.php:343 303 | msgid "Trash" 304 | msgstr "Kosz" 305 | 306 | #@ cms-tree-page-view 307 | #: functions.php:1013 308 | msgid "Close" 309 | msgstr "Zamknij" 310 | 311 | #@ cms-tree-page-view 312 | #: functions.php:1014 313 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 314 | msgstr "Dziękuję za używanie tej wtyczki! Jeśli potrzebujesz pomocy odwiedź stroną domową wtyczki lub forum pomocy ." 315 | 316 | #@ cms-tree-page-view 317 | #: functions.php:1015 318 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 319 | msgstr "Pokud se vám tento plugin líbí, prosím podpořte mou práci malým darem - nebo alespoň řekněte něco pěkného o tomto pluginu v blogu." 320 | 321 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-da_DK.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: \n" 4 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 5 | "POT-Creation-Date: 2011-03-06 14:33:36+00:00\n" 6 | "PO-Revision-Date: 2012-02-22 07:45+0100\n" 7 | "Last-Translator: Pär Thernström \n" 8 | "Language-Team: LANGUAGE \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" 15 | "X-Textdomain-Support: yes\n" 16 | "X-Poedit-SearchPath-0: .\n" 17 | 18 | #@ cms-tree-page-view 19 | #: functions.php:55 20 | msgid "Enter title of new page" 21 | msgstr "Indtast titel på ny side" 22 | 23 | #@ cms-tree-page-view 24 | #: functions.php:56 25 | msgid "child pages" 26 | msgstr "Barnesider" 27 | 28 | #@ cms-tree-page-view 29 | #: functions.php:57 30 | #: functions.php:401 31 | msgid "Edit page" 32 | msgstr "Redigér side" 33 | 34 | #@ cms-tree-page-view 35 | #: functions.php:58 36 | #: functions.php:402 37 | msgid "View page" 38 | msgstr "Se side" 39 | 40 | #@ cms-tree-page-view 41 | #: functions.php:59 42 | #: functions.php:401 43 | msgid "Edit" 44 | msgstr "Redigér" 45 | 46 | #@ cms-tree-page-view 47 | #: functions.php:60 48 | #: functions.php:402 49 | msgid "View" 50 | msgstr "Se" 51 | 52 | #@ cms-tree-page-view 53 | #: functions.php:61 54 | msgid "Add page" 55 | msgstr "Tilføj side" 56 | 57 | #@ cms-tree-page-view 58 | #: functions.php:62 59 | #: functions.php:406 60 | msgid "Add new page after" 61 | msgstr "Tilføj ny side efter" 62 | 63 | #@ cms-tree-page-view 64 | #: functions.php:63 65 | msgid "after" 66 | msgstr "efter" 67 | 68 | #@ cms-tree-page-view 69 | #: functions.php:64 70 | msgid "inside" 71 | msgstr "indeni" 72 | 73 | #@ cms-tree-page-view 74 | #: functions.php:65 75 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 76 | msgstr "Beklager! kan ikke oprette en underside til en side med status \"draft\"." 77 | 78 | #@ cms-tree-page-view 79 | #: functions.php:66 80 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 81 | msgstr "Beklager! kan ikke oprette en underside til en side med status \"trash\"." 82 | 83 | #@ cms-tree-page-view 84 | #: functions.php:67 85 | msgid "Sorry, can't create a page after a page with status \"trash\"." 86 | msgstr "Beklager! kan ikke oprette en side efter en side med status \"trash\"." 87 | 88 | #@ cms-tree-page-view 89 | #: functions.php:68 90 | #: functions.php:410 91 | msgid "Add new page inside" 92 | msgstr "Tilføj en ny side indeni" 93 | 94 | #@ cms-tree-page-view 95 | #: functions.php:69 96 | msgid "draft" 97 | msgstr "kladde" 98 | 99 | #@ cms-tree-page-view 100 | #: functions.php:70 101 | msgid "future" 102 | msgstr "fremtidig" 103 | 104 | #@ cms-tree-page-view 105 | #: functions.php:71 106 | msgid "protected" 107 | msgstr "beskyttet" 108 | 109 | #@ cms-tree-page-view 110 | #@ default 111 | #: functions.php:72 112 | #: functions.php:673 113 | msgid "pending" 114 | msgstr "afventer" 115 | 116 | #@ cms-tree-page-view 117 | #: functions.php:73 118 | msgid "private" 119 | msgstr "privat" 120 | 121 | #@ cms-tree-page-view 122 | #: functions.php:74 123 | msgid "trash" 124 | msgstr "papirkurv" 125 | 126 | #@ cms-tree-page-view 127 | #: functions.php:75 128 | msgid "Password protected page" 129 | msgstr "Adganskode-beskyttet side" 130 | 131 | #@ cms-tree-page-view 132 | #: functions.php:76 133 | msgid "Adding page..." 134 | msgstr "Tilføjer side..." 135 | 136 | #@ cms-tree-page-view 137 | #: functions.php:178 138 | msgid "settings" 139 | msgstr "indstillinger" 140 | 141 | #@ cms-tree-page-view 142 | #: functions.php:183 143 | msgid "Select where to show a tree for pages and custom post types" 144 | msgstr "Vælg hvor du vil vise et trævisning for sider og tilpasset indlægstyper" 145 | 146 | #@ cms-tree-page-view 147 | #: functions.php:209 148 | msgid "On dashboard" 149 | msgstr "På kontrolpanel" 150 | 151 | #@ cms-tree-page-view 152 | #: functions.php:213 153 | msgid "In menu" 154 | msgstr "I menu" 155 | 156 | #@ cms-tree-page-view 157 | #: functions.php:224 158 | msgid "Save Changes" 159 | msgstr "Gem ændringer" 160 | 161 | #@ cms-tree-page-view 162 | #: functions.php:355 163 | msgid "No posts found." 164 | msgstr "Ingen indlæg fundet." 165 | 166 | #@ cms-tree-page-view 167 | #: functions.php:361 168 | msgid "All" 169 | msgstr "Alle" 170 | 171 | #@ cms-tree-page-view 172 | #: functions.php:362 173 | msgid "Public" 174 | msgstr "Offentlig" 175 | 176 | #@ cms-tree-page-view 177 | #: functions.php:363 178 | msgid "Trash" 179 | msgstr "Papirkurv" 180 | 181 | #@ cms-tree-page-view 182 | #: functions.php:368 183 | msgid "Expand" 184 | msgstr "Udfolde" 185 | 186 | #@ cms-tree-page-view 187 | #: functions.php:369 188 | msgid "Collapse" 189 | msgstr "Sammenfolde" 190 | 191 | #@ cms-tree-page-view 192 | #: functions.php:377 193 | msgid "Clear search" 194 | msgstr "Ryd søgning" 195 | 196 | #@ cms-tree-page-view 197 | #: functions.php:378 198 | msgid "Search" 199 | msgstr "Søg" 200 | 201 | #@ cms-tree-page-view 202 | #: functions.php:379 203 | msgid "Searching..." 204 | msgstr "Søger..." 205 | 206 | #@ cms-tree-page-view 207 | #: functions.php:380 208 | msgid "Nothing found." 209 | msgstr "Ingenting fundet." 210 | 211 | #@ cms-tree-page-view 212 | #: functions.php:386 213 | msgid "Loading..." 214 | msgstr "Indlæser..." 215 | 216 | #@ cms-tree-page-view 217 | #: functions.php:391 218 | msgid "Search: no pages found" 219 | msgstr "Søgning: ingen sider fundet" 220 | 221 | #@ cms-tree-page-view 222 | #: functions.php:394 223 | msgid "Loading tree" 224 | msgstr "Indlæser trævisning" 225 | 226 | #@ cms-tree-page-view 227 | #: functions.php:406 228 | msgid "After" 229 | msgstr "Efter" 230 | 231 | #@ cms-tree-page-view 232 | #: functions.php:410 233 | msgid "Inside" 234 | msgstr "Indeni" 235 | 236 | #@ cms-tree-page-view 237 | #: functions.php:414 238 | msgid "Can not create page inside of a page with draft status" 239 | msgstr "Kan ikke oprette en side indeni en side med kladde-status" 240 | 241 | #@ cms-tree-page-view 242 | #: functions.php:417 243 | msgid "Last modified" 244 | msgstr "Sidst tilpasset" 245 | 246 | #@ cms-tree-page-view 247 | #: functions.php:419 248 | msgid "by" 249 | msgstr "af" 250 | 251 | #@ cms-tree-page-view 252 | #: functions.php:422 253 | msgid "Page ID" 254 | msgstr "Side-id" 255 | 256 | #@ cms-tree-page-view 257 | #: functions.php:638 258 | msgid "Unknown user" 259 | msgstr "Ukendt bruger" 260 | 261 | #@ cms-tree-page-view 262 | #: functions.php:643 263 | msgid "" 264 | msgstr "" 265 | 266 | #@ default 267 | #: functions.php:663 268 | msgid "Comments" 269 | msgstr "Kommentarer" 270 | 271 | #@ default 272 | #: functions.php:670 273 | #, php-format 274 | msgid "%s pending" 275 | msgstr "%s afventer" 276 | 277 | #@ default 278 | #: functions.php:680 279 | msgctxt "comment count" 280 | msgid "0" 281 | msgstr "0" 282 | 283 | #@ default 284 | #: functions.php:680 285 | #, fuzzy 286 | msgctxt "comment count" 287 | msgid "1" 288 | msgstr "1" 289 | 290 | #@ default 291 | #: functions.php:680 292 | #, fuzzy 293 | msgctxt "comment count" 294 | msgid "%" 295 | msgstr "%" 296 | 297 | #@ cms-tree-page-view 298 | #: functions.php:711 299 | msgid "Click to edit. Drag to move." 300 | msgstr "Klik for at redigere. Træk og slip." 301 | 302 | #@ cms-tree-page-view 303 | #: functions.php:862 304 | msgid "New page" 305 | msgstr "Ny side" 306 | 307 | #@ cms-tree-page-view 308 | #: functions.php:1046 309 | msgid "Close" 310 | msgstr "Luk" 311 | 312 | #@ cms-tree-page-view 313 | #: functions.php:1047 314 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 315 | msgstr "Tak fordi du benytter dette plugin! Hvis du har brug for hjælp, så tag et kig på plugin hjemmesiden eller support forum." 316 | 317 | #@ cms-tree-page-view 318 | #: functions.php:1048 319 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 320 | msgstr "Hvis du kan lide dette plugin, så kan du støtte mit arbejde ved en donation - eller i det mindste fortælle noget godt om dette plugin på en blog, et indlæg eller tweet." 321 | 322 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-lt_LT.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: \n" 4 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 5 | "POT-Creation-Date: 2011-03-06 14:33:36+00:00\n" 6 | "PO-Revision-Date: 2012-04-03 17:15+0200\n" 7 | "Last-Translator: Gediminas \n" 8 | "Language-Team: Gediminas \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 | "X-Poedit-SourceCharset: utf-8\n" 14 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n" 15 | "X-Textdomain-Support: yes\n" 16 | "X-Poedit-Basepath: .\n" 17 | "X-Poedit-SearchPath-0: .\n" 18 | 19 | #@ cms-tree-page-view 20 | #: functions.php:55 21 | msgid "Enter title of new page" 22 | msgstr "Naujo puslapio pavadinimas" 23 | 24 | #@ cms-tree-page-view 25 | #: functions.php:56 26 | msgid "child pages" 27 | msgstr "vidinis puslapis" 28 | 29 | #@ cms-tree-page-view 30 | #: functions.php:57 31 | #: functions.php:401 32 | msgid "Edit page" 33 | msgstr "Redaguoti puslapį" 34 | 35 | #@ cms-tree-page-view 36 | #: functions.php:58 37 | #: functions.php:402 38 | msgid "View page" 39 | msgstr "Peržiūrėti puslapį" 40 | 41 | #@ cms-tree-page-view 42 | #: functions.php:59 43 | #: functions.php:401 44 | msgid "Edit" 45 | msgstr "Redaguoti" 46 | 47 | #@ cms-tree-page-view 48 | #: functions.php:60 49 | #: functions.php:402 50 | msgid "View" 51 | msgstr "Peržiūrėti" 52 | 53 | #@ cms-tree-page-view 54 | #: functions.php:61 55 | msgid "Add page" 56 | msgstr "Pridėti puslapį" 57 | 58 | #@ cms-tree-page-view 59 | #: functions.php:62 60 | #: functions.php:406 61 | msgid "Add new page after" 62 | msgstr "Pridėti puslapį po" 63 | 64 | #@ cms-tree-page-view 65 | #: functions.php:63 66 | msgid "after" 67 | msgstr "po" 68 | 69 | #@ cms-tree-page-view 70 | #: functions.php:64 71 | msgid "inside" 72 | msgstr "viduje" 73 | 74 | #@ cms-tree-page-view 75 | #: functions.php:65 76 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 77 | msgstr "Atsiprašome, negalima sukurti gilesnio meniu puslapio su \"draft\" būsena." 78 | 79 | #@ cms-tree-page-view 80 | #: functions.php:66 81 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 82 | msgstr "Atsiprašome, negalima sukurti gilesnio meniu puslapio su \"trash\" būsena." 83 | 84 | #@ cms-tree-page-view 85 | #: functions.php:67 86 | msgid "Sorry, can't create a page after a page with status \"trash\"." 87 | msgstr "Atsiprašome, negalima sukurti puslapio po puslapio su \"trash\" būsena." 88 | 89 | #@ cms-tree-page-view 90 | #: functions.php:68 91 | #: functions.php:410 92 | msgid "Add new page inside" 93 | msgstr "Pridėti naują puslapį viduje" 94 | 95 | #@ cms-tree-page-view 96 | #: functions.php:69 97 | msgid "draft" 98 | msgstr "eskizas" 99 | 100 | #@ cms-tree-page-view 101 | #: functions.php:70 102 | msgid "future" 103 | msgstr "būsimas" 104 | 105 | #@ cms-tree-page-view 106 | #: functions.php:71 107 | msgid "protected" 108 | msgstr "apsaugotas" 109 | 110 | #@ cms-tree-page-view 111 | #@ default 112 | #: functions.php:72 113 | #: functions.php:673 114 | msgid "pending" 115 | msgstr "laukiamas" 116 | 117 | #@ cms-tree-page-view 118 | #: functions.php:73 119 | msgid "private" 120 | msgstr "privatus" 121 | 122 | #@ cms-tree-page-view 123 | #: functions.php:74 124 | msgid "trash" 125 | msgstr "šiukšlė" 126 | 127 | #@ cms-tree-page-view 128 | #: functions.php:75 129 | msgid "Password protected page" 130 | msgstr "Slaptažodžiu apsaugotas puslapis" 131 | 132 | #@ cms-tree-page-view 133 | #: functions.php:76 134 | msgid "Adding page..." 135 | msgstr "Pridedamas puslapis..." 136 | 137 | #@ cms-tree-page-view 138 | #: functions.php:178 139 | msgid "settings" 140 | msgstr "nustatymai" 141 | 142 | #@ cms-tree-page-view 143 | #: functions.php:183 144 | msgid "Select where to show a tree for pages and custom post types" 145 | msgstr "Pasirinkite, kuriems įrašų tipams rodyti medžio struktūrą" 146 | 147 | #@ cms-tree-page-view 148 | #: functions.php:209 149 | msgid "On dashboard" 150 | msgstr "Ant skydelio" 151 | 152 | #@ cms-tree-page-view 153 | #: functions.php:213 154 | msgid "In menu" 155 | msgstr "Meniu" 156 | 157 | #@ cms-tree-page-view 158 | #: functions.php:224 159 | msgid "Save Changes" 160 | msgstr "Išsaugoti pakeitimus" 161 | 162 | #@ cms-tree-page-view 163 | #: functions.php:355 164 | msgid "No posts found." 165 | msgstr "Įrašų nerasta." 166 | 167 | #@ cms-tree-page-view 168 | #: functions.php:361 169 | msgid "All" 170 | msgstr "Visi" 171 | 172 | #@ cms-tree-page-view 173 | #: functions.php:362 174 | msgid "Public" 175 | msgstr "Paskelbti" 176 | 177 | #@ cms-tree-page-view 178 | #: functions.php:363 179 | msgid "Trash" 180 | msgstr "Šiukšlinėje" 181 | 182 | #@ cms-tree-page-view 183 | #: functions.php:368 184 | msgid "Expand" 185 | msgstr "Išplėsti visus" 186 | 187 | #@ cms-tree-page-view 188 | #: functions.php:369 189 | msgid "Collapse" 190 | msgstr "Sutraukti visus" 191 | 192 | #@ cms-tree-page-view 193 | #: functions.php:377 194 | msgid "Clear search" 195 | msgstr "Išvalyti paiešką" 196 | 197 | #@ cms-tree-page-view 198 | #: functions.php:378 199 | msgid "Search" 200 | msgstr "Ieškoti" 201 | 202 | #@ cms-tree-page-view 203 | #: functions.php:379 204 | msgid "Searching..." 205 | msgstr "Ieškoma..." 206 | 207 | #@ cms-tree-page-view 208 | #: functions.php:380 209 | msgid "Nothing found." 210 | msgstr "Nieko nerasta." 211 | 212 | #@ cms-tree-page-view 213 | #: functions.php:386 214 | msgid "Loading..." 215 | msgstr "Kraunama..." 216 | 217 | #@ cms-tree-page-view 218 | #: functions.php:391 219 | msgid "Search: no pages found" 220 | msgstr "Paieška: puslapių nerasta" 221 | 222 | #@ cms-tree-page-view 223 | #: functions.php:394 224 | msgid "Loading tree" 225 | msgstr "Kraunamas medis" 226 | 227 | #@ cms-tree-page-view 228 | #: functions.php:406 229 | msgid "After" 230 | msgstr "Po" 231 | 232 | #@ cms-tree-page-view 233 | #: functions.php:410 234 | msgid "Inside" 235 | msgstr "Viduje" 236 | 237 | #@ cms-tree-page-view 238 | #: functions.php:414 239 | msgid "Can not create page inside of a page with draft status" 240 | msgstr "Negalima sukurti puslapio, turinčio juodraščio statusą, viduje" 241 | 242 | #@ cms-tree-page-view 243 | #: functions.php:417 244 | msgid "Last modified" 245 | msgstr "Vėliausiai redaguota" 246 | 247 | #@ cms-tree-page-view 248 | #: functions.php:419 249 | msgid "by" 250 | msgstr " " 251 | 252 | #@ cms-tree-page-view 253 | #: functions.php:422 254 | msgid "Page ID" 255 | msgstr "Puslapio ID" 256 | 257 | #@ cms-tree-page-view 258 | #: functions.php:638 259 | msgid "Unknown user" 260 | msgstr "Nežinomas vartotojas" 261 | 262 | #@ cms-tree-page-view 263 | #: functions.php:643 264 | msgid "" 265 | msgstr "" 266 | 267 | #@ default 268 | #: functions.php:663 269 | msgid "Comments" 270 | msgstr "Komentarai" 271 | 272 | #@ default 273 | #: functions.php:670 274 | #, php-format 275 | msgid "%s pending" 276 | msgstr "Liko: %s" 277 | 278 | #@ default 279 | #: functions.php:680 280 | msgctxt "comment count" 281 | msgid "0" 282 | msgstr "" 283 | 284 | #@ default 285 | #: functions.php:680 286 | msgctxt "comment count" 287 | msgid "1" 288 | msgstr "" 289 | 290 | #@ default 291 | #: functions.php:680 292 | msgctxt "comment count" 293 | msgid "%" 294 | msgstr "" 295 | 296 | #@ cms-tree-page-view 297 | #: functions.php:711 298 | msgid "Click to edit. Drag to move." 299 | msgstr "Spragtelkite, norėdami redaguoti. Tempkite, norėdami perkeltii." 300 | 301 | #@ cms-tree-page-view 302 | #: functions.php:862 303 | msgid "New page" 304 | msgstr "Naujas puslapis" 305 | 306 | #@ cms-tree-page-view 307 | #: functions.php:1046 308 | msgid "Close" 309 | msgstr "Uždaryti" 310 | 311 | #@ cms-tree-page-view 312 | #: functions.php:1047 313 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 314 | msgstr "Ačiū, kad naudojate šį įskiepį!Jei reikia pagalbos, galite apsilankyti įskiepio tinklapyje arba pagalbos diskusijos." 315 | 316 | #@ cms-tree-page-view 317 | #: functions.php:1048 318 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 319 | msgstr "Jei patinka šis įskiepis, prašau paremti mano darbą ar bent paminėkite šį įskiepį savo tinklaraštyje ar \"twitteryje\"." 320 | 321 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-ja.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2013-04-16 17:39:45+00:00\n" 11 | "PO-Revision-Date: 2013-11-01 15:44+0900\n" 12 | "Last-Translator: Kazunori Yamazaki \n" 13 | "Language-Team: \n" 14 | "Language: ja_JP\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=utf-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Poedit-SourceCharset: utf-8\n" 19 | "X-Poedit-KeywordsList: _e;__\n" 20 | "X-Generator: Poedit 1.5.7\n" 21 | 22 | #: functions.php:66 functions.php:113 functions.php:1396 23 | msgid "Cheatin’ uh?" 24 | msgstr "間違えましたか ?" 25 | 26 | #: functions.php:321 27 | msgid "Enter title of new page" 28 | msgstr "新しいページのタイトルを入力してください" 29 | 30 | #: functions.php:322 31 | msgid "child pages" 32 | msgstr "子ページ" 33 | 34 | #: functions.php:323 functions.php:970 35 | msgid "Edit page" 36 | msgstr "編集" 37 | 38 | #: functions.php:324 functions.php:971 39 | msgid "View page" 40 | msgstr "表示" 41 | 42 | #: functions.php:325 functions.php:970 43 | msgid "Edit" 44 | msgstr "編集" 45 | 46 | #: functions.php:326 functions.php:971 47 | msgid "View" 48 | msgstr "表示" 49 | 50 | #: functions.php:327 51 | msgid "Add page" 52 | msgstr "ページを追加" 53 | 54 | #: functions.php:328 functions.php:979 55 | msgid "Add new page after" 56 | msgstr "同じ階層のページを追加" 57 | 58 | #: functions.php:329 59 | msgid "after" 60 | msgstr "同じ階層に" 61 | 62 | #: functions.php:330 63 | msgid "inside" 64 | msgstr "一つ下の階層に" 65 | 66 | #: functions.php:331 67 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 68 | msgstr "下書きのページを基準にサブページを作成することはできません" 69 | 70 | #: functions.php:332 71 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 72 | msgstr "ゴミ箱のページを基準にサブページを作成することはできません" 73 | 74 | #: functions.php:333 75 | msgid "Sorry, can't create a page after a page with status \"trash\"." 76 | msgstr "ゴミ箱のページの後ろにページを作成することはできません" 77 | 78 | #: functions.php:334 functions.php:984 79 | msgid "Add new page inside" 80 | msgstr "一つ下の階層にページを作成" 81 | 82 | #: functions.php:335 functions.php:341 83 | msgid "draft" 84 | msgstr "下書き" 85 | 86 | #: functions.php:336 functions.php:342 87 | msgid "future" 88 | msgstr "予約" 89 | 90 | #: functions.php:337 functions.php:343 91 | msgid "protected" 92 | msgstr "保護" 93 | 94 | #: functions.php:338 functions.php:344 functions.php:1296 95 | msgid "pending" 96 | msgstr "レビュー待ち" 97 | 98 | #: functions.php:339 functions.php:345 99 | msgid "private" 100 | msgstr "非公開" 101 | 102 | #: functions.php:340 functions.php:346 103 | msgid "trash" 104 | msgstr "ゴミ箱" 105 | 106 | #: functions.php:347 107 | msgid "Password protected page" 108 | msgstr "パスワード保護されたページ" 109 | 110 | #: functions.php:348 111 | msgid "Adding page..." 112 | msgstr "ページを追加中..." 113 | 114 | #: functions.php:349 115 | msgid "Adding ..." 116 | msgstr "追加中..." 117 | 118 | #: functions.php:350 functions.php:1057 119 | msgid "No posts found." 120 | msgstr "ページがありません。" 121 | 122 | #: functions.php:448 123 | msgid "Tree View" 124 | msgstr "ツリー表示" 125 | 126 | #: functions.php:457 127 | msgid "List View" 128 | msgstr "リスト表示" 129 | 130 | #: functions.php:493 131 | msgid "Settings" 132 | msgstr "設定" 133 | 134 | #: functions.php:533 135 | msgctxt "name of dashboard" 136 | msgid "%1$s Tree" 137 | msgstr "%1$s ツリー" 138 | 139 | #: functions.php:571 140 | msgctxt "name in menu" 141 | msgid "Tree View" 142 | msgstr "ツリー表示" 143 | 144 | #: functions.php:572 145 | msgctxt "title on page with tree" 146 | msgid "%1$s Tree View" 147 | msgstr "%1$s ツリー表示" 148 | 149 | #: functions.php:592 150 | msgid "settings" 151 | msgstr "設定" 152 | 153 | #: functions.php:598 154 | msgid "Select where to show a tree for pages and custom post types" 155 | msgstr "ツリー表示をするところを選択してください" 156 | 157 | #: functions.php:642 158 | msgid "On dashboard" 159 | msgstr "ダッシュボード" 160 | 161 | #: functions.php:646 162 | msgid "In menu" 163 | msgstr "メニュー内" 164 | 165 | #: functions.php:650 166 | msgid "On post overview screen" 167 | msgstr "一覧表示画面" 168 | 169 | #: functions.php:669 170 | msgid "Save Changes" 171 | msgstr "保存" 172 | 173 | #: functions.php:913 174 | msgid "All" 175 | msgstr "全て表示" 176 | 177 | #: functions.php:918 178 | msgid "Public" 179 | msgstr "公開中" 180 | 181 | #: functions.php:923 182 | msgid "Trash" 183 | msgstr "ゴミ箱" 184 | 185 | #: functions.php:931 186 | msgid "Expand" 187 | msgstr "開く" 188 | 189 | #: functions.php:932 190 | msgid "Collapse" 191 | msgstr "閉じる" 192 | 193 | #: functions.php:940 194 | msgid "Clear search" 195 | msgstr "検索内容をクリア" 196 | 197 | #: functions.php:941 198 | msgid "Search" 199 | msgstr "検索" 200 | 201 | #: functions.php:942 202 | msgid "Searching..." 203 | msgstr "検索中..." 204 | 205 | #: functions.php:943 206 | msgid "Nothing found." 207 | msgstr "見つかりませんでした。" 208 | 209 | #: functions.php:950 210 | msgid "Loading..." 211 | msgstr "読み込み中..." 212 | 213 | #: functions.php:955 214 | msgid "Search: no pages found" 215 | msgstr "ページが見つかりませんでした" 216 | 217 | #: functions.php:958 218 | msgid "Loading tree" 219 | msgstr "読み込み中" 220 | 221 | #: functions.php:979 functions.php:1016 222 | msgid "After" 223 | msgstr "同じ階層に" 224 | 225 | #: functions.php:984 functions.php:1017 226 | msgid "Inside" 227 | msgstr "一つ下の階層に" 228 | 229 | #: functions.php:988 230 | msgid "Can not create page inside of a page with draft status" 231 | msgstr "下書きの下にページを作成することはできません" 232 | 233 | #: functions.php:1005 234 | msgid "Add page(s)" 235 | msgstr "新規ページを追加" 236 | 237 | #: functions.php:1010 238 | msgid "Enter title here" 239 | msgstr "タイトルを入力してください" 240 | 241 | #: functions.php:1015 242 | msgid "Position" 243 | msgstr "場所" 244 | 245 | #: functions.php:1022 246 | msgid "Status" 247 | msgstr "ステータス" 248 | 249 | #: functions.php:1023 250 | msgid "Draft" 251 | msgstr "下書き" 252 | 253 | #: functions.php:1024 254 | msgid "Published" 255 | msgstr "公開済み" 256 | 257 | #: functions.php:1028 258 | msgid "Add" 259 | msgstr "追加" 260 | 261 | #: functions.php:1029 262 | msgid "or" 263 | msgstr "または" 264 | 265 | #: functions.php:1030 266 | msgid "cancel" 267 | msgstr "キャンセル" 268 | 269 | #: functions.php:1040 270 | msgid "Last modified" 271 | msgstr "最終更新" 272 | 273 | #: functions.php:1042 274 | msgid "by" 275 | msgstr ":" 276 | 277 | #: functions.php:1045 278 | msgid "Page ID" 279 | msgstr "ページID" 280 | 281 | #: functions.php:1088 282 | msgctxt "headline of page with tree" 283 | msgid "%1$s Tree View" 284 | msgstr "%1$s ツリー表示" 285 | 286 | #: functions.php:1248 287 | msgid "Unknown user" 288 | msgstr "不明" 289 | 290 | #: functions.php:1253 291 | msgid "" 292 | msgstr "<タイトル未設定>" 293 | 294 | #: functions.php:1286 295 | msgid "Comments" 296 | msgstr "コメント" 297 | 298 | #: functions.php:1293 299 | msgid "%s pending" 300 | msgstr "%s" 301 | 302 | #: functions.php:1303 303 | msgctxt "comment count" 304 | msgid "0" 305 | msgstr "0" 306 | 307 | #: functions.php:1303 308 | msgctxt "comment count" 309 | msgid "1" 310 | msgstr "1" 311 | 312 | #: functions.php:1303 313 | msgctxt "comment count" 314 | msgid "%" 315 | msgstr "%" 316 | 317 | #: functions.php:1502 318 | msgid "New page" 319 | msgstr "ページを追加" 320 | 321 | #: functions.php:1692 322 | msgid "Thanks for using my plugin" 323 | msgstr "プラグインを使っていただきありがとうございます。" 324 | 325 | #: functions.php:1694 326 | msgid "" 327 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 328 | "as much as I do." 329 | msgstr "" 330 | "こんにちは!私がこのプラグインを使っていただくことがうれしいように、あなたも" 331 | "気に入ってくれることを願います。" 332 | 333 | #: functions.php:1695 334 | msgid "/Pär Thernström - plugin creator" 335 | msgstr "/Pär Thernström - プラグイン制作者" 336 | 337 | #: functions.php:1697 338 | msgid "I like this plugin
– how can I thank you?" 339 | msgstr "このプラグインが気に入りました。
お礼をする方法はありますか?" 340 | 341 | #: functions.php:1698 342 | msgid "There are serveral ways for you to show your appreciation:" 343 | msgstr "お礼をする方法がいくつかあります。" 344 | 345 | #: functions.php:1700 346 | msgid "" 347 | "Give it a nice review over at the WordPress Plugin " 348 | "Directory" 349 | msgstr "WordPress Plugin Directory にレビューを書く" 350 | 351 | #: functions.php:1701 352 | msgid "Give a donation – any amount will make me happy" 353 | msgstr "寄付をする – 任意の金額で私が幸せになります" 354 | 355 | #: functions.php:1702 356 | msgid "" 357 | "Post a nice tweet or make a nice blog post about the " 358 | "plugin" 359 | msgstr "" 360 | "ツイートする またはこのプラグインについてブログを書く" 361 | 362 | #: functions.php:1705 363 | msgid "Support" 364 | msgstr "サポート" 365 | 366 | #: functions.php:1706 367 | msgid "Plese see the support forum for help." 368 | msgstr "" 369 | "お困りの場合はサポートフォーラムをご確認ください。" 370 | 371 | #: functions.php:1710 372 | msgid "Hide until next upgrade" 373 | msgstr "次のアップグレードまで表示しない" 374 | 375 | #~ msgid "Click to edit. Drag to move." 376 | #~ msgstr "クリックで編集、ドラッグで移動できます" 377 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-cs_CZ.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: CMS Tree Page View\n" 4 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 5 | "POT-Creation-Date: 2010-08-28 21:55+0000\n" 6 | "PO-Revision-Date: 2011-01-19 11:55+0100\n" 7 | "Last-Translator: Georgij Gadjukin \n" 8 | "Language-Team: gadjukin.net \n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=utf-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 13 | "X-Poedit-Language: Czech\n" 14 | "X-Poedit-Country: \n" 15 | "X-Poedit-SourceCharset: utf-8\n" 16 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n" 17 | "X-Poedit-Basepath: \n" 18 | "X-Poedit-Bookmarks: \n" 19 | "X-Poedit-SearchPath-0: .\n" 20 | "X-Textdomain-Support: yes" 21 | 22 | #: functions.php:639 23 | #, php-format 24 | #@ default 25 | msgid "%s pending" 26 | msgstr "%s čeká" 27 | 28 | #: functions.php:612 29 | #@ cms-tree-page-view 30 | msgid "" 31 | msgstr "" 32 | 33 | #: functions.php:60 34 | #: functions.php:384 35 | #@ cms-tree-page-view 36 | msgid "Add new page after" 37 | msgstr "Přidat novou stránku po" 38 | 39 | #: functions.php:66 40 | #: functions.php:388 41 | #@ cms-tree-page-view 42 | msgid "Add new page inside" 43 | msgstr "Přidat novou vnořenou stránku " 44 | 45 | #: functions.php:59 46 | #@ cms-tree-page-view 47 | msgid "Add page" 48 | msgstr "Přidat stránku" 49 | 50 | #: functions.php:74 51 | #@ cms-tree-page-view 52 | msgid "Adding page..." 53 | msgstr "Přidávám stránku..." 54 | 55 | #: functions.php:384 56 | #@ cms-tree-page-view 57 | msgid "After" 58 | msgstr "Po" 59 | 60 | #: functions.php:341 61 | #@ cms-tree-page-view 62 | msgid "All" 63 | msgstr "Vše" 64 | 65 | #: functions.php:392 66 | #@ cms-tree-page-view 67 | msgid "Can not create page inside of a page with draft status" 68 | msgstr "Nelze vytvořit vnořenou stránku pokud je status Koncept" 69 | 70 | #: functions.php:357 71 | #@ cms-tree-page-view 72 | msgid "Clear search" 73 | msgstr "Zrušit výběr" 74 | 75 | #: functions.php:680 76 | #@ cms-tree-page-view 77 | msgid "Click to edit. Drag to move." 78 | msgstr "Kliknutím upravit. Tažením přesunout" 79 | 80 | #: functions.php:349 81 | #@ cms-tree-page-view 82 | msgid "Collapse" 83 | msgstr "Sbalit" 84 | 85 | #: functions.php:632 86 | #@ default 87 | msgid "Comments" 88 | msgstr "Komentáře" 89 | 90 | #: functions.php:57 91 | #: functions.php:379 92 | #@ cms-tree-page-view 93 | msgid "Edit" 94 | msgstr "Upravit" 95 | 96 | #: functions.php:55 97 | #: functions.php:379 98 | #@ cms-tree-page-view 99 | msgid "Edit page" 100 | msgstr "Upravit stránku" 101 | 102 | #: functions.php:53 103 | #@ cms-tree-page-view 104 | msgid "Enter title of new page" 105 | msgstr "Zadejte název nové stránky" 106 | 107 | #: functions.php:348 108 | #@ cms-tree-page-view 109 | msgid "Expand" 110 | msgstr "Rozbalit" 111 | 112 | #: functions.php:208 113 | #@ cms-tree-page-view 114 | msgid "In menu" 115 | msgstr "V menu" 116 | 117 | #: functions.php:388 118 | #@ cms-tree-page-view 119 | msgid "Inside" 120 | msgstr "Vnořit" 121 | 122 | #: functions.php:395 123 | #@ cms-tree-page-view 124 | msgid "Last modified" 125 | msgstr "Poslední změna" 126 | 127 | #: functions.php:372 128 | #@ cms-tree-page-view 129 | msgid "Loading tree" 130 | msgstr "Načítám strom" 131 | 132 | #: functions.php:366 133 | #@ cms-tree-page-view 134 | msgid "Loading..." 135 | msgstr "Načítám..." 136 | 137 | #: functions.php:831 138 | #@ cms-tree-page-view 139 | msgid "New page" 140 | msgstr "Nová stránka" 141 | 142 | #: functions.php:335 143 | #@ cms-tree-page-view 144 | msgid "No posts found." 145 | msgstr "Žádný příspěvek" 146 | 147 | #: functions.php:360 148 | #@ cms-tree-page-view 149 | msgid "Nothing found." 150 | msgstr "Nic nenalezeno" 151 | 152 | #: functions.php:204 153 | #@ cms-tree-page-view 154 | msgid "On dashboard" 155 | msgstr "Na nástěnce" 156 | 157 | #: functions.php:400 158 | #@ cms-tree-page-view 159 | msgid "Page ID" 160 | msgstr "ID stránky" 161 | 162 | #: functions.php:73 163 | #@ cms-tree-page-view 164 | msgid "Password protected page" 165 | msgstr "Stránka chráněná heslem" 166 | 167 | #: functions.php:342 168 | #@ cms-tree-page-view 169 | msgid "Public" 170 | msgstr "Veřejné" 171 | 172 | #: functions.php:219 173 | #@ cms-tree-page-view 174 | msgid "Save Changes" 175 | msgstr "Uložit změny" 176 | 177 | #: functions.php:358 178 | #@ cms-tree-page-view 179 | msgid "Search" 180 | msgstr "Hledat" 181 | 182 | #: functions.php:369 183 | #@ cms-tree-page-view 184 | msgid "Search: no pages found" 185 | msgstr "Hledání: nic nenalezeno" 186 | 187 | #: functions.php:359 188 | #@ cms-tree-page-view 189 | msgid "Searching..." 190 | msgstr "Hledám..." 191 | 192 | #: functions.php:180 193 | #@ cms-tree-page-view 194 | msgid "Select where to show a tree for pages and custom post types" 195 | msgstr "Vyberte, kde chcete zobrazit strom pro stránky a příspěvky" 196 | 197 | #: functions.php:63 198 | #@ cms-tree-page-view 199 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 200 | msgstr "Sorry, nemůžete vytvořit podstránku u stránky, která má status \"Koncept\"" 201 | 202 | #: functions.php:607 203 | #@ cms-tree-page-view 204 | msgid "Unknown user" 205 | msgstr "Neznámý uživatel" 206 | 207 | #: functions.php:58 208 | #: functions.php:380 209 | #@ cms-tree-page-view 210 | msgid "View" 211 | msgstr "Zobrazit" 212 | 213 | #: functions.php:56 214 | #: functions.php:380 215 | #@ cms-tree-page-view 216 | msgid "View page" 217 | msgstr "Zobrazit stránku" 218 | 219 | #: functions.php:61 220 | #@ cms-tree-page-view 221 | msgid "after" 222 | msgstr "po" 223 | 224 | #: functions.php:397 225 | #@ cms-tree-page-view 226 | msgid "by" 227 | msgstr "od" 228 | 229 | #: functions.php:54 230 | #@ cms-tree-page-view 231 | msgid "child pages" 232 | msgstr "vnořené stránky" 233 | 234 | #: functions.php:649 235 | #@ default 236 | msgctxt "comment count" 237 | msgid "%" 238 | msgstr "%" 239 | 240 | #: functions.php:649 241 | #@ default 242 | msgctxt "comment count" 243 | msgid "0" 244 | msgstr "0" 245 | 246 | #: functions.php:649 247 | #@ default 248 | msgctxt "comment count" 249 | msgid "1" 250 | msgstr "1" 251 | 252 | #: functions.php:67 253 | #@ cms-tree-page-view 254 | msgid "draft" 255 | msgstr "koncept" 256 | 257 | #: functions.php:68 258 | #@ cms-tree-page-view 259 | msgid "future" 260 | msgstr "budoucí" 261 | 262 | #: functions.php:62 263 | #@ cms-tree-page-view 264 | msgid "inside" 265 | msgstr "vnořit" 266 | 267 | #: functions.php:70 268 | #: functions.php:642 269 | #@ cms-tree-page-view 270 | #@ default 271 | msgid "pending" 272 | msgstr "čekájící" 273 | 274 | #: functions.php:71 275 | #@ cms-tree-page-view 276 | msgid "private" 277 | msgstr "soukromá" 278 | 279 | #: functions.php:69 280 | #@ cms-tree-page-view 281 | msgid "protected" 282 | msgstr "chráněná" 283 | 284 | #: functions.php:175 285 | #@ cms-tree-page-view 286 | msgid "settings" 287 | msgstr "nastavení" 288 | 289 | #: functions.php:64 290 | #@ cms-tree-page-view 291 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 292 | msgstr "Sorry, nemůžete vytvořit podstránku u stránky, která má status \"Smazáno\"" 293 | 294 | #: functions.php:65 295 | #@ cms-tree-page-view 296 | msgid "Sorry, can't create a page after a page with status \"trash\"." 297 | msgstr "Sorry, nemůžete vytvořit stránku za stránkou, která má status \"Smazáno\"" 298 | 299 | #: functions.php:72 300 | #@ cms-tree-page-view 301 | msgid "trash" 302 | msgstr "smazáno" 303 | 304 | #: functions.php:343 305 | #@ cms-tree-page-view 306 | msgid "Trash" 307 | msgstr "Smazáno" 308 | 309 | #: functions.php:1013 310 | #@ cms-tree-page-view 311 | msgid "Close" 312 | msgstr "Zavřít" 313 | 314 | #: functions.php:1014 315 | #@ cms-tree-page-view 316 | msgid "Thank you for using this plugin! If you need help please check out the plugin homepage or the support forum." 317 | msgstr "Děkujeme vám za používání tohoto pluginu! Pokud potřebujete poradit, prosím podívejte se na domovskou stránku pluginu nebo fórum podpory ." 318 | 319 | #: functions.php:1015 320 | #@ cms-tree-page-view 321 | msgid "If you like this plugin, please support my work by donating - or at least say something nice about this plugin in a blog post or tweet." 322 | msgstr "Pokud se vám tento plugin líbí, prosím podpořte mou práci malým darem - nebo alespoň řekněte něco pěkného o tomto pluginu v blogu." 323 | 324 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-fi_FI.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2012 2 | # This file is distributed under the same license as the package. 3 | # Translators: 4 | # Jan-Erik Finlander , 2013. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: CMS Tree Page View\n" 8 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 9 | "POT-Creation-Date: 2012-12-26 20:37:31+00:00\n" 10 | "PO-Revision-Date: 2013-03-03 07:23+0000\n" 11 | "Last-Translator: Jan-Erik Finlander \n" 12 | "Language-Team: Finnish (http://www.transifex.com/projects/p/cms-tree-page-view/language/fi/)\n" 13 | "MIME-Version: 1.0\n" 14 | "Content-Type: text/plain; charset=UTF-8\n" 15 | "Content-Transfer-Encoding: 8bit\n" 16 | "Language: fi\n" 17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 18 | 19 | #: functions.php:272 20 | msgid "Enter title of new page" 21 | msgstr "Kirjoita uuden sivun otsikko " 22 | 23 | #: functions.php:273 24 | msgid "child pages" 25 | msgstr "Alasivut" 26 | 27 | #: functions.php:274 functions.php:887 28 | msgid "Edit page" 29 | msgstr "Muokkaa sivu" 30 | 31 | #: functions.php:275 functions.php:888 32 | msgid "View page" 33 | msgstr "Näytä sivu" 34 | 35 | #: functions.php:276 functions.php:887 36 | msgid "Edit" 37 | msgstr "Muokkaa" 38 | 39 | #: functions.php:277 functions.php:888 40 | msgid "View" 41 | msgstr "Näytä" 42 | 43 | #: functions.php:278 44 | msgid "Add page" 45 | msgstr "Lisää sivu" 46 | 47 | #: functions.php:279 functions.php:896 48 | msgid "Add new page after" 49 | msgstr "Lisää uusi sivu tämän jälkeen" 50 | 51 | #: functions.php:280 52 | msgid "after" 53 | msgstr "jälkeen" 54 | 55 | #: functions.php:281 56 | msgid "inside" 57 | msgstr "sisällä" 58 | 59 | #: functions.php:282 60 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 61 | msgstr "Valitettavasti ei voi luoda alasivun, sivu status on \"luonnos\"." 62 | 63 | #: functions.php:283 64 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 65 | msgstr "Valitettavasti ei voi luoda alasivun, sivun status on \"roskis\". " 66 | 67 | #: functions.php:284 68 | msgid "Sorry, can't create a page after a page with status \"trash\"." 69 | msgstr "Valitettavasti ei voi luoda sivun, \"roskis\" statuksen sivun jälkeen. " 70 | 71 | #: functions.php:285 functions.php:901 72 | msgid "Add new page inside" 73 | msgstr "Lisää uusi sisäinen sivu " 74 | 75 | #: functions.php:286 functions.php:292 76 | msgid "draft" 77 | msgstr "luonnos" 78 | 79 | #: functions.php:287 functions.php:293 80 | msgid "future" 81 | msgstr "tuleva" 82 | 83 | #: functions.php:288 functions.php:294 84 | msgid "protected" 85 | msgstr "suojattu" 86 | 87 | #: functions.php:289 functions.php:295 functions.php:1235 88 | msgid "pending" 89 | msgstr "vireillä" 90 | 91 | #: functions.php:290 functions.php:296 92 | msgid "private" 93 | msgstr "privatti" 94 | 95 | #: functions.php:291 functions.php:297 96 | msgid "trash" 97 | msgstr "roskis" 98 | 99 | #: functions.php:298 100 | msgid "Password protected page" 101 | msgstr "salasanalla suojattu sivu" 102 | 103 | #: functions.php:299 104 | msgid "Adding page..." 105 | msgstr "Sivua lisätään... " 106 | 107 | #: functions.php:300 108 | msgid "Adding ..." 109 | msgstr "Lisätään..." 110 | 111 | #: functions.php:393 112 | msgid "Tree View" 113 | msgstr "Hakemisto" 114 | 115 | #: functions.php:402 116 | msgid "List View" 117 | msgstr "Lista" 118 | 119 | #: functions.php:438 120 | msgid "Settings" 121 | msgstr "Asetukset" 122 | 123 | #: functions.php:474 124 | msgctxt "name of dashboard" 125 | msgid "%1$s Tree" 126 | msgstr "%1$s Hakemisto" 127 | 128 | #: functions.php:502 129 | msgctxt "name in menu" 130 | msgid "Tree View" 131 | msgstr "Hakemisto" 132 | 133 | #: functions.php:503 134 | msgctxt "title on page with tree" 135 | msgid "%1$s Tree View" 136 | msgstr "%1$s Hakemisto" 137 | 138 | #: functions.php:523 139 | msgid "settings" 140 | msgstr "asetukset" 141 | 142 | #: functions.php:529 143 | msgid "Select where to show a tree for pages and custom post types" 144 | msgstr "Valitse, missä näytetään sivuhakemisto ja omat artikkelit" 145 | 146 | #: functions.php:573 147 | msgid "On dashboard" 148 | msgstr "Työpöydällä" 149 | 150 | #: functions.php:577 151 | msgid "In menu" 152 | msgstr "Valikossa" 153 | 154 | #: functions.php:581 155 | msgid "On post overview screen" 156 | msgstr "Yleiskatsaus näytöllä" 157 | 158 | #: functions.php:599 159 | msgid "Save Changes" 160 | msgstr "Tallenna muutokset" 161 | 162 | #: functions.php:818 163 | msgid "No posts found." 164 | msgstr "Artikkelia ei löytynyt." 165 | 166 | #: functions.php:830 167 | msgid "All" 168 | msgstr "Kaikki" 169 | 170 | #: functions.php:835 171 | msgid "Public" 172 | msgstr "Julkinen" 173 | 174 | #: functions.php:840 175 | msgid "Trash" 176 | msgstr "Roskis" 177 | 178 | #: functions.php:848 179 | msgid "Expand" 180 | msgstr "Laajenna" 181 | 182 | #: functions.php:849 183 | msgid "Collapse" 184 | msgstr "Supista" 185 | 186 | #: functions.php:857 187 | msgid "Clear search" 188 | msgstr "Tyhjennä haku" 189 | 190 | #: functions.php:858 191 | msgid "Search" 192 | msgstr "Hae" 193 | 194 | #: functions.php:859 195 | msgid "Searching..." 196 | msgstr "Heataan..." 197 | 198 | #: functions.php:860 199 | msgid "Nothing found." 200 | msgstr "Ei löytynyt mitään." 201 | 202 | #: functions.php:867 203 | msgid "Loading..." 204 | msgstr "Ladataan..." 205 | 206 | #: functions.php:872 207 | msgid "Search: no pages found" 208 | msgstr "Haku: sivuja ei löytynyt" 209 | 210 | #: functions.php:875 211 | msgid "Loading tree" 212 | msgstr "Ladataan hakemisto" 213 | 214 | #: functions.php:896 functions.php:932 215 | msgid "After" 216 | msgstr "Jälkeen" 217 | 218 | #: functions.php:901 functions.php:933 219 | msgid "Inside" 220 | msgstr "Sisällä" 221 | 222 | #: functions.php:905 223 | msgid "Can not create page inside of a page with draft status" 224 | msgstr "Valitettavasti ei voi luoda alasivun, sivu on luonnos tilassa" 225 | 226 | #: functions.php:921 227 | msgid "Add page(s)" 228 | msgstr "Lisää sivu(ja)" 229 | 230 | #: functions.php:926 231 | msgid "Enter title here" 232 | msgstr "Kirjoita otsikko tähän" 233 | 234 | #: functions.php:931 235 | msgid "Position" 236 | msgstr "Sijainti" 237 | 238 | #: functions.php:938 239 | msgid "Status" 240 | msgstr "Tila" 241 | 242 | #: functions.php:939 243 | msgid "Draft" 244 | msgstr "Luonnos" 245 | 246 | #: functions.php:940 247 | msgid "Published" 248 | msgstr "Julkaistu" 249 | 250 | #: functions.php:944 251 | msgid "Add" 252 | msgstr "Lisää" 253 | 254 | #: functions.php:945 255 | msgid "or" 256 | msgstr "tai" 257 | 258 | #: functions.php:946 259 | msgid "cancel" 260 | msgstr "peruuttaa" 261 | 262 | #: functions.php:956 263 | msgid "Last modified" 264 | msgstr "Viimeksi muokattu" 265 | 266 | #: functions.php:958 267 | msgid "by" 268 | msgstr "- " 269 | 270 | #: functions.php:961 271 | msgid "Page ID" 272 | msgstr "Sivun ID" 273 | 274 | #: functions.php:997 275 | msgctxt "headline of page with tree" 276 | msgid "%1$s Tree View" 277 | msgstr "%1$s Hakemisto" 278 | 279 | #: functions.php:1200 280 | msgid "Unknown user" 281 | msgstr "Tuntematon käyttäjä" 282 | 283 | #: functions.php:1205 284 | msgid "" 285 | msgstr "" 286 | 287 | #: functions.php:1225 288 | msgid "Comments" 289 | msgstr "Kommentit" 290 | 291 | #: functions.php:1232 292 | msgid "%s pending" 293 | msgstr "%s vireillä" 294 | 295 | #: functions.php:1242 296 | msgctxt "comment count" 297 | msgid "0" 298 | msgstr "0" 299 | 300 | #: functions.php:1242 301 | msgctxt "comment count" 302 | msgid "1" 303 | msgstr "1" 304 | 305 | #: functions.php:1242 306 | msgctxt "comment count" 307 | msgid "%" 308 | msgstr "%" 309 | 310 | #: functions.php:1428 311 | msgid "New page" 312 | msgstr "Uusi sivu" 313 | 314 | #: functions.php:1618 315 | msgid "Thanks for using my plugin" 316 | msgstr "Kiitos kun käytät minun plugari" 317 | 318 | #: functions.php:1620 319 | msgid "" 320 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 321 | "as much as I do." 322 | msgstr "Hei siellä! Haluan vain sanoo kiitos kun käytät minun plugarin. Toivottavasti pidät siitä yhtä paljon kuin minä." 323 | 324 | #: functions.php:1621 325 | msgid "/Pär Thernström - plugin creator" 326 | msgstr "/ Plugarin luoja" 327 | 328 | #: functions.php:1623 329 | msgid "I like this plugin
– how can I thank you?" 330 | msgstr "Pidän tätä plugaria
- miten voin kiittää sinua?" 331 | 332 | #: functions.php:1624 333 | msgid "There are serveral ways for you to show your appreciation:" 334 | msgstr "On olemassa useita tapoja, joilla voit näyttää arvostavasi:" 335 | 336 | #: functions.php:1626 337 | msgid "" 338 | "Give it a nice review over at the WordPress Plugin " 339 | "Directory" 340 | msgstr " Anna joku kiva arvostelu WordPress Plugin Directory kautta" 341 | 342 | #: functions.php:1627 343 | msgid "Give a donation – any amount will make me happy" 344 | msgstr " Anna lahjoitus - minkä määrä tahansa teksi minut onnelliseksi" 345 | 346 | #: functions.php:1628 347 | msgid "" 348 | "Post a nice tweet or make a nice blog post about the " 349 | "plugin" 350 | msgstr " Kirjoita kiva Tweetti tai kerro tästä hienosta plugarista sun blogissa" 351 | 352 | #: functions.php:1631 353 | msgid "Support" 354 | msgstr "Tuki" 355 | 356 | #: functions.php:1632 357 | msgid "Plese see the support forum for help." 358 | msgstr "Katso tukifoorumi jos tarvitset apua." 359 | 360 | #: functions.php:1636 361 | msgid "Hide until next upgrade" 362 | msgstr "Piilota seuraavan päivitykseen asti" 363 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-sv_SE.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2012 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: \n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2012-12-26 20:37:31+00:00\n" 8 | "PO-Revision-Date: 2012-12-27 16:26+0100\n" 9 | "Last-Translator: Pär Thernström \n" 10 | "Language-Team: LANGUAGE \n" 11 | "Language: sv_SE\n" 12 | "MIME-Version: 1.0\n" 13 | "Content-Type: text/plain; charset=UTF-8\n" 14 | "Content-Transfer-Encoding: 8bit\n" 15 | "X-Generator: Poedit 1.5.4\n" 16 | "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;" 17 | "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;" 18 | "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" 19 | "X-Poedit-Basepath: .\n" 20 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 21 | "X-Poedit-SearchPath-0: .\n" 22 | "X-Poedit-SearchPath-1: ..\n" 23 | 24 | #: functions.php:272 25 | msgid "Enter title of new page" 26 | msgstr "Ange titel på ny sida" 27 | 28 | #: functions.php:273 29 | msgid "child pages" 30 | msgstr "undersidor" 31 | 32 | #: functions.php:274 functions.php:887 33 | msgid "Edit page" 34 | msgstr "Redigera sida" 35 | 36 | #: functions.php:275 functions.php:888 37 | msgid "View page" 38 | msgstr "Visa sida" 39 | 40 | #: functions.php:276 functions.php:887 41 | msgid "Edit" 42 | msgstr "Redigera" 43 | 44 | #: functions.php:277 functions.php:888 45 | msgid "View" 46 | msgstr "Visa" 47 | 48 | #: functions.php:278 49 | msgid "Add page" 50 | msgstr "Lägg till sida" 51 | 52 | #: functions.php:279 functions.php:896 53 | msgid "Add new page after" 54 | msgstr "Lägg till sida efter" 55 | 56 | #: functions.php:280 57 | msgid "after" 58 | msgstr "efter" 59 | 60 | #: functions.php:281 61 | msgid "inside" 62 | msgstr "inuti" 63 | 64 | #: functions.php:282 65 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 66 | msgstr "Kan inte skapa en undersida till en sida med status \"utkast\"." 67 | 68 | #: functions.php:283 69 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 70 | msgstr "Kan inte skapa en undersida till en sida med status \"i papperskorg\"." 71 | 72 | #: functions.php:284 73 | msgid "Sorry, can't create a page after a page with status \"trash\"." 74 | msgstr "Kan inte skapa sida efter en sida med status \"i papperskorg\"." 75 | 76 | #: functions.php:285 functions.php:901 77 | msgid "Add new page inside" 78 | msgstr "Ny sida inuti" 79 | 80 | #: functions.php:286 functions.php:292 81 | msgid "draft" 82 | msgstr "utkast" 83 | 84 | #: functions.php:287 functions.php:293 85 | msgid "future" 86 | msgstr "framtid" 87 | 88 | #: functions.php:288 functions.php:294 89 | msgid "protected" 90 | msgstr "skyddad" 91 | 92 | #: functions.php:289 functions.php:295 functions.php:1235 93 | msgid "pending" 94 | msgstr "väntande" 95 | 96 | #: functions.php:290 functions.php:296 97 | msgid "private" 98 | msgstr "privat" 99 | 100 | #: functions.php:291 functions.php:297 101 | msgid "trash" 102 | msgstr "papperskorg" 103 | 104 | #: functions.php:298 105 | msgid "Password protected page" 106 | msgstr "Lösenordsskyddad sida" 107 | 108 | #: functions.php:299 109 | msgid "Adding page..." 110 | msgstr "Lägger till sida..." 111 | 112 | #: functions.php:300 113 | msgid "Adding ..." 114 | msgstr "Lägger till ..." 115 | 116 | #: functions.php:393 117 | msgid "Tree View" 118 | msgstr "Trädvy" 119 | 120 | #: functions.php:402 121 | msgid "List View" 122 | msgstr "Listvy" 123 | 124 | #: functions.php:438 125 | msgid "Settings" 126 | msgstr "Inställningar" 127 | 128 | #: functions.php:474 129 | msgctxt "name of dashboard" 130 | msgid "%1$s Tree" 131 | msgstr "Trädvy för %1$s" 132 | 133 | #: functions.php:502 134 | msgctxt "name in menu" 135 | msgid "Tree View" 136 | msgstr "Trädvy" 137 | 138 | #: functions.php:503 139 | msgctxt "title on page with tree" 140 | msgid "%1$s Tree View" 141 | msgstr "Trädvy för %1$s" 142 | 143 | #: functions.php:523 144 | msgid "settings" 145 | msgstr "inställningar" 146 | 147 | #: functions.php:529 148 | msgid "Select where to show a tree for pages and custom post types" 149 | msgstr "Välj var en trädvy ska visas för sidor och custom post types." 150 | 151 | #: functions.php:573 152 | msgid "On dashboard" 153 | msgstr "På adminpanelen" 154 | 155 | #: functions.php:577 156 | msgid "In menu" 157 | msgstr "I menyn" 158 | 159 | #: functions.php:581 160 | msgid "On post overview screen" 161 | msgstr "På översiktssida för poster" 162 | 163 | #: functions.php:599 164 | msgid "Save Changes" 165 | msgstr "Spara Ändringar" 166 | 167 | #: functions.php:818 168 | msgid "No posts found." 169 | msgstr "Inga inlägg funna." 170 | 171 | #: functions.php:830 172 | msgid "All" 173 | msgstr "Alla" 174 | 175 | #: functions.php:835 176 | msgid "Public" 177 | msgstr "Publika" 178 | 179 | #: functions.php:840 180 | msgid "Trash" 181 | msgstr "Papperskorg" 182 | 183 | #: functions.php:848 184 | msgid "Expand" 185 | msgstr "Fäll ut" 186 | 187 | #: functions.php:849 188 | msgid "Collapse" 189 | msgstr "Fäll ihop" 190 | 191 | #: functions.php:857 192 | msgid "Clear search" 193 | msgstr "Rensa sök" 194 | 195 | #: functions.php:858 196 | msgid "Search" 197 | msgstr "Sök" 198 | 199 | #: functions.php:859 200 | msgid "Searching..." 201 | msgstr "Söker..." 202 | 203 | #: functions.php:860 204 | msgid "Nothing found." 205 | msgstr "Inget funnet." 206 | 207 | #: functions.php:867 208 | msgid "Loading..." 209 | msgstr "Laddar..." 210 | 211 | #: functions.php:872 212 | msgid "Search: no pages found" 213 | msgstr "Sök: inga sidor hittades" 214 | 215 | #: functions.php:875 216 | msgid "Loading tree" 217 | msgstr "Laddar träd" 218 | 219 | #: functions.php:896 functions.php:932 220 | msgid "After" 221 | msgstr "Efter" 222 | 223 | #: functions.php:901 functions.php:933 224 | msgid "Inside" 225 | msgstr "Inuti" 226 | 227 | #: functions.php:905 228 | msgid "Can not create page inside of a page with draft status" 229 | msgstr "Kan inte skapa sida inuti en sida med status utkast" 230 | 231 | #: functions.php:921 232 | msgid "Add page(s)" 233 | msgstr "Lägg till sidor" 234 | 235 | #: functions.php:926 236 | msgid "Enter title here" 237 | msgstr "Ange rubrik här" 238 | 239 | #: functions.php:931 240 | msgid "Position" 241 | msgstr "Plats" 242 | 243 | #: functions.php:938 244 | msgid "Status" 245 | msgstr "Status" 246 | 247 | #: functions.php:939 248 | msgid "Draft" 249 | msgstr "Utkast" 250 | 251 | #: functions.php:940 252 | msgid "Published" 253 | msgstr "Publicerad" 254 | 255 | #: functions.php:944 256 | msgid "Add" 257 | msgstr "Lägg till" 258 | 259 | #: functions.php:945 260 | msgid "or" 261 | msgstr "eller" 262 | 263 | #: functions.php:946 264 | msgid "cancel" 265 | msgstr "avbryt" 266 | 267 | #: functions.php:956 268 | msgid "Last modified" 269 | msgstr "Senast ändrad" 270 | 271 | #: functions.php:958 272 | msgid "by" 273 | msgstr "av" 274 | 275 | #: functions.php:961 276 | msgid "Page ID" 277 | msgstr "ID på sida" 278 | 279 | #: functions.php:997 280 | msgctxt "headline of page with tree" 281 | msgid "%1$s Tree View" 282 | msgstr "Trädvy för %1$s" 283 | 284 | #: functions.php:1200 285 | msgid "Unknown user" 286 | msgstr "Okänd användare" 287 | 288 | #: functions.php:1205 289 | msgid "" 290 | msgstr "" 291 | 292 | #: functions.php:1225 293 | msgid "Comments" 294 | msgstr "Kommentarer" 295 | 296 | #: functions.php:1232 297 | msgid "%s pending" 298 | msgstr "%s väntande" 299 | 300 | #: functions.php:1242 301 | msgctxt "comment count" 302 | msgid "0" 303 | msgstr "0" 304 | 305 | #: functions.php:1242 306 | msgctxt "comment count" 307 | msgid "1" 308 | msgstr "1" 309 | 310 | #: functions.php:1242 311 | msgctxt "comment count" 312 | msgid "%" 313 | msgstr "%" 314 | 315 | #: functions.php:1428 316 | msgid "New page" 317 | msgstr "Ny sida" 318 | 319 | #: functions.php:1618 320 | msgid "Thanks for using my plugin" 321 | msgstr "Tack för att du använder min plugin" 322 | 323 | #: functions.php:1620 324 | msgid "" 325 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 326 | "as much as I do." 327 | msgstr "" 328 | "Hejsan! Tack för att du använder min plugin. Hoppas du gillar den lika " 329 | "mycket som jag gör." 330 | 331 | #: functions.php:1621 332 | msgid "/Pär Thernström - plugin creator" 333 | msgstr "/Pär Thernström - skapare av pluginen" 334 | 335 | #: functions.php:1623 336 | msgid "I like this plugin
– how can I thank you?" 337 | msgstr "Jag gillar den här pluginen
– hur kan jag tacka dig?" 338 | 339 | #: functions.php:1624 340 | msgid "There are serveral ways for you to show your appreciation:" 341 | msgstr "Det finns flera sätt du kan visa att du gillar pluginen på:" 342 | 343 | #: functions.php:1626 344 | msgid "" 345 | "
Give it a nice review over at the WordPress Plugin " 346 | "Directory" 347 | msgstr "" 348 | "Ge den ett bra betyg på WordPress Plugin Directory" 349 | 350 | #: functions.php:1627 351 | msgid "Give a donation – any amount will make me happy" 352 | msgstr "Donera – oavsett summa så blir jag glad" 353 | 354 | #: functions.php:1628 355 | msgid "" 356 | "Post a nice tweet or make a nice blog post about the " 357 | "plugin" 358 | msgstr "" 359 | "Skriv en snäll tweet eller skriv ett schysst " 360 | "blogginlägg om pluginen" 361 | 362 | #: functions.php:1631 363 | msgid "Support" 364 | msgstr "Hjälp" 365 | 366 | #: functions.php:1632 367 | msgid "Plese see the support forum for help." 368 | msgstr "Besök supportforumet om du behöver hjälp." 369 | 370 | #: functions.php:1636 371 | msgid "Hide until next upgrade" 372 | msgstr "Göm tills nästa uppdatering" 373 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-sk_SK.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2013 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: CMS Tree Page View\n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2013-04-16 17:39:45+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2014-09-04 20:12+0100\n" 12 | "Last-Translator: \n" 13 | "Language-Team: rinak.sk \n" 14 | "X-Generator: Poedit 1.6.9\n" 15 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 16 | "Language: sk_SK\n" 17 | "X-Poedit-SourceCharset: UTF-8\n" 18 | 19 | #: functions.php:66 functions.php:113 functions.php:1396 20 | msgid "Cheatin’ uh?" 21 | msgstr "Podvádzate, čo?" 22 | 23 | #: functions.php:321 24 | msgid "Enter title of new page" 25 | msgstr "Zadajte názov novej stránky" 26 | 27 | #: functions.php:322 28 | msgid "child pages" 29 | msgstr "vnorené stránky" 30 | 31 | #: functions.php:323 functions.php:970 32 | msgid "Edit page" 33 | msgstr "Upraviť stránku" 34 | 35 | #: functions.php:324 functions.php:971 36 | msgid "View page" 37 | msgstr "Zobraziť stránku" 38 | 39 | #: functions.php:325 functions.php:970 40 | msgid "Edit" 41 | msgstr "Upraviť" 42 | 43 | #: functions.php:326 functions.php:971 44 | msgid "View" 45 | msgstr "Zobraziť" 46 | 47 | #: functions.php:327 48 | msgid "Add page" 49 | msgstr "Pridať stránku" 50 | 51 | #: functions.php:328 functions.php:979 52 | msgid "Add new page after" 53 | msgstr "Pridať novú stránku za" 54 | 55 | #: functions.php:329 56 | msgid "after" 57 | msgstr "za" 58 | 59 | #: functions.php:330 60 | msgid "inside" 61 | msgstr "vnoriť" 62 | 63 | #: functions.php:331 64 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 65 | msgstr "" 66 | "Prepáčte, ale nemôžete vytvoriť podstránku pre stránku, ktorá ma status " 67 | "\"Koncept\"." 68 | 69 | #: functions.php:332 70 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 71 | msgstr "" 72 | "Prepáčte, ale nemôžete vytvoriť podstránku pre stránku, ktorá ma status " 73 | "\"Zmazané\"." 74 | 75 | #: functions.php:333 76 | msgid "Sorry, can't create a page after a page with status \"trash\"." 77 | msgstr "" 78 | "Prepáčte, ale nemôžete vytvoriť stránku za stránkou, ktorá ma status " 79 | "\"Zmazaná\"." 80 | 81 | #: functions.php:334 functions.php:984 82 | msgid "Add new page inside" 83 | msgstr "Pridať novú vnorenú stránku " 84 | 85 | #: functions.php:335 functions.php:341 86 | msgid "draft" 87 | msgstr "koncept" 88 | 89 | #: functions.php:336 functions.php:342 90 | msgid "future" 91 | msgstr "budúca" 92 | 93 | #: functions.php:337 functions.php:343 94 | msgid "protected" 95 | msgstr "chránená" 96 | 97 | #: functions.php:338 functions.php:344 functions.php:1296 98 | msgid "pending" 99 | msgstr "čakajúca" 100 | 101 | #: functions.php:339 functions.php:345 102 | msgid "private" 103 | msgstr "súkromná" 104 | 105 | #: functions.php:340 functions.php:346 106 | msgid "trash" 107 | msgstr "zmazaná" 108 | 109 | #: functions.php:347 110 | msgid "Password protected page" 111 | msgstr "Stránka je chránená heslom" 112 | 113 | #: functions.php:348 114 | msgid "Adding page..." 115 | msgstr "Pridávam stránku..." 116 | 117 | #: functions.php:349 118 | msgid "Adding ..." 119 | msgstr "Pridávam..." 120 | 121 | #: functions.php:350 functions.php:1057 122 | msgid "No posts found." 123 | msgstr "Žiadny príspevok" 124 | 125 | #: functions.php:448 126 | msgid "Tree View" 127 | msgstr "Stromová štruktúra" 128 | 129 | #: functions.php:457 130 | msgid "List View" 131 | msgstr "Zoznam" 132 | 133 | #: functions.php:493 134 | msgid "Settings" 135 | msgstr "Nastavenia" 136 | 137 | #: functions.php:533 138 | msgctxt "name of dashboard" 139 | msgid "%1$s Tree" 140 | msgstr "%1$s Strom" 141 | 142 | #: functions.php:571 143 | msgctxt "name in menu" 144 | msgid "Tree View" 145 | msgstr "Stromová štruktúra" 146 | 147 | #: functions.php:572 148 | msgctxt "title on page with tree" 149 | msgid "%1$s Tree View" 150 | msgstr "%1$s Stromová štruktúra" 151 | 152 | #: functions.php:592 153 | msgid "settings" 154 | msgstr "nastavenia" 155 | 156 | #: functions.php:598 157 | msgid "Select where to show a tree for pages and custom post types" 158 | msgstr "Vyberte, kde chcete zobraziť strom pre stránky a články" 159 | 160 | #: functions.php:642 161 | msgid "On dashboard" 162 | msgstr "Na nástenke" 163 | 164 | #: functions.php:646 165 | msgid "In menu" 166 | msgstr "V menu" 167 | 168 | #: functions.php:650 169 | msgid "On post overview screen" 170 | msgstr "Pri náhľade stránky" 171 | 172 | #: functions.php:669 173 | msgid "Save Changes" 174 | msgstr "Uložiť zmeny" 175 | 176 | #: functions.php:913 177 | msgid "All" 178 | msgstr "Všetko" 179 | 180 | #: functions.php:918 181 | msgid "Public" 182 | msgstr "Verejné" 183 | 184 | #: functions.php:923 185 | msgid "Trash" 186 | msgstr "Kôš" 187 | 188 | #: functions.php:931 189 | msgid "Expand" 190 | msgstr "Rozbaliť" 191 | 192 | #: functions.php:932 193 | msgid "Collapse" 194 | msgstr "Zbaliť" 195 | 196 | #: functions.php:940 197 | msgid "Clear search" 198 | msgstr "Zrušiť vyhľadávanie" 199 | 200 | #: functions.php:941 201 | msgid "Search" 202 | msgstr "Hľadať" 203 | 204 | #: functions.php:942 205 | msgid "Searching..." 206 | msgstr "Hľadám..." 207 | 208 | #: functions.php:943 209 | msgid "Nothing found." 210 | msgstr "Nič sa nenašlo." 211 | 212 | #: functions.php:950 213 | msgid "Loading..." 214 | msgstr "Načítavam..." 215 | 216 | #: functions.php:955 217 | msgid "Search: no pages found" 218 | msgstr "Vyhľadávanie: nič sa nenašlo" 219 | 220 | #: functions.php:958 221 | msgid "Loading tree" 222 | msgstr "Načítavam strom" 223 | 224 | #: functions.php:979 functions.php:1016 225 | msgid "After" 226 | msgstr "Za" 227 | 228 | #: functions.php:984 functions.php:1017 229 | msgid "Inside" 230 | msgstr "Vnoriť" 231 | 232 | #: functions.php:988 233 | msgid "Can not create page inside of a page with draft status" 234 | msgstr "Nie je možné vytvoriť vnorenú stránku pokiaľ má status Koncept" 235 | 236 | #: functions.php:1005 237 | msgid "Add page(s)" 238 | msgstr "Pridať stránky" 239 | 240 | #: functions.php:1010 241 | msgid "Enter title here" 242 | msgstr "Tu vložte nadpis" 243 | 244 | #: functions.php:1015 245 | msgid "Position" 246 | msgstr "Pozícia" 247 | 248 | #: functions.php:1022 249 | msgid "Status" 250 | msgstr "Stav" 251 | 252 | #: functions.php:1023 253 | msgid "Draft" 254 | msgstr "Koncept" 255 | 256 | #: functions.php:1024 257 | msgid "Published" 258 | msgstr "Publikované" 259 | 260 | #: functions.php:1028 261 | msgid "Add" 262 | msgstr "Pridať" 263 | 264 | #: functions.php:1029 265 | msgid "or" 266 | msgstr "alebo" 267 | 268 | #: functions.php:1030 269 | msgid "cancel" 270 | msgstr "zrušiť" 271 | 272 | #: functions.php:1040 273 | msgid "Last modified" 274 | msgstr "Posledná úprava" 275 | 276 | #: functions.php:1042 277 | msgid "by" 278 | msgstr "od" 279 | 280 | #: functions.php:1045 281 | msgid "Page ID" 282 | msgstr "ID stránky" 283 | 284 | #: functions.php:1088 285 | msgctxt "headline of page with tree" 286 | msgid "%1$s Tree View" 287 | msgstr "%1$s Stromová štruktúra" 288 | 289 | #: functions.php:1248 290 | msgid "Unknown user" 291 | msgstr "Neznámy používateľ" 292 | 293 | #: functions.php:1253 294 | msgid "" 295 | msgstr "" 296 | 297 | #: functions.php:1286 298 | msgid "Comments" 299 | msgstr "Komentáre" 300 | 301 | #: functions.php:1293 302 | msgid "%s pending" 303 | msgstr "% čaká" 304 | 305 | #: functions.php:1303 306 | msgctxt "comment count" 307 | msgid "0" 308 | msgstr "0" 309 | 310 | #: functions.php:1303 311 | msgctxt "comment count" 312 | msgid "1" 313 | msgstr "1" 314 | 315 | #: functions.php:1303 316 | msgctxt "comment count" 317 | msgid "%" 318 | msgstr "%" 319 | 320 | #: functions.php:1502 321 | msgid "New page" 322 | msgstr "Nová stránka" 323 | 324 | #: functions.php:1692 325 | msgid "Thanks for using my plugin" 326 | msgstr "Ďakujem, že používate môj plugin" 327 | 328 | #: functions.php:1694 329 | msgid "" 330 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 331 | "as much as I do." 332 | msgstr "" 333 | "Ahojte! Chcem vám len poďakovať za to, že používate môj plugin. Dúfam, že sa " 334 | "vám páči tak, ako mne." 335 | 336 | #: functions.php:1695 337 | msgid "/Pär Thernström - plugin creator" 338 | msgstr "/Pär Thernström - autor pluginu" 339 | 340 | #: functions.php:1697 341 | msgid "I like this plugin
– how can I thank you?" 342 | msgstr "Páči sa mi tento plugin
- ako môžem poďakovať?" 343 | 344 | #: functions.php:1698 345 | msgid "There are serveral ways for you to show your appreciation:" 346 | msgstr "Je tu niekoľko možností, ako vyjadriť vaše poďakovanie:" 347 | 348 | #: functions.php:1700 349 | msgid "" 350 | "Give it a nice review over at the WordPress Plugin " 351 | "Directory" 352 | msgstr "Dať pekné hodnotenie na stránke WordPress" 353 | 354 | #: functions.php:1701 355 | msgid "Give a donation – any amount will make me happy" 356 | msgstr "Poslať dar – akákoľvek suma poteší" 357 | 358 | #: functions.php:1702 359 | msgid "" 360 | "Post a nice tweet or make a nice blog post about the " 361 | "plugin" 362 | msgstr "" 363 | "Napísať pekný tweet alebo napísať niečo pekné o tomto " 364 | "plugine na blogu" 365 | 366 | #: functions.php:1705 367 | msgid "Support" 368 | msgstr "Podpora" 369 | 370 | #: functions.php:1706 371 | msgid "Plese see the support forum for help." 372 | msgstr "" 373 | "Ak potrebujete pomoc, prosím pozrite si fórum podpory." 374 | 375 | #: functions.php:1710 376 | msgid "Hide until next upgrade" 377 | msgstr "Skryť do najbližšej aktualizácie" 378 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view_uk_UA.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2013 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: \n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2013-04-16 17:39:45+00:00\n" 8 | "MIME-Version: 1.0\n" 9 | "Content-Type: text/plain; charset=UTF-8\n" 10 | "Content-Transfer-Encoding: 8bit\n" 11 | "PO-Revision-Date: 2014-05-22 18:00+0200\n" 12 | "Last-Translator: Michael Yunat \n" 13 | "Language-Team: http://getvoip.com/\n" 14 | "Language: uk_UA\n" 15 | "X-Generator: Poedit 1.6.5\n" 16 | 17 | #: functions.php:66 functions.php:113 functions.php:1396 18 | msgid "Cheatin’ uh?" 19 | msgstr "Ти чітер?" 20 | 21 | #: functions.php:321 22 | msgid "Enter title of new page" 23 | msgstr "Введіть назву нової сторінки" 24 | 25 | #: functions.php:322 26 | msgid "child pages" 27 | msgstr "дочірні сторінки" 28 | 29 | #: functions.php:323 functions.php:970 30 | msgid "Edit page" 31 | msgstr "Редагувати сторінку" 32 | 33 | #: functions.php:324 functions.php:971 34 | msgid "View page" 35 | msgstr "Переглянути сторінку" 36 | 37 | #: functions.php:325 functions.php:970 38 | msgid "Edit" 39 | msgstr "Редагувати" 40 | 41 | #: functions.php:326 functions.php:971 42 | msgid "View" 43 | msgstr "Вид" 44 | 45 | #: functions.php:327 46 | msgid "Add page" 47 | msgstr "Додати сторінку" 48 | 49 | #: functions.php:328 functions.php:979 50 | msgid "Add new page after" 51 | msgstr "Додати нову сторінку після" 52 | 53 | #: functions.php:329 54 | msgid "after" 55 | msgstr "після" 56 | 57 | #: functions.php:330 58 | msgid "inside" 59 | msgstr "всередині" 60 | 61 | #: functions.php:331 62 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 63 | msgstr "" 64 | "На жаль, не може створити додаткову сторінку на сторінку зі статусом \"draft" 65 | "\"." 66 | 67 | #: functions.php:332 68 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 69 | msgstr "" 70 | "На жаль, не може створити додаткову сторінку на сторінку зі статусом \"trash" 71 | "\"." 72 | 73 | #: functions.php:333 74 | msgid "Sorry, can't create a page after a page with status \"trash\"." 75 | msgstr "" 76 | "На жаль, не можу створити сторінку після сторінці зі статусом \"trash\"." 77 | 78 | #: functions.php:334 functions.php:984 79 | msgid "Add new page inside" 80 | msgstr "Додати нову сторінку всередині" 81 | 82 | #: functions.php:335 functions.php:341 83 | msgid "draft" 84 | msgstr "проект" 85 | 86 | #: functions.php:336 functions.php:342 87 | msgid "future" 88 | msgstr "майбутнє" 89 | 90 | #: functions.php:337 functions.php:343 91 | msgid "protected" 92 | msgstr "захищений" 93 | 94 | #: functions.php:338 functions.php:344 functions.php:1296 95 | msgid "pending" 96 | msgstr "в очікуванні" 97 | 98 | #: functions.php:339 functions.php:345 99 | msgid "private" 100 | msgstr "приватний" 101 | 102 | #: functions.php:340 functions.php:346 103 | msgid "trash" 104 | msgstr "сміття" 105 | 106 | #: functions.php:347 107 | msgid "Password protected page" 108 | msgstr "Пароль для захисту сторінки" 109 | 110 | #: functions.php:348 111 | msgid "Adding page..." 112 | msgstr "Додавання сторінки ..." 113 | 114 | #: functions.php:349 115 | msgid "Adding ..." 116 | msgstr "Додавання ..." 117 | 118 | #: functions.php:350 functions.php:1057 119 | msgid "No posts found." 120 | msgstr "Повідомлення не знайдені." 121 | 122 | #: functions.php:448 123 | msgid "Tree View" 124 | msgstr "Дерево" 125 | 126 | #: functions.php:457 127 | msgid "List View" 128 | msgstr "Список" 129 | 130 | #: functions.php:493 131 | msgid "Settings" 132 | msgstr "Налаштування" 133 | 134 | #: functions.php:533 135 | msgctxt "name of dashboard" 136 | msgid "%1$s Tree" 137 | msgstr "%1$s Дерево" 138 | 139 | #: functions.php:571 140 | msgctxt "name in menu" 141 | msgid "Tree View" 142 | msgstr "Вид дерева" 143 | 144 | #: functions.php:572 145 | msgctxt "title on page with tree" 146 | msgid "%1$s Tree View" 147 | msgstr "%1$s Вид дерева" 148 | 149 | #: functions.php:592 150 | msgid "settings" 151 | msgstr "настройки" 152 | 153 | #: functions.php:598 154 | msgid "Select where to show a tree for pages and custom post types" 155 | msgstr "Виберіть де показувати дерево для сторінок і опцій типів повідомлення" 156 | 157 | #: functions.php:642 158 | msgid "On dashboard" 159 | msgstr "На приладовій панелі" 160 | 161 | #: functions.php:646 162 | msgid "In menu" 163 | msgstr "У меню" 164 | 165 | #: functions.php:650 166 | msgid "On post overview screen" 167 | msgstr "На пост оглядовому екрані" 168 | 169 | #: functions.php:669 170 | msgid "Save Changes" 171 | msgstr "Зберегти зміни" 172 | 173 | #: functions.php:913 174 | msgid "All" 175 | msgstr "Всі" 176 | 177 | #: functions.php:918 178 | msgid "Public" 179 | msgstr "Громадський" 180 | 181 | #: functions.php:923 182 | msgid "Trash" 183 | msgstr "Сміття" 184 | 185 | #: functions.php:931 186 | msgid "Expand" 187 | msgstr "Розширювати" 188 | 189 | #: functions.php:932 190 | msgid "Collapse" 191 | msgstr "Колапс" 192 | 193 | #: functions.php:940 194 | msgid "Clear search" 195 | msgstr "Очитити пошук" 196 | 197 | #: functions.php:941 198 | msgid "Search" 199 | msgstr "Пошук" 200 | 201 | #: functions.php:942 202 | msgid "Searching..." 203 | msgstr "Йде пошук ..." 204 | 205 | #: functions.php:943 206 | msgid "Nothing found." 207 | msgstr "Нічого не знайдено." 208 | 209 | #: functions.php:950 210 | msgid "Loading..." 211 | msgstr "Завантаження ..." 212 | 213 | #: functions.php:955 214 | msgid "Search: no pages found" 215 | msgstr "Пошук: сторінок не знайдено" 216 | 217 | #: functions.php:958 218 | msgid "Loading tree" 219 | msgstr "Завантаження дерева" 220 | 221 | #: functions.php:979 functions.php:1016 222 | msgid "After" 223 | msgstr "Після" 224 | 225 | #: functions.php:984 functions.php:1017 226 | msgid "Inside" 227 | msgstr "Усередині" 228 | 229 | #: functions.php:988 230 | msgid "Can not create page inside of a page with draft status" 231 | msgstr "Неможливо створити сторінку всередині сторінки з статусом проекту" 232 | 233 | #: functions.php:1005 234 | msgid "Add page(s)" 235 | msgstr "Додати сторінку(и)" 236 | 237 | #: functions.php:1010 238 | msgid "Enter title here" 239 | msgstr "Введіть назву тут" 240 | 241 | #: functions.php:1015 242 | msgid "Position" 243 | msgstr "Положення" 244 | 245 | #: functions.php:1022 246 | msgid "Status" 247 | msgstr "Статус" 248 | 249 | #: functions.php:1023 250 | msgid "Draft" 251 | msgstr "Проект" 252 | 253 | #: functions.php:1024 254 | msgid "Published" 255 | msgstr "Опублікований" 256 | 257 | #: functions.php:1028 258 | msgid "Add" 259 | msgstr "Додавати" 260 | 261 | #: functions.php:1029 262 | msgid "or" 263 | msgstr "або" 264 | 265 | #: functions.php:1030 266 | msgid "cancel" 267 | msgstr "скасувати" 268 | 269 | #: functions.php:1040 270 | msgid "Last modified" 271 | msgstr "Останні зміни" 272 | 273 | #: functions.php:1042 274 | msgid "by" 275 | msgstr "по" 276 | 277 | #: functions.php:1045 278 | msgid "Page ID" 279 | msgstr "Сторінка ID" 280 | 281 | #: functions.php:1088 282 | msgctxt "headline of page with tree" 283 | msgid "%1$s Tree View" 284 | msgstr "%1$s Дерево" 285 | 286 | #: functions.php:1248 287 | msgid "Unknown user" 288 | msgstr "Невідомий користувач" 289 | 290 | #: functions.php:1253 291 | msgid "" 292 | msgstr "" 293 | 294 | #: functions.php:1286 295 | msgid "Comments" 296 | msgstr "Коментарі" 297 | 298 | #: functions.php:1293 299 | msgid " %s pending" 300 | msgstr " %s до" 301 | 302 | #: functions.php:1303 303 | msgctxt "comment count" 304 | msgid "0" 305 | msgstr "0" 306 | 307 | #: functions.php:1303 308 | msgctxt "comment count" 309 | msgid "1" 310 | msgstr "1" 311 | 312 | #: functions.php:1303 313 | msgctxt "comment count" 314 | msgid "%" 315 | msgstr "%" 316 | 317 | #: functions.php:1502 318 | msgid "New page" 319 | msgstr "Нова сторінка" 320 | 321 | #: functions.php:1692 322 | msgid "Thanks for using my plugin" 323 | msgstr "Подякувати за використання мого плагіну" 324 | 325 | #: functions.php:1694 326 | msgid "" 327 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 328 | "as much as I do." 329 | msgstr "" 330 | "Привіт! Я просто хочу, сказати спасибі за використання мого плагін. Я " 331 | "сподіваюся, вам сподобається те, что він робить." 332 | 333 | #: functions.php:1695 334 | msgid "/Pär Thernström - plugin creator" 335 | msgstr "/Pär Thernström - творець плагіну" 336 | 337 | #: functions.php:1697 338 | msgid "I like this plugin
– how can I thank you?" 339 | msgstr "Мені подобається цей плагін
- Як я можу віддячити вам?" 340 | 341 | #: functions.php:1698 342 | msgid "There are serveral ways for you to show your appreciation:" 343 | msgstr "Є декілька способів для Вас, щоб показати вашу вдячність:" 344 | 345 | #: functions.php:1700 346 | msgid "" 347 | "Give it a nice review over at the WordPress Plugin " 348 | "Directory" 349 | msgstr "" 350 | "Дайте йому гарний відгук на сторінці каталогу плагіну " 351 | "WordPress" 352 | 353 | #: functions.php:1701 354 | msgid "Give a donation – any amount will make me happy" 355 | msgstr "" 356 | "Дайте пожертву - будь-яка сума зробить мене щасливим" 357 | 358 | #: functions.php:1702 359 | msgid "" 360 | "Post a nice tweet or make a nice blog post about the " 361 | "plugin" 362 | msgstr "" 363 | " Дати хороший твіт або написати вдячність у блозі про " 364 | "плагін " 365 | 366 | #: functions.php:1705 367 | msgid "Support" 368 | msgstr "Підтримка" 369 | 370 | #: functions.php:1706 371 | msgid "Plese see the support forum for help." 372 | msgstr "" 373 | "Будь-ласка зверніться до форуму підтримки за допомогою." 374 | 375 | #: functions.php:1710 376 | msgid "Hide until next upgrade" 377 | msgstr "Приховати до наступного оновлення" 378 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-fi.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2012 2 | # This file is distributed under the same license as the package. 3 | # Translators: 4 | # Jan-Erik Finlander , 2013. 5 | msgid "" 6 | msgstr "" 7 | "Project-Id-Version: CMS Tree Page View\n" 8 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 9 | "POT-Creation-Date: 2013-04-16 17:39:45+00:00\n" 10 | "PO-Revision-Date: 2016-04-22 16:00+0200\n" 11 | "Last-Translator: Heikki Paananen \n" 12 | "Language-Team: Finnish (http://www.transifex.com/projects/p/cms-tree-page-" 13 | "view/language/fi/)\n" 14 | "Language: fi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "Plural-Forms: nplurals=2; plural=(n != 1);\n" 19 | "X-Generator: Poedit 1.5.7\n" 20 | 21 | #: functions.php:66 functions.php:113 functions.php:1396 22 | msgid "Cheatin’ uh?" 23 | msgstr "Huijaat’ huh?" 24 | 25 | #: functions.php:321 26 | msgid "Enter title of new page" 27 | msgstr "Kirjoita uuden sivun otsikko " 28 | 29 | #: functions.php:322 30 | msgid "child pages" 31 | msgstr "Alasivut" 32 | 33 | #: functions.php:323 functions.php:970 34 | msgid "Edit page" 35 | msgstr "Muokkaa sivua" 36 | 37 | #: functions.php:324 functions.php:971 38 | msgid "View page" 39 | msgstr "Näytä sivu" 40 | 41 | #: functions.php:325 functions.php:970 42 | msgid "Edit" 43 | msgstr "Muokkaa" 44 | 45 | #: functions.php:326 functions.php:971 46 | msgid "View" 47 | msgstr "Näytä" 48 | 49 | #: functions.php:327 50 | msgid "Add page" 51 | msgstr "Lisää sivu" 52 | 53 | #: functions.php:328 functions.php:979 54 | msgid "Add new page after" 55 | msgstr "Lisää uusi sivu tämän jälkeen" 56 | 57 | #: functions.php:329 58 | msgid "after" 59 | msgstr "jälkeen" 60 | 61 | #: functions.php:330 62 | msgid "inside" 63 | msgstr "sisällä" 64 | 65 | #: functions.php:331 66 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 67 | msgstr "" 68 | "Valitettavasti ei voi luoda alasivua, jos pääsivun status on \"luonnos\"." 69 | 70 | #: functions.php:332 71 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 72 | msgstr "" 73 | "Valitettavasti ei voi luoda alasivua, jos pääsivun status on \"roskakori\". " 74 | 75 | #: functions.php:333 76 | msgid "Sorry, can't create a page after a page with status \"trash\"." 77 | msgstr "" 78 | "Valitettavasti ei voi luoda sivua, \"roskakori\" statuksella olevan sivun " 79 | "jälkeen. " 80 | 81 | #: functions.php:334 functions.php:984 82 | msgid "Add new page inside" 83 | msgstr "Lisää uusi sisäinen sivu " 84 | 85 | #: functions.php:335 functions.php:341 86 | msgid "draft" 87 | msgstr "luonnos" 88 | 89 | #: functions.php:336 functions.php:342 90 | msgid "future" 91 | msgstr "tuleva" 92 | 93 | #: functions.php:337 functions.php:343 94 | msgid "protected" 95 | msgstr "suojattu" 96 | 97 | #: functions.php:338 functions.php:344 functions.php:1296 98 | msgid "pending" 99 | msgstr "vireillä" 100 | 101 | #: functions.php:339 functions.php:345 102 | msgid "private" 103 | msgstr "yksityinen" 104 | 105 | #: functions.php:340 functions.php:346 106 | msgid "trash" 107 | msgstr "roskakori" 108 | 109 | #: functions.php:347 110 | msgid "Password protected page" 111 | msgstr "salasanalla suojattu sivu" 112 | 113 | #: functions.php:348 114 | msgid "Adding page..." 115 | msgstr "Sivua lisätään... " 116 | 117 | #: functions.php:349 118 | msgid "Adding ..." 119 | msgstr "Lisätään..." 120 | 121 | #: functions.php:350 functions.php:1057 122 | msgid "No posts found." 123 | msgstr "Artikkeleita ei löytynyt." 124 | 125 | #: functions.php:448 126 | msgid "Tree View" 127 | msgstr "Puunäkymä" 128 | 129 | #: functions.php:457 130 | msgid "List View" 131 | msgstr "Listanäkymä" 132 | 133 | #: functions.php:493 134 | msgid "Settings" 135 | msgstr "Asetukset" 136 | 137 | #: functions.php:533 138 | msgctxt "name of dashboard" 139 | msgid "%1$s Tree" 140 | msgstr "%1$s Puunäkymä" 141 | 142 | #: functions.php:571 143 | msgctxt "name in menu" 144 | msgid "Tree View" 145 | msgstr "Puunäkymä" 146 | 147 | #: functions.php:572 148 | msgctxt "title on page with tree" 149 | msgid "%1$s Tree View" 150 | msgstr "%1$s Puunäkymä" 151 | 152 | #: functions.php:592 153 | msgid "settings" 154 | msgstr "asetukset" 155 | 156 | #: functions.php:598 157 | msgid "Select where to show a tree for pages and custom post types" 158 | msgstr "Valitse, missä puunäkymä näytetään (sivut ja artikkelit) " 159 | 160 | #: functions.php:642 161 | msgid "On dashboard" 162 | msgstr "Työpöydällä" 163 | 164 | #: functions.php:646 165 | msgid "In menu" 166 | msgstr "Valikossa" 167 | 168 | #: functions.php:650 169 | msgid "On post overview screen" 170 | msgstr "Yleiskatsaus näytöllä" 171 | 172 | #: functions.php:669 173 | msgid "Save Changes" 174 | msgstr "Tallenna muutokset" 175 | 176 | #: functions.php:913 177 | msgid "All" 178 | msgstr "Kaikki" 179 | 180 | #: functions.php:918 181 | msgid "Public" 182 | msgstr "Julkinen" 183 | 184 | #: functions.php:923 185 | msgid "Trash" 186 | msgstr "Roskakori" 187 | 188 | #: functions.php:931 189 | msgid "Expand" 190 | msgstr "Laajenna" 191 | 192 | #: functions.php:932 193 | msgid "Collapse" 194 | msgstr "Supista" 195 | 196 | #: functions.php:940 197 | msgid "Clear search" 198 | msgstr "Tyhjennä haku" 199 | 200 | #: functions.php:941 201 | msgid "Search" 202 | msgstr "Hae" 203 | 204 | #: functions.php:942 205 | msgid "Searching..." 206 | msgstr "Heataan..." 207 | 208 | #: functions.php:943 209 | msgid "Nothing found." 210 | msgstr "Ei löytynyt mitään." 211 | 212 | #: functions.php:950 213 | msgid "Loading..." 214 | msgstr "Ladataan..." 215 | 216 | #: functions.php:955 217 | msgid "Search: no pages found" 218 | msgstr "Haku: sivuja ei löytynyt" 219 | 220 | #: functions.php:958 221 | msgid "Loading tree" 222 | msgstr "Ladataan puunäkymä" 223 | 224 | #: functions.php:979 functions.php:1016 225 | msgid "After" 226 | msgstr "Jälkeen" 227 | 228 | #: functions.php:984 functions.php:1017 229 | msgid "Inside" 230 | msgstr "Sisällä" 231 | 232 | #: functions.php:988 233 | msgid "Can not create page inside of a page with draft status" 234 | msgstr "" 235 | "Valitettavasti alasivua ei voi luoda kun sivu on luonnos (draft) tilassa" 236 | 237 | #: functions.php:1005 238 | msgid "Add page(s)" 239 | msgstr "Lisää sivu(ja)" 240 | 241 | #: functions.php:1010 242 | msgid "Enter title here" 243 | msgstr "Kirjoita otsikko tähän" 244 | 245 | #: functions.php:1015 246 | msgid "Position" 247 | msgstr "Sijainti" 248 | 249 | #: functions.php:1022 250 | msgid "Status" 251 | msgstr "Tila" 252 | 253 | #: functions.php:1023 254 | msgid "Draft" 255 | msgstr "Luonnos" 256 | 257 | #: functions.php:1024 258 | msgid "Published" 259 | msgstr "Julkaistu" 260 | 261 | #: functions.php:1028 262 | msgid "Add" 263 | msgstr "Lisää" 264 | 265 | #: functions.php:1029 266 | msgid "or" 267 | msgstr "tai" 268 | 269 | #: functions.php:1030 270 | msgid "cancel" 271 | msgstr "peruta" 272 | 273 | #: functions.php:1040 274 | msgid "Last modified" 275 | msgstr "Viimeksi muokattu" 276 | 277 | #: functions.php:1042 278 | msgid "by" 279 | msgstr "- " 280 | 281 | #: functions.php:1045 282 | msgid "Page ID" 283 | msgstr "Sivun ID" 284 | 285 | #: functions.php:1088 286 | msgctxt "headline of page with tree" 287 | msgid "%1$s Tree View" 288 | msgstr "%1$s Puunäkymä" 289 | 290 | #: functions.php:1248 291 | msgid "Unknown user" 292 | msgstr "Tuntematon käyttäjä" 293 | 294 | #: functions.php:1253 295 | msgid "" 296 | msgstr "" 297 | 298 | #: functions.php:1286 299 | msgid "Comments" 300 | msgstr "Kommentit" 301 | 302 | #: functions.php:1293 303 | msgid "%s pending" 304 | msgstr "%s vireillä" 305 | 306 | #: functions.php:1303 307 | msgctxt "comment count" 308 | msgid "0" 309 | msgstr "0" 310 | 311 | #: functions.php:1303 312 | msgctxt "comment count" 313 | msgid "1" 314 | msgstr "1" 315 | 316 | #: functions.php:1303 317 | msgctxt "comment count" 318 | msgid "%" 319 | msgstr "%" 320 | 321 | #: functions.php:1502 322 | msgid "New page" 323 | msgstr "Uusi sivu" 324 | 325 | #: functions.php:1692 326 | msgid "Thanks for using my plugin" 327 | msgstr "Kiitos kun käytät pluginiani" 328 | 329 | #: functions.php:1694 330 | msgid "" 331 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 332 | "as much as I do." 333 | msgstr "" 334 | "Tervehdys! Haluan kiittää siitä, että käytät tätä pluginia. Toivottavasti " 335 | "pidät siitä yhtä paljon kuin minäkin." 336 | 337 | #: functions.php:1695 338 | msgid "/Pär Thernström - plugin creator" 339 | msgstr "/Pär Thernström - Pluginin luoja" 340 | 341 | #: functions.php:1697 342 | msgid "I like this plugin
– how can I thank you?" 343 | msgstr "Pidän tästä pluginista
- miten voin kiittää sinua?" 344 | 345 | #: functions.php:1698 346 | msgid "There are serveral ways for you to show your appreciation:" 347 | msgstr "On olemassa useita tapoja, joilla voit näyttää arvostuksesi:" 348 | 349 | #: functions.php:1700 350 | msgid "" 351 | "Give it a nice review over at the WordPress Plugin " 352 | "Directory" 353 | msgstr "" 354 | "Anna kiva arvostelu WordPress Plugin Directoryn kautta" 355 | 356 | #: functions.php:1701 357 | msgid "Give a donation – any amount will make me happy" 358 | msgstr "" 359 | "Anna lahjoitus - mikä määrä tahansa teksi minut " 360 | "onnelliseksi" 361 | 362 | #: functions.php:1702 363 | msgid "" 364 | "Post a nice tweet or make a nice blog post about the " 365 | "plugin" 366 | msgstr "" 367 | "Kirjoita kiva Tweetti tai kerro tästä hienosta " 368 | "pluginista blogissasi" 369 | 370 | #: functions.php:1705 371 | msgid "Support" 372 | msgstr "Tuki" 373 | 374 | #: functions.php:1706 375 | msgid "Please see the support forum for help." 376 | msgstr " Jos tarvitset apua, katso tukifoorumi." 377 | 378 | #: functions.php:1710 379 | msgid "Hide until next upgrade" 380 | msgstr "Piilota seuraavan päivitykseen asti" 381 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-fr_FR.po: -------------------------------------------------------------------------------- 1 | # Translation of the WordPress plugin by . 2 | # Copyright (C) 2010 3 | # This file is distributed under the same license as the package. 4 | # FIRST AUTHOR , 2010. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: \n" 9 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 10 | "POT-Creation-Date: 2012-12-26 20:37:31+00:00\n" 11 | "PO-Revision-Date: 2013-01-07 22:35+0100\n" 12 | "Last-Translator: Jean-Christophe Brebion \n" 13 | "Language-Team: \n" 14 | "Language: fr_FR\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=UTF-8\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | "X-Generator: Poedit 1.5.4\n" 19 | 20 | #: functions.php:272 21 | msgid "Enter title of new page" 22 | msgstr "Entrez le titre de la page" 23 | 24 | #: functions.php:273 25 | msgid "child pages" 26 | msgstr "Pages sous cette page" 27 | 28 | #: functions.php:274 functions.php:887 29 | msgid "Edit page" 30 | msgstr "Modifier la page" 31 | 32 | #: functions.php:275 functions.php:888 33 | msgid "View page" 34 | msgstr "Voir la page" 35 | 36 | #: functions.php:276 functions.php:887 37 | msgid "Edit" 38 | msgstr "Modifier" 39 | 40 | #: functions.php:277 functions.php:888 41 | msgid "View" 42 | msgstr "Voir" 43 | 44 | #: functions.php:278 45 | msgid "Add page" 46 | msgstr "Ajouter une page" 47 | 48 | #: functions.php:279 functions.php:896 49 | msgid "Add new page after" 50 | msgstr "Ajouter une page après cette page" 51 | 52 | #: functions.php:280 53 | msgid "after" 54 | msgstr "après" 55 | 56 | #: functions.php:281 57 | msgid "inside" 58 | msgstr "sous cette page" 59 | 60 | #: functions.php:282 61 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 62 | msgstr "" 63 | "Désolé, impossible de créer une page à l'intérieur d'une page ayant le " 64 | "statut de brouillon." 65 | 66 | #: functions.php:283 67 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 68 | msgstr "" 69 | "Désolé, impossible de créer une page à l'intérieur d'une page située dans la " 70 | "corbeille." 71 | 72 | #: functions.php:284 73 | msgid "Sorry, can't create a page after a page with status \"trash\"." 74 | msgstr "" 75 | "Désolé, impossible de créer une page après une page située dans la corbeille." 76 | 77 | #: functions.php:285 functions.php:901 78 | msgid "Add new page inside" 79 | msgstr "Ajouter une page à l'intérieur de cette page" 80 | 81 | #: functions.php:286 functions.php:292 82 | msgid "draft" 83 | msgstr "brouillon" 84 | 85 | #: functions.php:287 functions.php:293 86 | msgid "future" 87 | msgstr "planifié" 88 | 89 | #: functions.php:288 functions.php:294 90 | msgid "protected" 91 | msgstr "protégé" 92 | 93 | #: functions.php:289 functions.php:295 functions.php:1235 94 | msgid "pending" 95 | msgstr "en attente" 96 | 97 | #: functions.php:290 functions.php:296 98 | msgid "private" 99 | msgstr "privé" 100 | 101 | #: functions.php:291 functions.php:297 102 | msgid "trash" 103 | msgstr "corbeille" 104 | 105 | #: functions.php:298 106 | msgid "Password protected page" 107 | msgstr "Page protégée par mot de passe" 108 | 109 | #: functions.php:299 110 | msgid "Adding page..." 111 | msgstr "Ajout de la page…" 112 | 113 | #: functions.php:300 114 | msgid "Adding ..." 115 | msgstr "Ajout…" 116 | 117 | #: functions.php:393 118 | msgid "Tree View" 119 | msgstr "Affichage en arborescence" 120 | 121 | #: functions.php:402 122 | msgid "List View" 123 | msgstr "Affichage en liste" 124 | 125 | #: functions.php:438 126 | msgid "Settings" 127 | msgstr "Paramètres" 128 | 129 | #: functions.php:474 130 | msgctxt "name of dashboard" 131 | msgid "%1$s Tree" 132 | msgstr "Arborescence des %1$s" 133 | 134 | #: functions.php:502 135 | msgctxt "name in menu" 136 | msgid "Tree View" 137 | msgstr "Arborescence" 138 | 139 | #: functions.php:503 140 | msgctxt "title on page with tree" 141 | msgid "%1$s Tree View" 142 | msgstr "Vue de l'arborescence des %1$s" 143 | 144 | #: functions.php:523 145 | msgid "settings" 146 | msgstr "paramètres" 147 | 148 | #: functions.php:529 149 | msgid "Select where to show a tree for pages and custom post types" 150 | msgstr "" 151 | "Sélectionnez où vous souhaitez afficher l'arborescence pour les pages et " 152 | "types de contenus personnalisés" 153 | 154 | #: functions.php:573 155 | msgid "On dashboard" 156 | msgstr "Sur la tableau de bord" 157 | 158 | #: functions.php:577 159 | msgid "In menu" 160 | msgstr "Dans le menu" 161 | 162 | #: functions.php:581 163 | msgid "On post overview screen" 164 | msgstr "Sur l'écran de gestion des articles" 165 | 166 | #: functions.php:599 167 | msgid "Save Changes" 168 | msgstr "Enregistrer" 169 | 170 | #: functions.php:818 171 | msgid "No posts found." 172 | msgstr "Aucun article trouvé." 173 | 174 | #: functions.php:830 175 | msgid "All" 176 | msgstr "Toutes les pages" 177 | 178 | #: functions.php:835 179 | msgid "Public" 180 | msgstr "Pages publiées" 181 | 182 | #: functions.php:840 183 | msgid "Trash" 184 | msgstr "Corbeille" 185 | 186 | #: functions.php:848 187 | msgid "Expand" 188 | msgstr "Dérouler" 189 | 190 | #: functions.php:849 191 | msgid "Collapse" 192 | msgstr "Refermer" 193 | 194 | #: functions.php:857 195 | msgid "Clear search" 196 | msgstr "Effacer la recherche" 197 | 198 | #: functions.php:858 199 | msgid "Search" 200 | msgstr "Rechercher" 201 | 202 | #: functions.php:859 203 | msgid "Searching..." 204 | msgstr "Recherche en cours" 205 | 206 | #: functions.php:860 207 | msgid "Nothing found." 208 | msgstr "Aucun résultat." 209 | 210 | #: functions.php:867 211 | msgid "Loading..." 212 | msgstr "Chargement en cours" 213 | 214 | #: functions.php:872 215 | msgid "Search: no pages found" 216 | msgstr "Recherche: aucune page trouvée" 217 | 218 | #: functions.php:875 219 | msgid "Loading tree" 220 | msgstr "Chargement de l'arborescence" 221 | 222 | #: functions.php:896 functions.php:932 223 | msgid "After" 224 | msgstr "Après" 225 | 226 | #: functions.php:901 functions.php:933 227 | msgid "Inside" 228 | msgstr "À l'intérieur" 229 | 230 | #: functions.php:905 231 | msgid "Can not create page inside of a page with draft status" 232 | msgstr "" 233 | "Impossible de créer une page à l'intérieur d'une page ayant le statut de " 234 | "brouillon" 235 | 236 | #: functions.php:921 237 | msgid "Add page(s)" 238 | msgstr "Ajoutez une ou plusieurs pages" 239 | 240 | #: functions.php:926 241 | msgid "Enter title here" 242 | msgstr "Entrez un titre ici" 243 | 244 | #: functions.php:931 245 | msgid "Position" 246 | msgstr "Emplacement" 247 | 248 | #: functions.php:938 249 | msgid "Status" 250 | msgstr "Statut" 251 | 252 | #: functions.php:939 253 | msgid "Draft" 254 | msgstr "Brouillon" 255 | 256 | #: functions.php:940 257 | msgid "Published" 258 | msgstr "Publié" 259 | 260 | #: functions.php:944 261 | msgid "Add" 262 | msgstr "Ajouter" 263 | 264 | #: functions.php:945 265 | msgid "or" 266 | msgstr "ou" 267 | 268 | #: functions.php:946 269 | msgid "cancel" 270 | msgstr "annuler" 271 | 272 | #: functions.php:956 273 | msgid "Last modified" 274 | msgstr "Dernière modification" 275 | 276 | #: functions.php:958 277 | msgid "by" 278 | msgstr "par" 279 | 280 | #: functions.php:961 281 | msgid "Page ID" 282 | msgstr "ID de la page" 283 | 284 | #: functions.php:997 285 | msgctxt "headline of page with tree" 286 | msgid "%1$s Tree View" 287 | msgstr "Vue de l'arborescence des %1$s" 288 | 289 | #: functions.php:1200 290 | msgid "Unknown user" 291 | msgstr "Utilisateur inconnu" 292 | 293 | #: functions.php:1205 294 | msgid "" 295 | msgstr "" 296 | 297 | #: functions.php:1225 298 | msgid "Comments" 299 | msgstr "Commentaires" 300 | 301 | #: functions.php:1232 302 | msgid "%s pending" 303 | msgstr "%s en attente" 304 | 305 | #: functions.php:1242 306 | msgctxt "comment count" 307 | msgid "0" 308 | msgstr "0" 309 | 310 | #: functions.php:1242 311 | msgctxt "comment count" 312 | msgid "1" 313 | msgstr "1" 314 | 315 | #: functions.php:1242 316 | msgctxt "comment count" 317 | msgid "%" 318 | msgstr "%" 319 | 320 | #: functions.php:1428 321 | msgid "New page" 322 | msgstr "Nouvelle page" 323 | 324 | #: functions.php:1618 325 | msgid "Thanks for using my plugin" 326 | msgstr "Merci d'utiliser mon plugin" 327 | 328 | #: functions.php:1620 329 | msgid "" 330 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 331 | "as much as I do." 332 | msgstr "" 333 | "Bonjour! Je voulais simplement vous remercier d'utiliser mon plugin. " 334 | "J'espère que vous l'appréciez autant que moi." 335 | 336 | #: functions.php:1621 337 | msgid "/Pär Thernström - plugin creator" 338 | msgstr "Pär Thernström - créateur du plugin" 339 | 340 | #: functions.php:1623 341 | msgid "I like this plugin
– how can I thank you?" 342 | msgstr "J'adore ce plugin
– comment puis-je vous remercier?" 343 | 344 | #: functions.php:1624 345 | msgid "There are serveral ways for you to show your appreciation:" 346 | msgstr "Il y a plusieurs moyens de montrer votre appréciation:" 347 | 348 | #: functions.php:1626 349 | msgid "" 350 | "Give it a nice review over at the WordPress Plugin " 351 | "Directory" 352 | msgstr "" 353 | "Écrire un avis positif sur l'annuaire des plugins " 354 | "WordPress" 355 | 356 | #: functions.php:1627 357 | msgid "Give a donation – any amount will make me happy" 358 | msgstr "Envoyer un don – quel que soit le montant" 359 | 360 | #: functions.php:1628 361 | msgid "" 362 | "Post a nice tweet or make a nice blog post about the " 363 | "plugin" 364 | msgstr "" 365 | "Poster un tweet ou rédiger un article de blog à propos " 366 | "du plugin" 367 | 368 | #: functions.php:1631 369 | msgid "Support" 370 | msgstr "Support" 371 | 372 | #: functions.php:1632 373 | msgid "Plese see the support forum for help." 374 | msgstr "" 375 | "Veuillez consulter le forum de support pour obtenir de " 376 | "l'aide." 377 | 378 | #: functions.php:1636 379 | msgid "Hide until next upgrade" 380 | msgstr "Masquer jusqu'à la prochaine mise à jour" 381 | 382 | #~ msgid "Show tree" 383 | #~ msgstr "Voir l'arborescence" 384 | 385 | #~ msgid "under the pages menu" 386 | #~ msgstr "sous les pages du menu" 387 | 388 | #~ msgid "" 389 | #~ "No pages found. Maybe you want to add a new page?" 391 | #~ msgstr "" 392 | #~ "Aucune page trouvée. Peut-être voulez-vous ajouter une page?" 394 | 395 | #~ msgid "Click to edit. Drag to move." 396 | #~ msgstr "Cliquez pour modifier, vous pouvez aussi déplacer la page" 397 | -------------------------------------------------------------------------------- /languages/cms-tree-page-view-ru_RU.po: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2012 2 | # This file is distributed under the same license as the package. 3 | msgid "" 4 | msgstr "" 5 | "Project-Id-Version: CTPV\n" 6 | "Report-Msgid-Bugs-To: http://wordpress.org/tag/cms-tree-page-view\n" 7 | "POT-Creation-Date: 2012-12-23 11:26+0400\n" 8 | "PO-Revision-Date: 2012-12-26 21:58+0100\n" 9 | "Last-Translator: Pär Thernström \n" 10 | "Language-Team: \n" 11 | "MIME-Version: 1.0\n" 12 | "Content-Type: text/plain; charset=UTF-8\n" 13 | "Content-Transfer-Encoding: 8bit\n" 14 | "X-Generator: Poedit 1.5.4\n" 15 | "X-Poedit-Basepath: E:\\Translate WP\\cms-tree-page-view\n" 16 | "X-Poedit-KeywordsList: _e;__;_x\n" 17 | "X-Poedit-SourceCharset: UTF-8\n" 18 | "X-Poedit-SearchPath-0: E:\\Translate WP\\cms-tree-page-view\n" 19 | 20 | #: E:\Translate WP\cms-tree-page-view/functions.php:272 21 | msgid "Enter title of new page" 22 | msgstr "Введите название новой страницы" 23 | 24 | #: E:\Translate WP\cms-tree-page-view/functions.php:273 25 | msgid "child pages" 26 | msgstr "дочерние страницы" 27 | 28 | #: E:\Translate WP\cms-tree-page-view/functions.php:274 29 | #: WP\cms-tree-page-view/functions.php:887 30 | msgid "Edit page" 31 | msgstr "Редактировать страницу" 32 | 33 | #: E:\Translate WP\cms-tree-page-view/functions.php:275 34 | #: WP\cms-tree-page-view/functions.php:888 35 | msgid "View page" 36 | msgstr "Просмотр страницы" 37 | 38 | #: E:\Translate WP\cms-tree-page-view/functions.php:276 39 | #: WP\cms-tree-page-view/functions.php:887 40 | msgid "Edit" 41 | msgstr "Изменить" 42 | 43 | #: E:\Translate WP\cms-tree-page-view/functions.php:277 44 | #: WP\cms-tree-page-view/functions.php:888 45 | msgid "View" 46 | msgstr "Показать" 47 | 48 | #: E:\Translate WP\cms-tree-page-view/functions.php:278 49 | msgid "Add page" 50 | msgstr "Добавить страницу" 51 | 52 | #: E:\Translate WP\cms-tree-page-view/functions.php:279 53 | #: WP\cms-tree-page-view/functions.php:896 54 | msgid "Add new page after" 55 | msgstr "Добавить новую страницу после" 56 | 57 | #: E:\Translate WP\cms-tree-page-view/functions.php:280 58 | msgid "after" 59 | msgstr "после" 60 | 61 | #: E:\Translate WP\cms-tree-page-view/functions.php:281 62 | msgid "inside" 63 | msgstr "внутри" 64 | 65 | #: E:\Translate WP\cms-tree-page-view/functions.php:282 66 | msgid "Sorry, can't create a sub page to a page with status \"draft\"." 67 | msgstr "" 68 | "К сожалению, невозможно создать подстраницу для страницы со статусом " 69 | "\"черновик \"." 70 | 71 | #: E:\Translate WP\cms-tree-page-view/functions.php:283 72 | msgid "Sorry, can't create a sub page to a page with status \"trash\"." 73 | msgstr "" 74 | "К сожалению, невозможно создать подстраницу для страницы со статусом \"в " 75 | "корзине \"." 76 | 77 | #: E:\Translate WP\cms-tree-page-view/functions.php:284 78 | msgid "Sorry, can't create a page after a page with status \"trash\"." 79 | msgstr "" 80 | "К сожалению, невозможно создать страницу после страницы со статусом \"в " 81 | "корзине \"." 82 | 83 | #: E:\Translate WP\cms-tree-page-view/functions.php:285 84 | #: WP\cms-tree-page-view/functions.php:901 85 | msgid "Add new page inside" 86 | msgstr "Добавить новую страницу внутри" 87 | 88 | #: E:\Translate WP\cms-tree-page-view/functions.php:286 89 | #: WP\cms-tree-page-view/functions.php:292 90 | msgid "draft" 91 | msgstr "черновик" 92 | 93 | #: E:\Translate WP\cms-tree-page-view/functions.php:287 94 | #: WP\cms-tree-page-view/functions.php:293 95 | msgid "future" 96 | msgstr "будущая" 97 | 98 | #: E:\Translate WP\cms-tree-page-view/functions.php:288 99 | #: WP\cms-tree-page-view/functions.php:294 100 | msgid "protected" 101 | msgstr "защищенная" 102 | 103 | #: E:\Translate WP\cms-tree-page-view/functions.php:289 104 | #: WP\cms-tree-page-view/functions.php:295 105 | #: WP\cms-tree-page-view/functions.php:1235 106 | msgid "pending" 107 | msgstr "в ожидании" 108 | 109 | #: E:\Translate WP\cms-tree-page-view/functions.php:290 110 | #: WP\cms-tree-page-view/functions.php:296 111 | msgid "private" 112 | msgstr "личная" 113 | 114 | #: E:\Translate WP\cms-tree-page-view/functions.php:291 115 | #: WP\cms-tree-page-view/functions.php:297 116 | msgid "trash" 117 | msgstr "в корзине" 118 | 119 | #: E:\Translate WP\cms-tree-page-view/functions.php:298 120 | msgid "Password protected page" 121 | msgstr "Страница защищенная паролем" 122 | 123 | #: E:\Translate WP\cms-tree-page-view/functions.php:299 124 | msgid "Adding page..." 125 | msgstr "Добавление пароля..." 126 | 127 | #: E:\Translate WP\cms-tree-page-view/functions.php:300 128 | msgid "Adding ..." 129 | msgstr "Добавление ..." 130 | 131 | #: E:\Translate WP\cms-tree-page-view/functions.php:393 132 | #: WP\cms-tree-page-view/functions.php:502 133 | msgid "Tree View" 134 | msgstr "В виде дерева" 135 | 136 | #: E:\Translate WP\cms-tree-page-view/functions.php:402 137 | msgid "List View" 138 | msgstr "Просмотр списка" 139 | 140 | #: E:\Translate WP\cms-tree-page-view/functions.php:438 141 | msgid "Settings" 142 | msgstr "Настройки" 143 | 144 | #: E:\Translate WP\cms-tree-page-view/functions.php:523 145 | msgid "settings" 146 | msgstr "настройки" 147 | 148 | #: E:\Translate WP\cms-tree-page-view/functions.php:529 149 | msgid "Select where to show a tree for pages and custom post types" 150 | msgstr "Укажите где показать дерево страниц и пользовательских типов записей" 151 | 152 | #: E:\Translate WP\cms-tree-page-view/functions.php:573 153 | msgid "On dashboard" 154 | msgstr "На консоли" 155 | 156 | #: E:\Translate WP\cms-tree-page-view/functions.php:577 157 | msgid "In menu" 158 | msgstr "В меню" 159 | 160 | #: E:\Translate WP\cms-tree-page-view/functions.php:581 161 | msgid "On post overview screen" 162 | msgstr "На обзорном экране сообщений" 163 | 164 | #: E:\Translate WP\cms-tree-page-view/functions.php:599 165 | msgid "Save Changes" 166 | msgstr "Сохранить изменения" 167 | 168 | #: E:\Translate WP\cms-tree-page-view/functions.php:818 169 | msgid "No posts found." 170 | msgstr "Записи не нейдены." 171 | 172 | #: E:\Translate WP\cms-tree-page-view/functions.php:830 173 | msgid "All" 174 | msgstr "Все" 175 | 176 | #: E:\Translate WP\cms-tree-page-view/functions.php:835 177 | msgid "Public" 178 | msgstr "Опубликованные" 179 | 180 | #: E:\Translate WP\cms-tree-page-view/functions.php:840 181 | msgid "Trash" 182 | msgstr "Корзина" 183 | 184 | #: E:\Translate WP\cms-tree-page-view/functions.php:848 185 | msgid "Expand" 186 | msgstr "Раскрыть" 187 | 188 | #: E:\Translate WP\cms-tree-page-view/functions.php:849 189 | msgid "Collapse" 190 | msgstr "Свернуть" 191 | 192 | #: E:\Translate WP\cms-tree-page-view/functions.php:857 193 | msgid "Clear search" 194 | msgstr "Очистить поиск" 195 | 196 | #: E:\Translate WP\cms-tree-page-view/functions.php:858 197 | msgid "Search" 198 | msgstr "Поиск" 199 | 200 | #: E:\Translate WP\cms-tree-page-view/functions.php:859 201 | msgid "Searching..." 202 | msgstr "Поиск..." 203 | 204 | #: E:\Translate WP\cms-tree-page-view/functions.php:860 205 | msgid "Nothing found." 206 | msgstr "Ничего не найдено." 207 | 208 | #: E:\Translate WP\cms-tree-page-view/functions.php:867 209 | msgid "Loading..." 210 | msgstr "Загрузка..." 211 | 212 | #: E:\Translate WP\cms-tree-page-view/functions.php:872 213 | msgid "Search: no pages found" 214 | msgstr "Поиск: страницы не найдены" 215 | 216 | #: E:\Translate WP\cms-tree-page-view/functions.php:875 217 | msgid "Loading tree" 218 | msgstr "Загрузка дерева" 219 | 220 | #: E:\Translate WP\cms-tree-page-view/functions.php:896 221 | #: WP\cms-tree-page-view/functions.php:932 222 | msgid "After" 223 | msgstr "После" 224 | 225 | #: E:\Translate WP\cms-tree-page-view/functions.php:901 226 | #: WP\cms-tree-page-view/functions.php:933 227 | msgid "Inside" 228 | msgstr "Внутри" 229 | 230 | #: E:\Translate WP\cms-tree-page-view/functions.php:905 231 | msgid "Can not create page inside of a page with draft status" 232 | msgstr "Невозможно создать страницу внутри страницы со статусом /\"черновик/\"" 233 | 234 | #: E:\Translate WP\cms-tree-page-view/functions.php:921 235 | msgid "Add page(s)" 236 | msgstr "Добавить страницу(ы)" 237 | 238 | #: E:\Translate WP\cms-tree-page-view/functions.php:926 239 | msgid "Enter title here" 240 | msgstr "Введите название здесь" 241 | 242 | #: E:\Translate WP\cms-tree-page-view/functions.php:931 243 | msgid "Position" 244 | msgstr "Положение" 245 | 246 | #: E:\Translate WP\cms-tree-page-view/functions.php:938 247 | msgid "Status" 248 | msgstr "Состояние" 249 | 250 | #: E:\Translate WP\cms-tree-page-view/functions.php:939 251 | msgid "Draft" 252 | msgstr "Черновик" 253 | 254 | #: E:\Translate WP\cms-tree-page-view/functions.php:940 255 | msgid "Published" 256 | msgstr "Опубликовано" 257 | 258 | #: E:\Translate WP\cms-tree-page-view/functions.php:944 259 | msgid "Add" 260 | msgstr "Добавить" 261 | 262 | #: E:\Translate WP\cms-tree-page-view/functions.php:945 263 | msgid "or" 264 | msgstr "или" 265 | 266 | #: E:\Translate WP\cms-tree-page-view/functions.php:946 267 | msgid "cancel" 268 | msgstr "отмена" 269 | 270 | #: E:\Translate WP\cms-tree-page-view/functions.php:956 271 | msgid "Last modified" 272 | msgstr "Последнее изменение" 273 | 274 | #: E:\Translate WP\cms-tree-page-view/functions.php:958 275 | msgid "by" 276 | msgstr "-" 277 | 278 | #: E:\Translate WP\cms-tree-page-view/functions.php:961 279 | msgid "Page ID" 280 | msgstr "ID страницы" 281 | 282 | #: E:\Translate WP\cms-tree-page-view/functions.php:1200 283 | msgid "Unknown user" 284 | msgstr "Неизвестный пользователь" 285 | 286 | #: E:\Translate WP\cms-tree-page-view/functions.php:1205 287 | msgid "" 288 | msgstr "<Страница без названия>" 289 | 290 | #: E:\Translate WP\cms-tree-page-view/functions.php:1225 291 | msgid "Comments" 292 | msgstr "Комментарии" 293 | 294 | #: E:\Translate WP\cms-tree-page-view/functions.php:1232 295 | #, php-format 296 | msgid "%s pending" 297 | msgstr "%s в ожидании" 298 | 299 | #: E:\Translate WP\cms-tree-page-view/functions.php:1242 300 | msgid "0" 301 | msgstr "0" 302 | 303 | #: E:\Translate WP\cms-tree-page-view/functions.php:1242 304 | msgid "1" 305 | msgstr "1" 306 | 307 | #: E:\Translate WP\cms-tree-page-view/functions.php:1242 308 | msgid "%" 309 | msgstr "%" 310 | 311 | #: E:\Translate WP\cms-tree-page-view/functions.php:1428 312 | msgid "New page" 313 | msgstr "Новая страница" 314 | 315 | #: E:\Translate WP\cms-tree-page-view/functions.php:1618 316 | msgid "Thanks for using my plugin" 317 | msgstr "Спасибо за использование моего плагина" 318 | 319 | #: E:\Translate WP\cms-tree-page-view/functions.php:1620 320 | msgid "" 321 | "Hi there! I just wanna says thanks for using my plugin. I hope you like it " 322 | "as much as I do." 323 | msgstr "" 324 | "Привет! Я просто хочу, сказать спасибо за использование моего плагина. Я " 325 | "надеюсь, что Вам он нравится так же, как и мне." 326 | 327 | #: E:\Translate WP\cms-tree-page-view/functions.php:1621 328 | msgid "/Pär Thernström - plugin creator" 329 | msgstr "/Pär Thernström - создатель плагина" 330 | 331 | #: E:\Translate WP\cms-tree-page-view/functions.php:1623 332 | msgid "I like this plugin
– how can I thank you?" 333 | msgstr "Мне нравится этот плагин
- как я могу отблагодарить Вас?" 334 | 335 | #: E:\Translate WP\cms-tree-page-view/functions.php:1624 336 | msgid "There are serveral ways for you to show your appreciation:" 337 | msgstr "Есть несколько способов, чтобы показать Вашу признательность:" 338 | 339 | #: E:\Translate WP\cms-tree-page-view/functions.php:1626 340 | #, php-format 341 | msgid "" 342 | "Give it a nice review over at the WordPress Plugin " 343 | "Directory" 344 | msgstr "Дать хороший отзыв в Каталоге Плагинов WordPress" 345 | 346 | #: E:\Translate WP\cms-tree-page-view/functions.php:1627 347 | #, php-format 348 | msgid "Give a donation – any amount will make me happy" 349 | msgstr "" 350 | "Сделать пожертвование – любая сумма сделает меня " 351 | "счастливым" 352 | 353 | #: E:\Translate WP\cms-tree-page-view/functions.php:1628 354 | #, php-format 355 | msgid "" 356 | "Post a nice tweet or make a nice blog post about the " 357 | "plugin" 358 | msgstr "" 359 | "Написать хороший твит ли сделать хороший блог о плагине" 360 | 361 | #: E:\Translate WP\cms-tree-page-view/functions.php:1631 362 | msgid "Support" 363 | msgstr "Поддержка" 364 | 365 | #: E:\Translate WP\cms-tree-page-view/functions.php:1632 366 | #, php-format 367 | msgid "Plese see the support forum for help." 368 | msgstr "Читайте форум поддержки для помощи." 369 | 370 | #: E:\Translate WP\cms-tree-page-view/functions.php:1636 371 | msgid "Hide until next upgrade" 372 | msgstr "Скрыть до следующего обновления" 373 | --------------------------------------------------------------------------------