diff --git a/code/controllers/ModelAsController.php b/code/controllers/ModelAsController.php
index 84dfc60e..a9b280ac 100644
--- a/code/controllers/ModelAsController.php
+++ b/code/controllers/ModelAsController.php
@@ -129,7 +129,7 @@ class ModelAsController extends Controller implements NestedController {
}
/**
- * @deprecated 3.2 Use OldPageRedirector::find_old_page instead
+ * @deprecated 4.0 Use OldPageRedirector::find_old_page instead
*
* @param string $URLSegment A subset of the url. i.e in /home/contact/ home and contact are URLSegment.
* @param int $parent The ID of the parent of the page the URLSegment belongs to.
@@ -137,7 +137,7 @@ class ModelAsController extends Controller implements NestedController {
* @return SiteTree
*/
static public function find_old_page($URLSegment, $parent = null, $ignoreNestedURLs = false) {
- Deprecation::notice('3.2', 'Use OldPageRedirector::find_old_page instead');
+ Deprecation::notice('4.0', 'Use OldPageRedirector::find_old_page instead');
if ($parent) {
$parent = SiteTree::get()->byId($parent);
}
diff --git a/code/controllers/RootURLController.php b/code/controllers/RootURLController.php
index 16026033..f4961756 100644
--- a/code/controllers/RootURLController.php
+++ b/code/controllers/RootURLController.php
@@ -63,22 +63,22 @@ class RootURLController extends Controller {
* Set the URL Segment used for your homepage when it is created by dev/build.
* This allows you to use home page URLs other than the default "home".
*
- * @deprecated 3.2 Use the "RootURLController.default_homepage_link" config setting instead
+ * @deprecated 4.0 Use the "RootURLController.default_homepage_link" config setting instead
* @param string $urlsegment the URL segment for your home page
*/
static public function set_default_homepage_link($urlsegment = "home") {
- Deprecation::notice('3.2', 'Use the "RootURLController.default_homepage_link" config setting instead');
+ Deprecation::notice('4.0', 'Use the "RootURLController.default_homepage_link" config setting instead');
Config::inst()->update('RootURLController', 'default_homepage_link', $urlsegment);
}
/**
* Gets the link that denotes the homepage if there is not one explicitly defined for this HTTP_HOST value.
*
- * @deprecated 3.2 Use the "RootURLController.default_homepage_link" config setting instead
+ * @deprecated 4.0 Use the "RootURLController.default_homepage_link" config setting instead
* @return string
*/
static public function get_default_homepage_link() {
- Deprecation::notice('3.2', 'Use the "RootURLController.default_homepage_link" config setting instead');
+ Deprecation::notice('4.0', 'Use the "RootURLController.default_homepage_link" config setting instead');
return Config::inst()->get('RootURLController', 'default_homepage_link');
}
diff --git a/code/model/ErrorPage.php b/code/model/ErrorPage.php
index d22f80a0..2ee49249 100644
--- a/code/model/ErrorPage.php
+++ b/code/model/ErrorPage.php
@@ -300,20 +300,20 @@ class ErrorPage extends Page {
* Set the path where static error files are saved through {@link publish()}.
* Defaults to /assets.
*
- * @deprecated 3.2 Use "ErrorPage.static_file_path" instead
+ * @deprecated 4.0 Use "ErrorPage.static_file_path" instead
* @param string $path
*/
static public function set_static_filepath($path) {
- Deprecation::notice('3.2', 'Use "ErrorPage.static_file_path" instead');
+ Deprecation::notice('4.0', 'Use "ErrorPage.static_file_path" instead');
self::config()->static_filepath = $path;
}
/**
- * @deprecated 3.2 Use "ErrorPage.static_file_path" instead
+ * @deprecated 4.0 Use "ErrorPage.static_file_path" instead
* @return string
*/
static public function get_static_filepath() {
- Deprecation::notice('3.2', 'Use "ErrorPage.static_file_path" instead');
+ Deprecation::notice('4.0', 'Use "ErrorPage.static_file_path" instead');
return self::config()->static_filepath;
}
}
diff --git a/code/model/SiteTree.php b/code/model/SiteTree.php
index 712b3a39..e79219fb 100755
--- a/code/model/SiteTree.php
+++ b/code/model/SiteTree.php
@@ -241,69 +241,69 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
* by deleting all children when the their parent is deleted (TRUE),
* or rather preserve this data even if its not reachable through any navigation path (FALSE).
*
- * @deprecated 3.2 Use the "SiteTree.enforce_strict_hierarchy" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.enforce_strict_hierarchy" config setting instead
* @param boolean
*/
static public function set_enforce_strict_hierarchy($to) {
- Deprecation::notice('3.2', 'Use the "SiteTree.enforce_strict_hierarchy" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.enforce_strict_hierarchy" config setting instead');
Config::inst()->update('SiteTree', 'enforce_strict_hierarchy', $to);
}
/**
- * @deprecated 3.2 Use the "SiteTree.enforce_strict_hierarchy" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.enforce_strict_hierarchy" config setting instead
* @return boolean
*/
static public function get_enforce_strict_hierarchy() {
- Deprecation::notice('3.2', 'Use the "SiteTree.enforce_strict_hierarchy" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.enforce_strict_hierarchy" config setting instead');
return Config::inst()->get('SiteTree', 'enforce_strict_hierarchy');
}
/**
* Returns TRUE if nested URLs (e.g. page/sub-page/) are currently enabled on this site.
*
- * @deprecated 3.2 Use the "SiteTree.nested_urls" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.nested_urls" config setting instead
* @return bool
*/
static public function nested_urls() {
- Deprecation::notice('3.2', 'Use the "SiteTree.nested_urls" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.nested_urls" config setting instead');
return Config::inst()->get('SiteTree', 'nested_urls');
}
/**
- * @deprecated 3.2 Use the "SiteTree.nested_urls" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.nested_urls" config setting instead
*/
static public function enable_nested_urls() {
- Deprecation::notice('3.2', 'Use the "SiteTree.nested_urls" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.nested_urls" config setting instead');
Config::inst()->update('SiteTree', 'nested_urls', true);
}
/**
- * @deprecated 3.2 Use the "SiteTree.nested_urls" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.nested_urls" config setting instead
*/
static public function disable_nested_urls() {
- Deprecation::notice('3.2', 'Use the "SiteTree.nested_urls" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.nested_urls" config setting instead');
Config::inst()->update('SiteTree', 'nested_urls', false);
}
/**
* Set the (re)creation of default pages on /dev/build
*
- * @deprecated 3.2 Use the "SiteTree.create_default_pages" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.create_default_pages" config setting instead
* @param bool $option
*/
static public function set_create_default_pages($option = true) {
- Deprecation::notice('3.2', 'Use the "SiteTree.create_default_pages" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.create_default_pages" config setting instead');
Config::inst()->update('SiteTree', 'create_default_pages', $option);
}
/**
* Return true if default pages should be created on /dev/build.
*
- * @deprecated 3.2 Use the "SiteTree.create_default_pages" config setting instead
+ * @deprecated 4.0 Use the "SiteTree.create_default_pages" config setting instead
* @return bool
*/
static public function get_create_default_pages() {
- Deprecation::notice('3.2', 'Use the "SiteTree.create_default_pages" config setting instead');
+ Deprecation::notice('4.0', 'Use the "SiteTree.create_default_pages" config setting instead');
return Config::inst()->get('SiteTree', 'create_default_pages');
}
@@ -1478,7 +1478,7 @@ class SiteTree extends DataObject implements PermissionProvider,i18nEntityProvid
if(!SiteTree::get_by_link(Config::inst()->get('RootURLController', 'default_homepage_link'))) {
$homepage = new Page();
$homepage->Title = _t('SiteTree.DEFAULTHOMETITLE', 'Home');
- $homepage->Content = _t('SiteTree.DEFAULTHOMECONTENT', '
');
$homepage->URLSegment = Config::inst()->get('RootURLController', 'default_homepage_link');
$homepage->Sort = 1;
$homepage->write();
diff --git a/code/model/SiteTreeFileExtension.php b/code/model/SiteTreeFileExtension.php
index 37cccd6c..12b6c9c7 100644
--- a/code/model/SiteTreeFileExtension.php
+++ b/code/model/SiteTreeFileExtension.php
@@ -56,7 +56,7 @@ class SiteTreeFileExtension extends DataExtension {
*/
public function BackLinkTracking($filter = null, $sort = null, $join = null, $limit = null) {
if($filter !== null || $sort !== null || $join !== null || $limit !== null) {
- Deprecation::notice('3.2', 'The $filter, $sort, $join and $limit parameters for
+ Deprecation::notice('4.0', 'The $filter, $sort, $join and $limit parameters for
SiteTreeFileExtension::BackLinkTracking() have been deprecated.
Please manipluate the returned list directly.', Deprecation::SCOPE_GLOBAL);
}
@@ -67,7 +67,7 @@ class SiteTreeFileExtension extends DataExtension {
}
if($filter || $sort || $join || $limit) {
- Deprecation::notice('3.2', 'The $filter, $sort, $join and $limit parameters for
+ Deprecation::notice('4.0', 'The $filter, $sort, $join and $limit parameters for
SiteTreeFileExtension::BackLinkTracking() have been deprecated.
Please manipluate the returned list directly.', Deprecation::SCOPE_GLOBAL);
}
diff --git a/composer.json b/composer.json
index 166a3ef0..3ba23a93 100644
--- a/composer.json
+++ b/composer.json
@@ -16,11 +16,11 @@
}
],
"require": {
- "php": ">=5.3.2",
+ "php": ">=5.3.3",
"composer/installers": "*",
- "silverstripe/framework": "3.3.x-dev",
- "silverstripe/reports": "3.3.x-dev",
- "silverstripe/siteconfig": "3.3.x-dev"
+ "silverstripe/framework": "~3.3",
+ "silverstripe/reports": "~3.3",
+ "silverstripe/siteconfig": "~3.3"
},
"extra": {
"branch-alias": {
diff --git a/javascript/lang/ar.js b/javascript/lang/ar.js
index a4a8814e..b13687d2 100644
--- a/javascript/lang/ar.js
+++ b/javascript/lang/ar.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "هذه الصفحة فقط",
"Tree.ThisPageAndSubpages": "هذه الصفحة وصفحات فرعية",
"Tree.ShowAsList": "أعرض التوابع في شكل قائمة",
- "CMSMain.ConfirmRestoreFromLive": "هل ترغب حقًا في نسخ المحتوى المنشور على مسودة الموقع؟",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "هل تريد حقاً الرجوع إلى النسخة #%s من هذه الصفحة؟",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "تحرير",
"URLSEGMENT.OK": "موافق",
- "URLSEGMENT.Cancel": "إلغاء"
+ "URLSEGMENT.Cancel": "إلغاء",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/cs.js b/javascript/lang/cs.js
index fe4d1165..b5b5af4b 100644
--- a/javascript/lang/cs.js
+++ b/javascript/lang/cs.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Pouze tuto stránku",
"Tree.ThisPageAndSubpages": "Tuto stránku a podstránky",
"Tree.ShowAsList": "Zobrazit potomky jako seznam",
- "CMSMain.ConfirmRestoreFromLive": "Skutečně chcete zkopírovat zveřejněn obsah do konceptu?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Skutečně chcete vrátit zpět na verzi #%s této stránky?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editovat",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Storno"
+ "URLSEGMENT.Cancel": "Storno",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/de.js b/javascript/lang/de.js
index 65de2ccc..2c6b84de 100644
--- a/javascript/lang/de.js
+++ b/javascript/lang/de.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Nur diese Seite",
"Tree.ThisPageAndSubpages": "Diese Seite und Unterseiten",
"Tree.ShowAsList": "Kinder als LIste zeigen",
- "CMSMain.ConfirmRestoreFromLive": "Wollen Sie wirklich den veröffentlichten Inhalt auf die Entwurfsseite kopieren?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Wollen Sie wirklich Version #%s dieser Seite wiederherstellen?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Bearbeiten",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Abbrechen"
+ "URLSEGMENT.Cancel": "Abbrechen",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/eo.js b/javascript/lang/eo.js
index bbaf85a8..07d561af 100644
--- a/javascript/lang/eo.js
+++ b/javascript/lang/eo.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Nur ĉi tiu paĝo",
"Tree.ThisPageAndSubpages": "Ĉi tiu paĝo kaj subpaĝoj",
"Tree.ShowAsList": "Vidigi idojn kiel liston",
- "CMSMain.ConfirmRestoreFromLive": "Ĉu vi vere volas kopii la publikigitan enhavon al la malneta retejo?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Cu vi vere volas malfare restaŭri al versio #%s de ĉi tiu paĝo?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Redakti",
"URLSEGMENT.OK": "Akcepti",
- "URLSEGMENT.Cancel": "Rezigni"
+ "URLSEGMENT.Cancel": "Rezigni",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/es.js b/javascript/lang/es.js
index a48120f4..797f4dea 100644
--- a/javascript/lang/es.js
+++ b/javascript/lang/es.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Sólo en esta página",
"Tree.ThisPageAndSubpages": "Esta página y subpáginas",
"Tree.ShowAsList": "Mostrar hijos como lista",
- "CMSMain.ConfirmRestoreFromLive": "¿Realmente quieres copiar el contenido publicado al borrador del sitio?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "¿Realmente quieres volver a la versión #%s de esta página?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editar",
"URLSEGMENT.OK": "Ok",
- "URLSEGMENT.Cancel": "Cancelar"
+ "URLSEGMENT.Cancel": "Cancelar",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/fi.js b/javascript/lang/fi.js
index ed4021db..8568a693 100644
--- a/javascript/lang/fi.js
+++ b/javascript/lang/fi.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Vain tämä sivu",
"Tree.ThisPageAndSubpages": "Tämä sivu ja alasivut",
"Tree.ShowAsList": "Näytä alasivut listana",
- "CMSMain.ConfirmRestoreFromLive": "Haluatko varmasti kopioida julkaistua sisältöä luonnossivustolle?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Haluatko varmasti palauttaa #%s version tästä sivusta?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Muokkaa",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Peruuta"
+ "URLSEGMENT.Cancel": "Peruuta",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/fr.js b/javascript/lang/fr.js
index e860dfdd..be51f2b9 100644
--- a/javascript/lang/fr.js
+++ b/javascript/lang/fr.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Seulement cette page",
"Tree.ThisPageAndSubpages": "Cette page et ses sous-pages",
"Tree.ShowAsList": "Montrer les enfants en liste",
- "CMSMain.ConfirmRestoreFromLive": "Voulez-vous vraiment copier le contenu du site brouillon sur le site publié ?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Voulez-vous vraiment retourner à la version #%s de cette page ?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Éditer",
"URLSEGMENT.OK": "Ok",
- "URLSEGMENT.Cancel": "Annuler"
+ "URLSEGMENT.Cancel": "Annuler",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/hu.js b/javascript/lang/hu.js
new file mode 100644
index 00000000..36ed18f0
--- /dev/null
+++ b/javascript/lang/hu.js
@@ -0,0 +1,51 @@
+// This file was generated by GenerateJavaScriptI18nTask from javascript/lang/src/hu.js.
+// See https://github.com/silverstripe/silverstripe-buildtools for details
+if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
+ if(typeof(console) != 'undefined') console.error('Class ss.i18n not defined');
+} else {
+ ss.i18n.addDictionary('hu', {
+ "CMSMAIN.WARNINGSAVEPAGESBEFOREADDING": "Aloldalt csak a szülő-oldal mentését követően hozhat létre",
+ "CMSMAIN.CANTADDCHILDREN": "A kiválasztott elemhez nem hozhat létre gyerek elemet",
+ "CMSMAIN.ERRORADDINGPAGE": "Oldal létrehozásakor hiba lépett fel",
+ "CMSMAIN.FILTEREDTREE": "Módosított oldalak megjelenítése",
+ "CMSMAIN.ERRORFILTERPAGES": "A \"fa\" nézet nem alkalmas a %s módosított oldalak megjelenítésére",
+ "CMSMAIN.ERRORUNFILTER": "Teljes \"fa\" szerkezet",
+ "CMSMAIN.PUBLISHINGPAGES": "Publikálás folyamatban...",
+ "CMSMAIN.SELECTONEPAGE": "Válasszon legalább 1 oldalt!",
+ "CMSMAIN.ERRORPUBLISHING": "Publikálás során hiba történt",
+ "CMSMAIN.REALLYDELETEPAGES": "Törli a %s -vel jelölt oldalakat?",
+ "CMSMAIN.DELETINGPAGES": "Oldalak törlése folyamatban...",
+ "CMSMAIN.ERRORDELETINGPAGES": "Oldal törlésekor hiba lépett fel",
+ "CMSMAIN.PUBLISHING": "Publikálás folyamatban...",
+ "CMSMAIN.RESTORING": "Helyreállítás folyamatban...",
+ "CMSMAIN.ERRORREVERTING": "Éles tartalomra váltáskor hiba történt",
+ "CMSMAIN.SAVING": "mentés folyamatban...",
+ "CMSMAIN.SELECTMOREPAGES": "%s oldal kiválasztva.\n\nVégrehajtsam a műveletet?",
+ "CMSMAIN.ALERTCLASSNAME": "Az oldaltípust a mentést követően lesz beállítva",
+ "CMSMAIN.URLSEGMENTVALIDATION": "Az URL csak betüket, számokat illetve kötőjelet (\"-\") tartalmazhat",
+ "AssetAdmin.BATCHACTIONSDELETECONFIRM": "Törli a(z) %s mappát(mappákat)?",
+ "AssetTableField.REALLYDELETE": "Törli a kijelölt fájlokat?",
+ "AssetTableField.MOVING": "%s fájl(ok) áthelyezése",
+ "CMSMAIN.AddSearchCriteria": "Feltétel hozzáadása",
+ "WidgetAreaEditor.TOOMANY": "A kiválasztott területen nem hozhat létre újabb widget-et.",
+ "AssetAdmin.ConfirmDelete": "Törli a mappát a tartalmával együtt?",
+ "Folder.Name": "Mappa neve",
+ "Tree.AddSubPage": "Új oldal létrehozása ebben a mappában",
+ "Tree.Duplicate": "Duplikál",
+ "Tree.EditPage": "Szerkeszt",
+ "Tree.ThisPageOnly": "Csak ez az oldal",
+ "Tree.ThisPageAndSubpages": "Csak ez az oldal és az alatta levő oldalak",
+ "Tree.ShowAsList": "Gyerekoldalak lista nézetben",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
+ "CMSMain.RollbackToVersion": "Visszaállítja az oldal #%s verzióját?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
+ "URLSEGMENT.Edit": "Szerkeszt",
+ "URLSEGMENT.OK": "OK",
+ "URLSEGMENT.Cancel": "Mégsem",
+ "URLSEGMENT.UpdateURL": "Update URL"
+});
+}
\ No newline at end of file
diff --git a/javascript/lang/id.js b/javascript/lang/id.js
index 08841329..3fdd5589 100644
--- a/javascript/lang/id.js
+++ b/javascript/lang/id.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Hanya laman ini",
"Tree.ThisPageAndSubpages": "Laman dan sublaman ini",
"Tree.ShowAsList": "Tampilkan turunan sebagai daftar",
- "CMSMain.ConfirmRestoreFromLive": "Apakah Anda ingin menyalin konten yang sudah terbit ke draf?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Apakah Anda ingin kembali ke versi #%s dari laman ini?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Edit",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Batal"
+ "URLSEGMENT.Cancel": "Batal",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/is.js b/javascript/lang/is.js
index ff772937..1ed7f28e 100644
--- a/javascript/lang/is.js
+++ b/javascript/lang/is.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Aðeins þessi síða",
"Tree.ThisPageAndSubpages": "Þessi síða og undirsíður",
"Tree.ShowAsList": "Show children as list",
- "CMSMain.ConfirmRestoreFromLive": "Ertu viss um að þú viljir afrita birt efni yfir á drög?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Do you really want to roll back to version #%s of this page?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Breyta",
"URLSEGMENT.OK": "Allt í lagi",
- "URLSEGMENT.Cancel": "Hætta við"
+ "URLSEGMENT.Cancel": "Hætta við",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/it.js b/javascript/lang/it.js
index 06b604a4..149804b7 100644
--- a/javascript/lang/it.js
+++ b/javascript/lang/it.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Solo questa pagina",
"Tree.ThisPageAndSubpages": "Questa pagina e le sottopagine",
"Tree.ShowAsList": "Mostra figli come lista",
- "CMSMain.ConfirmRestoreFromLive": "Vuoi veramente copiare il contenuto pubblicato nel sito bozza?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Vuoi veramente tornare alla versione #%s di questa pagina?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Modifica",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Annulla"
+ "URLSEGMENT.Cancel": "Annulla",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/ja.js b/javascript/lang/ja.js
index 32fbac23..a460952e 100644
--- a/javascript/lang/ja.js
+++ b/javascript/lang/ja.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "このページのみ",
"Tree.ThisPageAndSubpages": "このページとサブページ",
"Tree.ShowAsList": "子どもをリストで表示する",
- "CMSMain.ConfirmRestoreFromLive": "公開されているコンテンツを下書きサイトへ本当にコピーしますか?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "このページのバージョン#%sへ本当にロールバックしますか?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "編集",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "キャンセル"
+ "URLSEGMENT.Cancel": "キャンセル",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/ko.js b/javascript/lang/ko.js
index 709d93c7..851c9768 100644
--- a/javascript/lang/ko.js
+++ b/javascript/lang/ko.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "이 페이지만",
"Tree.ThisPageAndSubpages": "이 페이지와 하위 페이지",
"Tree.ShowAsList": "하위 목록으로 표시",
- "CMSMain.ConfirmRestoreFromLive": "공개된 내용을 초안 사이트에 복사하시겠습니까?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "이 페이지의 #%s 버젼으로 롤백하시겠습니까?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "편집",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "취소"
+ "URLSEGMENT.Cancel": "취소",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/lt.js b/javascript/lang/lt.js
index 90b3f463..123b0bbe 100644
--- a/javascript/lang/lt.js
+++ b/javascript/lang/lt.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Tik šį puslapį",
"Tree.ThisPageAndSubpages": "Šį puslapį ir visus po juo",
"Tree.ShowAsList": "Rodyti žemesnius pusl. kaip sąrašą",
- "CMSMain.ConfirmRestoreFromLive": "Ar tikrai norite kopijuoti publikuotą turinį į juodraštinę svetainę?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Ar tikrai norite atstatyti šį puslapį į #%s versiją?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Redaguoti",
"URLSEGMENT.OK": "Gerai",
- "URLSEGMENT.Cancel": "Atšaukti"
+ "URLSEGMENT.Cancel": "Atšaukti",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/mi.js b/javascript/lang/mi.js
index ae9b8d03..8fdc593b 100644
--- a/javascript/lang/mi.js
+++ b/javascript/lang/mi.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Tēnei whārangi anake",
"Tree.ThisPageAndSubpages": "Tēnei whārangi me ngā whārangi iti",
"Tree.ShowAsList": "Whakaatu tamariki hei rārangi",
- "CMSMain.ConfirmRestoreFromLive": "Kei te tino hiahia tārua i te ihirangi kua whakaputaina ki te pae hukihuki?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Kei te tino hiahia hoki ki te tauira #%s o tēnei whārangi?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Whakatika",
"URLSEGMENT.OK": "ĀE",
- "URLSEGMENT.Cancel": "Whakakore"
+ "URLSEGMENT.Cancel": "Whakakore",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/nb.js b/javascript/lang/nb.js
index b375f40e..3b5d9287 100644
--- a/javascript/lang/nb.js
+++ b/javascript/lang/nb.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Bare denne siden",
"Tree.ThisPageAndSubpages": "Denne siden og undersider",
"Tree.ShowAsList": "Vis undersider som en liste",
- "CMSMain.ConfirmRestoreFromLive": "Vil du virkelig kopiere den publiserte siden til utkastsiden?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Vil du virkelig rulle tilbake til versjon #%s av denne siden?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Rediger",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Avbryt"
+ "URLSEGMENT.Cancel": "Avbryt",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/nl.js b/javascript/lang/nl.js
index 20f0ad2b..bef5a687 100644
--- a/javascript/lang/nl.js
+++ b/javascript/lang/nl.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Enkel deze pagina",
"Tree.ThisPageAndSubpages": "Deze pagina en subpagina's",
"Tree.ShowAsList": "Toon onderliggende pagina's als lijst",
- "CMSMain.ConfirmRestoreFromLive": "Wil je echt de gepubliceerde inhoud kopiëren naar de concept site?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Wil je echt terugdraaien naar versie #%s van deze pagina?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Aanpassen",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Annuleren"
+ "URLSEGMENT.Cancel": "Annuleren",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/pl.js b/javascript/lang/pl.js
index 431c5f56..3d967e2c 100644
--- a/javascript/lang/pl.js
+++ b/javascript/lang/pl.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Tylko tę stronę",
"Tree.ThisPageAndSubpages": "Ta strona i podstrony",
"Tree.ShowAsList": "Pokaż dzieci jako listę",
- "CMSMain.ConfirmRestoreFromLive": "Czy na pewno skopiować opublikowaną treść do strony roboczej?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Czy na pewno cofnąć do wersji #%s tej strony?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Edytuj",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Anuluj"
+ "URLSEGMENT.Cancel": "Anuluj",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/ro.js b/javascript/lang/ro.js
index c86605ca..3143e69d 100644
--- a/javascript/lang/ro.js
+++ b/javascript/lang/ro.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Doar această pagină",
"Tree.ThisPageAndSubpages": "Această pagină cu subpagini",
"Tree.ShowAsList": "Afişare fii în format listă",
- "CMSMain.ConfirmRestoreFromLive": "Doriţi copierea conținutul publicat pe site-ul ciornă (draft)?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Doriţi revenirea la versiunea #%s a acestei pagini?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editare",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Renunţare"
+ "URLSEGMENT.Cancel": "Renunţare",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/ru.js b/javascript/lang/ru.js
index f503f966..ab0b7845 100644
--- a/javascript/lang/ru.js
+++ b/javascript/lang/ru.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Только этой страницы",
"Tree.ThisPageAndSubpages": "Вместе с вложенными страницами",
"Tree.ShowAsList": "Показать страницы в виде списка",
- "CMSMain.ConfirmRestoreFromLive": "Вы действительно хотите скопировать опубликованное содержимое на черновой сайт?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Вы действительно хотите восстановить версию #%s этой страницы?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Изменить",
"URLSEGMENT.OK": "ОК",
- "URLSEGMENT.Cancel": "Отмена"
+ "URLSEGMENT.Cancel": "Отмена",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/sk.js b/javascript/lang/sk.js
index bea1f832..3c0d2000 100644
--- a/javascript/lang/sk.js
+++ b/javascript/lang/sk.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Iba túto stránku",
"Tree.ThisPageAndSubpages": "Túto stránku a podstránky",
"Tree.ShowAsList": "Zobraziť potomkov ako zoznam",
- "CMSMain.ConfirmRestoreFromLive": "Skutočne chcete skopírovať zverejnený obsah do konceptu?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Skutočne chcete vrátiť späť na verziu #%s tejto stránky?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editovať",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Zrušiť"
+ "URLSEGMENT.Cancel": "Zrušiť",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/sl.js b/javascript/lang/sl.js
index eb5927be..84a51377 100644
--- a/javascript/lang/sl.js
+++ b/javascript/lang/sl.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Samo to stran",
"Tree.ThisPageAndSubpages": "To stran in podstrani",
"Tree.ShowAsList": "Prikaži otroke kot seznam",
- "CMSMain.ConfirmRestoreFromLive": "Kopiram objavljeno vsebino na osnutek strani?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Obnovim na verzijo #%s te strani?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Uredi",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Prekliči"
+ "URLSEGMENT.Cancel": "Prekliči",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/sr.js b/javascript/lang/sr.js
index 83307619..da174272 100644
--- a/javascript/lang/sr.js
+++ b/javascript/lang/sr.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Само ова страница",
"Tree.ThisPageAndSubpages": "Ова страница и подстранице",
"Tree.ShowAsList": "Прикажу децу у виду листе",
- "CMSMain.ConfirmRestoreFromLive": "Да ли заиста желите да копирате објављени садржај у нацрт сајта?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Да ли заиста желите да се вратите на верзију #%s ове странице?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Измени",
"URLSEGMENT.OK": "У реду",
- "URLSEGMENT.Cancel": "Одустани"
+ "URLSEGMENT.Cancel": "Одустани",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/src/ar.js b/javascript/lang/src/ar.js
index 77e14ca6..e4ebc582 100644
--- a/javascript/lang/src/ar.js
+++ b/javascript/lang/src/ar.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "هذه الصفحة فقط",
"Tree.ThisPageAndSubpages": "هذه الصفحة وصفحات فرعية",
"Tree.ShowAsList": "أعرض التوابع في شكل قائمة",
- "CMSMain.ConfirmRestoreFromLive": "هل ترغب حقًا في نسخ المحتوى المنشور على مسودة الموقع؟",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "هل تريد حقاً الرجوع إلى النسخة #%s من هذه الصفحة؟",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "تحرير",
"URLSEGMENT.OK": "موافق",
- "URLSEGMENT.Cancel": "إلغاء"
+ "URLSEGMENT.Cancel": "إلغاء",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/cs.js b/javascript/lang/src/cs.js
index d47086ee..0c1e4934 100644
--- a/javascript/lang/src/cs.js
+++ b/javascript/lang/src/cs.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Pouze tuto stránku",
"Tree.ThisPageAndSubpages": "Tuto stránku a podstránky",
"Tree.ShowAsList": "Zobrazit potomky jako seznam",
- "CMSMain.ConfirmRestoreFromLive": "Skutečně chcete zkopírovat zveřejněn obsah do konceptu?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Skutečně chcete vrátit zpět na verzi #%s této stránky?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editovat",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Storno"
+ "URLSEGMENT.Cancel": "Storno",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/de.js b/javascript/lang/src/de.js
index 8f5be5f4..453e69a0 100644
--- a/javascript/lang/src/de.js
+++ b/javascript/lang/src/de.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Nur diese Seite",
"Tree.ThisPageAndSubpages": "Diese Seite und Unterseiten",
"Tree.ShowAsList": "Kinder als LIste zeigen",
- "CMSMain.ConfirmRestoreFromLive": "Wollen Sie wirklich den veröffentlichten Inhalt auf die Entwurfsseite kopieren?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Wollen Sie wirklich Version #%s dieser Seite wiederherstellen?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Bearbeiten",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Abbrechen"
+ "URLSEGMENT.Cancel": "Abbrechen",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/eo.js b/javascript/lang/src/eo.js
index 3aec6f4e..40f00602 100644
--- a/javascript/lang/src/eo.js
+++ b/javascript/lang/src/eo.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Nur ĉi tiu paĝo",
"Tree.ThisPageAndSubpages": "Ĉi tiu paĝo kaj subpaĝoj",
"Tree.ShowAsList": "Vidigi idojn kiel liston",
- "CMSMain.ConfirmRestoreFromLive": "Ĉu vi vere volas kopii la publikigitan enhavon al la malneta retejo?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Cu vi vere volas malfare restaŭri al versio #%s de ĉi tiu paĝo?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Redakti",
"URLSEGMENT.OK": "Akcepti",
- "URLSEGMENT.Cancel": "Rezigni"
+ "URLSEGMENT.Cancel": "Rezigni",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/es.js b/javascript/lang/src/es.js
index 6bcddfaa..f41eda8a 100644
--- a/javascript/lang/src/es.js
+++ b/javascript/lang/src/es.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Sólo en esta página",
"Tree.ThisPageAndSubpages": "Esta página y subpáginas",
"Tree.ShowAsList": "Mostrar hijos como lista",
- "CMSMain.ConfirmRestoreFromLive": "¿Realmente quieres copiar el contenido publicado al borrador del sitio?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "¿Realmente quieres volver a la versión #%s de esta página?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editar",
"URLSEGMENT.OK": "Ok",
- "URLSEGMENT.Cancel": "Cancelar"
+ "URLSEGMENT.Cancel": "Cancelar",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/fi.js b/javascript/lang/src/fi.js
index 0241dc6d..baf3b1f5 100644
--- a/javascript/lang/src/fi.js
+++ b/javascript/lang/src/fi.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Vain tämä sivu",
"Tree.ThisPageAndSubpages": "Tämä sivu ja alasivut",
"Tree.ShowAsList": "Näytä alasivut listana",
- "CMSMain.ConfirmRestoreFromLive": "Haluatko varmasti kopioida julkaistua sisältöä luonnossivustolle?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Haluatko varmasti palauttaa #%s version tästä sivusta?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Muokkaa",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Peruuta"
+ "URLSEGMENT.Cancel": "Peruuta",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/fr.js b/javascript/lang/src/fr.js
index d96d566a..091b8749 100644
--- a/javascript/lang/src/fr.js
+++ b/javascript/lang/src/fr.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Seulement cette page",
"Tree.ThisPageAndSubpages": "Cette page et ses sous-pages",
"Tree.ShowAsList": "Montrer les enfants en liste",
- "CMSMain.ConfirmRestoreFromLive": "Voulez-vous vraiment copier le contenu du site brouillon sur le site publié ?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Voulez-vous vraiment retourner à la version #%s de cette page ?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Éditer",
"URLSEGMENT.OK": "Ok",
- "URLSEGMENT.Cancel": "Annuler"
+ "URLSEGMENT.Cancel": "Annuler",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/hu.js b/javascript/lang/src/hu.js
new file mode 100644
index 00000000..d77f8df0
--- /dev/null
+++ b/javascript/lang/src/hu.js
@@ -0,0 +1,45 @@
+{
+ "CMSMAIN.WARNINGSAVEPAGESBEFOREADDING": "Aloldalt csak a szülő-oldal mentését követően hozhat létre",
+ "CMSMAIN.CANTADDCHILDREN": "A kiválasztott elemhez nem hozhat létre gyerek elemet",
+ "CMSMAIN.ERRORADDINGPAGE": "Oldal létrehozásakor hiba lépett fel",
+ "CMSMAIN.FILTEREDTREE": "Módosított oldalak megjelenítése",
+ "CMSMAIN.ERRORFILTERPAGES": "A \"fa\" nézet nem alkalmas a %s módosított oldalak megjelenítésére",
+ "CMSMAIN.ERRORUNFILTER": "Teljes \"fa\" szerkezet",
+ "CMSMAIN.PUBLISHINGPAGES": "Publikálás folyamatban...",
+ "CMSMAIN.SELECTONEPAGE": "Válasszon legalább 1 oldalt!",
+ "CMSMAIN.ERRORPUBLISHING": "Publikálás során hiba történt",
+ "CMSMAIN.REALLYDELETEPAGES": "Törli a %s -vel jelölt oldalakat?",
+ "CMSMAIN.DELETINGPAGES": "Oldalak törlése folyamatban...",
+ "CMSMAIN.ERRORDELETINGPAGES": "Oldal törlésekor hiba lépett fel",
+ "CMSMAIN.PUBLISHING": "Publikálás folyamatban...",
+ "CMSMAIN.RESTORING": "Helyreállítás folyamatban...",
+ "CMSMAIN.ERRORREVERTING": "Éles tartalomra váltáskor hiba történt",
+ "CMSMAIN.SAVING": "mentés folyamatban...",
+ "CMSMAIN.SELECTMOREPAGES": "%s oldal kiválasztva.\n\nVégrehajtsam a műveletet?",
+ "CMSMAIN.ALERTCLASSNAME": "Az oldaltípust a mentést követően lesz beállítva",
+ "CMSMAIN.URLSEGMENTVALIDATION": "Az URL csak betüket, számokat illetve kötőjelet (\"-\") tartalmazhat",
+ "AssetAdmin.BATCHACTIONSDELETECONFIRM": "Törli a(z) %s mappát(mappákat)?",
+ "AssetTableField.REALLYDELETE": "Törli a kijelölt fájlokat?",
+ "AssetTableField.MOVING": "%s fájl(ok) áthelyezése",
+ "CMSMAIN.AddSearchCriteria": "Feltétel hozzáadása",
+ "WidgetAreaEditor.TOOMANY": "A kiválasztott területen nem hozhat létre újabb widget-et.",
+ "AssetAdmin.ConfirmDelete": "Törli a mappát a tartalmával együtt?",
+ "Folder.Name": "Mappa neve",
+ "Tree.AddSubPage": "Új oldal létrehozása ebben a mappában",
+ "Tree.Duplicate": "Duplikál",
+ "Tree.EditPage": "Szerkeszt",
+ "Tree.ThisPageOnly": "Csak ez az oldal",
+ "Tree.ThisPageAndSubpages": "Csak ez az oldal és az alatta levő oldalak",
+ "Tree.ShowAsList": "Gyerekoldalak lista nézetben",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
+ "CMSMain.RollbackToVersion": "Visszaállítja az oldal #%s verzióját?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
+ "URLSEGMENT.Edit": "Szerkeszt",
+ "URLSEGMENT.OK": "OK",
+ "URLSEGMENT.Cancel": "Mégsem",
+ "URLSEGMENT.UpdateURL": "Update URL"
+}
\ No newline at end of file
diff --git a/javascript/lang/src/id.js b/javascript/lang/src/id.js
index be10237f..4ddd9e8b 100644
--- a/javascript/lang/src/id.js
+++ b/javascript/lang/src/id.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Hanya laman ini",
"Tree.ThisPageAndSubpages": "Laman dan sublaman ini",
"Tree.ShowAsList": "Tampilkan turunan sebagai daftar",
- "CMSMain.ConfirmRestoreFromLive": "Apakah Anda ingin menyalin konten yang sudah terbit ke draf?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Apakah Anda ingin kembali ke versi #%s dari laman ini?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Edit",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Batal"
+ "URLSEGMENT.Cancel": "Batal",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/is.js b/javascript/lang/src/is.js
index ffd57996..12fa00a3 100644
--- a/javascript/lang/src/is.js
+++ b/javascript/lang/src/is.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Aðeins þessi síða",
"Tree.ThisPageAndSubpages": "Þessi síða og undirsíður",
"Tree.ShowAsList": "Show children as list",
- "CMSMain.ConfirmRestoreFromLive": "Ertu viss um að þú viljir afrita birt efni yfir á drög?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Do you really want to roll back to version #%s of this page?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Breyta",
"URLSEGMENT.OK": "Allt í lagi",
- "URLSEGMENT.Cancel": "Hætta við"
+ "URLSEGMENT.Cancel": "Hætta við",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/it.js b/javascript/lang/src/it.js
index cc309d69..89b5abfd 100644
--- a/javascript/lang/src/it.js
+++ b/javascript/lang/src/it.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Solo questa pagina",
"Tree.ThisPageAndSubpages": "Questa pagina e le sottopagine",
"Tree.ShowAsList": "Mostra figli come lista",
- "CMSMain.ConfirmRestoreFromLive": "Vuoi veramente copiare il contenuto pubblicato nel sito bozza?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Vuoi veramente tornare alla versione #%s di questa pagina?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Modifica",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Annulla"
+ "URLSEGMENT.Cancel": "Annulla",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/ja.js b/javascript/lang/src/ja.js
index 38d60364..fbe29097 100644
--- a/javascript/lang/src/ja.js
+++ b/javascript/lang/src/ja.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "このページのみ",
"Tree.ThisPageAndSubpages": "このページとサブページ",
"Tree.ShowAsList": "子どもをリストで表示する",
- "CMSMain.ConfirmRestoreFromLive": "公開されているコンテンツを下書きサイトへ本当にコピーしますか?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "このページのバージョン#%sへ本当にロールバックしますか?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "編集",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "キャンセル"
+ "URLSEGMENT.Cancel": "キャンセル",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/ko.js b/javascript/lang/src/ko.js
index afe561fe..463f45ec 100644
--- a/javascript/lang/src/ko.js
+++ b/javascript/lang/src/ko.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "이 페이지만",
"Tree.ThisPageAndSubpages": "이 페이지와 하위 페이지",
"Tree.ShowAsList": "하위 목록으로 표시",
- "CMSMain.ConfirmRestoreFromLive": "공개된 내용을 초안 사이트에 복사하시겠습니까?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "이 페이지의 #%s 버젼으로 롤백하시겠습니까?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "편집",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "취소"
+ "URLSEGMENT.Cancel": "취소",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/lt.js b/javascript/lang/src/lt.js
index f7e48875..cd19e7c5 100644
--- a/javascript/lang/src/lt.js
+++ b/javascript/lang/src/lt.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Tik šį puslapį",
"Tree.ThisPageAndSubpages": "Šį puslapį ir visus po juo",
"Tree.ShowAsList": "Rodyti žemesnius pusl. kaip sąrašą",
- "CMSMain.ConfirmRestoreFromLive": "Ar tikrai norite kopijuoti publikuotą turinį į juodraštinę svetainę?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Ar tikrai norite atstatyti šį puslapį į #%s versiją?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Redaguoti",
"URLSEGMENT.OK": "Gerai",
- "URLSEGMENT.Cancel": "Atšaukti"
+ "URLSEGMENT.Cancel": "Atšaukti",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/mi.js b/javascript/lang/src/mi.js
index 8671bfe4..7e552f12 100644
--- a/javascript/lang/src/mi.js
+++ b/javascript/lang/src/mi.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Tēnei whārangi anake",
"Tree.ThisPageAndSubpages": "Tēnei whārangi me ngā whārangi iti",
"Tree.ShowAsList": "Whakaatu tamariki hei rārangi",
- "CMSMain.ConfirmRestoreFromLive": "Kei te tino hiahia tārua i te ihirangi kua whakaputaina ki te pae hukihuki?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Kei te tino hiahia hoki ki te tauira #%s o tēnei whārangi?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Whakatika",
"URLSEGMENT.OK": "ĀE",
- "URLSEGMENT.Cancel": "Whakakore"
+ "URLSEGMENT.Cancel": "Whakakore",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/nb.js b/javascript/lang/src/nb.js
index 3a2b54e9..7f60ab92 100644
--- a/javascript/lang/src/nb.js
+++ b/javascript/lang/src/nb.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Bare denne siden",
"Tree.ThisPageAndSubpages": "Denne siden og undersider",
"Tree.ShowAsList": "Vis undersider som en liste",
- "CMSMain.ConfirmRestoreFromLive": "Vil du virkelig kopiere den publiserte siden til utkastsiden?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Vil du virkelig rulle tilbake til versjon #%s av denne siden?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Rediger",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Avbryt"
+ "URLSEGMENT.Cancel": "Avbryt",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/nl.js b/javascript/lang/src/nl.js
index 8fc34e07..727d8b04 100644
--- a/javascript/lang/src/nl.js
+++ b/javascript/lang/src/nl.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Enkel deze pagina",
"Tree.ThisPageAndSubpages": "Deze pagina en subpagina's",
"Tree.ShowAsList": "Toon onderliggende pagina's als lijst",
- "CMSMain.ConfirmRestoreFromLive": "Wil je echt de gepubliceerde inhoud kopiëren naar de concept site?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Wil je echt terugdraaien naar versie #%s van deze pagina?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Aanpassen",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Annuleren"
+ "URLSEGMENT.Cancel": "Annuleren",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/pl.js b/javascript/lang/src/pl.js
index 6def10ae..232c079b 100644
--- a/javascript/lang/src/pl.js
+++ b/javascript/lang/src/pl.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Tylko tę stronę",
"Tree.ThisPageAndSubpages": "Ta strona i podstrony",
"Tree.ShowAsList": "Pokaż dzieci jako listę",
- "CMSMain.ConfirmRestoreFromLive": "Czy na pewno skopiować opublikowaną treść do strony roboczej?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Czy na pewno cofnąć do wersji #%s tej strony?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Edytuj",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Anuluj"
+ "URLSEGMENT.Cancel": "Anuluj",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/ro.js b/javascript/lang/src/ro.js
index 6710adf2..21746b37 100644
--- a/javascript/lang/src/ro.js
+++ b/javascript/lang/src/ro.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Doar această pagină",
"Tree.ThisPageAndSubpages": "Această pagină cu subpagini",
"Tree.ShowAsList": "Afişare fii în format listă",
- "CMSMain.ConfirmRestoreFromLive": "Doriţi copierea conținutul publicat pe site-ul ciornă (draft)?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Doriţi revenirea la versiunea #%s a acestei pagini?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editare",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Renunţare"
+ "URLSEGMENT.Cancel": "Renunţare",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/ru.js b/javascript/lang/src/ru.js
index 90f5dd15..cecc2cdb 100644
--- a/javascript/lang/src/ru.js
+++ b/javascript/lang/src/ru.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Только этой страницы",
"Tree.ThisPageAndSubpages": "Вместе с вложенными страницами",
"Tree.ShowAsList": "Показать страницы в виде списка",
- "CMSMain.ConfirmRestoreFromLive": "Вы действительно хотите скопировать опубликованное содержимое на черновой сайт?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Вы действительно хотите восстановить версию #%s этой страницы?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Изменить",
"URLSEGMENT.OK": "ОК",
- "URLSEGMENT.Cancel": "Отмена"
+ "URLSEGMENT.Cancel": "Отмена",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/sk.js b/javascript/lang/src/sk.js
index 470e4730..c4a6853d 100644
--- a/javascript/lang/src/sk.js
+++ b/javascript/lang/src/sk.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Iba túto stránku",
"Tree.ThisPageAndSubpages": "Túto stránku a podstránky",
"Tree.ShowAsList": "Zobraziť potomkov ako zoznam",
- "CMSMain.ConfirmRestoreFromLive": "Skutočne chcete skopírovať zverejnený obsah do konceptu?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Skutočne chcete vrátiť späť na verziu #%s tejto stránky?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Editovať",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Zrušiť"
+ "URLSEGMENT.Cancel": "Zrušiť",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/sl.js b/javascript/lang/src/sl.js
index f6eab129..40319081 100644
--- a/javascript/lang/src/sl.js
+++ b/javascript/lang/src/sl.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Samo to stran",
"Tree.ThisPageAndSubpages": "To stran in podstrani",
"Tree.ShowAsList": "Prikaži otroke kot seznam",
- "CMSMain.ConfirmRestoreFromLive": "Kopiram objavljeno vsebino na osnutek strani?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Obnovim na verzijo #%s te strani?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Uredi",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Prekliči"
+ "URLSEGMENT.Cancel": "Prekliči",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/sr.js b/javascript/lang/src/sr.js
index d1659a74..00512381 100644
--- a/javascript/lang/src/sr.js
+++ b/javascript/lang/src/sr.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Само ова страница",
"Tree.ThisPageAndSubpages": "Ова страница и подстранице",
"Tree.ShowAsList": "Прикажу децу у виду листе",
- "CMSMain.ConfirmRestoreFromLive": "Да ли заиста желите да копирате објављени садржај у нацрт сајта?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Да ли заиста желите да се вратите на верзију #%s ове странице?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Измени",
"URLSEGMENT.OK": "У реду",
- "URLSEGMENT.Cancel": "Одустани"
+ "URLSEGMENT.Cancel": "Одустани",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/sv.js b/javascript/lang/src/sv.js
index 1feb242c..19314eae 100644
--- a/javascript/lang/src/sv.js
+++ b/javascript/lang/src/sv.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "Endast denna sida",
"Tree.ThisPageAndSubpages": "Denna sida och undersidor",
"Tree.ShowAsList": "Visa undersidor som lista",
- "CMSMain.ConfirmRestoreFromLive": "Vill du verkligen kopiera det publicerade innehållet till utkastsajten?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Vill du verkligen gå tillbaka till version %s av denna sida?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Redigera",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Avbryt"
+ "URLSEGMENT.Cancel": "Avbryt",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/src/zh.js b/javascript/lang/src/zh.js
index ef78494f..29a19f42 100644
--- a/javascript/lang/src/zh.js
+++ b/javascript/lang/src/zh.js
@@ -31,9 +31,15 @@
"Tree.ThisPageOnly": "仅该页",
"Tree.ThisPageAndSubpages": "本页和子页面",
"Tree.ShowAsList": "将儿童显示为列表",
- "CMSMain.ConfirmRestoreFromLive": "是否确定将已发布内容复制到草稿站?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "是否确定回滚至该页面的第 #%s 版?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "编辑",
"URLSEGMENT.OK": "确定",
- "URLSEGMENT.Cancel": "取消"
+ "URLSEGMENT.Cancel": "取消",
+ "URLSEGMENT.UpdateURL": "Update URL"
}
\ No newline at end of file
diff --git a/javascript/lang/sv.js b/javascript/lang/sv.js
index 808f5541..aab2be92 100644
--- a/javascript/lang/sv.js
+++ b/javascript/lang/sv.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "Endast denna sida",
"Tree.ThisPageAndSubpages": "Denna sida och undersidor",
"Tree.ShowAsList": "Visa undersidor som lista",
- "CMSMain.ConfirmRestoreFromLive": "Vill du verkligen kopiera det publicerade innehållet till utkastsajten?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "Vill du verkligen gå tillbaka till version %s av denna sida?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "Redigera",
"URLSEGMENT.OK": "OK",
- "URLSEGMENT.Cancel": "Avbryt"
+ "URLSEGMENT.Cancel": "Avbryt",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/javascript/lang/zh.js b/javascript/lang/zh.js
index 315d4392..e55eed5f 100644
--- a/javascript/lang/zh.js
+++ b/javascript/lang/zh.js
@@ -36,10 +36,16 @@ if(typeof(ss) == 'undefined' || typeof(ss.i18n) == 'undefined') {
"Tree.ThisPageOnly": "仅该页",
"Tree.ThisPageAndSubpages": "本页和子页面",
"Tree.ShowAsList": "将儿童显示为列表",
- "CMSMain.ConfirmRestoreFromLive": "是否确定将已发布内容复制到草稿站?",
+ "CMSMain.ConfirmRestoreFromLive": "Are you sure you want to revert draft to when the page was last published?",
"CMSMain.RollbackToVersion": "是否确定回滚至该页面的第 #%s 版?",
+ "CMSMain.Archive": "Are you sure you want to archive this page?\n\nThe page will be unpublished and sent to the archive.",
+ "CMSMain.Restore": "Are you sure you want to restore this page from archive?",
+ "CMSMain.RestoreToRoot": "Are you sure you want to restore this page from archive?\n\nBecause the parent page is not available this will be restored to the top level.",
+ "CMSMain.Unpublish": "Are you sure you want to remove your page from the published site?\n\nThis page will still be available in the sitetree as draft.",
+ "CMSMain.DeleteFromDraft": "Are you sure you want to remove your page from the draft site?\n\nThis page will remain on the published site.",
"URLSEGMENT.Edit": "编辑",
"URLSEGMENT.OK": "确定",
- "URLSEGMENT.Cancel": "取消"
+ "URLSEGMENT.Cancel": "取消",
+ "URLSEGMENT.UpdateURL": "Update URL"
});
}
\ No newline at end of file
diff --git a/lang/en.yml b/lang/en.yml
index a40a571d..fddd9d22 100644
--- a/lang/en.yml
+++ b/lang/en.yml
@@ -69,6 +69,8 @@ en:
PUBLISH_PAGES: Publish
UNPUBLISHED_PAGES: 'Unpublished %d pages'
UNPUBLISH_PAGES: Unpublish
+ ARCHIVE: Archive
+ ARCHIVED_PAGES: 'Archived %d pages'
CMSMain:
ACCESS: 'Access to ''{title}'' section'
ACCESS_HELP: 'Allow viewing of the section containing page tree and content. View and edit permissions can be handled through page specific dropdowns, as well as the separate "Content permissions".'
@@ -116,9 +118,12 @@ en:
TreeFiltered: 'Filtered tree.'
TreeFilteredClear: 'Clear filter'
MENUTITLE: 'Edit Page'
+ ARCHIVE: Archive
+ ARCHIVEDPAGE: 'Archived page ''%s'''
CMSMain_left_ss:
APPLY_FILTER: 'Apply Filter'
RESET: Reset
+ CLEAR_FILTER: 'Clear Filter'
CMSPageAddController:
ParentMode_child: 'Under another page'
ParentMode_top: 'Top level'
@@ -325,7 +330,7 @@ en:
DEFAULTABOUTTITLE: 'About Us'
DEFAULTCONTACTCONTENT: '
You can fill this page out with your own content, or delete it and create your own pages.
'
DEFAULTHOMETITLE: Home
DELETEDPAGEHELP: 'Page is no longer published'
DELETEDPAGESHORT: Deleted
@@ -396,6 +401,9 @@ en:
many_many_BackLinkTracking: 'Backlink Tracking'
many_many_ImageTracking: 'Image Tracking'
many_many_LinkTracking: 'Link Tracking'
+ ARCHIVEDPAGEHELP: 'Page is removed from draft and live'
+ ARCHIVEDPAGESHORT: Archived
+ BUTTONARCHIVEDESC: 'Unpublish and send to archive'
SiteTreeURLSegmentField:
EMPTY: 'Please enter a URL Segment or click cancel'
HelpChars: ' Special characters are automatically converted or removed.'
@@ -423,3 +431,6 @@ en:
MENUTITLE: 'Edit Page'
CMSSettingsController:
MENUTITLE: Settings
+ SiteTreeFileExtension:
+ BACKLINK_LIST_DESCRIPTION: 'This list shows all pages where the file has been added through a WYSIWYG editor.'
+ EDIT: Edit
diff --git a/templates/Includes/CMSPagesController_ContentToolbar.ss b/templates/Includes/CMSPagesController_ContentToolbar.ss
index 038f8a6a..e99bd7ff 100644
--- a/templates/Includes/CMSPagesController_ContentToolbar.ss
+++ b/templates/Includes/CMSPagesController_ContentToolbar.ss
@@ -1,8 +1,8 @@