-
diff --git a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.controller.js b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.controller.js
index 518c27d110..2ea325b451 100644
--- a/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.controller.js
+++ b/src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.controller.js
@@ -208,7 +208,7 @@ function listViewController($rootScope, $scope, $routeParams, $injector, $cookie
$timeout(function () {
$scope.bulkStatus = "";
$scope.actionInProgress = false;
- }, 500);
+ }, 0);
if (reload === true) {
$scope.reloadView($scope.contentId);
@@ -220,7 +220,9 @@ function listViewController($rootScope, $scope, $routeParams, $injector, $cookie
}
}
else if (successMsg) {
- notificationsService.success("Done", successMsg);
+ localizationService.localize("bulk_done").then(function (v) {
+ notificationsService.success(v, successMsg);
+ });
}
}
@@ -368,28 +370,67 @@ function listViewController($rootScope, $scope, $routeParams, $injector, $cookie
$scope.delete = function () {
applySelected(
function (selected, index) { return deleteItemCallback(getIdCallback(selected[index])); },
- function (count, total) { return "Deleted " + count + " out of " + total + " item" + (total > 1 ? "s" : ""); },
- function (total) { return "Deleted " + total + " item" + (total > 1 ? "s" : ""); },
+ function (count, total) {
+ return "Deleted " + count + " out of " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_deletedItemOfItem" : "bulk_deletedItemOfItems");
+ //localizationService.localize(key, [count, total]).then(function (value) {
+ // return value;
+ //});
+ },
+ function (total) {
+ return "Deleted " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_deletedItem" : "bulk_deletedItems");
+ //localizationService.localize(key, [total]).then(function (value) {
+ // return value;
+ //});
+ },
+ //localizationService.localize("defaultdialogs_confirmdelete") + "?"
"Sure you want to delete?");
};
- $scope.publish = function () {
+ $scope.publish = function () {
applySelected(
function (selected, index) { return contentResource.publishById(getIdCallback(selected[index])); },
- function (count, total) { return "Published " + count + " out of " + total + " item" + (total > 1 ? "s" : ""); },
- function (total) { return "Published " + total + " item" + (total > 1 ? "s" : ""); });
+ function (count, total) {
+ return "Published " + count + " out of " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_publishedItemOfItem" : "bulk_publishedItemOfItems");
+ //localizationService.localize(key, [count, total]).then(function (value) {
+ // console.log(key, value);
+ // return value;
+ //});
+ },
+ function (total) {
+ return "Published " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_publishedItem" : "bulk_publishedItems");
+ //localizationService.localize(key, [total]).then(function (value) {
+ // console.log(key, value);
+ // return value;
+ //});
+ });
};
$scope.unpublish = function () {
applySelected(
function (selected, index) { return contentResource.unPublish(getIdCallback(selected[index])); },
- function (count, total) { return "Unpublished " + count + " out of " + total + " item" + (total > 1 ? "s" : ""); },
- function (total) { return "Unpublished " + total + " item" + (total > 1 ? "s" : ""); });
+ function (count, total) {
+ return "Unpublished " + count + " out of " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_unpublishedItemOfItem" : "bulk_unpublishedItemOfItems");
+ //localizationService.localize(key, [count, total]).then(function (value) {
+ // return value;
+ //});
+ },
+ function (total) {
+ return "Unpublished " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_unpublishedItem" : "bulk_unpublishedItems");
+ //localizationService.localize(key, [total]).then(function (value) {
+ // return value;
+ //});
+ });
};
$scope.move = function () {
$scope.moveDialog = {};
- $scope.moveDialog.title = "Move";
+ $scope.moveDialog.title = localizationService.localize("general_move");
$scope.moveDialog.section = $scope.entityType;
$scope.moveDialog.currentNode = $scope.contentId;
$scope.moveDialog.view = "move";
@@ -416,13 +457,25 @@ function listViewController($rootScope, $scope, $routeParams, $injector, $cookie
applySelected(
function (selected, index) { return contentResource.move({ parentId: target.id, id: getIdCallback(selected[index]) }); },
- function (count, total) { return "Moved " + count + " out of " + total + " item" + (total > 1 ? "s" : ""); },
- function (total) { return "Moved " + total + " item" + (total > 1 ? "s" : ""); });
+ function (count, total) {
+ return "Moved " + count + " out of " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_movedItemOfItem" : "bulk_movedItemOfItems");
+ //localizationService.localize(key, [count, total]).then(function (value) {
+ // return value;
+ //});
+ },
+ function (total) {
+ return "Moved " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_movedItem" : "bulk_movedItems");
+ //localizationService.localize(key, [total]).then(function (value) {
+ // return value;
+ //});
+ });
}
$scope.copy = function () {
$scope.copyDialog = {};
- $scope.copyDialog.title = "Copy";
+ $scope.copyDialog.title = localizationService.localize("general_copy");
$scope.copyDialog.section = $scope.entityType;
$scope.copyDialog.currentNode = $scope.contentId;
$scope.copyDialog.view = "copy";
@@ -447,8 +500,20 @@ function listViewController($rootScope, $scope, $routeParams, $injector, $cookie
function performCopy(target, relateToOriginal) {
applySelected(
function (selected, index) { return contentResource.copy({ parentId: target.id, id: getIdCallback(selected[index]), relateToOriginal: relateToOriginal }); },
- function (count, total) { return "Copied " + count + " out of " + total + " item" + (total > 1 ? "s" : ""); },
- function (total) { return "Copied " + total + " item" + (total > 1 ? "s" : ""); });
+ function (count, total) {
+ return "Copied " + count + " out of " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_copiedItemOfItem" : "bulk_copiedItemOfItems");
+ //localizationService.localize(key, [count, total]).then(function (value) {
+ // return value;
+ //});
+ },
+ function (total) {
+ return "Copied " + total + " item" + (total > 1 ? "s" : "");
+ //var key = (total === 1 ? "bulk_copiedItem" : "bulk_copiedItems");
+ //localizationService.localize(key, [total]).then(function (value) {
+ // return value;
+ //});
+ });
}
function getCustomPropertyValue(alias, properties) {
diff --git a/src/Umbraco.Web.UI/Umbraco/config/lang/cs.xml b/src/Umbraco.Web.UI/Umbraco/config/lang/cs.xml
index 1ae28daafe..50d5c0d911 100644
--- a/src/Umbraco.Web.UI/Umbraco/config/lang/cs.xml
+++ b/src/Umbraco.Web.UI/Umbraco/config/lang/cs.xml
@@ -185,6 +185,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NázevSpravovat názvy hostitelů
diff --git a/src/Umbraco.Web.UI/Umbraco/config/lang/nb.xml b/src/Umbraco.Web.UI/Umbraco/config/lang/nb.xml
index 275267e98c..f3701c706a 100644
--- a/src/Umbraco.Web.UI/Umbraco/config/lang/nb.xml
+++ b/src/Umbraco.Web.UI/Umbraco/config/lang/nb.xml
@@ -191,6 +191,34 @@
Discard changesYou have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% itemsNavn på lokal link
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/da.xml b/src/Umbraco.Web.UI/umbraco/config/lang/da.xml
index 0280a46e05..d68e21daf7 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/da.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/da.xml
@@ -198,6 +198,34 @@
Du har ikke-gemte ændringerEr du sikker på du vil navigere væk fra denne side? - du har ikke-gemte ændringer
+
+ Færdig
+
+ Slettede %0% element
+ Slettede %0% elementer
+ Slettede %0% ud af %1% element
+ Slettede %0% ud af %1% elementer
+
+ Udgav %0% element
+ Udgav %0% elementer
+ Udgav %0% ud af %1% element
+ Udgav %0% ud af %1% elementer
+
+ Fjernede %0% element fra udgivelse
+ Fjernede %0% elementer fra udgivelse
+ Fjernede %0% ud af %1% element fra udgivelse
+ Fjernede %0% ud af %1% elementer fra udgivelse
+
+ Flyttede %0% element
+ Flyttede %0% elementer
+ Flyttede %0% ud af %1% element
+ Flyttede %0% ud af %1% elementer
+
+ Kopierede %0% element
+ Kopierede %0% elementer
+ Kopierede %0% ud af %1% element
+ Kopierede %0% ud af %1% elementer
+
Navn på lokalt linkRediger domæner
@@ -242,7 +270,36 @@
Vælg et placeholder id fra listen herunder. Du kan kun vælge id'er fra den nuværende masterskabelon.]]>Klik på billedet for at se den fulde størrelseVælg
- Se Cache Item
+ Se cache element
+ Opret mappe...
+
+ Relatér til original
+
+ Link til side
+
+ Åbner det linket dokument i et nyt vindue eller fane
+ Åbner det linket dokument i fuld visning af vinduet
+ Åbner det linket dokument i "parent frame"
+
+ Link til medie
+
+ Vælg medie
+ Vælg ikon
+ Vælg item
+ Vælg link
+ Vælg makro
+ Vælg indhold
+ Vælg medlem
+ Vælg medlemsgruppe
+
+ Der er ingen parametre for denne makro
+
+ Link dit
+ Fjern link fra dit
+
+ konto
+
+ Vælg editorRediger de forskellige sprogversioner for ordbogselementet '%0%' herunder. Du tilføjer flere sprog under 'sprog' i menuen til venstre
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/de.xml b/src/Umbraco.Web.UI/umbraco/config/lang/de.xml
index 3b4c1ee5ab..d7f2c320b9 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/de.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/de.xml
@@ -192,6 +192,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NameHostnamen verwalten
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
index 84dedbb364..2353929a4c 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/en.xml
@@ -205,6 +205,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NameManage hostnames
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
index ec41299b25..528830d86a 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/en_us.xml
@@ -207,6 +207,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NameManage hostnames
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/es.xml b/src/Umbraco.Web.UI/umbraco/config/lang/es.xml
index 80e39fe219..09af60593f 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/es.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/es.xml
@@ -191,6 +191,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NombreAdministrar dominios
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/fr.xml b/src/Umbraco.Web.UI/umbraco/config/lang/fr.xml
index 59021956a5..4affcf02f0 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/fr.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/fr.xml
@@ -187,6 +187,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NameGérer les noms d'hôtes
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/he.xml b/src/Umbraco.Web.UI/umbraco/config/lang/he.xml
index aa9c2112e2..02d8311c14 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/he.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/he.xml
@@ -137,6 +137,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
שםניהול שם מתחם
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/it.xml b/src/Umbraco.Web.UI/umbraco/config/lang/it.xml
index 9c0682eba0..8be7261a8d 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/it.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/it.xml
@@ -133,6 +133,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NomeGestione alias Hostnames
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/ja.xml b/src/Umbraco.Web.UI/umbraco/config/lang/ja.xml
index 6acfd997e1..beced6eb79 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/ja.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/ja.xml
@@ -200,6 +200,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
名前ドメインの割り当て
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/ko.xml b/src/Umbraco.Web.UI/umbraco/config/lang/ko.xml
index c7178e312b..b72503e987 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/ko.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/ko.xml
@@ -131,6 +131,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
이름호스트네임 관리
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/nl.xml b/src/Umbraco.Web.UI/umbraco/config/lang/nl.xml
index 7d1a4cc2d3..2955ce716a 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/nl.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/nl.xml
@@ -194,6 +194,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NaamBeheer domeinnamen
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/pl.xml b/src/Umbraco.Web.UI/umbraco/config/lang/pl.xml
index c2c8b4d073..97dcf9ef38 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/pl.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/pl.xml
@@ -131,6 +131,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NazwaZarządzaj nazwami hostów
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/pt.xml b/src/Umbraco.Web.UI/umbraco/config/lang/pt.xml
index 016f7c2a19..e67a4c4b15 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/pt.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/pt.xml
@@ -131,6 +131,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NomeGerenciar hostnames
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/ru.xml b/src/Umbraco.Web.UI/umbraco/config/lang/ru.xml
index e162dbaead..84b87b872f 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/ru.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/ru.xml
@@ -260,6 +260,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
НазваниеУправление доменами
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/sv.xml b/src/Umbraco.Web.UI/umbraco/config/lang/sv.xml
index ea1f0c9ef0..10e882f260 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/sv.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/sv.xml
@@ -187,6 +187,34 @@
You have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items
+
NamnHantera domännamn
diff --git a/src/Umbraco.Web.UI/umbraco/config/lang/zh.xml b/src/Umbraco.Web.UI/umbraco/config/lang/zh.xml
index 372bc480cc..b8c933c101 100644
--- a/src/Umbraco.Web.UI/umbraco/config/lang/zh.xml
+++ b/src/Umbraco.Web.UI/umbraco/config/lang/zh.xml
@@ -171,6 +171,34 @@
Discard changesYou have unsaved changesAre you sure you want to navigate away from this page? - you have unsaved changes
+
+
+ Done
+
+ Deleted %0% item
+ Deleted %0% items
+ Deleted %0% out of %1% item
+ Deleted %0% out of %1% items
+
+ Published %0% item
+ Published %0% items
+ Published %0% out of %1% item
+ Published %0% out of %1% items
+
+ Unpublished %0% item
+ Unpublished %0% items
+ Unpublished %0% out of %1% item
+ Unpublished %0% out of %1% items
+
+ Moved %0% item
+ Moved %0% items
+ Moved %0% out of %1% item
+ Moved %0% out of %1% items
+
+ Copied %0% item
+ Copied %0% items
+ Copied %0% out of %1% item
+ Copied %0% out of %1% items锚点名称