From 079576c6c09a3873de138e9e7972c329c022834b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 12:17:51 -0600 Subject: [PATCH 1/3] Monthly Release PR - 2024-08-06 (#614) * Should consistently use commits from master * Should push up same against dev-branch * Should update language files here for simpler handling * Should not output the found commands * Should fix version issue #607 * Should commit * update version number and .gitignore (for windows vscode dev envs) --- .githooks/pre-commit | 47 +- .gitignore | 1 + LICENSE | 2 +- README.md | 5 +- packages/web/lib/fog/system.class.php | 2 +- .../de_DE.UTF-8/LC_MESSAGES/messages.po | 13468 ++++++---------- .../en_US.UTF-8/LC_MESSAGES/messages.po | 13222 ++++++--------- .../es_ES.UTF-8/LC_MESSAGES/messages.po | 12435 ++++++-------- .../fr_FR.UTF-8/LC_MESSAGES/messages.po | 12681 ++++++--------- .../it_IT.UTF-8/LC_MESSAGES/messages.po | 12886 ++++++--------- .../web/management/languages/messages.pot | 7911 +++------ .../pt_BR.UTF-8/LC_MESSAGES/messages.po | 13312 ++++++--------- .../zh_CN.UTF-8/LC_MESSAGES/messages.po | 13182 ++++++--------- packages/web/status/mainversion.php | 6 +- 14 files changed, 36666 insertions(+), 62494 deletions(-) diff --git a/.githooks/pre-commit b/.githooks/pre-commit index 20c45b4dff..3495970c33 100755 --- a/.githooks/pre-commit +++ b/.githooks/pre-commit @@ -6,15 +6,34 @@ # it wants to stop the commit. # # To enable this hook, rename this file to "pre-commit". +# +# Exit on error +set -e + +project_dir=$(git rev-parse --show-toplevel) + +updateLanguage() { + command -v xgettext >/dev/null || return + command -v msgcat >/dev/null || return + command -v msgmerge >/dev/null || return + xgettext --language=PHP --from-code=UTF-8 --output="$project_dir/packages/web/management/languages/messages.pot" --omit-header --no-location $(find $project_dir/packages/web/ -name "*.php") + msgcat --sort-output -o "$project_dir/packages/web/management/languages/messages.pot" "$project_dir/packages/web/management/languages/messages.pot" + for PO_FILE in $(find $project_dir/packages/web/management/languages/ -type f -name *.po); do + msgmerge --update --backup=none $PO_FILE $project_dir/packages/web/management/languages/messages.pot 2>/dev/null >/dev/null + msgcat --sort-output -o $PO_FILE $PO_FILE + done +} + +updateLanguage # Get the current branch name -gitbranch=$(git branch | awk '/*/ {print $2}') +gitbranch=$(git branch --show-current) # Get the latest tag commit gitcom=$(git rev-list --tags --no-walk --max-count=1) # Count commits from the last tag to HEAD -gitcount=$(git rev-list ${gitcom}..HEAD --count) +gitcount=$(git rev-list master..HEAD --count) # Extract the first part of the branch name branchon=$(echo ${gitbranch} | awk -F'-' '{print $1}') @@ -22,6 +41,11 @@ branchon=$(echo ${gitbranch} | awk -F'-' '{print $1}') # Extract the second part of the branch name branchend=$(echo ${gitbranch} | awk -F'-' '{print $2}') +# Define the path to the system file +system_file="$(git rev-parse --show-toplevel)/packages/web/lib/fog/system.class.php" + +current_version=$(grep "define('FOG_VERSION'" $system_file | sed "s/.*FOG_VERSION', '\([^']*\)');/\1/") + verbegin="" channel="" @@ -31,7 +55,7 @@ case $branchon in tagversion=$(git describe --tags ${gitcom}) baseversion=${tagversion%.*} # Retain everything before the last segment lastrevision=${tagversion##*.} # Extracts the last segment - trunkversion="${baseversion}.$(($lastrevision + gitcount))" + trunkversion="${baseversion}.${gitcount}" channel="Patches" ;; working) @@ -40,10 +64,23 @@ case $branchon in trunkversion="${verbegin}.${gitcount}" channel="Beta" ;; + rc) + channel="Release Candidate" + version_prefix="${branchend}.0-RC" + if [[ $current_version =~ $version_prefix-([0-9]+) ]]; then + last_rc_version=${BASH_REMATCH[1]} + next_rc_version=$((last_rc_version + 1)) + else + trunkversion="${version_prefix}-1" + fi + ;; + feature) + verbegin="${branchend}.0-feature" + trunkversion="${verbegin}.${gitcount}" + channel="Feature" + ;; esac -# Define the path to the system file -system_file="$(git rev-parse --show-toplevel)/packages/web/lib/fog/system.class.php" # Update the version and channel in the system file sed -i "s/define('FOG_VERSION',.*);/define('FOG_VERSION', '$trunkversion');/g" $system_file diff --git a/.gitignore b/.gitignore index 04517895a0..58020ababb 100644 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,7 @@ ehthumbs.db Thumbs.db *~ *# +.vscode/settings.json # Video # ######### diff --git a/LICENSE b/LICENSE index 9cecc1d466..a314ceb5cd 100644 --- a/LICENSE +++ b/LICENSE @@ -671,4 +671,4 @@ into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read -. +. diff --git a/README.md b/README.md index 63ed74bcc6..d2c3ecba1b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,9 @@ This gives us a Production, Staging, and Dev branches to follow standard devops ### Version Format -{CodeBaseMajor}.{Major}.{Minor}.{Patch} +Our versions are formatted in a x.x.x.x format like so: + +`{CodeBaseMajor}.{Major}.{Minor}.{Patch}` | Version Property | Description | Example | |------------------|-----------------------------------------------------------------------------------------------------------------------|-----------| @@ -33,6 +35,7 @@ This gives us a Production, Staging, and Dev branches to follow standard devops | Minor | Non-breaking major feature enhancements, requires formal release | 1.5.10.x | | Patch | On-going Bug and security fixes and feature enhancements, automated releases | 1.5.10.41 | + ## Install stable version 0. Install and update your linux server distro diff --git a/packages/web/lib/fog/system.class.php b/packages/web/lib/fog/system.class.php index 5c0ff9499b..ae57da54ed 100644 --- a/packages/web/lib/fog/system.class.php +++ b/packages/web/lib/fog/system.class.php @@ -53,7 +53,7 @@ private static function _versionCompare() public function __construct() { self::_versionCompare(); - define('FOG_VERSION', '1.5.10.74'); + define('FOG_VERSION', '1.5.10.1565'); define('FOG_SCHEMA', 271); define('FOG_BCACHE_VER', 141); define('FOG_CLIENT_VERSION', '0.13.0'); diff --git a/packages/web/management/languages/de_DE.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/de_DE.UTF-8/LC_MESSAGES/messages.po index cd55052326..ed3c9f1d9c 100644 --- a/packages/web/management/languages/de_DE.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/de_DE.UTF-8/LC_MESSAGES/messages.po @@ -12,11189 +12,7971 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: commons/text.php:22 -msgid "Display" -msgstr "Anzeige" - -#: commons/text.php:23 -msgid "Auto" -msgstr "Auto" - -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "Modell" - -#: commons/text.php:25 -msgid "Inventory" -msgstr "Inventar" - -#: commons/text.php:26 -msgid "O/S" -msgstr "O/S" - -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "Bearbeiten" - -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "Löschen" - -#: commons/text.php:29 -msgid "Deleted" -msgstr "Gelöscht" - -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "Alle" - -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "Hinzufügen" - -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "Suche" - -#: commons/text.php:33 -msgid "Storage" -msgstr "Speicher" - -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "Snapin" - -#: commons/text.php:35 -msgid "Snapins" -msgstr "Snapins" - -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "Entfernen" - -#: commons/text.php:37 -msgid "Removed" -msgstr "Entfernt" - -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "Aktiviert" - -#: commons/text.php:39 -msgid "Management" -msgstr "Verwaltung" - -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "Update" - -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "Image" - -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "Images" +msgid " * Image replication is globally disabled" +msgstr "* Imagereplikation ist global deaktiviert" -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "Knoten" +#, fuzzy +msgid " * Image size is globally disabled" +msgstr " * Imagegröße ist global deaktiviert" -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "Gruppe" +msgid " * Multicast service is globally disabled" +msgstr " * Multicast Service ist global deaktiviert" -#: commons/text.php:45 -msgid "Groups" -msgstr "Gruppen" +msgid " * Ping hosts is globally disabled" +msgstr "* Anpingen der Hosts ist global deaktiviert" -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "Logout" +#, fuzzy +msgid " * Snapin hash is globally disabled" +msgstr "Snapin-Hashs global deaktiviert" -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "Host" +msgid " * Snapin replication is globally disabled" +msgstr "* Snapin Replikation ist global deaktiviert" -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "Hosts" +msgid " * Task Scheduler is globally disabled" +msgstr "* Taskplaner ist global deaktiviert" -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "Bandbreite" +#, fuzzy +msgid " Name" +msgstr " Name" -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "Replikationsbandbreite" +#, fuzzy +msgid " No open slots " +msgstr "Keine offenen Slots" -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" +msgid " Task state has been updated, now the task is queued!" msgstr "" -"Diese Einstellung begrenzt die Bandbreite für die Replikation zwischen den " -"Knoten," - -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" -msgstr "indem es die max. Bandbreiteneinstellung desjenigen Knotens" - -#: commons/text.php:55 -msgid "it's transmitting to" -msgstr "empfängt, an den es sendet." - -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" -msgstr "Wenn Sie also versuchen, an den entfernten Knoten A zu senden," -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "und Knoten A hat nur 5MBit/s, und Sie wollen die Geschwindigkeit" +msgid " | This is not the master node" +msgstr " | Dies ist nicht der Master-Knoten" -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" -msgstr "auf 1 MBit/s begrenzen, " +#, fuzzy +msgid " | Unable to find image path" +msgstr "Fehler beim Finden des Master Storage Nodes" -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" -msgstr "setzen Sie die Bandbreite auf diesem Knoten auf 1000." +msgid "$_POST variable is empty, check apache error log." +msgstr "$_POST Variable ist leer, siehe Apache Errorlog" -#: commons/text.php:61 -msgid "Transmit" -msgstr "Übertragen" +#, fuzzy, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %s ist nicht gültig" -#: commons/text.php:62 -msgid "Receive" -msgstr "Erhalten" +#, php-format +msgid "%s ID %s is not valid" +msgstr "%s ID %s ist nicht gültig" -#: commons/text.php:63 -msgid "New" -msgstr "Neu" +#, php-format +msgid "%s Manager" +msgstr "%s Manager" -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "Benutzer" +#, php-format +msgid "%s Menu" +msgstr "%s Menü" -#: commons/text.php:65 -msgid "Users" -msgstr "Benutzer" +#, php-format +msgid "%s is required" +msgstr "%s ist erforderlich" -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" -msgstr "Name" +#, fuzzy +msgid "1 Hour" +msgstr "1 Stunde" -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "Mitglieder" +msgid "10 Minutes" +msgstr "10 Minuten" -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "Erweitert" +msgid "2 Minutes" +msgstr "2 Minuten" -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" -msgstr "Hostname" +msgid "30 Minutes" +msgstr "30 Minuten" -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "" -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "MAC" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "" -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" +#, fuzzy +msgid "

Version 1.5.5" msgstr "Version" -#: commons/text.php:73 -msgid "Text" -msgstr "Text" - -#: commons/text.php:74 -msgid "Graphical" -msgstr "Grafisch" - -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "Datei" - -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "Pfad" - -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "Herunterfahren" - -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "Neustarten" - -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "Zeit" - -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "Aktion" - -#: commons/text.php:81 -msgid "Printer" -msgstr "Drucker" - -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 #, fuzzy -msgid "Power Management" -msgstr "Power Management" +msgid "A LDAP setup already exists with this name!" +msgstr "Ein LDAP mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:83 -msgid "Client" -msgstr "Client" +#, fuzzy +msgid "A Windows Key already exists with this name!" +msgstr "Ein Windows-Schlüssel mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "Task" +#, fuzzy +msgid "A broadcast address is required" +msgstr "Eine Broadcast-Adresse ist erforderlich" -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "Benutzername" +#, fuzzy +msgid "A broadcast already exists with this name" +msgstr "Ein Broadcast mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:86 -msgid "Service" -msgstr "Service" +#, fuzzy +msgid "A broadcast already exists with this name!" +msgstr "Ein Broadcast mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "Allgemein" +msgid "A description needs to be set" +msgstr "Eine Beschreibung muss eingetragen werden" -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "Modus" +#, fuzzy +msgid "A file" +msgstr "Eine Datei" -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "Datum" +#, fuzzy +msgid "A group already exists with this name!" +msgstr "Eine Gruppe mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "frei" +#, fuzzy +msgid "A group is required for a location" +msgstr "Eine Speichergruppe ist erforderlich!" -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "Beschreibung" +#, fuzzy +msgid "A group is required!" +msgstr "Ein Gruppenname ist erforderlich!" -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "Hier" +#, fuzzy +msgid "A group must be selected." +msgstr "Ein Name muss eingegeben werden" -#: commons/text.php:93 -msgid "NOT" -msgstr "NICHT" +#, fuzzy +msgid "A group name is required!" +msgstr "Ein Gruppenname ist erforderlich!" -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "oder" +#, fuzzy +msgid "A host already exists with this name!" +msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "Zeile" +#, fuzzy +msgid "A host name is required!" +msgstr "Ein Hostname ist erforderlich!" -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "Fehler" +#, fuzzy +msgid "A host with that name already exists" +msgstr "Ein Host mit diesem Namen ist bereits vorhanden." -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "Fehler" +#, fuzzy +msgid "A host with this mac already exists with name" +msgstr "Ein Host mit diesem MAC bereits mit Hostname: %s" -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "Export" +msgid "A location with that name already exists." +msgstr "Ein Standort mit diesem Namen ist bereits vorhanden." -#: commons/text.php:99 -msgid "Schedule" -msgstr "Zeitplan" +#, fuzzy +msgid "A mac address is required!" +msgstr "MAC-Adresse ist erforderlich" -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "Verteilung" +#, fuzzy +msgid "A name is required!" +msgstr "Ein Name ist erforderlich!" + +msgid "A name must be defined if using the \"name\" property" +msgstr "" -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 #, fuzzy -msgid "Capture" -msgstr "Upload" +msgid "A name must be set" +msgstr "Ein Name muss eingegeben werden" -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "Multicast" +#, fuzzy +msgid "A password is required!" +msgstr "Ein Passwort ist erforderlich!" -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "Status" +#, fuzzy +msgid "A printer already exists with this name!" +msgstr "Ein Drucker mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:104 -msgid "Actions" -msgstr "Aktionen" +#, fuzzy +msgid "A printer name is required!" +msgstr "Ein Druckername ist erforderlich!" -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "Zustand" +#, fuzzy +msgid "A role already exists with this name!" +msgstr "Eine Rolle mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:107 -msgid "Kill" -msgstr "sofort abbrechen" +#, fuzzy +msgid "A rule already exists with this name." +msgstr "Eine Rolle mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "Kernel" +#, fuzzy +msgid "A site alread exists with this name!" +msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "Ort" +#, fuzzy +msgid "A site already exists with this name!" +msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "nicht verfügbar" +#, fuzzy +msgid "A snapin already exists with this name!" +msgstr "Ein Snapin mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:111 -msgid "Home" -msgstr "Startseite" +#, fuzzy +msgid "A snapin name is required!" +msgstr "Ein Snapinname ist erforderlich!" -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "Bericht" +#, fuzzy +msgid "A subnet group already exists with this name!" +msgstr "Eine Gruppe mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:113 -msgid "Reports" -msgstr "Berichte" +msgid "A subnet group is already using this group." +msgstr "" -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "Anmeldung" +#, fuzzy +msgid "A subnetgroup already exists with this name!" +msgstr "Eine Gruppe mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "In der Warteschlange" +msgid "A task already exists for this host at the scheduled tasking" +msgstr "In der Taskplanung existiert bereits ein Taks für diesen Host." -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "Vollständig" +#, fuzzy +msgid "A task state already exists with this name!" +msgstr "Ein Taskstatus mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "Unbekannt" +#, fuzzy +msgid "A task type already exists with this name!" +msgstr "Ein Task-Typ mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:118 -msgid "Force" -msgstr "zwingen" +#, fuzzy +msgid "A user already exists with this name" +msgstr "Dieser Benutzername ist bereits vorhanden!" -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "Typ" +#, fuzzy +msgid "A user name is required!" +msgstr "Ein Benutzername ist erforderlich!" -#: commons/text.php:120 -msgid "Settings" -msgstr "Einstellungen" +#, fuzzy +msgid "A username already exists with this name!" +msgstr "Dieser Benutzername ist bereits vorhanden!" -#: commons/text.php:121 -msgid "FOG" -msgstr "FOG" +msgid "A valid database connection could not be made" +msgstr "Eine gültige Datenbankverbindung konnte nicht hergestellt werden" -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 -msgid "Active" -msgstr "Aktiv" +msgid "AD Domain" +msgstr "Active Directory-Domäne" -#: commons/text.php:123 -msgid "Printers" -msgstr "Drucker" +msgid "AD Join" +msgstr "AD-Beitretung" -#: commons/text.php:124 -msgid "Directory" -msgstr "Verzeichnis" +msgid "AD OU" +msgstr "AD-OU" -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 -msgid "Active Directory" -msgstr "Active Directory" +#, fuzzy +msgid "API Settings" +msgstr "API Einstellungen" -#: commons/text.php:126 -msgid "Virus History" -msgstr "Virus-Verlauf" +msgid "API?" +msgstr "API?" -#: commons/text.php:127 -msgid "Login History" -msgstr "Login-Verlauf" +msgid "About FOG Reports" +msgstr "Über FOG-Berichte" -#: commons/text.php:128 -msgid "Image History" -msgstr "Image-Verlauf" +msgid "Accepted" +msgstr "Akzeptiert" -#: commons/text.php:129 -msgid "Snapin History" -msgstr "Snapin-Verlauf" +msgid "Access" +msgstr "Zugang" -#: commons/text.php:130 -msgid "Configuration" -msgstr "Konfiguration" +msgid "Access Control Management" +msgstr "Zugriffssteuerung" -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "Plugin" +#, fuzzy +msgid "Access Control Role General" +msgstr "Zugriffssteuerungsrolle Allgemein" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "Standorte" +#, fuzzy +msgid "Access Control Rule" +msgstr "Zugriffskontrollregeln" -#: commons/text.php:134 -msgid "License" -msgstr "Lizenz" +#, fuzzy +msgid "Access Control Rule General" +msgstr "Zugriffssteuerungsrolle Allgemein" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "Kernel-Update" +#, fuzzy +msgid "Access Control Rules" +msgstr "Zugriffskontrollregeln" -#: commons/text.php:136 #, fuzzy -msgid "iPXE General Configuration" -msgstr "iPXE allg. Konfiguration" +msgid "Access Controls" +msgstr "Zugriffskontrollen" -#: commons/text.php:137 -msgid "Client Updater" -msgstr "Client-Updater" +msgid "Access Token" +msgstr "Zugangs-Token" -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "Hostname-Wechsler" +msgid "Access level is still 0 or false" +msgstr "Zugriffsstufe ist immer noch 0 oder falsch" -#: commons/text.php:139 -msgid "Host Registration" -msgstr "Host-Registrierung" +msgid "Accessed By" +msgstr "Zugriff von" -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "Snapin-Client" +msgid "Account already linked" +msgstr "Konto ist bereits verknüpft" -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "Task Neustart" +msgid "Account linked to FOG GUI at" +msgstr "Konto verknüpft mit FOG-GUI unter" -#: commons/text.php:142 -msgid "User Cleanup" -msgstr "Benutzer-Bereinigung" +#, fuzzy +msgid "Account name to reset" +msgstr "zurückzustellender Accountname" -#: commons/text.php:143 -msgid "User Tracker" -msgstr "Benutzer-Tracker" +msgid "Account removed from FOG GUI at" +msgstr "Account von der FOG GUI entfernt" -#: commons/text.php:144 -#, php-format -msgid "%s Manager" -msgstr "%s Manager" +#, fuzzy +msgid "Account successfully added!" +msgstr "Account erfolgreich hinzugefügt" -#: commons/text.php:145 -msgid "Green FOG" -msgstr "Green FOG" +msgid "Action" +msgstr "Aktion" -#: commons/text.php:146 -msgid "Directory Cleaner" -msgstr "Verzeichnis-Bereiniger" +msgid "Actions" +msgstr "Aktionen" -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "Liste der MAC-Adressen" +msgid "Activate Plugins" +msgstr "Plugins aktivieren" -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "FOG Einstellungen" +msgid "Active" +msgstr "Aktiv" -#: commons/text.php:149 -msgid "Server Shell" -msgstr "Server-Shell" +msgid "Active Directory" +msgstr "Active Directory" -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "Log-Viewer" +#, fuzzy +msgid "Active Multi-cast Tasks" +msgstr "Aktive Multicast Tasks" -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "Konfiguration speichern" +msgid "Active Multicast Tasks" +msgstr "Aktive Multicast-Tasks" -#: commons/text.php:152 -msgid "FOG Sourceforge Page" -msgstr "FOG Sourceforge-Website" +msgid "Active Snapin Tasks" +msgstr "Aktive Snapin-Tasks" -#: commons/text.php:153 -msgid "FOG Home Page" -msgstr "FOG Homepage" +msgid "Active Tasks" +msgstr "Aktive Tasks" -#: commons/text.php:154 -msgid "New Search" -msgstr "Neue Suche" +msgid "Add" +msgstr "Hinzufügen" -#: commons/text.php:155 -#, php-format -msgid "List All %s" -msgstr "Alle %s auflisten" +msgid "Add Directory" +msgstr "Verzeichnis hinzufügen" -#: commons/text.php:156 -#, php-format -msgid "Create New %s" -msgstr "Neue %s erstellen" +msgid "Add Event" +msgstr "Ereignis hinzufügen" -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "Tasks" +#, fuzzy +msgid "Add Hosts" +msgstr "Alle Hosts" + +#, fuzzy +msgid "Add LDAP server failed!" +msgstr "Hinzufügen eines LDAP-Servers fehlgeschlagen" + +msgid "Add MAC" +msgstr "MAC hinzufügen" -#: commons/text.php:158 #, fuzzy -msgid "Client Settings" -msgstr "Client Einstellungen" +msgid "Add New Printer" +msgstr "Drucker hinzufügen" -#: commons/text.php:159 #, fuzzy -msgid "Plugins" -msgstr "Plugins" +msgid "Add Printers" +msgstr "Drucker hinzufügen" -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "grundlegende Tasks" +#, fuzzy +msgid "Add Pushbullet Account" +msgstr "Pushbullet-Account hinzufügen" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "Mitgliedschaft" +#, fuzzy +msgid "Add Rules" +msgstr "Benutzer hinzufügen" -#: commons/text.php:162 -msgid "Image Association" -msgstr "Imagezuordnung" +#, fuzzy +msgid "Add Slack Account" +msgstr "Slack Account hinzufügen" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" -msgstr "%s Menü" +#, fuzzy +msgid "Add Snapins" +msgstr "Snapin(s) hinzufügen" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "Primäre Gruppe" +msgid "Add Storage Group" +msgstr "Speichergruppe hinzufügen" -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "Alle Speicherknoten" +#, fuzzy +msgid "Add Storage Groups" +msgstr "Speichergruppe hinzufügen" -#: commons/text.php:166 msgid "Add Storage Node" msgstr "Speicherknoten hinzufügen" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "Alle Speichergruppen" +#, fuzzy +msgid "Add Subnetgroup failed!" +msgstr "Gruppe hinzufügen fehlgeschlagen!" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "Speichergruppe hinzufügen" +msgid "Add User" +msgstr "Benutzer hinzufügen" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "Aktive Tasks" +#, fuzzy +msgid "Add Users" +msgstr "Benutzer hinzufügen" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "Aktive Multicast-Tasks" +#, fuzzy +msgid "Add Windows Key failed!" +msgstr "Windows-Schlüssel hinzufügen fehlgeschlagen" -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "Aktive Snapin-Tasks" +msgid "Add any custom text you would like" +msgstr "Fügen Sie beliebigen Text hinzu, den das" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "Geplante Tasks" +#, fuzzy +msgid "Add broadcast failed!" +msgstr "Hinzufügen eines Broadcasts fehlgeschlagen!" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "Installierte Plugins" +#, fuzzy +msgid "Add failed" +msgstr "Hinzufügen fehlgeschlagen" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "Plugins installieren" +#, fuzzy +msgid "Add group failed!" +msgstr "Gruppe hinzufügen fehlgeschlagen!" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "Plugins aktivieren" +#, fuzzy +msgid "Add host failed!" +msgstr "Hinzufügen eines Hosts fehlgeschlagen!" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "Konfiguration exportieren" +#, fuzzy +msgid "Add image failed!" +msgstr "Image hinzufügen fehlgeschlagen" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "Konfiguration importieren" +#, fuzzy +msgid "Add location failed!" +msgstr "Standort hinzufügen fehlgeschlagen" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "Open Source Computer-Cloning-Lösung" +#, fuzzy, php-format +msgid "Add new role" +msgstr "Neue Rolle hinzufügen" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "Ungültige MAC-Adresse!" +#, fuzzy, php-format +msgid "Add new rule" +msgstr "Neue Regel hinzufügen" -#: commons/text.php:180 #, fuzzy -msgid "iPXE Menu Item Settings" -msgstr "iPXE Menüeinstellungen" - -#: commons/text.php:181 -msgid "iPXE Menu Customization" -msgstr "iPXE Menüanpassung" +msgid "Add printer failed!" +msgstr "Hinzufügen eines Druckers fehlgeschlagen!" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" -msgstr "iPXE neuen Menü-Eintrag" +#, fuzzy +msgid "Add role failed!" +msgstr "Hinzufügen einer Rolle fehlgeschlagen" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "Änderungen speichern" +#, fuzzy +msgid "Add rule failed!" +msgstr "Hinzufügen einer Rolle fehlgeschlagen" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "Erforderliches Datenbankfeld ist leer" +#, fuzzy +msgid "Add selected hosts" +msgstr "Ausgewählte Drucker hinzufügen" -#: commons/text.php:185 -msgid "No results found" -msgstr "Keine Ergebnisse gefunden" +#, fuzzy +msgid "Add selected images" +msgstr "ausgewählte Images hinzufügen" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s ist erforderlich" +#, fuzzy +msgid "Add selected printers" +msgstr "Ausgewählte Drucker hinzufügen" -#: commons/text.php:188 -msgid "Host Management" -msgstr "Host-Verwaltung" +#, fuzzy +msgid "Add selected rules" +msgstr "Ausgewählte Drucker hinzufügen" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "Speicherverwaltung" +#, fuzzy +msgid "Add selected snapins" +msgstr "ausgewählte Snapins hinzufügen" -#: commons/text.php:190 -msgid "Task Management" -msgstr "Task-Management" +#, fuzzy +msgid "Add selected storage groups" +msgstr "Ausgewählte Speichergruppen hinzufügen" -#: commons/text.php:191 -msgid "Client Management" -msgstr "Client-Management" +#, fuzzy +msgid "Add selected users" +msgstr "Ausgewählte Drucker hinzufügen" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "Dashboard" +#, fuzzy +msgid "Add site failed!" +msgstr "Hinzufügen eines Hosts fehlgeschlagen!" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "Service-Konfiguration" +msgid "Add snapin failed!" +msgstr "Snapin hinzufügen fehlgeschlagen" -#: commons/text.php:194 -msgid "Report Management" -msgstr "Berichteverwaltung" +#, fuzzy +msgid "Add storage node failed!" +msgstr "Hinzufügen eines Speicherknotens fehlgeschlagen!" -#: commons/text.php:195 -msgid "Printer Management" -msgstr "Druckerverwaltung" +#, fuzzy +msgid "Add task state failed!" +msgstr "Hinzufügen eines Taskstatus fehlgeschlagen!" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "FOG Konfiguration" +#, fuzzy +msgid "Add task type failed!" +msgstr "Hinzufügen eines Task-Typs fehlgeschlagen!" -#: commons/text.php:197 -msgid "Group Management" -msgstr "Gruppenverwaltung" +msgid "Add to group" +msgstr "Zu einer Gruppe hinzufügen" -#: commons/text.php:198 -msgid "Image Management" -msgstr "Imageverwaltung" +#, fuzzy +msgid "Add user failed!" +msgstr "Benutzer hinzufügen fehlgeschlagen!" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "Benutzerverwaltung" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" +msgstr "Hinzufügen von FOGPage: %s, Knoten: %s" -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "Hardwareinformationen" +msgid "Adding Key" +msgstr "Schlüssel hinzufügen" -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "Snapin-Management" +msgid "Additional Icon elements" +msgstr "zusätzliche Icon-Elemente" -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "Plugin-Management" +msgid "Additional MACs" +msgstr "Weitere MACs" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "Standortverwaltung" +#, fuzzy +msgid "Admin Group" +msgstr "Admingruppe" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "Zugriffssteuerung" +msgid "Advanced" +msgstr "Erweitert" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "FOG Hilfe" +msgid "Advanced Actions" +msgstr "Erweiterte Aktionen" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "Ausstehende Hosts" +msgid "Advanced Login Required" +msgstr "Erweiterte Anmeldung erforderlich" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "Zuletzt verteilt" +msgid "Advanced Menu Login" +msgstr "erweitertes Menü Login" -#: commons/text.php:210 #, fuzzy -msgid "Last Captured" -msgstr "Zuletzt hochgeladen" +msgid "Advanced Menu settings" +msgstr "erweiterten Einstellungen zu arbeiten" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "Verteilungsmethode" +msgid "Advanced Options" +msgstr "Erweiterte Optionen" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "Imagetyp" +msgid "Advanced Settings" +msgstr "Erweiterte Einstellungen" -#: commons/text.php:213 -msgid "Not Available" -msgstr "Nicht verfügbar" +#, fuzzy +msgid "Advanced menu command" +msgstr "Erweiterte Menübefehle" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "Hosts exportieren" +#, fuzzy +msgid "After image Action" +msgstr "Aktion nach dem Bereitstellen" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "Hosts importieren" +msgid "Ago must be boolean" +msgstr "Ago muss boolean sein" + +msgid "All" +msgstr "Alle" + +msgid "All Groups" +msgstr "Alle Gruppen" -#: commons/text.php:216 -msgid "Export Users" -msgstr "Benutzer exportieren" +msgid "All Hosts" +msgstr "Alle Hosts" -#: commons/text.php:217 -msgid "Import Users" -msgstr "Benutzer importieren" +#, fuzzy +msgid "All Pending MACs approved" +msgstr "Alle ausstehenden MACs freigegeben." -#: commons/text.php:218 -msgid "Export Images" -msgstr "Images exportieren" +msgid "All Pending MACs approved." +msgstr "Alle ausstehenden MACs freigegeben." -#: commons/text.php:219 -msgid "Import Images" -msgstr "Images importieren" +msgid "All Storage Groups" +msgstr "Alle Speichergruppen" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "Gruppen exportieren" +msgid "All Storage Nodes" +msgstr "Alle Speicherknoten" -#: commons/text.php:221 -msgid "Import Groups" -msgstr "Gruppen importieren" +msgid "All files synced for this item." +msgstr "Alle Dateien für dieses Element wurden synchronisiert." -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "Snapins exportieren" +msgid "All methods of binding have failed" +msgstr "Alle Methoden der Bindung sind fehlgeschlagen" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "Snapins importieren" +#, fuzzy +msgid "All snapins" +msgstr "Alle Snapins" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "Drucker exportieren" +msgid "Allows editing/creating of Task States fog currently has." +msgstr "" +"Ermöglicht das Bearbeiten / Erstellen von Taskstatus, die FOG zurzeit hat." -#: commons/text.php:225 -msgid "Import Printers" -msgstr "Drucker importieren" +msgid "Allows editing/creating of Task Types fog currently has." +msgstr "" +"Erlaubt das Bearbeiten/Erstellen von Task-Typen, die der FOG derzeit hat" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" -msgstr "Equipmentleihe" +#, fuzzy +msgid "Already created" +msgstr "Bereits erstellt" -#: commons/text.php:227 -msgid "Host List" -msgstr "Hostliste" +msgid "Already registered as" +msgstr "Bereits registriert als" -#: commons/text.php:228 -msgid "Imaging Log" -msgstr "Imaging Log" +#, fuzzy +msgid "Also confirm that the database is indeed running" +msgstr "Überprüfen Sie auch, ob die Datenbank tatsächlich ausgeführt wird" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" -msgstr "Ausstehende MACs" +msgid "Although there are multiple levels already" +msgstr "Obwohl es bereits mehrere Ebenen zwischen" -#: commons/text.php:230 -msgid "Snapin Log" -msgstr "Snapin-Log" +msgid "An image already exists with this name!" +msgstr "Ein Image mit diesem Namen ist bereits vorhanden!" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "Berichte hochladen" +msgid "Annually" +msgstr "Jährlich" -#: commons/text.php:233 -msgid "Main Menu" -msgstr "Hauptmenü" +#, fuzzy +msgid "Applications" +msgstr "Anwendungen" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "ungültiger Login" +#, fuzzy +msgid "Approve" +msgstr "freigeben" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "Hier nicht erlaubt" +#, fuzzy +msgid "Approve All Pending MACs for All Hosts" +msgstr "Alle ausstehenden MACs für alle Hosts freigeben" -#: commons/text.php:237 -msgid "Management Login" -msgstr "Management-Login" +#, fuzzy +msgid "Approve Host" +msgstr "Host freigeben" -#: commons/text.php:238 -msgid "Password" -msgstr "Passwort" +#, fuzzy +msgid "Approve MAC" +msgstr "MAC freigeben" -#: commons/text.php:239 -msgid "Estimated FOG Sites" -msgstr "Geschätzte FOG-Sites" +#, fuzzy +msgid "Approve Selected MACs" +msgstr "Ausgewählten MAcs freigeben" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "Neueste Version" +#, fuzzy +msgid "Approve Success" +msgstr "Freigabe erfolgreich" -#: commons/text.php:241 #, fuzzy -msgid "Latest Development Version" -msgstr "Neueste Entwicklungsversion" +msgid "Approve all pending macs" +msgstr "alle ausstehenden MACs freigeben" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "Image ist geschützt und kann nicht gelöscht werden" +#, fuzzy +msgid "Approve all pending? " +msgstr "Alle ausstehenden freigeben?" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "Snapin ist geschützt und kann nicht gelöscht werden" +#, fuzzy +msgid "Approve selected hosts" +msgstr "Ausgewählte Hosts freigeben" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "Keine Master-Knoten sind aktiviert, um dieses Image zu löschen" +msgid "Approve this host?" +msgstr "Diesen Host freigeben?" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "Löschen der Imagedateien fehlgeschlagen" +#, fuzzy +msgid "Approved" +msgstr "freigegeben" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "Löschen der Datei fehlgeschlagen" +#, fuzzy +msgid "Are you sure you wish to" +msgstr "Sind Sie sicher, dass Sie die Datenbank" -#: commons/text.php:249 -msgid "Not Registered Hosts" -msgstr "Nicht registrierte Hosts" +msgid "Array" +msgstr "Array" -#: commons/text.php:250 -msgid "Registered Hosts" -msgstr "Registrierte Hosts" +msgid "Assigned Image" +msgstr "Zugeordnetes Image" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "Alle Hosts" +msgid "Assignment saved successfully" +msgstr "Zuweisung erfolgreich gespeichert" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "Debug Optionen" +#, fuzzy +msgid "Associate rule failed!" +msgstr "Hinzufügen einer Rolle fehlgeschlagen" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "Erweiterte Optionen" +#, fuzzy +msgid "Associated Sites" +msgstr "zugehörige Sites" -#: commons/text.php:254 -msgid "Advanced Login Required" -msgstr "Erweiterte Anmeldung erforderlich" +msgid "Associates the files on nodes" +msgstr "Ordnet die Dateien auf Knoten zu" -#: commons/text.php:255 -msgid "Pending Registered Hosts" -msgstr "Ausstehende registrierte Hosts" +#, fuzzy +msgid "Attempting to perform" +msgstr "Versuche, durchzuführen" -#: commons/text.php:257 -msgid "n/a" -msgstr "nicht verfügbar" +msgid "Attempting to ping" +msgstr "Versuche, anzupingen" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "Das Verzeichnis existiert bereits" +msgid "Auto" +msgstr "Auto" -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "Zeit bereits vorhanden" +msgid "Auto Log Out Time (in minutes)" +msgstr "Auto-Logout-Zeit (in Minuten)" -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "Benutzer ist bereits vorhanden" +#, fuzzy +msgid "Available Snapins" +msgstr "verfügbare Snapins" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "Keine aktive Snapin-Jobs für den Host gefunden" +msgid "BIOS Date" +msgstr "BIOS-Datum" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "Fehler beim Erstellen eines Tasks" +msgid "BIOS Vendor" +msgstr "BIOS-Anbieter" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "Host ist bereits Mitglied eines aktiven Tasks" +msgid "BIOS Version" +msgstr "BIOS-Version" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "Host ist nicht gültig" +msgid "Bandwidth" +msgstr "Bandbreite" -#: commons/text.php:267 -#, fuzzy -msgid "Group is not valid" -msgstr "Gruppe ist nicht gültig" +msgid "Bandwidth should be numeric and greater than 0" +msgstr "Bandbreite sollte numerisch und größer als 0 sein." -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "Task-Typ ist nicht gültig" +msgid "Barcode Numbers" +msgstr "Barcode-Nummern" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "Image ist nicht gültig" +msgid "Base Only" +msgstr "Nur Basis" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "Die zugewiesene Image Speichergruppe ist nicht gültig." +#, fuzzy +msgid "Basic Settings" +msgstr "Grundeinstellungen" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "Mit diesem Host sind keine Snapins verknüpft" +msgid "Basic Tasks" +msgstr "grundlegende Tasks" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Snapins sind auf diesem Host schon verteilt" +msgid "Bind DN" +msgstr "DN binden" -#: commons/text.php:275 #, fuzzy -msgid "Could not find a Storage Node is" -msgstr "Ein Speicherknoten konnte nicht gefunden werden" +msgid "Bind Password" +msgstr "Passwort binden" + +msgid "Bitrate" +msgstr "Bitrate" + +msgid "Blank for default" +msgstr "Leer für Standard" -#: commons/text.php:276 #, fuzzy -msgid "there one enabled within this Storage Group" -msgstr "da innerhalb diese Speichergruppe einer aktiviert ist" +msgid "Boot Exit settings" +msgstr "Boot-Exit Einstellungen" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" -msgstr "" -"Der einer/mehrere Speichergruppen zugeordnete Speicherknoten ist ungültig" +msgid "Boot Key Sequence" +msgstr "Boot-Tastensequenz" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "geplanter Termin liegt in der Vergangenheit" +#, fuzzy +msgid "Boot Options" +msgstr "Boot-Optionen:" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "In der Taskplanung existiert bereits ein Taks für diesen Host." +#, fuzzy +msgid "Broadcast Create Fail" +msgstr "Erstellen eines Broadcasts fehlgeschlagen" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "Minutenwert ist nicht gültig" +#, fuzzy +msgid "Broadcast Create Success" +msgstr "Broadcast erfolgreich erstellt" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "Stundenwert ist nicht gültig" +msgid "Broadcast IP" +msgstr "Broadcast-IP" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "Der Wert des Monatstags ist nicht gültig" +msgid "Broadcast Name" +msgstr "Broadcastname" -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "Monats-Wert ist nicht gültig" +#, fuzzy +msgid "Broadcast Update Fail" +msgstr "Aktualisieren des Broadcasts fehlgeschlagen!" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "Der Wert des Tags der Woche ist nicht gültig" +#, fuzzy +msgid "Broadcast Update Success" +msgstr "Broadcast erfolgreich aktualisiert" -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "Kein Host mit dieser MAC-Adresse gefunden" +#, fuzzy +msgid "Broadcast added!" +msgstr "Broadcast hinzugefügt!" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "Bitte wählen Sie eine Option" +#, fuzzy +msgid "Broadcast update failed!" +msgstr "Aktualisieren des Broadcasts fehlgeschlagen!" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" -msgstr "Fehler: Es gibt mehrere Hosts mit der gleichen MAC-Adresse" +#, fuzzy +msgid "Broadcast updated!" +msgstr "Broadcast aktualisiert" -#: commons/text.php:302 -msgid "Session timeout" -msgstr "Session-Timeout" +msgid "Browse" +msgstr "browse" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "Storage Node" +msgid "CPU Cache" +msgstr "CPU-Cache" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "Speichergruppe" +msgid "CPU Count" +msgstr "CPU-Anzahl" -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "Diagramm aktiviert" +msgid "CPU Manufacturer" +msgstr "CPU-Hersteller" -#: commons/text.php:307 -msgid "Master Node" -msgstr "Master-Knoten" +msgid "CPU Max Speed" +msgstr "CPU-Höchstgeschwindigkeit" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "ist Master-Knoten" +msgid "CPU Model" +msgstr "CPU-Modell" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "Speicherknotenname" +msgid "CPU Normal Speed" +msgstr "CPU Normalgeschwindigkeit" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "Speicherknotenbeschreibung" +msgid "CPU Speed" +msgstr "CPU-Geschwindigkeit" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" -msgstr "IP-Adresse" +msgid "CPU Type" +msgstr "CPU-Typ" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "Maximale Clients" +msgid "CPU Version" +msgstr "CPU-Version" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" -msgstr "Imagepfad" +msgid "CUPS Printer" +msgstr "CUPS Drucker" -#: commons/text.php:314 -msgid "FTP Path" -msgstr "FTP-Pfad" +msgid "Call" +msgstr "Aufruf" -#: commons/text.php:315 -msgid "Snapin Path" -msgstr "Snapin-Pfad" +msgid "Can be a comma seperated list." +msgstr "" -#: commons/text.php:316 -msgid "SSL Path" -msgstr "SSL-Pfad" +msgid "Can not redeclare route" +msgstr "Route kann nicht nochmal neu definiert werden" -#: commons/text.php:317 -msgid "Interface" -msgstr "Schnittstelle" +msgid "Cancelled due to new tasking." +msgstr "Abgebrochen aufgrund neuer Aufgabe (Task)" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "ist aktiviert" +msgid "Cancelled task" +msgstr "Stornierter Task" -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "Diagramm ist aktiviert" +msgid "Cannot add Primary mac as additional mac" +msgstr "Primäre MAC kann nicht als zusätzliche MAC hinzugefügt werden." -#: commons/text.php:320 -msgid "On Dashboard" -msgstr "auf dem Dashboard" +#, fuzzy +msgid "Cannot add a pre-existing primary mac" +msgstr "" +"Eine bereits bestehende primäre MAC kann nicht als eine ausstehende MAC " +"hinzugefügt werden." -#: commons/text.php:321 -msgid "Management Username" -msgstr "Management-Benutzernamen" +#, fuzzy +msgid "Cannot bind to the LDAP server" +msgstr "Anmeldung am LDAP-Server nicht möglich" -#: commons/text.php:322 -msgid "Management Password" -msgstr "Management-Passwort" +msgid "Cannot cancel tasks this way" +msgstr "Tasks abbrechen auf diese Weise nicht möglich" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "Seien Sie seeehr vorsichtig mit diesen Einstellungen" +msgid "Cannot change image when in tasking" +msgstr "Das Image kann während eines Tasks nicht geändert werden" -#: commons/text.php:326 #, fuzzy -msgid "This setting" -msgstr "Diese Einstellung" - -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "kann im Falle einer fehlerhaften Eingabe" +msgid "Cannot connect to" +msgstr "kann keine Verbindung aufbauen" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" -msgstr "alle Images auf sämtlichen" +msgid "Cannot connect to database" +msgstr "Kann keine Verbindung zur Datenbank herstellen" -#: commons/text.php:329 #, fuzzy -msgid "all current storage nodes" -msgstr "momentanen Speicherknoten löschen." +msgid "Cannot connect to ftp server" +msgstr "Verbindung zum FTP-Server nicht möglich" -#: commons/text.php:330 #, fuzzy -msgid "The 'Is Master Node' setting defines which" -msgstr "Die Einstellung 'ist Masterknoten' definiert," +msgid "Cannot create tasking as image is not enabled" +msgstr "" +"Es können keine Tasks erstellt werden, solange das Image nicht freigegeben " +"ist" -#: commons/text.php:331 -msgid "node is the distributor of the images" -msgstr "welcher Knoten die Images verteilt." +msgid "Cannot set tasking as image is not enabled" +msgstr "" +"Es können keine Tasks ausgeführt werden, solange das Image nicht freigegeben " +"ist" -#: commons/text.php:332 -msgid "If you add a blank node" -msgstr "Wenn Sie einen leeren Knoten hinzufügen," +#, fuzzy +msgid "Cannot set tasking to invalid hosts" +msgstr "Es können keine Tasks auf invalide Hosts ausgeführt werden!" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" -msgstr "also einen ohne Images," +#, fuzzy +msgid "Cannot set tasking to pending hosts" +msgstr "Es können keine Tasks auf ausstehende Hosts ausgeführt werden!" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "und diesen als Master einstellen," +msgid "Cannot view from browser" +msgstr "Kann vom Browser nicht angezeigt werden" -#: commons/text.php:335 -msgid "it will distribute its store" -msgstr "verteilt er seinen Speicher," +msgid "Capone Deploy" +msgstr "Capone Verteilung" -#: commons/text.php:336 -msgid "which is empty" -msgstr "der ja leer ist," +#, fuzzy +msgid "Capture" +msgstr "Upload" -#: commons/text.php:337 #, fuzzy -msgid "to all nodes in the group" -msgstr "auf alle Knoten in der Gruppe." +msgid "Captured" +msgstr "Erstellt" -#: commons/text.php:343 -msgid "Storage Node already exists" -msgstr "Speicherknoten ist bereits vorhanden." +#, fuzzy +msgid "Change password" +msgstr "Passwort ändern" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "Speicherknoten-IP" +msgid "Channel call is invalid" +msgstr "Kanalaufruf ist ungültig" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "Speicherknoten max. Clients" +msgid "Chassis Asset" +msgstr "Gehäuse-Asset" -#: commons/text.php:354 -msgid "Storage Node Interface" -msgstr "Speicherknoten-Schnittstelle" +msgid "Chassis Manufacturer" +msgstr "Gehäuse-Hersteller" -#: commons/text.php:358 -msgid "Storage Node Username" -msgstr "Speicherknoten Benutzername" +msgid "Chassis Serial" +msgstr "Gehäuse-Serien" -#: commons/text.php:362 -msgid "Storage Node Password" -msgstr "Speicherknoten Passwort" +msgid "Chassis Version" +msgstr "Gehäuse-Version" -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "Speicherknoten erstellt" +msgid "Chat is also available on the forums for more realtime help" +msgstr "Für mehr Echtzeit-Hilfe gibt es auch die Chat-Funktion. " -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "Speicherknoten aktualisiert" +#, fuzzy +msgid "Check here to see what hosts can be added" +msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "Datenbankupdate fehlgeschlagen" +#, fuzzy +msgid "Check here to see what images can be added" +msgstr "Prüfen Sie hier, welche Images hinzugefügt werden können" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "Löschen bitte bestätigen" +msgid "Check here to see what printers can be added" +msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "Zerstören des Speicherknotens fehlgeschlagen" +#, fuzzy +msgid "Check here to see what rules can be added" +msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "Speicherknoten gelöscht" +msgid "Check here to see what snapins can be added" +msgstr "Überprüfen Sie hier, welche Snapins hinzugefügt werden können" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" -msgstr "Name der Speichergruppe" +#, fuzzy +msgid "Check here to see what storage groups can be added" +msgstr "Prüfen Sie hier, welche Speichergruppen hinzugefügt werden können" -#: commons/text.php:371 -msgid "Storage Group Description" -msgstr "Speichergruppe Beschreibung" +#, fuzzy +msgid "Check here to see what users can be added" +msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "Speichergruppe ist bereits vorhanden." +msgid "Check that database is running" +msgstr "Überprüfen Sie, ob die Datenbank ausgeführt wird" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "Speichergruppe erstellt" +#, fuzzy +msgid "Checkin Time" +msgstr "Check-in-Zeit" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "Speichergruppe aktualisiert" +msgid "Checking if I am the group manager" +msgstr "Prüfe, ob ich der Gruppenmanager bin" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "Sie müssen mindestens eine Speichergruppe haben" +msgid "Checksum" +msgstr "Prüfsumme" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "Speichergruppe gelöscht" +msgid "Checksums" +msgstr "Prüfsummen" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "Zerstören der Speichergruppe fehlgeschlagen" +msgid "City/State/Zip" +msgstr "Stadt/Staat/PLZ" -#: commons/text.php:382 -msgid "Invalid Class" -msgstr "Ungültige Klasse" +#, fuzzy +msgid "Class" +msgstr "Klasse" -#: commons/text.php:383 msgid "Class is not extended from FOGPage" msgstr "Klasse wird nicht von FOGPage erweitert." -#: commons/text.php:384 -msgid "Do not list on menu" -msgstr "Nicht im Menü aufführen" +msgid "Class must extend event" +msgstr "Die Klasse muss das Ereignis verlängern." -#: commons/text.php:386 -msgid "Language" -msgstr "Sprache" +msgid "Class must extend hook" +msgstr "Klasse muss Haken erweitern." -#: commons/init.php:433 #, fuzzy -msgid "Missing one or more extensions." -msgstr "Eine odere mehrere Erweiterungen fehlen" +msgid "Class name must be a string" +msgstr "Klassenname muss eine Zeichenfolge sein." -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 -#, fuzzy -msgid "No valid tasks found" -msgstr "Keine gültigen Tasks gefunden" +msgid "Clear" +msgstr "frei" -#: lib/client/snapinclient.class.php:306 #, fuzzy -msgid "Snapin is invalid" -msgstr "Snapin ist ungültig" +msgid "Clear Fields" +msgstr "Felder leeren" -#: lib/client/snapinclient.class.php:328 #, fuzzy -msgid "Snapin Task is invalid" -msgstr "Snapin Task ist ungültig" +msgid "Clear all fields?" +msgstr "alle Felder leeren?" -#: lib/client/snapinclient.class.php:411 #, fuzzy -msgid "Invalid task id sent" -msgstr "Ungültige Task-ID gesendet" +msgid "Clear all history" +msgstr "gesamten Verlauf löschen" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" -msgstr "Ungültiges Snapin-Tasking" +msgid "Click" +msgstr "Klicken Sie" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "Ungültiges Snapin" +msgid "Click Here" +msgstr "Klicken Sie hier" -#: lib/client/snapinclient.class.php:500 -#, fuzzy -msgid "Invalid task id" -msgstr "Ungültige Task-ID" +msgid "Client" +msgstr "Client" -#: lib/client/snapinclient.class.php:510 -#, fuzzy -msgid "Invalid Snapin Tasking object" -msgstr "Ungültiges Snapin-Tasking-Objekt" +msgid "Client Count" +msgstr "Anzahl der Clients" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" -msgstr "Ungültige Speichergruppe" +msgid "Client Management" +msgstr "Client-Management" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "Ungültiger Speicherknoten" +msgid "Client Modules Change Fail" +msgstr "Änderung des Client Moduls fehlgeschlagen" -#: lib/client/snapinclient.class.php:587 #, fuzzy -msgid "Cannot connect to ftp server" -msgstr "Verbindung zum FTP-Server nicht möglich" - -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." -msgstr "Ausstehend..." +msgid "Client Modules Change Success" +msgstr "Client Modul erfolgreich geändert" -#: lib/client/snapinclient.class.php:628 #, fuzzy -msgid "Could not read snapin file" -msgstr "Snapin-Datei konnte nicht gelesen werden." +msgid "Client Settings" +msgstr "Client Einstellungen" -#: lib/client/usertrack.class.php:67 -#, fuzzy -msgid "Postfix requires an action of login" -msgstr "Postfix erfordert die Aktion Login," +msgid "Client Updater" +msgstr "Client-Updater" -#: lib/client/usertrack.class.php:68 #, fuzzy -msgid "logout" -msgstr "Logout" - -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" -msgstr "oder Start zum Ausführen" +msgid "Client Version" +msgstr "Client-Version" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" -msgstr "Postfix erfordert die Aktion login, logout oder start zum Ausführen" +msgid "Clients" +msgstr "Clients" -#: lib/client/usertrack.class.php:139 #, fuzzy -msgid "Replay from journal" -msgstr "Wiedergabe aus dem Journal" +msgid "Command" +msgstr "Befehl" -#: lib/client/usertrack.class.php:140 -#, fuzzy -msgid "real insert time" -msgstr "Echte Zeit einfügen" +msgid "Complete" +msgstr "Vollständig" -#: lib/client/usertrack.class.php:142 #, fuzzy -msgid "Login time" -msgstr "Anmeldezeit" - -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "Keine Verzeichnisse definiert, die bereinigt werden sollen" +msgid "Complete Time" +msgstr "Fertigstellungszeit" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "Ausstehende Registrierung erstellt von FOG_CLIENT" +msgid "Completed" +msgstr "Abgeschlossen" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 #, fuzzy -msgid "Too many MACs" -msgstr "zu viele MACs" +msgid "Completed imaging" +msgstr "Abgeschlossen" + +msgid "Compression" +msgstr "Kompression" + +msgid "Computer Information" +msgstr "Computer-Informationen" -#: lib/client/registerclient.class.php:110 #, fuzzy -msgid "Only allowed to have" -msgstr "Sie dürfen nur" +msgid "Computer Model" +msgstr "Computermodell" -#: lib/client/registerclient.class.php:112 #, fuzzy -msgid "additional macs" -msgstr "zusätzliche MACs haben" +msgid "Config File" +msgstr "Config-Datei" -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "Benötigt Zeichenfolge von ask, get oder list" +msgid "Configuration" +msgstr "Konfiguration" -#: lib/client/updateclient.class.php:70 #, fuzzy -msgid "If action of ask or get" -msgstr "Bei Ausführung von aks oder get" +msgid "Configuration Import/Export" +msgstr "Konfiguration Import/Export" -#: lib/client/updateclient.class.php:71 -#, fuzzy -msgid "we need a file name in the request" -msgstr "wird ein Dateiname in der Anfrage benötigt" +msgid "Configuration Save" +msgstr "Konfiguration speichern" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 #, fuzzy -msgid "Invalid data found" -msgstr "Ungültige Daten gefunden" +msgid "Confirm tasking" +msgstr "Bestätige Task" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" -msgstr "Eine gültige Datenbankverbindung konnte nicht hergestellt werden" +msgid "Conflicting path/file" +msgstr "widersprüchliche(r) Pfad/Datei" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" -msgstr "Verbindung nicht möglich" +#, fuzzy +msgid "Copy from existing" +msgstr "Kopie von bereits existierenden" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" -msgstr "Fehler beim" +#, fuzzy +msgid "Could not find a Storage Node in this group" +msgstr "In dieser Gruppe wurde kein Speicherknoten gefunden" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "Keine Abfrage gesendet" +#, fuzzy +msgid "Could not find a Storage Node is" +msgstr "Ein Speicherknoten konnte nicht gefunden werden" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" -msgstr "Keine Datenbank zum Arbeiten" +#, fuzzy +msgid "Could not find any" +msgstr "Nichts konnte gefunden werden" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "Kein Abfrageergebnis, verwenden Sie zuerst query()" +msgid "Could not find temp filename" +msgstr "Temporärer Dateiname konnte nicht gefunden werden." -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" -msgstr "Keine gültige Klasse gesendet" +#, fuzzy +msgid "Could not notify" +msgstr "Konnte nicht benachrichtigen" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" -msgstr "Zeilennummer nicht richtig eingestellt" +#, fuzzy +msgid "Could not read snapin file" +msgstr "Snapin-Datei konnte nicht gelesen werden." -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" -msgstr "Keine Daten zurückgegeben" +msgid "Could not read tmp file." +msgstr "Tmp-Datei konnte nicht gelesen werden." -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" -msgstr "Nachricht" +#, fuzzy +msgid "Could not register" +msgstr "Konnte nicht registriert werden." -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" -msgstr "Überprüfen Sie, ob die Datenbank ausgeführt wird" +msgid "Create" +msgstr "Erstellen" -#: lib/db/pdodb.class.php:114 #, fuzzy -msgid "SQL Error" -msgstr "SQL-Fehler" +msgid "Create Image" +msgstr "Image erstellen" -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" -msgstr "Fehlermeldung" +#, php-format +msgid "Create New %s" +msgstr "Neue %s erstellen" -#: lib/db/pdodb.class.php:208 #, fuzzy -msgid "No link established to the database" -msgstr "Keine Verbindung zur Datenbank hergestellt" +msgid "Create New Access Control Role" +msgstr "Neue Zugriffssteuerungsrolle erstellen" -#: lib/db/pdodb.class.php:264 #, fuzzy -msgid "No query passed" -msgstr "Keine Abfrage übergeben" +msgid "Create New Key" +msgstr "Neuen Schlüssel erstellen" -#: lib/db/pdodb.class.php:290 #, fuzzy -msgid "no database to" -msgstr "Keine Datenbank zum" - -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" -msgstr "Keine Verbindung zur Datenbank" - -#: lib/db/pdodb.class.php:426 -msgid "Error Code" -msgstr "Fehlercode" - -#: lib/db/pdodb.class.php:430 -msgid "Debug" -msgstr "Debug" - -#: lib/db/pdodb.class.php:435 -msgid "Cannot connect to database" -msgstr "Kann keine Verbindung zur Datenbank herstellen" +msgid "Create New LDAP" +msgstr "Neues LDAP erstellen" -#: lib/db/pdodb.class.php:449 #, fuzzy -msgid "Database connection unavailable" -msgstr "Datenbank nicht verfügbar" +msgid "Create New Location" +msgstr "Neuen Standort erstellen" -#: lib/fog/bootmenu.class.php:1498 #, fuzzy -msgid "No valid storage nodes found" -msgstr "Keine gültigen Speicherknoten gefunden" - -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "Registriert" - -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "Ereignisname muss eine Zeichenfolge sein." - -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" -msgstr "Listener muss ein Array oder ein Objekt sein" +msgid "Create New Printer" +msgstr "Neuen Drucker erstellen" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "Die Klasse muss das Ereignis verlängern." +#, fuzzy +msgid "Create New Snapin" +msgstr "Neues Snapin erstellen" -#: lib/fog/eventmanager.class.php:76 #, fuzzy -msgid "Second paramater must be in array(class,function)" -msgstr "Zweiter Parameter muss innerhalb des Arrays (Klasse, Funktion) sein" +msgid "Create New SubnetGroup?" +msgstr "Neue Gruppe erstellen" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "Klasse muss Haken erweitern." +msgid "Create New iPXE Menu Entry" +msgstr "Neuen iPXE Menü-Eintrag erstellen" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "Diese Methode ist nicht vorhanden" +#, fuzzy +msgid "Create Report?" +msgstr "Bericht erstellen?" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" -msgstr "Register muss von Haken oder Ereignissen gemanagt werden" +#, fuzzy +msgid "Create Rule?" +msgstr "Regel erstellen?" -#: lib/fog/eventmanager.class.php:102 #, fuzzy -msgid "Could not register" -msgstr "Konnte nicht registriert werden." +msgid "Create Site" +msgstr "Erstellen" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 #, fuzzy -msgid "Event" -msgstr "Ereignis" +msgid "Create Storage Group" +msgstr "Speichergruppe erstellen" -#: lib/fog/eventmanager.class.php:107 #, fuzzy -msgid "Class" -msgstr "Klasse" +msgid "Create Storage Node" +msgstr "Speicherknoten erstellen" -#: lib/fog/eventmanager.class.php:147 #, fuzzy -msgid "Event Data must be an array" -msgstr "Ereignisdaten müssen ein Array sein." +msgid "Create Task state" +msgstr "Neuen Task-Status erstellen" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "Ereignis und Daten sind nicht gesetzt" +#, fuzzy +msgid "Create Task type" +msgstr "Neuen Task-Typ erstellen" -#: lib/fog/eventmanager.class.php:165 #, fuzzy -msgid "Could not notify" -msgstr "Konnte nicht benachrichtigen" +msgid "Create WOL Broadcast?" +msgstr "WOLBroadcast erstellen?" -#: lib/fog/fogbase.class.php:443 #, fuzzy -msgid "Class name must be a string" -msgstr "Klassenname muss eine Zeichenfolge sein." +msgid "Create new PM Schedule" +msgstr "Neuen Power-Management-Zeitplan erstellen" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "Ungültiger Host" +msgid "Create new group" +msgstr "Neue Gruppe erstellen" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 #, fuzzy -msgid "Key must be a string or index" -msgstr "Schlüsselname muss eine Zeichenfolge sein." +msgid "Create user?" +msgstr "Benutzer erstellen?" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." -msgstr "" -"Schlüsselname muss ein Array von Schlüsseln sein oder eine Zeichenfolge haben" +msgid "Created By" +msgstr "Erstellt von" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" -msgstr "Keine Daten" +#, fuzzy +msgid "Created Tasks For" +msgstr "Erstellte Aufgaben für" -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" -msgstr "Keine Zahl" +msgid "Created by FOG Reg on" +msgstr "Erstellt von FOG Reg am" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" -msgstr "Bereichsvariable muss boolean sein" +msgid "Created file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" -msgstr "Ago muss boolean sein" +#, fuzzy +msgid "Credits" +msgstr "Credits" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" -msgstr "Diff Parameter muss numerisch sein" +msgid "Cron" +msgstr "Cron" + +msgid "Cron Schedule" +msgstr "Cron-Zeitplan" + +msgid "Cross platform" +msgstr "Plattformübergreifend" -#: lib/fog/fogbase.class.php:1347 #, fuzzy -msgid "Unit of time must be a string" -msgstr "Zeiteinheit muss eine Zeichenfolge sein." +msgid "Current Associations" +msgstr "Momentane Zugehörigkeiten" -#: lib/fog/fogbase.class.php:1351 #, fuzzy -msgid "In" -msgstr "In " +msgid "Current Power Management settings" +msgstr "Momentane Power Management Einstellungen" + +msgid "Current Records" +msgstr "Aktuelle Datensätze" -#: lib/fog/fogbase.class.php:1354 #, fuzzy -msgid "ago" -msgstr "vor" +msgid "Current Sessions" +msgstr "Aktuelle Sitzungen" -#: lib/fog/fogbase.class.php:1382 #, fuzzy -msgid "Old key must be a string" -msgstr "Alter Schlüsselname muss eine Zeichenfolge sein." +msgid "Current files" +msgstr "Aktuelle Datensätze" -#: lib/fog/fogbase.class.php:1385 #, fuzzy -msgid "New key must be a string" -msgstr "Neuer Schlüsselname muss eine Zeichenfolge sein." +msgid "Current settings" +msgstr "Momentane Einstellungen" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" -msgstr "" +msgid "DMI Field" +msgstr "DMI-Feld" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" -msgstr "" +msgid "DMI Key" +msgstr "DMI-Schlüssel" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "Privater Schlüsselpfad nicht gefunden" +msgid "DMI Result" +msgstr "DMI-Ergebnis" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "Privater Schlüssel nicht gefunden" +msgid "Daily" +msgstr "Täglich" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" -msgstr "Private Schlüssel nicht lesbar" +msgid "Dashboard" +msgstr "Dashboard" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "Privater Schlüssel ist fehlgeschlagen" +msgid "Data is blank" +msgstr "" + +msgid "Data must be an array or a callable item." +msgstr "Die Daten müssen ein Array oder ein abrufbares Element sein" -#: lib/fog/fogbase.class.php:1677 #, fuzzy -msgid "Failed to decrypt data on server" -msgstr "Fehler beim Entschlüsseln der Daten" +msgid "Database" +msgstr "Datenbank" -#: lib/fog/fogbase.class.php:1910 #, fuzzy -msgid "Txt must be a string" -msgstr "Txt muss eine Zeichenfolge sein." +msgid "Database Failure" +msgstr "Datenbankfehler!" -#: lib/fog/fogbase.class.php:1913 #, fuzzy -msgid "Level must be an integer" -msgstr "Level muss eine integer sein." +msgid "Database Reverted" +msgstr "Datenbank wurde zurückgesetzt." + +msgid "Database SQL" +msgstr "Datenbank SQL" + +msgid "Database Schema Installer / Updater" +msgstr "Datenbank-Schema Installer / Updater" + +msgid "Database Update Failed" +msgstr "Datenbankupdate fehlgeschlagen" -#: lib/fog/fogbase.class.php:1941 #, fuzzy -msgid "String must be a string" -msgstr "String muss eine Zeichenfolge sein." +msgid "Database changes reverted!" +msgstr "Datenbankänderungen rückgängig gemacht" -#: lib/fog/fogbase.class.php:2067 #, fuzzy -msgid "Key must be a string" -msgstr "Schlüsselname muss eine Zeichenfolge sein." +msgid "Database connection unavailable" +msgstr "Datenbank nicht verfügbar" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" -msgstr "Zeile" +#, fuzzy +msgid "Database imported and added successfully!" +msgstr "Datenbank erfolgreich importiert und hinzugefügt" -#: lib/fog/fogcontroller.class.php:129 #, fuzzy -msgid "Table not defined for this class" -msgstr "Keine Datenbank-Tabelle für diese Klasse definiert" +msgid "Database not available" +msgstr "Datenbank nicht verfügbar" -#: lib/fog/fogcontroller.class.php:132 #, fuzzy -msgid "Fields not defined for this class" -msgstr "Keine Datenbankfelder für diese Klasse definiert" +msgid "Database save failed" +msgstr "Datenbankspeicherung fehlgeschlagen" + +msgid "Date" +msgstr "Datum" -#: lib/fog/fogcontroller.class.php:145 #, fuzzy -msgid "Record not found" -msgstr "Datensatz wurde nicht gefunden, Fehler: %s" +msgid "Date and Time" +msgstr "Datum und Zeit" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" -msgstr "Wert des Schlüssels zurückgeben" +msgid "Date of checkout" +msgstr "Datum der Abreise" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "Wert" +msgid "Day of month value is not valid" +msgstr "Der Wert des Monatstags ist nicht gültig" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" -msgstr "Kein Schlüssel wurde angefordert" +msgid "Day of week value is not valid" +msgstr "Der Wert des Tags der Woche ist nicht gültig" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" -msgstr "Ungültiger Schlüssel wurde gesetzt" +msgid "Debug" +msgstr "Debug" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" -msgstr "Einstellungen Schlüssel" +msgid "Debug Options" +msgstr "Debug Optionen" -#: lib/fog/fogcontroller.class.php:267 -#, fuzzy -msgid "Set failed" -msgstr "Service-Update fehlgeschlagen" +msgid "Default" +msgstr "Standard" + +msgid "Default Height" +msgstr "Standardhöhe" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 #, fuzzy -msgid "Key" -msgstr "DMI-Schlüssel" +msgid "Default Item" +msgstr "Standard-Eintrag:" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "Ungültiger Schlüssel wurde hinzugefügt" +msgid "Default Refresh Rate" +msgstr "Standard-Bildwiederholrate" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "Schlüssel hinzufügen" +msgid "Default Width" +msgstr "Standardbreite" -#: lib/fog/fogcontroller.class.php:317 #, fuzzy -msgid "Add failed" -msgstr "Hinzufügen fehlgeschlagen" +msgid "Default is disabled" +msgstr "Standard ist deaktiviert" -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" -msgstr "Ungültiger Schlüssel wurde entfernt" +msgid "Default log out time (in minutes)" +msgstr "Standard Logout-Zeit (in Minuten)" -#: lib/fog/fogcontroller.class.php:359 -#, fuzzy -msgid "Removing Key" -msgstr "Enfernen des Schlüssels" +msgid "Delayed" +msgstr "Verzögert" -#: lib/fog/fogcontroller.class.php:371 -#, fuzzy -msgid "Remove failed" -msgstr "Entfernen fehlgeschlagen" +msgid "Delayed Start" +msgstr "Verzögerter Start" -#: lib/fog/fogcontroller.class.php:456 -#, fuzzy -msgid "Saving data for" -msgstr "Speichern von Daten für %s Objekt" +msgid "Delete" +msgstr "Löschen" -#: lib/fog/fogcontroller.class.php:458 #, fuzzy -msgid "object" -msgstr "Objekt" - -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" -msgstr "ID" +msgid "Delete Fail" +msgstr "Löschen fehlgeschlagen" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "NAME" +msgid "Delete MACs" +msgstr "MACs löschen" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" -msgstr "wurde erfolgreich aktualisiert" +#, fuzzy +msgid "Delete Menu Item" +msgstr "Menü-Element löschen" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" -msgstr "konnte nicht gespeichert werden" +msgid "Delete Selected" +msgstr "Ausgewählte löschen" -#: lib/fog/fogcontroller.class.php:516 #, fuzzy -msgid "Database save failed" -msgstr "Datenbankspeicherung fehlgeschlagen" +msgid "Delete Selected Items" +msgstr "ausgewählte Elemente löschen" -#: lib/fog/fogcontroller.class.php:542 #, fuzzy -msgid "Key field must be a string" -msgstr "Schlüsselfeldname muss eine Zeichenfolge sein." +msgid "Delete Selected MACs" +msgstr "Ausgewählte MACs löschen" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 #, fuzzy -msgid "Operation field not set" -msgstr "Operationsfeld nicht gesetzt: %s" +msgid "Delete Success" +msgstr "erfolgreich gelöscht" -#: lib/fog/fogcontroller.class.php:588 #, fuzzy -msgid "Loading data to field" -msgstr "Laden von Daten zum Feld %s" +msgid "Delete all PM tasks?" +msgstr "Alle PM Tasks löschen?" -#: lib/fog/fogcontroller.class.php:606 #, fuzzy -msgid "Load failed" -msgstr "Laden fehlgeschlagen: %s" +msgid "Delete files" +msgstr "Datei löschen" -#: lib/fog/fogcontroller.class.php:668 #, fuzzy -msgid "Invalid key being destroyed" -msgstr "Ungültiger Schlüssel wurde zerstört" +msgid "Delete hosts within" +msgstr "Löschen aller Hosts innerhalb der Gruppe" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 #, fuzzy -msgid "has been successfully destroyed" -msgstr "wurde erfolgreich zerstört" +msgid "Delete selected" +msgstr "Ausgewählte löschen" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 #, fuzzy -msgid "has failed to destroy" -msgstr "konnte nicht zerstört werden" +msgid "Delete selected hosts" +msgstr "Ausgewählte Hosts löschen" + +msgid "Deleted" +msgstr "Gelöscht" -#: lib/fog/fogcontroller.class.php:750 #, fuzzy -msgid "Destroy failed" -msgstr "Zerstörung fehlgeschlagen: %s" +msgid "Deleted Success" +msgstr "Löschen erfolgreich" -#: lib/fog/fogcontroller.class.php:831 #, fuzzy -msgid "Invalid key being requested" -msgstr "Ungültiger Schlüssel wurde angefordert" +msgid "Deleting remote file" +msgstr "Remotedatei wird gelöscht" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" -msgstr "Ungültiger Typ, Zusammenführen zum Hinzufügen, Entfernen zum Entfernen" +msgid "Deploy" +msgstr "Verteilung" + +msgid "Deploy Method" +msgstr "Verteilungsmethode" -#: lib/fog/fogcontroller.class.php:877 #, fuzzy -msgid "Invalid ID passed" -msgstr "Ungültige ID übergeben" +msgid "Deploy/Capture" +msgstr "Verteilen/Upload" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" -msgstr "fehlgeschlagen" +msgid "Description" +msgstr "Beschreibung" -#: lib/fog/fogcore.class.php:40 -msgid "day" -msgstr "Tag" +#, fuzzy +msgid "Destroy failed" +msgstr "Zerstörung fehlgeschlagen: %s" + +msgid "Destroyed assignment" +msgstr "Zerstörte Zuordnung" -#: lib/fog/fogcore.class.php:49 #, fuzzy -msgid "hr" -msgstr "Stunde" +msgid "Destroyed assignments" +msgstr "Zerstörte Zuordnungen" -#: lib/fog/fogcore.class.php:58 #, fuzzy -msgid "min" -msgstr "Minuten" +msgid "Detailed documentation" +msgstr "Detaillierte Dokumentation" -#: lib/fog/fogcore.class.php:76 #, fuzzy -msgid "Running Windows" -msgstr "Laufende Version" +msgid "Device must be a string" +msgstr "Gerätename muss eine Zeichenfolge sein." + +msgid "Diff parameter must be numeric" +msgstr "Diff Parameter muss numerisch sein" -#: lib/fog/fogcore.class.php:88 #, fuzzy -msgid "Unavailable" -msgstr "Nicht verfügbar" +msgid "Directories" +msgstr "Verzeichnis" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" -msgstr "Wählen Sie einen Crontyp" +msgid "Directory" +msgstr "Verzeichnis" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" -msgstr "Jährlich" +msgid "Directory Already Exists" +msgstr "Das Verzeichnis existiert bereits" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" -msgstr "Jährlich" +msgid "Directory Cleaner" +msgstr "Verzeichnis-Bereiniger" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "Monatlich" +#, fuzzy +msgid "Disabled" +msgstr "Deaktiviert" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "Wöchentlich" +msgid "Display" +msgstr "Anzeige" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" -msgstr "Täglich" +msgid "Do not list on menu" +msgstr "Nicht im Menü aufführen" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" -msgstr "Mitternacht" +msgid "Domain Password" +msgstr "Domänenkennwort" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" -msgstr "Stündlich" +msgid "Domain Password Legacy" +msgstr "veraltetes Domänenkennwort" -#: lib/fog/fogftp.class.php:219 -#, fuzzy -msgid "FTP connection failed" -msgstr "FTP-Verbindung fehlgeschlagen" +msgid "Domain Username" +msgstr "Domänen-Benutzername" -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" -msgstr "Keine Felder übergeben" +msgid "Domain name" +msgstr "Domänen-Name" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" -msgstr "Keine Werte übergeben" +msgid "Donate to FOG" +msgstr "Spenden für das FOG Projekt" -#: lib/fog/fogmanagercontroller.class.php:603 -#, fuzzy -msgid "No data to insert" -msgstr "Keine Daten zum Einfügen" +msgid "Done" +msgstr "Fertig" -#: lib/fog/fogmanagercontroller.class.php:909 -#, fuzzy -msgid "No items found" -msgstr "Keine Elemente gefunden" +msgid "Done, Failed to create tasking" +msgstr "Fertig, Tasking konnte nicht erstellt werden" + +msgid "Done, with imaging!" +msgstr "Erledigt, mit Image!" + +msgid "Done, without imaging!" +msgstr "Erledigt, ohne Image" -#: lib/fog/fogmanagercontroller.class.php:987 #, fuzzy -msgid "Nothing passed to search for" -msgstr "Nichts zum Suchen übermittelt" +msgid "Done, without imaging! Invalid Login!" +msgstr "Erledigt, ohne Image" -#: lib/fog/fogpage.class.php:236 #, fuzzy -msgid "ID Must be set to edit" -msgstr "ID muss auf 'Bearbeiten' eingestellt sein" +msgid "Done, without imaging! No image assigned!" +msgstr "Erledigt, kein Image zugeordnet!" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, fuzzy, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %s ist nicht gültig" +msgid "Dot in Filename not allowed!" +msgstr "" -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" -msgstr "Host-ID" +msgid "Download Failed" +msgstr "Download fehlgeschlagen" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" -msgstr "Host-Name" +#, fuzzy +msgid "Downloading Initrd" +msgstr "Download des Kernels" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" -msgstr "Host MAC" +#, fuzzy +msgid "Downloading Kernel" +msgstr "Download des Kernels" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" -msgstr "Host-Beschreibung" +msgid "Dropped" +msgstr "ausgeworfen" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "Bestands-ID" +msgid "Duration" +msgstr "Dauer" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "Inventarbeschreibung" +#, fuzzy +msgid "ESC is defaulted" +msgstr "ESC ist standardmäßig eingestellt" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" -msgstr "Hauptbenutzer" +msgid "Edit" +msgstr "Bearbeiten" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" -msgstr "Weiterer Eintrag 1" +msgid "Edit Host" +msgstr "Host bearbeiten" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "Weiterer Eintrag 2" +msgid "Edit Image" +msgstr "Image bearbeiten" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" -msgstr "Systemhersteller" +msgid "Edit Node" +msgstr "Knoten bearbeiten" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" -msgstr "Systemprodukt" +msgid "Edit User" +msgstr "Benutzer bearbeiten" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" -msgstr "Systemversion" +msgid "Either reboot or shutdown action must be used." +msgstr "Entweder neustarten oder herunterfahren" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" -msgstr "Seriennummer" +msgid "Email" +msgstr "E-Mail" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" -msgstr "Systemtyp" +msgid "Enable location Sending" +msgstr "Standort senden aktivieren" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" -msgstr "BIOS-Version" +msgid "Enabled" +msgstr "Aktiviert" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "BIOS-Anbieter" +msgid "Enabled as default" +msgstr "Standardmäßig aktiviert" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" -msgstr "BIOS-Datum" +msgid "End" +msgstr "Ende" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "Mainboard-Hersteller" +msgid "End Date" +msgstr "Enddatum" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "Mainboard-Name" +msgid "End Time" +msgstr "Endzeit" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "Mainboard-Version" +msgid "Engineer" +msgstr "Ingenieur" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "Mainboard-Serie" +#, fuzzy +msgid "Enter a group name to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "Mainboard-Asset" +msgid "Enter a hostname to search for" +msgstr "Geben Sie für die Suche einen Hostnamen ein" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" -msgstr "CPU-Hersteller" +#, fuzzy +msgid "Enter a location name to search for" +msgstr "Geben Sie für die Suche einen Hostnamen ein" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" -msgstr "CPU-Version" +#, fuzzy +msgid "Enter a model name to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "CPU-Geschwindigkeit" +#, fuzzy +msgid "Enter a site name to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" -msgstr "CPU-Höchstgeschwindigkeit" +#, fuzzy +msgid "Enter a snapin name to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "Speicher" +#, fuzzy +msgid "Enter a term to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" -msgstr "Festplattenmodell" +msgid "Enter a username to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" -msgstr "Festplatten-Firmware" +#, fuzzy +msgid "Enter an image name to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "HDD-Seriennummer" +#, fuzzy +msgid "Enter an user name to search for" +msgstr "Geben Sie für die Suche einen Benutzernamen ein" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "Gehäuse-Hersteller" +msgid "Equipment Loan" +msgstr "Equipmentleihe" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" -msgstr "Gehäuse-Version" +msgid "Error" +msgstr "Fehler" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "Gehäuse-Serien" +msgid "Error Code" +msgstr "Fehlercode" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "Gehäuse-Asset" +msgid "Error Message" +msgstr "Fehlermeldung" -#: lib/fog/fogpage.class.php:643 -#, fuzzy -msgid "Group Associations" -msgstr "Gruppenzugehörigkeiten" +msgid "Error Opening DB File" +msgstr "Fehler beim Öffnen der DB-Datei" -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "Neue Gruppe erstellen" +msgid "Error multiple hosts returned for list of mac addresses" +msgstr "Fehler: Es gibt mehrere Hosts mit der gleichen MAC-Adresse" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "Zu einer Gruppe hinzufügen" +msgid "Error performing query" +msgstr "Fehler beim Ausführen der Anfrage" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 #, fuzzy -msgid "Make changes?" -msgstr "Änderungen speichern?" - -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 -msgid "Delete Selected" -msgstr "Ausgewählte löschen" +msgid "Error: Failed to download initrd" +msgstr "Fehler: Herunterladen des Kernels fehlgeschlagen" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 -#, fuzzy -msgid "Delete selected" -msgstr "Ausgewählte löschen" +msgid "Error: Failed to download kernel" +msgstr "Fehler: Herunterladen des Kernels fehlgeschlagen" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" -msgstr "Template erforderlich" +msgid "Error: Failed to open temp file" +msgstr "Fehler: Öffnen der Temp-Datei fehlgeschlagen" -#: lib/fog/fogpage.class.php:1019 -#, fuzzy -msgid "Cannot set tasking to invalid hosts" -msgstr "Es können keine Tasks auf invalide Hosts ausgeführt werden!" +msgid "Errors" +msgstr "Fehler" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 #, fuzzy -msgid "Cannot set tasking to pending hosts" -msgstr "Es können keine Tasks auf ausstehende Hosts ausgeführt werden!" +msgid "Errors on revert detected!" +msgstr "Fehler beim Zurücksetzen erkannt!" -#: lib/fog/fogpage.class.php:1034 -#, fuzzy -msgid "Invalid object to try tasking" -msgstr "Ungültiger Objekttyp für diesen Task" +msgid "Especially when your organization has many hosts" +msgstr "Speziell, wenn Ihr Unternehmen viele Hosts hat." -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" -msgstr "" -"Es können keine Tasks ausgeführt werden, solange das Image nicht freigegeben " -"ist" +msgid "Estimated FOG Sites" +msgstr "Geschätzte FOG-Sites" -#: lib/fog/fogpage.class.php:1092 #, fuzzy -msgid "Host Associated Snapins" -msgstr "Mit Hosts verknüpfte Snapins" +msgid "Event" +msgstr "Ereignis" -#: lib/fog/fogpage.class.php:1119 #, fuzzy -msgid "Host Unassociated Snapins" -msgstr "Snapins ohne Host" +msgid "Event Data must be an array" +msgstr "Ereignisdaten müssen ein Array sein." -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" -msgstr "Host bearbeiten" +msgid "Event and data are not set" +msgstr "Ereignis und Daten sind nicht gesetzt" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" -msgstr "Image bearbeiten" +msgid "Event must be a string" +msgstr "Ereignisname muss eine Zeichenfolge sein." -#: lib/fog/fogpage.class.php:1218 -#, fuzzy -msgid "Confirm tasking" -msgstr "Bestätige Task" +msgid "Exists item must be boolean" +msgstr "Bestehendes Objekt muss boolean sein" -#: lib/fog/fogpage.class.php:1223 -#, fuzzy -msgid "Image Associated: " -msgstr "verknüpftes Image:" +msgid "Exit to Hard Drive Type" +msgstr "Beenden zum Festplattentyp" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "Erweiterte Einstellungen" +msgid "Exit to Hard Drive Type(EFI)" +msgstr "Beenden zur Festplatte (EFI)" -#: lib/fog/fogpage.class.php:1243 -#, fuzzy -msgid "Please select the snapin you want to install" -msgstr "Bitte wählen Sie das Snapin, das Sie installieren wollen" +msgid "Expand All" +msgstr "Alle ausklappen" -#: lib/fog/fogpage.class.php:1253 -#, fuzzy -msgid "Account name to reset" -msgstr "zurückzustellender Accountname" +msgid "Export" +msgstr "Export" -#: lib/fog/fogpage.class.php:1274 #, fuzzy -msgid "Schedule with shutdown" -msgstr "Zeitplan" +msgid "Export Accesscontrols" +msgstr "Zugriffssteuerungen exportieren" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "Wake-on-LAN?" +msgid "Export CSV" +msgstr "CSV exportieren" -#: lib/fog/fogpage.class.php:1313 #, fuzzy -msgid "Schedule as debug task" -msgstr "Planen als Debugaufgabe" +msgid "Export Checksums" +msgstr "Prüfsummen exportieren" -#: lib/fog/fogpage.class.php:1323 #, fuzzy -msgid "Schedule instant" -msgstr "sofort planen" +msgid "Export Complete" +msgstr "Export vollständig" -#: lib/fog/fogpage.class.php:1335 -#, fuzzy -msgid "Schedule delayed" -msgstr "verzögert planen" +msgid "Export Configuration" +msgstr "Konfiguration exportieren" -#: lib/fog/fogpage.class.php:1340 #, fuzzy -msgid "Date and Time" -msgstr "Datum und Zeit" +msgid "Export Database" +msgstr "Datenbank exportieren" -#: lib/fog/fogpage.class.php:1373 #, fuzzy -msgid "Schedule cron-style" -msgstr "Cron-Style planen" +msgid "Export Database?" +msgstr "Datenbank exportieren?" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "Erstellen" +msgid "Export Groups" +msgstr "Gruppen exportieren" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" -msgstr "Tasking" +msgid "Export Hosts" +msgstr "Hosts exportieren" -#: lib/fog/fogpage.class.php:1445 -#, fuzzy -msgid "Hosts in task" -msgstr "Hosts im Task-Prozess" +msgid "Export Images" +msgstr "Images exportieren" -#: lib/fog/fogpage.class.php:1556 #, fuzzy -msgid "Invalid scheduling type" -msgstr "Ungültiger Zeitplantyp" +msgid "Export LDAPs" +msgstr "LDAPs exportieren" -#: lib/fog/fogpage.class.php:1595 #, fuzzy -msgid "minute" -msgstr "Minuten" +msgid "Export Locations" +msgstr "Standorte exportieren" -#: lib/fog/fogpage.class.php:1604 -#, fuzzy -msgid "hour" -msgstr "Stunde" +msgid "Export PDF" +msgstr "PDF-Datei exportieren" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" -msgstr "Tag (Monat)" +msgid "Export Printers" +msgstr "Drucker exportieren" -#: lib/fog/fogpage.class.php:1622 #, fuzzy -msgid "month" -msgstr "Monat" +msgid "Export Sites" +msgstr "Sites exportieren" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" -msgstr "Tag (Woche)" +msgid "Export Snapins" +msgstr "Snapins exportieren" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "Task-Typ ist nicht gültig" +#, fuzzy +msgid "Export Subnetgroups" +msgstr "Gruppen exportieren" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "Zurücksetzen des Kennworts erfordert einen entsprechenden Benutzer" +#, fuzzy +msgid "Export Task States" +msgstr "Taskstatus exportieren" -#: lib/fog/fogpage.class.php:1663 #, fuzzy -msgid "There are no hosts to task in this group" -msgstr "Es gibt keine Hosts in dieser Gruppe" +msgid "Export Task Types" +msgstr "Task-Typen exportieren" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" -msgstr "Um ein Task durchzuführen, muss ein Image zugewiesen werden" +msgid "Export Users" +msgstr "Benutzer exportieren" -#: lib/fog/fogpage.class.php:1678 #, fuzzy -msgid "Cannot create tasking as image is not enabled" -msgstr "" -"Es können keine Tasks erstellt werden, solange das Image nicht freigegeben " -"ist" +msgid "Export WOLBroadcasts" +msgstr "WOLBroadcasts exportieren" -#: lib/fog/fogpage.class.php:1685 #, fuzzy -msgid "The assigned image is protected" -msgstr "Das zugewiesene Image ist geschützt" +msgid "Export Windows Keys" +msgstr "Windows-Schlüssel exportieren" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" -msgstr "und kann nicht hochgeladen werden" +msgid "Extension" +msgstr "zusätzliche Angaben" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" -msgstr "Gruppen dürfen keine Upload-Tasks planen" +msgid "FOG" +msgstr "FOG" + +msgid "FOG 1.2.0 and earlier" +msgstr "FOG 1.2.0 oder früher verteilt wurden." + +msgid "FOG 1.2.0 and earlier." +msgstr "älter verteilt wurden." -#: lib/fog/fogpage.class.php:1700 #, fuzzy -msgid "Multicast tasks from groups" -msgstr "Multicast-Tasks von Gruppen" +msgid "FOG Client" +msgstr "FOG Client" -#: lib/fog/fogpage.class.php:1702 -#, fuzzy -msgid "require all hosts have the same image" -msgstr "Alle Hosts müssen das gleiche Image haben" +msgid "FOG Client Download" +msgstr "FOG-Client-Download" -#: lib/fog/fogpage.class.php:1722 -#, fuzzy -msgid "No valid hosts found and" -msgstr "Keine gültigen Hosts gefunden und/" +msgid "FOG Client Installer" +msgstr "FOG Client Installer" -#: lib/fog/fogpage.class.php:1723 -#, fuzzy -msgid "or no valid images specified" -msgstr "oder kein gültiges Image angegeben" +msgid "FOG Client Service Updater" +msgstr "FOG-Client Service Updater" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 -#, fuzzy -msgid "Tasking Failed" -msgstr "Tasking fehlgeschlagen" +msgid "FOG Client Wiki" +msgstr "FOG-Client-Wiki" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 -#, fuzzy -msgid "Failed to create tasking" -msgstr "Fehler beim Erstellen der Aufgabe (Task)" +msgid "FOG Client on Github" +msgstr "FOG-Client auf Github" -#: lib/fog/fogpage.class.php:1803 -#, fuzzy -msgid "Failed to create scheduled tasking" -msgstr "Fehler beim Erstellen der geplanten Aufgabe (Task)" +msgid "FOG Configuration" +msgstr "FOG Konfiguration" -#: lib/fog/fogpage.class.php:1806 -#, fuzzy -msgid "Scheduled tasks successfully created" -msgstr "geplante Tasks wurde erfolgreich erstellt" +msgid "FOG Crypt" +msgstr "FOG Krypto" -#: lib/fog/fogpage.class.php:1812 -#, fuzzy -msgid "Failed to start tasking type" -msgstr "Fehler beim Starten des Task-Typs" +msgid "FOG Equipment Loan Form" +msgstr "FOG-Equipment Leihformular" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "Cron-Zeitplan" +msgid "FOG Forums" +msgstr "FOG-Forum" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" -msgstr "Verzögerter Start" +msgid "FOG General Help" +msgstr "FOG Hilfe" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 #, fuzzy -msgid "Tasked Successfully" -msgstr "erfolgreich beauftragt" +msgid "FOG History - Search" +msgstr "FOG Benutzerverfolgung - Suche" -#: lib/fog/fogpage.class.php:1882 -#, fuzzy -msgid "Successfully created" -msgstr "erfolgreich erstellt" +msgid "FOG Home Page" +msgstr "FOG Homepage" -#: lib/fog/fogpage.class.php:1889 #, fuzzy -msgid "Created Tasks For" -msgstr "Erstellte Aufgaben für" +msgid "FOG Host - Search" +msgstr "FOG Benutzerverfolgung - Suche" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 #, fuzzy -msgid "Remove these items?" -msgstr "Diese Objekte entfernen?" +msgid "FOG Host Inventory - Search" +msgstr "FOG Benutzerverfolgung - Suche" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 #, fuzzy -msgid "Unable to Authenticate" -msgstr "Authentifizieren nicht möglich" +msgid "FOG Host and Users - Search" +msgstr "FOG Hosts und Benutzer-Login" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 -#, fuzzy -msgid "Successfully deleted" -msgstr "erfolgreich gelöscht" +msgid "FOG Hosts and Users Login" +msgstr "FOG Hosts und Benutzer-Login" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 #, fuzzy -msgid "Delete Success" -msgstr "erfolgreich gelöscht" +msgid "FOG Imaging - Search" +msgstr "FOG Benutzerverfolgung - Suche" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "Anzeigen der erweiterte Aufgaben für diese" +msgid "FOG Imaging Log" +msgstr "FOG Imaging-Logbuch" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "Erweiterte Aktionen" +msgid "FOG License Information" +msgstr "FOG-Lizenzinformationen" -#: lib/fog/fogpage.class.php:2314 -#, fuzzy -msgid "Clear all fields?" -msgstr "alle Felder leeren?" +msgid "FOG Log Viewer" +msgstr "FOG Logviewer" -#: lib/fog/fogpage.class.php:2317 -#, fuzzy -msgid "Clear Fields" -msgstr "Felder leeren" +msgid "FOG Managed Printers" +msgstr "FOG-verwaltete Drucker" + +msgid "FOG PXE Boot Menu Configuration" +msgstr "FOG PXE-Bootmenü-Konfiguration" -#: lib/fog/fogpage.class.php:2321 #, fuzzy -msgid "Join Domain after deploy" -msgstr "Nach der Verteilung einer Domäne beitreten" +msgid "FOG Project" +msgstr "FOG Projekt auf Github" -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "Domänen-Name" +msgid "FOG Project on Github" +msgstr "FOG-Projekt auf Github" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "Organisationseinheit" +msgid "FOG Reports exist to give you information about what" +msgstr "FOG Berichte enthalten Informationen über" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "Leer für Standard" +msgid "FOG Settings" +msgstr "FOG Einstellungen" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "Domänen-Benutzername" +#, fuzzy +msgid "FOG Snapin - Search" +msgstr "FOG Benutzerverfolgung - Suche" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "Domänenkennwort" +msgid "FOG Sourceforge Page" +msgstr "FOG Sourceforge-Website" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "veraltetes Domänenkennwort" +msgid "FOG System Settings" +msgstr "FOG-Systemeinstellungen" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "Muss verschlüsselt werden" +#, fuzzy +msgid "FOG User tracking - Search" +msgstr "FOG Benutzerverfolgung - Suche" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" -msgstr "Namensänderung/AD-Beitreten erzwingt Reboot" +#, fuzzy +msgid "FOG User tracking history" +msgstr "FOG Benutzerverfolgungsverlauf" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" -msgstr "" +#, fuzzy +msgid "FOG Version" +msgstr "FOG-Version" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" -msgstr "" +msgid "FOG Version Information" +msgstr "FOG-Versionsinformationen" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" -msgstr "Fehler: Öffnen der Temp-Datei fehlgeschlagen" +msgid "FOG Virus Summary" +msgstr "FOG Viruszusammenfassung" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" -msgstr "Fehler: Herunterladen des Kernels fehlgeschlagen" +msgid "FOG Wiki" +msgstr "FOG-Wiki" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "Download fehlgeschlagen" +msgid "FOG database you can do so using" +msgstr "sichern möchten, können Sie das mit" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "Dateigröße" +msgid "FOG did is now called Power Management" +msgstr "Green FOG war, heißt nun Power Management" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "MAC-Anbieter laden" +msgid "FOG is unable to communicate with the database" +msgstr "FOG kann nicht mit der Datenbank verbinden." -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "Nicht gefunden" +msgid "FOG server defaulting under the folder" +msgstr "FOG-Server im Standard-Ordner." -#: lib/fog/fogpage.class.php:2779 -#, fuzzy -msgid "Delete hosts within" -msgstr "Löschen aller Hosts innerhalb der Gruppe" +msgid "FTP Connection has failed" +msgstr "FTP-Verbindung fehlgeschlagen" -#: lib/fog/fogpage.class.php:2788 -#, fuzzy -msgid "Delete files" -msgstr "Datei löschen" +msgid "FTP Path" +msgstr "FTP-Pfad" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" -msgstr "ist geschützt, Entfernen ist nicht erlaubt" +#, fuzzy +msgid "FTP connection failed" +msgstr "FTP-Verbindung fehlgeschlagen" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" +#, fuzzy +msgid "Fail to destroy" msgstr "Fehler beim Zerstören" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" -msgstr "gelöscht" - -#: lib/fog/fogpage.class.php:3323 -#, fuzzy -msgid "Delete Fail" -msgstr "Löschen fehlgeschlagen" +msgid "Failed" +msgstr "fehlgeschlagen" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 -#, fuzzy -msgid " Name" -msgstr " Name" +msgid "Failed to" +msgstr "Fehler beim" -#: lib/fog/fogpage.class.php:3600 -#, fuzzy -msgid "Remove " -msgstr "Entfernen " +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" +msgstr "Fehler beim Rendern der Seite: Knoten: %s, Fehler: %s" -#: lib/fog/fogpage.class.php:3607 #, fuzzy -msgid "Remove selected " -msgstr "Ausgewählte entfernen " +msgid "Failed to add snapin" +msgstr "Hinzufügen eines Snapins fehlgeschlagen" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 -msgid "Export CSV" -msgstr "CSV exportieren" +msgid "Failed to add/update snapin file" +msgstr "Hinzufügen/aktualisieren eines Snapin-Datei" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" -msgstr "Import" +msgid "Failed to connect" +msgstr "Verbindung nicht möglich" -#: lib/fog/fogpage.class.php:3788 -#, fuzzy -msgid "List" -msgstr "Zeige" +msgid "Failed to create" +msgstr "Erstellen fehlgeschlagen" -#: lib/fog/fogpage.class.php:3806 -#, fuzzy -msgid "Import CSV" -msgstr "CSV importieren" +msgid "Failed to create Host" +msgstr "Host erstellen fehlgeschlagen" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" -msgstr "Max. Größe" +msgid "Failed to create Session" +msgstr "Fehler beim Erstellen der Sitzung" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" -msgstr "browse" +msgid "Failed to create Snapin Job" +msgstr "Erstellen eines Snapin-Jobs fehlgeschlagen" -#: lib/fog/fogpage.class.php:3824 #, fuzzy -msgid "Import CSV?" -msgstr "CSV importieren?" +msgid "Failed to create inventory for this host" +msgstr "Erstellen eines Inventars für diesen Host fehlgeschlagen!" + +msgid "Failed to create new Group" +msgstr "Erstellen der neuen Gruppe fehlgeschlagen" -#: lib/fog/fogpage.class.php:3852 #, fuzzy -msgid "This page allows you to upload a CSV file into FOG to ease" -msgstr "Diese Seite erlaubt Ihnen den Upload einer CSV-Datei auf den FOG," +msgid "Failed to create scheduled tasking" +msgstr "Fehler beim Erstellen der geplanten Aufgabe (Task)" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" -msgstr "um leichter große Mengen Daten zu importieren." +msgid "Failed to create task" +msgstr "Fehler beim Erstellen eines Tasks" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" -msgstr "" -"Es funktioniert mittels der Einträge, die der Bereich normalerweise benötigt" +#, fuzzy +msgid "Failed to create tasking" +msgstr "Fehler beim Erstellen der Aufgabe (Task)" -#: lib/fog/fogpage.class.php:3888 #, fuzzy -msgid "File must be a csv" -msgstr "Datei muss eine CSV-Datei sein." +msgid "Failed to decrypt data on server" +msgstr "Fehler beim Entschlüsseln der Daten" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" -msgstr "Temporärer Dateiname konnte nicht gefunden werden." +msgid "Failed to delete file" +msgstr "Löschen der Datei fehlgeschlagen" -#: lib/fog/fogpage.class.php:3929 -#, fuzzy -msgid "Invalid data being parsed" -msgstr "Ungültige Daten wurden geparst" +msgid "Failed to delete image files" +msgstr "Löschen der Imagedateien fehlgeschlagen" -#: lib/fog/fogpage.class.php:3941 -#, fuzzy -msgid "One or more macs are associated with a host" -msgstr "Eine oder mehrere MACs sind mit einem Host verknüpft" +msgid "Failed to destroy" +msgstr "Fehler beim Zerstören" -#: lib/fog/fogpage.class.php:3966 -#, fuzzy -msgid "This host already exists" -msgstr "Dieser Host ist bereits vorhanden." +msgid "Failed to destroy Storage Group" +msgstr "Zerstören der Speichergruppe fehlgeschlagen" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" -msgstr "Ergebnisse" +msgid "Failed to destroy Storage Node" +msgstr "Zerstören des Speicherknotens fehlgeschlagen" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" -msgstr "Zeilen gesamt" +msgid "Failed to install plugin" +msgstr "Fehler beim Installieren des Plugins" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "Erfolgreich" +msgid "Failed to save assignment" +msgstr "Speichern der Zuweisung fehlgeschlagen" + +msgid "Failed to save plugin" +msgstr "Fehler beim Speichern des Plugins" -#: lib/fog/fogpage.class.php:4154 #, fuzzy -msgid "Schedule Power" -msgstr "plane Power" +msgid "Failed to start tasking type" +msgstr "Fehler beim Starten des Task-Typs" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" -msgstr "Sofort durchführen?" +msgid "Failed to update" +msgstr "Aktualisierung fehlgeschlagen" -#: lib/fog/fogpage.class.php:4217 #, fuzzy -msgid "Create new PM Schedule" -msgstr "Neuen Power-Management-Zeitplan erstellen" +msgid "Failed to update Host" +msgstr "Aktualisieren des Hosts fehlgeschlagen" -#: lib/fog/fogpage.class.php:4227 -#, fuzzy -msgid "New power management task" -msgstr "Neuer Power-Management Task" +msgid "Failed to update Session" +msgstr "Fehler beim Aktualisieren der Sitzung" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "Keine FOGPage-Klasse für diesen Knoten gefunden" +msgid "Failed to update Task" +msgstr "Fehler beim Aktualisieren des Tasks" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "Fehler beim Rendern der Seite: Knoten: %s, Fehler: %s" +#, fuzzy +msgid "Failed to update imaging log" +msgstr "Update des Image-Logs fehlgeschlagen" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" -msgstr "Kein Klassenwert gesendet" +msgid "Failed to update task" +msgstr "Fehler beim Aktualisieren des Tasks" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" -msgstr "Kein Knoten verknüpft" +#, fuzzy +msgid "Failed to update task log" +msgstr "Aktualisierung des Task-Logs fehlgeschlagen" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" -msgstr "Hinzufügen von FOGPage: %s, Knoten: %s" +msgid "Failed to update/create image log" +msgstr "Aktualisieren/Erstellen des Image-Logs fehlgeschlagen" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" -msgstr "Fenstergröße muss größer sein als 1" +msgid "Failed to update/create task log" +msgstr "Aktualisieren/Erstellen des Task-Logs fehlgeschlagen" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "Wählen Sie ein gültiges Abbild" +msgid "Failed to write file to disk" +msgstr "Datei auf Festplatte speichern fehlgeschlagen" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" -msgstr "Es gibt einen Host in einer Aufgabe" +#, fuzzy +msgid "Fields and types must have equal count" +msgstr "Feld und Werte müssen gleiches Ergebnis haben" -#: lib/fog/group.class.php:452 #, fuzzy -msgid "No hosts to task" -msgstr "Keine Hosts für Aufgaben (Task) vorhanden" +msgid "Fields not defined for this class" +msgstr "Keine Datenbankfelder für diese Klasse definiert" + +msgid "File" +msgstr "Datei" -#: lib/fog/group.class.php:475 #, fuzzy -msgid "No hosts available to task" -msgstr "Keine Hosts für Aufgaben (Task) verfügbar" +msgid "File Integrity Management" +msgstr "Druckerverwaltung" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "Abbild ist nicht aktiv" +msgid "File System Information" +msgstr "Dateisystem-Informationen" -#: lib/fog/group.class.php:502 #, fuzzy -msgid "Unable to find master Storage Node" -msgstr "Fehler beim Finden des Master Storage Nodes" +msgid "File does not exist" +msgstr "Datei existiert nicht" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "Diese MAC gehört zu einem anderen Host" +msgid "File hash mismatch" +msgstr "Hash der Datei stimmt nicht überein" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" -msgstr "Primäre MAC kann nicht als zusätzliche MAC hinzugefügt werden." +#, fuzzy +msgid "File must be a csv" +msgstr "Datei muss eine CSV-Datei sein." -#: lib/fog/host.class.php:498 #, fuzzy -msgid "Cannot add a pre-existing primary mac" -msgstr "" -"Eine bereits bestehende primäre MAC kann nicht als eine ausstehende MAC " -"hinzugefügt werden." +msgid "File or path cannot be reached" +msgstr " | Datei oder Pfad ist nicht erreichbar" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." -msgstr "Abgebrochen aufgrund neuer Aufgabe (Task)" +#, fuzzy +msgid "File size mismatch" +msgstr "Dateigröße stimmt nicht überein" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "Erstellen eines Snapin-Jobs fehlgeschlagen" +msgid "File upload stopped by an extension" +msgstr "Datei-Upload durch eine Erweiterung gestoppt" -#: lib/fog/host.class.php:1371 #, fuzzy -msgid "Could not find any" -msgstr "Nichts konnte gefunden werden" +msgid "Filesize" +msgstr "Dateigröße" -#: lib/fog/host.class.php:1372 #, fuzzy -msgid "nodes containing this image" -msgstr "Knoten enthalten dieses Image" +msgid "Filter" +msgstr "Filter" -#: lib/fog/host.class.php:1538 #, fuzzy -msgid "No valid Image defined for this host" -msgstr "Kein valides Image für diesen Host definiert" +msgid "Finding any images associated" +msgstr "Suche nach zugeordneten Images" -#: lib/fog/host.class.php:1689 #, fuzzy -msgid "No viable macs to use" -msgstr "Keine brauchbaren MACS" +msgid "Finding any snapins associated" +msgstr "Verbundene Snapins" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "Die MAC-Adresse wird bereits von einem andern Host verwendet" +msgid "For example, a GPO policy to push" +msgstr "zum Beispiel, um eine Gruppenrichtlinie zu senden" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 -#, fuzzy -msgid "snapin" -msgstr "Snapin" +msgid "Force" +msgstr "zwingen" + +msgid "Force task to start" +msgstr "Task Start erzwingen" -#: lib/fog/host.class.php:1768 #, fuzzy -msgid "per host" -msgstr "per Host" +msgid "Form" +msgstr "Formular" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "Sie dürfen nur zuweisen" +msgid "Forums are the most common and fastest method of getting" +msgstr "das Forum ist das häufigste und schnellste Medium, " -#: lib/fog/system.class.php:38 -#, fuzzy -msgid "Your system PHP Version is not sufficient" +msgid "Found" +msgstr "Gefundene" + +msgid "Found a scheduled task that should run." msgstr "" -"Ihre PHP-Version ist nicht ausreichend. Sie haben Version %s, Version %s ist " -"erforderlich." -#: lib/fog/system.class.php:39 -#, fuzzy -msgid "You have version" -msgstr "Sie haben Version" +msgid "Found a wake on lan task that should run." +msgstr "" -#: lib/fog/system.class.php:41 #, fuzzy -msgid "version" -msgstr "Version" +msgid "Found login information" +msgstr "Zugangsdaten gefunden" -#: lib/fog/system.class.php:43 #, fuzzy -msgid "is required" -msgstr "%s ist erforderlich" +msgid "Found snapin information" +msgstr "Zugangsdaten gefunden" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "Keine brauchbaren Speichergruppen gefunden" +msgid "Free" +msgstr "" -#: lib/fog/powermanagementmanager.class.php:112 #, fuzzy -msgid "Wake On Lan" -msgstr "Wake On Lan" - -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "TCP/IP-Port Drucker" - -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" -msgstr "iPrint Drucker" +msgid "Free Disk Space" +msgstr "freier Speicherplatz" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" -msgstr "Netzwerk-Drucker" +msgid "Free Memory" +msgstr "Freier Speicher" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" -msgstr "CUPS Drucker" +#, fuzzy +msgid "Friendly Name" +msgstr "nutzerfreundlicher Name" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "Cron" +#, fuzzy +msgid "Full History Export" +msgstr "Vollständigen Verlauf exportieren" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "Verzögert" +msgid "Full Inventory Export" +msgstr "Vollständiger Inventur-Export" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "Tmp-Datei konnte nicht gelesen werden." +#, fuzzy +msgid "Function" +msgstr "Funktion" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "Fehler beim Öffnen der DB-Datei" +#, fuzzy +msgid "Function does not exist" +msgstr "Methode ist nicht vorhanden" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "Fehler beim Ausführen der Anfrage" +msgid "GNU Gneral Public License" +msgstr "GNU General Public License" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "Bestehendes Objekt muss boolean sein" +msgid "General" +msgstr "Allgemein" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" -msgstr "Zum Erstellen der Tabelle muss sie einen Namen haben" +msgid "General Information" +msgstr "Allgemeine Informationen" -#: lib/fog/schema.class.php:325 #, fuzzy -msgid "Fields and types must have equal count" -msgstr "Feld und Werte müssen gleiches Ergebnis haben" - -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" -msgstr "Der Name der zu entfernenden Tabelle wird benötigt." +msgid "Generate" +msgstr "Generieren" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" -msgstr "Bitte wählen Sie eine Option" +msgid "Generic LDAP" +msgstr "Generic LDAP" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." -msgstr "" +msgid "Getting image size for" +msgstr "Empfange Imagegrößé für" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." -msgstr "" +msgid "Getting snapin hash and size for" +msgstr "Empfange Snapin-Hash und Größe für" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." -msgstr "" +msgid "Goto task list" +msgstr "Zur Task-Liste" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." -msgstr "" +msgid "Graph Enabled" +msgstr "Diagramm aktiviert" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" -msgstr "Ungültige numerische Eingabe" +msgid "Graphical" +msgstr "Grafisch" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" -msgstr "Objekt" +msgid "Green FOG" +msgstr "Green FOG" -#: lib/fog/foggetset.class.php:73 -msgid "Array" -msgstr "Array" +msgid "Group" +msgstr "Gruppe" -#: lib/fog/foggetset.class.php:89 #, fuzzy -msgid "Set Failed" -msgstr "Set fehlgeschlagen" +msgid "Group Associations" +msgstr "Gruppenzugehörigkeiten" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" -msgstr "Array innerhalb des Schlüssels zurückgeben" +msgid "Group Auto Logout" +msgstr "Gruppe Auto-Logout" + +msgid "Group Bios Exit Type" +msgstr "Gruppen-BIOS-Exit-Typ" -#: lib/fog/reportmaker.class.php:157 #, fuzzy -msgid "Invalid Type" -msgstr "Ungültiger Typ" +msgid "Group Create Fail" +msgstr "Gruppe erstellen fehlgeschlagen" -#: lib/fog/reportmaker.class.php:333 #, fuzzy -msgid "Export Complete" -msgstr "Export vollständig" +msgid "Group Create Success" +msgstr "Gruppe erfolgreich erstellt" -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "Icon-Datei nicht gefunden" +msgid "Group Description" +msgstr "Gruppenbeschreibung" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "Keine Symbole gefunden" +msgid "Group EFI Exit Type" +msgstr "Gruppe-EFI-Exit-Typ" -#: lib/fog/uploadexception.class.php:50 #, fuzzy -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "Die hochgeladene Datei überschreitet die Upload_max_filesize" +msgid "Group FOG Client Module configuration" +msgstr "Gruppenkonfiguration FOG-Client-Module" -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" -msgstr "Richtlinie in der php.ini" +msgid "Group Kernel" +msgstr "Gruppe-Kernel" -#: lib/fog/uploadexception.class.php:57 -#, fuzzy -msgid "The uploaded file exceeds the max_file_size" -msgstr "Die hochgeladene Datei überschreitet die Upload_max_filesize" +msgid "Group Kernel Arguments" +msgstr "Gruppe-Kernel Argumente" -#: lib/fog/uploadexception.class.php:58 -#, fuzzy -msgid "directive specified in the HTML form" -msgstr "" -"Die hochgeladene Datei überschreitet die Max_file_size-Richtlinie im HTML-" -"Formular" +msgid "Group Management" +msgstr "Gruppenverwaltung" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" -msgstr "Die hochgeladene Datei wurde nur teilweise hochgeladen" +msgid "Group Member Attribute" +msgstr "Gruppemmitglieder Attribut" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "Keine Datei wurde hochgeladen" +msgid "Group Name" +msgstr "Gruppenname" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" -msgstr "Ein temporärer Ordner fehlt" +#, fuzzy +msgid "Group Power Management Remove" +msgstr "Gruppen Power Management entfernen" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" -msgstr "Datei auf Festplatte speichern fehlgeschlagen" +msgid "Group Primary Disk" +msgstr "Primäre Festplatte der Gruppe" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" -msgstr "Datei-Upload durch eine Erweiterung gestoppt" +#, fuzzy +msgid "Group Printers" +msgstr "Gruppendrucker" + +msgid "Group Product Key" +msgstr "Produktschlüssel der Gruppe" -#: lib/fog/uploadexception.class.php:79 #, fuzzy -msgid "Unknown upload error occurred" -msgstr "Ein unbekannter Upload-Fehler ist aufgetreten" +msgid "Group Quick Deploy" +msgstr "Gruppen Schnellverteilung" + +msgid "Group Screen Resolution" +msgstr "Gruppe Bildschirmauflösung" -#: lib/fog/uploadexception.class.php:80 #, fuzzy -msgid "Return code" -msgstr "Rückgabewert" +msgid "Group Search DN" +msgstr "Gruppensuche DN" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" -msgstr "Benutzer erfolgreich angemeldet" +msgid "Group Search DN did not return any results" +msgstr "Gruppensuche DN gab keine Ergebnisse zurück" -#: lib/fog/user.class.php:312 -msgid "user failed to login" -msgstr "Benutzer konnte sich nicht anmelden" +#, fuzzy +msgid "Group Snapins" +msgstr "Gruppen-Snapins" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "IP-Adresse geändert" +#, fuzzy +msgid "Group Update Fail" +msgstr "Gruppe aktualisieren fehlgeschlagen" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" -msgstr "User-Agent geändert" +#, fuzzy +msgid "Group Update Success" +msgstr "Gruppe erfolgreich aktualisiert" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" -msgstr "Sitzung nicht ordnungsgemäß geändert" +#, fuzzy +msgid "Group added!" +msgstr "Gruppe hinzugefügt!" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 #, fuzzy -msgid "Node must be a string" -msgstr "Knotenname muss eine Zeichenfolge sein." +msgid "Group general" +msgstr "Gruppe allgemein" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" -msgstr "Elemente müssen ein Array sein" +#, fuzzy +msgid "Group image" +msgstr "Gruppen-Image" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." -msgstr "Die Daten müssen ein Array oder ein abrufbares Element sein" +#, fuzzy +msgid "Group image association" +msgstr "Gruppen Imagezugehörigkeit" -#: lib/fog/fogsubmenu.class.php:313 #, fuzzy -msgid "Info" -msgstr "Info" +msgid "Group is not valid" +msgstr "Gruppe ist nicht gültig" -#: lib/fog/fogsubmenu.class.php:563 #, fuzzy -msgid "Title must be a string" -msgstr "Titelname muss eine Zeichenfolge sein." +msgid "Group module settings" +msgstr "Gruppeneinstellungen Module" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 #, fuzzy -msgid "Link must be a string" -msgstr "Verknüpfung muss eine Zeichenfolge sein." +msgid "Group update failed!" +msgstr "Gruppenaktualisierung fehlgeschlagen" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" -msgstr "Serielle" +#, fuzzy +msgid "Group updated!" +msgstr "Gruppe aktualisiert" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "VNC-Verbindung öffnen" +msgid "Groups" +msgstr "Gruppen" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" -msgstr "VNC" +msgid "Groups are not allowed to schedule upload tasks" +msgstr "Gruppen dürfen keine Upload-Tasks planen" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" -msgstr "FOG Client Installer" +msgid "HD Device" +msgstr "HD-Gerät" -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" -msgstr "Neuer Client und Dienstprogramme" +msgid "HD Firmware" +msgstr "Festplatten-Firmware" -#: lib/pages/clientmanagementpage.class.php:87 -#, fuzzy -msgid "The installers for the fog client" -msgstr "Die Installer für den FOG Client" +msgid "HD Model" +msgstr "Festplattenmodell" -#: lib/pages/clientmanagementpage.class.php:89 -#, fuzzy -msgid "Client Version" -msgstr "Client-Version" +msgid "HD Serial" +msgstr "HDD-Seriennummer" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" -msgstr "Plattformübergreifend" +msgid "Hard Disk Firmware" +msgstr "Festplatten-Firmware" -#: lib/pages/clientmanagementpage.class.php:98 -#, fuzzy -msgid "more secure" -msgstr "sicherer" +msgid "Hard Disk Model" +msgstr "Festplattenmodell" -#: lib/pages/clientmanagementpage.class.php:99 -#, fuzzy -msgid "faster" -msgstr "schneller" +msgid "Hard Disk Serial Number" +msgstr "Seriennummer der Festplatte" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" -msgstr "und viel einfacher auf dem Server" +msgid "Hardware Information" +msgstr "Hardwareinformationen" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" -msgstr "Speziell, wenn Ihr Unternehmen viele Hosts hat." +msgid "Hash" +msgstr "Hash" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" -msgstr "Nutzen Sie dies für Netzwerkinstallationen" +msgid "Have not locked the host for access" +msgstr "" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" -msgstr "zum Beispiel, um eine Gruppenrichtlinie zu senden" +msgid "Height must be 120 pixels." +msgstr "Höhe muss 120 Pixel betragen" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "Diese Datei funktioniert nur auf Windows" +msgid "Help and Guide" +msgstr "Hilfe und Anleitung" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" -msgstr "MSI" +msgid "Hide Menu" +msgstr "Menü ausblenden" + +msgid "Hide Menu Timeout" +msgstr "Menü-Timeout zu verstecken" -#: lib/pages/clientmanagementpage.class.php:119 #, fuzzy -msgid "Network Installer" -msgstr "Netzwerk-Installer" +msgid "History Graph" +msgstr "Verlaufsgrafik" -#: lib/pages/clientmanagementpage.class.php:126 #, fuzzy -msgid "This is the recommended installer to use now" -msgstr "Dies ist der empfohlene Installer. " +msgid "History ID" +msgstr "Verlaufs-ID" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" -msgstr "Kompatibel mit Windows," +#, fuzzy +msgid "History IP" +msgstr "Verlaufs-IP" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "Linux" +#, fuzzy +msgid "History Info" +msgstr "Verlaufinformationen" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" -msgstr "und Mac OS X" +#, fuzzy +msgid "History Time" +msgstr "Verlaufszeit" -#: lib/pages/clientmanagementpage.class.php:130 #, fuzzy -msgid "Smart Installer" -msgstr "Smart Installer" +msgid "History User" +msgstr "Benutzerverlauf" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" -msgstr "(empfohlen)" +msgid "Home" +msgstr "Startseite" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "Hilfe und Anleitung" +msgid "Home Address" +msgstr "Heimatadresse" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" -msgstr "Wo bekomme ich Hilfe?" +msgid "Home Phone" +msgstr "Telefonnummer" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" -msgstr "Folgen Sie den Links unten, falls Sie Unterstützung brauchen." +msgid "Host" +msgstr "Host" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 #, fuzzy -msgid "NOTE" -msgstr "HINWEIS" - -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" -msgstr "das Forum ist das häufigste und schnellste Medium, " - -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" -msgstr "um Hilfe in allen Aspekten rund um FOG zu erhalten" +msgid "Host AD Domain" +msgstr "Host AD-Domäne" -#: lib/pages/clientmanagementpage.class.php:161 #, fuzzy -msgid "Detailed documentation" -msgstr "Detaillierte Dokumentation" +msgid "Host AD Join" +msgstr "Host AD-Beitretung" -#: lib/pages/clientmanagementpage.class.php:162 #, fuzzy -msgid "It is primarily geared for the smart installer methodology now" -msgstr "Diese richtet sich in erster Linie für den Smart Installer" +msgid "Host AD OU" +msgstr "Host AD OU" -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" -msgstr "FOG-Client-Wiki" +#, fuzzy +msgid "Host Add to Group Fail" +msgstr "Hinzufügen zur Gruppe fehlgeschlagen" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" -msgstr "Falls Sie mehr Support brauchen," +#, fuzzy +msgid "Host Add to Group Success" +msgstr "Host erfolgreich zur Gruppe hinzugefügt" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" -msgstr "dort wird jemand in der Lage sein, zu helfen." +#, fuzzy +msgid "Host Associated" +msgstr "zugeordneter Host" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "In Forum können Sie Ihr Problem schildern, so dass" +#, fuzzy +msgid "Host Associated Snapins" +msgstr "Mit Hosts verknüpfte Snapins" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "andere das Problem erkennen und Ihnen helfen können." +msgid "Host Auto Logout" +msgstr "Host Auto-Logout" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" -msgstr "Für mehr Echtzeit-Hilfe gibt es auch die Chat-Funktion. " +msgid "Host Bios Exit Type" +msgstr "Host-Bios-Exit-Typ" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" -msgstr "FOG-Forum" +#, fuzzy +msgid "Host Create Fail" +msgstr "Host erstellen fehlgeschlagen" -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" -msgstr "Ausstehende Hosts" +#, fuzzy +msgid "Host Create Success" +msgstr "Host erfolgreich erstellt" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "Klicken Sie" +msgid "Host Created" +msgstr "Host erstellt" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "um zu überprüfen." +msgid "Host Desc" +msgstr "Host-Beschreibung" -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" -msgstr "Ausstehende MACs" +msgid "Host Description" +msgstr "Host-Beschreibung" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" -msgstr "Web-Server" +msgid "Host EFI Exit Type" +msgstr "Host-EFI-Exit-Typ" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "Durchschnitt" +#, fuzzy +msgid "Host FOG Client Module configuration" +msgstr "Host FOG-Client Modulkonfiguration" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" -msgstr "Systemverfügbarkeit" +#, fuzzy +msgid "Host HD Device" +msgstr "Host HD-Gerät" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" -msgstr "Systemübersicht" +msgid "Host Hardware Inventory" +msgstr "Host Hardwareinventur" -#: lib/pages/dashboardpage.class.php:254 -#, fuzzy -msgid "Server information at a glance." -msgstr "Serverinformationen auf einen Blick" +msgid "Host ID" +msgstr "Host-ID" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" -msgstr "Speichergruppenaktivität" +msgid "Host Image" +msgstr "Host-Image" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" -msgstr "momentane Aktivität der ausgewählten Gruppen" +msgid "Host Imaging History" +msgstr "Host Imagingverlauf" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" -msgstr "Storage Node Datenträgerverwendung" +#, fuzzy +msgid "Host Init" +msgstr "Host Init" -#: lib/pages/dashboardpage.class.php:303 #, fuzzy -msgid "Selected node's disk usage" -msgstr "Datenträgerverwendung der ausgewählten Knoten" +msgid "Host Invalid" +msgstr "Host Init" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" -msgstr "Imaging in den letzten 30 Tagen" +msgid "Host Kernel" +msgstr "Host-Kernel" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "2 Minuten" +msgid "Host Kernel Arguments" +msgstr "Host Kernel Argumente" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" -msgstr "10 Minuten" +msgid "Host List" +msgstr "Hostliste" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "30 Minuten" +msgid "Host Listing Export" +msgstr "Host-Liste exportieren" -#: lib/pages/dashboardpage.class.php:407 -#, fuzzy -msgid "1 Hour" -msgstr "1 Stunde" +msgid "Host Location" +msgstr "Host Standort" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" -msgstr "" +msgid "Host Login History" +msgstr "Host-Login-Verlauf" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" -msgstr "" +msgid "Host MAC" +msgstr "Host MAC" + +msgid "Host Management" +msgstr "Host-Verwaltung" -#: lib/pages/dashboardpage.class.php:447 #, fuzzy -msgid "No Data Available" -msgstr "Nicht verfügbar" +msgid "Host Membership" +msgstr "Mitgliedschaft" -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "" +msgid "Host Memory" +msgstr "Hostspeicher" -#: lib/pages/dashboardpage.class.php:481 -#, fuzzy -msgid "Node is unavailable" -msgstr "Pfad ist nicht verfügbar" +msgid "Host Name" +msgstr "Host-Name" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" -msgstr "" +msgid "Host Pending MAC" +msgstr "ausstehende MACs des Hosts" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" -msgstr "" +msgid "Host Primary Disk" +msgstr "Primäre Festplatte Host" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" -msgstr "FOG-Projekt auf Github" +msgid "Host Primary MAC" +msgstr "Primäre MAC des Hosts" -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" -msgstr "FOG-Client auf Github" +#, fuzzy +msgid "Host Printers" +msgstr "Host Drucker" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" -msgstr "FOG-Wiki" +msgid "Host Product Key" +msgstr "Host Produktschlüssel" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" -msgstr "Spenden für das FOG Projekt" +#, fuzzy +msgid "Host Product Keys" +msgstr "Host-Produkt-Schlüssel" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" -msgstr "FOG-Versionsinformationen" +msgid "Host Registration" +msgstr "Host-Registrierung" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" -msgstr "Kernel-Versionen" +msgid "Host Screen Resolution" +msgstr "Host Bildschirmauflösung" -#: lib/pages/fogconfigurationpage.class.php:145 #, fuzzy -msgid "FOG Version" -msgstr "FOG-Version" +msgid "Host Site" +msgstr "Hostliste" -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" -msgstr "FOG-Lizenzinformationen" +#, fuzzy +msgid "Host Snapin History" +msgstr "Host Snapinverlauf" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" -msgstr "GNU General Public License" +#, fuzzy +msgid "Host Snapins" +msgstr "Host Snapins" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" -msgstr "In diesem Abschnitt können Sie den Linux-Kernel" +#, fuzzy +msgid "Host Status" +msgstr "Status" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" -msgstr "aktualisieren, der genutzt wird um" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" -msgstr "die Client Computer in den FOG" +#, fuzzy +msgid "Host Unassociated Snapins" +msgstr "Snapins ohne Host" -#: lib/pages/fogconfigurationpage.class.php:220 #, fuzzy -msgid "In FOG" -msgstr "zu booten." +msgid "Host Update Fail" +msgstr "Host-Update fehlgeschlagen" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" -msgstr "dieser Kernel stellt alle Treiber für den Client Computer bereit. " +msgid "Host Update Failed" +msgstr "Host-Update fehlgeschlagen" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" -msgstr "" -"Wenn Sie also nicht in der Lage sind, einen Client zu booten, können Sie" +#, fuzzy +msgid "Host Update Success" +msgstr "Host Aktualisierung erfolgreich!" + +#, fuzzy +msgid "Host Virus History" +msgstr "Host Virus-Verlauf" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" -msgstr "auf einen neueren Kernel updaten, der mehr Treiber beinhaltet. " +#, fuzzy +msgid "Host added!" +msgstr "Host hinzugefügt" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" -msgstr "Der Installationsprozess kann ein paar Minuten dauern, " +msgid "Host approval failed." +msgstr "Host-Genehmigung ist fehlgeschlagen." -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" -msgstr "da der FOG versuchen wird, mit dem Internet zu verbinden, " +msgid "Host approved" +msgstr "Host freigeben" -#: lib/pages/fogconfigurationpage.class.php:226 #, fuzzy -msgid "to get the requested Kernel" -msgstr "um den angeforderten Kernel herunterzuladen." +msgid "Host description" +msgstr "Host-Beschreibung" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" -msgstr "Wenn es den Anschein hat, der Prozess hängt, haben Sie bitte Geduld." +#, fuzzy +msgid "Host general" +msgstr "Host-Kernel" + +msgid "Host is already a member of an active task" +msgstr "Host ist bereits Mitglied eines aktiven Tasks" + +msgid "Host is not valid" +msgstr "Host ist nicht gültig" -#: lib/pages/fogconfigurationpage.class.php:279 #, fuzzy -msgid "Downloading Kernel" -msgstr "Download des Kernels" +msgid "Host module settings" +msgstr "Host Moduleinstellungen" + +msgid "Host name" +msgstr "Host-Name" -#: lib/pages/fogconfigurationpage.class.php:285 #, fuzzy -msgid "Starting process" -msgstr "wird gestartet..." +msgid "Host pairings" +msgstr "Host-Paarungen" -#: lib/pages/fogconfigurationpage.class.php:307 #, fuzzy -msgid "Save Kernel" -msgstr "Kernel speichern" +msgid "Host printer configuration" +msgstr "Host Druckerkonfiguration" -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" -msgstr "Kernel-Name" +msgid "Host token is currently in use" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:332 #, fuzzy -msgid "Install Kernel" -msgstr "Kernel installieren" +msgid "Host updated!" +msgstr "Host aktualisiert!" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 -#, fuzzy -msgid "Install" -msgstr "Installieren" +msgid "Host/Group Name" +msgstr "Host/Gruppenname" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "FOG PXE-Bootmenü-Konfiguration" +msgid "Hostname" +msgstr "Hostname" -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" -msgstr "Hauptfarben" +msgid "Hostname / IP" +msgstr "Hostname / IP" -#: lib/pages/fogconfigurationpage.class.php:465 -#, fuzzy -msgid "Option specifies the color settings of the main menu items" -msgstr "Diese Option definiert die Farbeneinstellungen der Hauptmenü-Objekte" +msgid "Hostname Changer" +msgstr "Hostname-Wechsler" -#: lib/pages/fogconfigurationpage.class.php:469 -#, fuzzy -msgid "Valid Host Colors" -msgstr "Gültige Host-Farben" +msgid "Hosts" +msgstr "Hosts" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 #, fuzzy -msgid "Option specifies the color text on the menu if the host" -msgstr "Diese Option definiert die Textfarbe im Menü, falls der Host" +msgid "Hosts Associated" +msgstr "zugeordnete Hosts" -#: lib/pages/fogconfigurationpage.class.php:479 -#, fuzzy -msgid "is valid" -msgstr "gültig ist." +msgid "Hosts do not have the same image assigned" +msgstr "Den Hosts wurde nicht das gleiche Image zugewiesen" -#: lib/pages/fogconfigurationpage.class.php:483 #, fuzzy -msgid "Invalid Host Colors" -msgstr "Ungültige Host-Farben" +msgid "Hosts in task" +msgstr "Hosts im Task-Prozess" -#: lib/pages/fogconfigurationpage.class.php:494 #, fuzzy -msgid "is invalid" -msgstr "sind ungültig." +msgid "Hot Key Enabled" +msgstr "Hot Key aktiviert" -#: lib/pages/fogconfigurationpage.class.php:498 #, fuzzy -msgid "Main pairings" -msgstr "Alternative Hauptpaarungen" +msgid "Hot Key to use" +msgstr "Hot Key wird bereits verwendet" -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" -msgstr "Diese Option definiert die Farbkombinationen, " +msgid "Hour value is not valid" +msgstr "Stundenwert ist nicht gültig" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" -msgstr "und wo und wie sie zu zeigen sind." +msgid "Hourly" +msgstr "Stündlich" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" -msgstr "Alternative Hauptpaarungen" +msgid "I am not the fog web server" +msgstr "Ich bin nicht der FOG-Web-Server" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" -msgstr "Diese Option spezifiziert die alternativen Paarungen" +#, fuzzy +msgid "I am the group manager" +msgstr "Ich bin der Gruppenmanager" -#: lib/pages/fogconfigurationpage.class.php:526 #, fuzzy -msgid "Host pairings" -msgstr "Host-Paarungen" +msgid "I have read" +msgstr "Ich habe die" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "Diese Option definiert die Paarungen nach der Hostprüfung" +msgid "I.M.C." +msgstr "Ignoriere MAC-Adressen beim Client" -#: lib/pages/fogconfigurationpage.class.php:538 -#, fuzzy -msgid "Menu Timeout" -msgstr "Menü-Timeout" +msgid "I.M.I." +msgstr "Ignoriere MAC-Adresse beim Image (I.M.I.)" -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" -msgstr "in Sekunden" +msgid "ID" +msgstr "ID" -#: lib/pages/fogconfigurationpage.class.php:549 #, fuzzy -msgid "Option specifies the menu timeout" -msgstr "Die Option definiert das Menü-Timeout" +msgid "ID Must be set to edit" +msgstr "ID muss auf 'Bearbeiten' eingestellt sein" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "in Sekunden, bootet die voreingestellte Option" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "" +msgid "IP Address" +msgstr "IP-Adresse" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "offen ist" +msgid "IP Address Changed" +msgstr "IP-Adresse geändert" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" -msgstr "Menü-Hintergrundbild" +msgid "IP Passed is incorrect" +msgstr "IP ist inkorrekt" -#: lib/pages/fogconfigurationpage.class.php:567 -#, fuzzy -msgid "Option specifies the background file to use" -msgstr "Die Option definiert das Hintergrundbild" +msgid "Icon" +msgstr "Symbol" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" -msgstr "für das Menü" +msgid "Icon File not found" +msgstr "Icon-Datei nicht gefunden" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 #, fuzzy -msgid "Make Changes?" -msgstr "Änderungen speichern?" +msgid "If a new module is published the client will" +msgstr "Falls ein neues Modul veröffentlicht wurde, wird " -#: lib/pages/fogconfigurationpage.class.php:598 #, fuzzy -msgid "iPXE Menu Settings" -msgstr "iPXE Menüeinstellungen" - -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "Menü Farben, Paarungen, Einstellungen" +msgid "If action of ask or get" +msgstr "Bei Ausführung von aks oder get" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" -msgstr "Kein Menü" +msgid "If credentials are correct" +msgstr "Falls die Zugangsdaten korrekt sind," -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" -msgstr "Diese Option definiert, ob das Client-System" +#, fuzzy +msgid "If none is specified" +msgstr "Wenn keine Taste definiert ist, " -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" -msgstr "überhaupt ein Menü" +msgid "If off" +msgstr "falls deaktiviert, " -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" -msgstr "enthält oder nicht" +#, fuzzy +msgid "If on" +msgstr "Falls aktiviert," -#: lib/pages/fogconfigurationpage.class.php:631 #, fuzzy msgid "If there is not a task set" msgstr "Wenn keine Aufgabe (Task) aktiviert ist, " -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" -msgstr "bootet es in das erste Objekt." +msgid "If this is an upgrade" +msgstr "Falls dies ein Upgrade ist," + +msgid "If you add a blank node" +msgstr "Wenn Sie einen leeren Knoten hinzufügen," + +msgid "If you are looking to configure settings for a specific host" +msgstr "Falls Sie einen einzelnen Host konfigurieren möchten, " + +msgid "If you need help understanding what items are needed please" +msgstr "" +"Wenn Sie Hilfe benötigen, um zu verstehen, welche Elemente benötigt werden, " + +msgid "If you would like to backup your" +msgstr "Wenn Sie die FOG Datenbank" + +msgid "Ignore MAC on Client" +msgstr "MAC auf dem Client ignorieren" -#: lib/pages/fogconfigurationpage.class.php:635 #, fuzzy -msgid "if there is a task" -msgstr "wenn es eine Aufgabe (Task) gibt, " +msgid "Ignore MAC on Image" +msgstr "Ignoriere MAC-Adresse beim Image" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" -msgstr "führt es diese durch" +msgid "Image" +msgstr "Image" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" -msgstr "Menü ausblenden" +#, fuzzy +msgid "Image Associated: " +msgstr "verknüpftes Image:" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" -msgstr "Diese Option legt die Tastensequenz fest" +msgid "Image Association" +msgstr "Imagezuordnung" -#: lib/pages/fogconfigurationpage.class.php:649 #, fuzzy -msgid "If none is specified" -msgstr "Wenn keine Taste definiert ist, " +msgid "Image Associations" +msgstr "Image Zugehörigkeiten" -#: lib/pages/fogconfigurationpage.class.php:651 #, fuzzy -msgid "ESC is defaulted" -msgstr "ESC ist standardmäßig eingestellt" +msgid "Image Create Fail" +msgstr "Imageerstellung fehlgeschlagen" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" -msgstr "Melden Sie sich an mit den FOG-Anmeldedaten, dann" +#, fuzzy +msgid "Image Create Success" +msgstr "Imageerstellung erfolgreich" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" -msgstr "sehen Sie das Menü. Andernfalls bootet es normal." +msgid "Image Definition" +msgstr "Image Definition" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" -msgstr "Menü-Timeout zu verstecken" +msgid "Image Desc" +msgstr "Image-Desc" + +msgid "Image Description" +msgstr "Imagebeschreibung" + +msgid "Image Enabled" +msgstr "Image aktiviert" + +#, fuzzy +msgid "Image General" +msgstr "Image allgemein" + +msgid "Image History" +msgstr "Image-Verlauf" -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "Die Option definiert den Timeoutwert für das versteckte Menüsystem" +msgid "Image ID" +msgstr "Image-ID" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" -msgstr "Boot-Tastensequenz" +msgid "Image Management" +msgstr "Imageverwaltung" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" -msgstr "Diese Option legt die ipxe-Tastensequenz fest, um den Menüzugriff" +msgid "Image Manager" +msgstr "Image Manager" -#: lib/pages/fogconfigurationpage.class.php:678 #, fuzzy -msgid "access to the hidden menu system" -msgstr "auf das versteckte Menüsystem zu erhalten" - -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" -msgstr "Einstellungen Menü verstecken/kein Menü" +msgid "Image Membership" +msgstr "Image-Mitgliedschaft" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" -msgstr "Beenden zum Festplattentyp" +msgid "Image Name" +msgstr "Image-Name" -#: lib/pages/fogconfigurationpage.class.php:721 -#, fuzzy -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "Die Option definiert die Legacy Boot Exit-Methode von ipxe" +msgid "Image Path" +msgstr "Imagepfad" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "Beenden zur Festplatte (EFI)" +msgid "Image Replicator" +msgstr "Image-Replikator" -#: lib/pages/fogconfigurationpage.class.php:729 #, fuzzy -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "Die Option definiert die EFI Exit-Methode von ipxe" +msgid "Image Size" +msgstr "Imagegröße" -#: lib/pages/fogconfigurationpage.class.php:758 -#, fuzzy -msgid "Boot Exit settings" -msgstr "Boot-Exit Einstellungen" +msgid "Image Size: ON CLIENT" +msgstr "Imagegröße: AUF DEM CLIENT" -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" -msgstr "erweitertes Menü Login" +msgid "Image Size: ON SERVER" +msgstr "Imagegröße: AUF DEM SERVER" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "Die Option unten erzwingt ein Anmeldesystem" +#, fuzzy +msgid "Image Storage Groups" +msgstr "Speichergruppen" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" -msgstr "für die erweiterten Menüparameter" +#, fuzzy +msgid "Image Task Completed" +msgstr "Image Task vollständig" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "falls deaktiviert, " +msgid "Image Transfer Log" +msgstr "Image Übertragungsprotokoll" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" -msgstr "wird kein Login erscheinen." +msgid "Image Type" +msgstr "Imagetyp" -#: lib/pages/fogconfigurationpage.class.php:782 #, fuzzy -msgid "If on" -msgstr "Falls aktiviert," +msgid "Image Update Fail" +msgstr "Image Update fehlgeschlagen" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" -msgstr "wird es einen Login erzwingen, um Zugriff" +#, fuzzy +msgid "Image Update Success" +msgstr "Image Update erfolgreich!" -#: lib/pages/fogconfigurationpage.class.php:786 #, fuzzy -msgid "menu system" -msgstr "auf die erweiterten Menüpunkt zu erhalten." +msgid "Image Used" +msgstr "genutzte Images" -#: lib/pages/fogconfigurationpage.class.php:790 #, fuzzy -msgid "Advanced menu command" -msgstr "Erweiterte Menübefehle" +msgid "Image added!" +msgstr "Image hinzugefügt" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" -msgstr "Fügen Sie beliebigen Text hinzu, den das" +msgid "Image is not enabled" +msgstr "Abbild ist nicht aktiv" -#: lib/pages/fogconfigurationpage.class.php:800 -#, fuzzy -msgid "the advanced menu to use" -msgstr "erweiterte Menü nutzen soll" +msgid "Image is not valid" +msgstr "Image ist nicht gültig" -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" -msgstr "Dies sind ipxe-Skriptbefehle, um mit " +msgid "Image is protected and cannot be deleted" +msgstr "Image ist geschützt und kann nicht gelöscht werden" -#: lib/pages/fogconfigurationpage.class.php:831 #, fuzzy -msgid "Advanced Menu settings" -msgstr "erweiterten Einstellungen zu arbeiten" +msgid "Image to DMI Mappings" +msgstr "Abbilden zu DMI Mappings" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" -msgstr "Ungültiger Wert für Timeout" +#, fuzzy +msgid "Image update failed!" +msgstr "Image Update fehlgeschlagen" -#: lib/pages/fogconfigurationpage.class.php:974 #, fuzzy -msgid "iPXE Settings updated successfully!" -msgstr "iPXE-Einstellungen erfolgreich aktualisiert!" +msgid "Image updated!" +msgstr "Image aktualisiert" + +msgid "Imaged" +msgstr "geimaged" -#: lib/pages/fogconfigurationpage.class.php:975 #, fuzzy -msgid "iPXE Update Success" -msgstr "iPXE-Update erfolgreich!" +msgid "Imaged By" +msgstr "Imaged von" -#: lib/pages/fogconfigurationpage.class.php:982 #, fuzzy -msgid "iPXE Update Fail" -msgstr "iPXE-Update fehlgeschlagen" +msgid "Imaged For" +msgstr "Imaged für" -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "Mit diesem Element können Sie alle iPXE-Menülemente " +#, fuzzy +msgid "Imaged From" +msgstr "Abgebildet von" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" -msgstr "nach Belieben bearbeiten" +msgid "Images" +msgstr "Images" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" -msgstr "Wohlgemerkt" +#, fuzzy +msgid "Imaging Completed" +msgstr "Image Task vollständig" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" -msgstr "iPXE-Syntax ist sehr anspruchsvoll, wenn es um die Bearbeitung geht." +#, fuzzy +msgid "Imaging Duration" +msgstr "Imaging Log" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" -msgstr "" -"Wenn Sie Hilfe benötigen, um zu verstehen, welche Elemente benötigt werden, " +msgid "Imaging Log" +msgstr "Imaging Log" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" -msgstr "" -"lesen Sie bitte die Foren oder suchen Sie nach den verfügbaren Befehlen und " -"Skripts." +msgid "Imaging Over the last 30 days" +msgstr "Imaging in den letzten 30 Tagen" -#: lib/pages/fogconfigurationpage.class.php:1026 #, fuzzy -msgid "from" -msgstr "Von" +msgid "Imaging Started" +msgstr "Snapin-Zustand" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 -#, fuzzy -msgid "Menu Item" -msgstr "Menüpunkt:" +msgid "Import" +msgstr "Import" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 #, fuzzy -msgid "Parameters" -msgstr "Parameter:" +msgid "Import Accesscontrols" +msgstr "Zugriffssteuerung importieren" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 #, fuzzy -msgid "Boot Options" -msgstr "Boot-Optionen:" +msgid "Import CSV" +msgstr "CSV importieren" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 #, fuzzy -msgid "Default Item" -msgstr "Standard-Eintrag:" +msgid "Import CSV?" +msgstr "CSV importieren?" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 -#, fuzzy -msgid "Hot Key Enabled" -msgstr "Hot Key aktiviert" +msgid "Import Configuration" +msgstr "Konfiguration importieren" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 #, fuzzy -msgid "Hot Key to use" -msgstr "Hot Key wird bereits verwendet" +msgid "Import Database" +msgstr "Datenbank importieren" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 #, fuzzy -msgid "Menu Show with" -msgstr "Menü-Show mit:" +msgid "Import Database?" +msgstr "Datenbank importieren?" -#: lib/pages/fogconfigurationpage.class.php:1161 #, fuzzy -msgid "Delete Menu Item" -msgstr "Menü-Element löschen" +msgid "Import FOG Reports" +msgstr "FOG-Berichte importieren" -#: lib/pages/fogconfigurationpage.class.php:1310 #, fuzzy -msgid "iPXE Item Update Success" -msgstr "iPXE Element erfolgreich aktualisiert!" +msgid "Import Failed" +msgstr "Import fehlgeschlagen" -#: lib/pages/fogconfigurationpage.class.php:1328 -#, fuzzy -msgid "successfully removed!" -msgstr "erfolgreich entfernt!" +msgid "Import Groups" +msgstr "Gruppen importieren" -#: lib/pages/fogconfigurationpage.class.php:1329 -#, fuzzy -msgid "iPXE Item Remove Success" -msgstr "iPXE Element erfolgreich entfernt!" +msgid "Import Hosts" +msgstr "Hosts importieren" -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "Neuen iPXE Menü-Eintrag erstellen" +msgid "Import Images" +msgstr "Images importieren" -#: lib/pages/fogconfigurationpage.class.php:1488 #, fuzzy -msgid "New iPXE Menu" -msgstr "Neues iPXE-Menü" +msgid "Import LDAPs" +msgstr "LDAPs importieren" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "Menüpunkt oder Titel darf nicht leer sein." +#, fuzzy +msgid "Import Locations" +msgstr "Standorte importieren" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" -msgstr "Eine Beschreibung muss eingetragen werden" +msgid "Import Printers" +msgstr "Drucker importieren" -#: lib/pages/fogconfigurationpage.class.php:1559 #, fuzzy -msgid "iPXE Item create failed!" -msgstr "Erstellen eines iPXE-Menüs fehlgeschlagen" +msgid "Import Report?" +msgstr "Bericht importieren?" -#: lib/pages/fogconfigurationpage.class.php:1575 #, fuzzy -msgid "iPXE Item added!" -msgstr "iPXE Element hinzugefügt!" +msgid "Import Reports" +msgstr "Berichte importieren" -#: lib/pages/fogconfigurationpage.class.php:1576 #, fuzzy -msgid "iPXE Item Create Success" -msgstr "iPXE-Element erfolgreich erstellt" +msgid "Import Sites" +msgstr "Sites importieren" + +msgid "Import Snapins" +msgstr "Snapins importieren" -#: lib/pages/fogconfigurationpage.class.php:1584 #, fuzzy -msgid "iPXE Item Create Fail" -msgstr "Erstellung eines iPXE-Elements fehlgeschlagen!" +msgid "Import Subnetgroups" +msgstr "Gruppen importieren" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "FOG-Client Service Updater" +#, fuzzy +msgid "Import Successful" +msgstr "Import erfolgreich" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" -msgstr "Modulname" +#, fuzzy +msgid "Import Task States" +msgstr "Taskstatus exportieren" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" -msgstr "Modul-MD5" +#, fuzzy +msgid "Import Task Types" +msgstr "Task-Typen importieren" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" -msgstr "Modul-Typ" +msgid "Import Users" +msgstr "Benutzer importieren" -#: lib/pages/fogconfigurationpage.class.php:1666 #, fuzzy -msgid "Current files" -msgstr "Aktuelle Datensätze" +msgid "Import WOLBroadcasts" +msgstr "WOLBroadcasts importieren" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 #, fuzzy -msgid "NOTICE" -msgstr "BEACHTE" +msgid "Import Windows Keys" +msgstr "Windows-Schlüssel importieren" -#: lib/pages/fogconfigurationpage.class.php:1672 #, fuzzy -msgid "The below items are only used for the old client." -msgstr "Die unten aufgeführten Elemente werden nur für alte Clients genutzt" - -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" -msgstr "Alte Clients sind die Clients, die von FOG Version 1.2.0" - -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" -msgstr "oder früher gekommen sind." +msgid "In" +msgstr "In " -#: lib/pages/fogconfigurationpage.class.php:1678 #, fuzzy -msgid "This section allows you to update the modules and" -msgstr "In diesem Abschnitt können Sie die Module und " +msgid "In FOG" +msgstr "zu booten." -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." -msgstr "" -"Konfigurationsdateien aktualisieren, die auf den Clientcomputern ausgeführt " -"werden." +msgid "Included Items" +msgstr "Zubehör" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" -msgstr "Die Clients prüfen von Zeit zu Zeit," +#, fuzzy +msgid "Info" +msgstr "Info" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." -msgstr "ob ein neues Modul veröffentlicht wurde." +msgid "Information" +msgstr "Informationen" -#: lib/pages/fogconfigurationpage.class.php:1686 #, fuzzy -msgid "If a new module is published the client will" -msgstr "Falls ein neues Modul veröffentlicht wurde, wird " - -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" -msgstr "der Client das Modul herunterladen und verwendet es " +msgid "Init" +msgstr "In " -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." -msgstr "beim nächsten Start des Dienstes." +#, fuzzy +msgid "Initial Template" +msgstr "ursprüngliches Template" -#: lib/pages/fogconfigurationpage.class.php:1710 #, fuzzy -msgid "Upload file" -msgstr "Datei hochladen" +msgid "Initrd Name" +msgstr "Sitename" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 #, fuzzy -msgid "Delete Selected Items" -msgstr "ausgewählte Elemente löschen" +msgid "Initrd Update" +msgstr "Ungültiges Datum" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 #, fuzzy -msgid "Make Changes" -msgstr "Änderungen speichern" +msgid "Install" +msgstr "Installieren" + +msgid "Install / Update Failed!" +msgstr "Installation / Update fehlgeschlagen!" + +msgid "Install / Update Successful!" +msgstr "Installation / Update erfolgreich!" -#: lib/pages/fogconfigurationpage.class.php:1795 #, fuzzy -msgid "Item removed successfully!" -msgstr "Element erfolgreich entfernt!" +msgid "Install Initrd" +msgstr "Installieren" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 #, fuzzy -msgid "Client Modules Change Success" -msgstr "Client Modul erfolgreich geändert" +msgid "Install Kernel" +msgstr "Kernel installieren" -#: lib/pages/fogconfigurationpage.class.php:1803 #, fuzzy -msgid "No file uploaded!" -msgstr "Keine Datei hochgeladen" +msgid "Install Plugin" +msgstr "Plugin installieren" + +msgid "Install Plugins" +msgstr "Plugins installieren" -#: lib/pages/fogconfigurationpage.class.php:1849 #, fuzzy -msgid "Modules added/updated successfully!" -msgstr "Module erfolgreich hinzugefügt/aktualisiert" +msgid "Install/Update" +msgstr "Installation/Update" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" -msgstr "Änderung des Client Moduls fehlgeschlagen" +#, fuzzy +msgid "Install/Update Now" +msgstr "Jetzt installieren/aktualisieren" -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" -msgstr "Liste der Hersteller nach MAC-Adresse" +msgid "Installed Plugins" +msgstr "Installierte Plugins" -#: lib/pages/fogconfigurationpage.class.php:1881 #, fuzzy -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" -msgstr "" -"In diesem Abschnitt können Sie bekannte MAC-Adressenhersteller in die FOG-" -"Datenbank zur leichteren Identifizierung importieren." +msgid "Integrity Settings" +msgstr "Integritätseinstellungen" -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" -msgstr "Aktuelle Datensätze" +msgid "Interface" +msgstr "Schnittstelle" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" -msgstr "MACs löschen" +msgid "Interface not ready, waiting for it to come up" +msgstr "Netzwerkschnittstelle nicht bereit, warte auf deren Start" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" -msgstr "MACs aktualisieren" +#, fuzzy +msgid "Invalid" +msgstr "Ungültig" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" -msgstr "FOG-Systemeinstellungen" +msgid "Invalid Class" +msgstr "Ungültige Klasse" -#: lib/pages/fogconfigurationpage.class.php:2073 #, fuzzy -msgid "This section allows you to customize or alter" -msgstr "Dieser Bereich erlaubt die Anpassung oder Änderung" +msgid "Invalid File" +msgstr "Ungültige Datei" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" -msgstr "der Art und Weise, wie FOG arbeitet." +msgid "Invalid Folder" +msgstr "Ungültiger Ordner" -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "" -"Seien Sie bitte sehr vorsichtig bei der Änderung der folgenden " -"Einstellungen, " +msgid "Invalid Host" +msgstr "Ungültiger Host" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" -msgstr "da sie Probleme verursachen kann, die sehr schwierig zu lösen sind." +#, fuzzy +msgid "Invalid Host Colors" +msgstr "Ungültige Host-Farben" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" -msgstr "Alle ausklappen" +#, fuzzy +msgid "Invalid ID passed" +msgstr "Ungültige ID übergeben" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 #, fuzzy -msgid "Partclone Gzip" -msgstr "Partclone Gzip" +msgid "Invalid IP" +msgstr "Ungültige IP" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "Partclone Gzip geteilt 200MiB" +msgid "Invalid Login" +msgstr "ungültiger Login" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" -msgstr "Partclone unkomprimiert" +msgid "Invalid MAC Address!" +msgstr "Ungültige MAC-Adresse!" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 #, fuzzy -msgid "Partclone Uncompressed Split 200MiB" -msgstr "Partclone unkomprimiert gesplittet 200MiB" +msgid "Invalid Multicast Session" +msgstr "ungültige Multicast-Sitzung" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 -#, fuzzy -msgid "Partclone Zstd" -msgstr "Partclone ZSTD" +msgid "Invalid Plugin Passed" +msgstr "Ungültiges Plugin übergeben" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 -#, fuzzy -msgid "Partclone Zstd Split 200MiB" -msgstr "Partclone ZSTD gesplittet 200MiB" +msgid "Invalid Server Information!" +msgstr "Ungültige Serverinformation!" -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" -msgstr "Kein Image angegeben" +msgid "Invalid Snapin" +msgstr "Ungültiges Snapin" + +msgid "Invalid Snapin Tasking" +msgstr "Ungültiges Snapin-Tasking" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 #, fuzzy -msgid "Reset Token" -msgstr "Token zurücksetzen" +msgid "Invalid Snapin Tasking object" +msgstr "Ungültiges Snapin-Tasking-Objekt" -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" -msgstr "Kein Image angegeben" +msgid "Invalid Storage Group" +msgstr "Ungültige Speichergruppe" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." -msgstr "Breite muss 650 Pixel betragen" +msgid "Invalid Storage Node" +msgstr "Ungültiger Speicherknoten" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "Höhe muss 120 Pixel betragen" +msgid "Invalid Task Type" +msgstr "Ungültiger Task-Typ" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 #, fuzzy -msgid "Settings successfully stored!" -msgstr "Einstellungen erfolgreich gespeichert!" +msgid "Invalid Tasking" +msgstr "Ungültiger Vorgang" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 -#, fuzzy -msgid "Settings Update Success" -msgstr "Einstellungen erfolgreich aktualisiert" +msgid "Invalid Timeout Value" +msgstr "Ungültiger Wert für Timeout" -#: lib/pages/fogconfigurationpage.class.php:2874 #, fuzzy -msgid "Service Setting Update Success" -msgstr "Service Settings erfoglreich aktualisiert!" +msgid "Invalid Type" +msgstr "Ungültiger Typ" -#: lib/pages/fogconfigurationpage.class.php:2878 #, fuzzy -msgid "Rebranding element has been successfully updated!" -msgstr "Rebrandingelement wurde erfolgreich aktualisiert" +msgid "Invalid data being parsed" +msgstr "Ungültige Daten wurden geparst" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 #, fuzzy -msgid "Settings Update Fail" -msgstr "Update der Einstellungen fehlgeschlagen" +msgid "Invalid data found" +msgstr "Ungültige Daten gefunden" -#: lib/pages/fogconfigurationpage.class.php:2896 #, fuzzy -msgid "Service Setting Update Failed" -msgstr "Update der Service Settings fehlgeschlagen" +msgid "Invalid date" +msgstr "Ungültiges Datum" -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" -msgstr "Service-Master" +msgid "Invalid image" +msgstr "Ungültiges Image" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" -msgstr "Scheduler" +msgid "Invalid image assigned to host" +msgstr "Ungültiges Image zugewiesen" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" -msgstr "Image-Replikator" +msgid "Invalid key being added" +msgstr "Ungültiger Schlüssel wurde hinzugefügt" -#: lib/pages/fogconfigurationpage.class.php:3052 #, fuzzy -msgid "Image Size" -msgstr "Imagegröße" +msgid "Invalid key being destroyed" +msgstr "Ungültiger Schlüssel wurde zerstört" -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" -msgstr "Snapin-Replikator" +msgid "Invalid key being removed" +msgstr "Ungültiger Schlüssel wurde entfernt" -#: lib/pages/fogconfigurationpage.class.php:3070 #, fuzzy -msgid "Snapin Hash" -msgstr "Snapin Hash" - -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" -msgstr "Hosts anpingen" - -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" -msgstr "Image Übertragungsprotokoll" - -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" -msgstr "Snapin Übertragungsprotokoll" +msgid "Invalid key being requested" +msgstr "Ungültiger Schlüssel wurde angefordert" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" -msgstr "FOG Logviewer" +msgid "Invalid key being set" +msgstr "Ungültiger Schlüssel wurde gesetzt" -#: lib/pages/fogconfigurationpage.class.php:3235 -#, fuzzy -msgid "Lines" -msgstr "Zeilen" +msgid "Invalid method called" +msgstr "Ungültige Methode aufgerufen" -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" -msgstr "Datei umkehren (neueste oben)" +msgid "Invalid numeric entry" +msgstr "Ungültige numerische Eingabe" -#: lib/pages/fogconfigurationpage.class.php:3251 #, fuzzy -msgid "Pause" -msgstr "Pause" +msgid "Invalid object to try tasking" +msgstr "Ungültiger Objekttyp für diesen Task" -#: lib/pages/fogconfigurationpage.class.php:3270 -#, fuzzy -msgid "Configuration Import/Export" -msgstr "Konfiguration Import/Export" +msgid "Invalid object type passed" +msgstr "Ungültiger Objekttyp übergeben" -#: lib/pages/fogconfigurationpage.class.php:3290 -#, fuzzy -msgid "Export Database?" -msgstr "Datenbank exportieren?" +msgid "Invalid operational mode" +msgstr "Ungültiger Betriebsmodus" -#: lib/pages/fogconfigurationpage.class.php:3309 #, fuzzy -msgid "Export Database" -msgstr "Datenbank exportieren" +msgid "Invalid scheduling type" +msgstr "Ungültiger Zeitplantyp" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 #, fuzzy -msgid "Import Database?" -msgstr "Datenbank importieren?" +msgid "Invalid snapin" +msgstr "Ungültiger Snapin" -#: lib/pages/fogconfigurationpage.class.php:3351 -#, fuzzy -msgid "Import Database" -msgstr "Datenbank importieren" +msgid "Invalid task" +msgstr "Ungültiger Task" -#: lib/pages/fogconfigurationpage.class.php:3399 #, fuzzy -msgid "Import Successful" -msgstr "Import erfolgreich" +msgid "Invalid task id" +msgstr "Ungültige Task-ID" -#: lib/pages/fogconfigurationpage.class.php:3403 #, fuzzy -msgid "Database imported and added successfully!" -msgstr "Datenbank erfolgreich importiert und hinzugefügt" +msgid "Invalid task id sent" +msgstr "Ungültige Task-ID gesendet" -#: lib/pages/fogconfigurationpage.class.php:3414 #, fuzzy -msgid "Import Failed" -msgstr "Import fehlgeschlagen" +msgid "Invalid tasking type passed" +msgstr "Ungültiger Tasking Typ übergeben" -#: lib/pages/fogconfigurationpage.class.php:3418 #, fuzzy -msgid "There were errors during import!" -msgstr "Es gab Fehler während des Imports!" +msgid "Invalid tasking!" +msgstr "Ungültiger Vorgang" -#: lib/pages/fogconfigurationpage.class.php:3427 -#, fuzzy -msgid "Database Reverted" -msgstr "Datenbank wurde zurückgesetzt." +msgid "Invalid token passed" +msgstr "Ungültiger Token übergeben" -#: lib/pages/fogconfigurationpage.class.php:3430 #, fuzzy -msgid "Database changes reverted!" -msgstr "Datenbankänderungen rückgängig gemacht" +msgid "Invalid token passed for host" +msgstr "Ungültiger Token übergeben" -#: lib/pages/fogconfigurationpage.class.php:3437 -#, fuzzy -msgid "Database Failure" -msgstr "Datenbankfehler!" +msgid "Invalid type, merge to add, diff to remove" +msgstr "Ungültiger Typ, Zusammenführen zum Hinzufügen, Entfernen zum Entfernen" -#: lib/pages/fogconfigurationpage.class.php:3441 -#, fuzzy -msgid "Errors on revert detected!" -msgstr "Fehler beim Zurücksetzen erkannt!" +msgid "Invalid user and/or channel passed" +msgstr "Ungültiger Benutzer und/oder Kanal übergeben" -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" -msgstr "Neue Gruppe" +msgid "Inventory" +msgstr "Inventar" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" -msgstr "Gruppenname" +msgid "Inventory ID" +msgstr "Bestands-ID" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" -msgstr "Gruppenbeschreibung" +msgid "Is Advanced" +msgstr "Ist fortgeschritten" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" -msgstr "Gruppe-Kernel" +msgid "Is Enabled" +msgstr "ist aktiviert" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" -msgstr "Gruppe-Kernel Argumente" +msgid "Is Graph Enabled" +msgstr "Diagramm ist aktiviert" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" -msgstr "Primäre Festplatte der Gruppe" +msgid "Is Group" +msgstr "ist Gruppe" -#: lib/pages/groupmanagementpage.class.php:298 -#, fuzzy -msgid "A group name is required!" -msgstr "Ein Gruppenname ist erforderlich!" +msgid "Is Master Node" +msgstr "ist Master-Knoten" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 #, fuzzy -msgid "A group already exists with this name!" -msgstr "Eine Gruppe mit diesem Namen ist bereits vorhanden!" +msgid "Is Pack" +msgstr "Ist ein Paket" + +msgid "Is Restricted User " +msgstr "ist ein eingeschränkter Benutzer" + +msgid "Is a" +msgstr "Ist ein" -#: lib/pages/groupmanagementpage.class.php:313 #, fuzzy -msgid "Add group failed!" -msgstr "Gruppe hinzufügen fehlgeschlagen!" +msgid "Is restricted" +msgstr "ist eingeschränkt" + +msgid "It can be used on Windows" +msgstr "Kompatibel mit Windows," -#: lib/pages/groupmanagementpage.class.php:318 #, fuzzy -msgid "Group added!" -msgstr "Gruppe hinzugefügt!" +msgid "It is primarily geared for the smart installer methodology now" +msgstr "Diese richtet sich in erster Linie für den Smart Installer" + +msgid "It operates by getting the max bandwidth setting of the node" +msgstr "indem es die max. Bandbreiteneinstellung desjenigen Knotens" + +msgid "It tells the client to download snapins from" +msgstr "Es weist den Client an, Snapins vom hostdefinierten " + +msgid "It will operate based on the fields the area typically requires" +msgstr "" +"Es funktioniert mittels der Einträge, die der Bereich normalerweise benötigt" -#: lib/pages/groupmanagementpage.class.php:319 #, fuzzy -msgid "Group Create Success" -msgstr "Gruppe erfolgreich erstellt" +msgid "Item removed successfully!" +msgstr "Element erfolgreich entfernt!" + +msgid "Items must be an array" +msgstr "Elemente müssen ein Array sein" + +msgid "Job Create Date" +msgstr "Job-Erstellungsdatum" + +msgid "Job Create Time" +msgstr "Job-Erstellungszeit" -#: lib/pages/groupmanagementpage.class.php:327 #, fuzzy -msgid "Group Create Fail" -msgstr "Gruppe erstellen fehlgeschlagen" +msgid "Join Domain after deploy" +msgstr "Nach der Verteilung einer Domäne beitreten" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" -msgstr "Produktschlüssel der Gruppe" +msgid "Kernel" +msgstr "Kernel" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "Gruppen-BIOS-Exit-Typ" +msgid "Kernel Args" +msgstr "Kernel Args" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "Gruppe-EFI-Exit-Typ" +msgid "Kernel Arguments" +msgstr "Kernel-Argumente" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" -msgstr "Verschlüsselungsdatei zurücksetzen" +msgid "Kernel Name" +msgstr "Kernel-Name" -#: lib/pages/groupmanagementpage.class.php:562 -#, fuzzy -msgid "Group general" -msgstr "Gruppe allgemein" +msgid "Kernel Update" +msgstr "Kernel-Update" + +msgid "Kernel Versions" +msgstr "Kernel-Versionen" + +msgid "Kernels/Inits from location" +msgstr "Kerne / Inits von Standort" -#: lib/pages/groupmanagementpage.class.php:611 #, fuzzy -msgid "Group image" -msgstr "Gruppen-Image" +msgid "Key" +msgstr "DMI-Schlüssel" -#: lib/pages/groupmanagementpage.class.php:644 #, fuzzy -msgid "Group image association" -msgstr "Gruppen Imagezugehörigkeit" +msgid "Key Name" +msgstr "Schlüsselname" -#: lib/pages/groupmanagementpage.class.php:698 #, fuzzy -msgid "Group Power Management Remove" -msgstr "Gruppen Power Management entfernen" +msgid "Key field must be a string" +msgstr "Schlüsselfeldname muss eine Zeichenfolge sein." -#: lib/pages/groupmanagementpage.class.php:703 #, fuzzy -msgid "Delete all PM tasks?" -msgstr "Alle PM Tasks löschen?" +msgid "Key must be a string" +msgstr "Schlüsselname muss eine Zeichenfolge sein." -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" -msgstr "Drucker-Alias" +#, fuzzy +msgid "Key must be a string or index" +msgstr "Schlüsselname muss eine Zeichenfolge sein." -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" -msgstr "Druckertyp" +msgid "Key must be an array of keys or a string." +msgstr "" +"Schlüsselname muss ein Array von Schlüsseln sein oder eine Zeichenfolge haben" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" -msgstr "TCP/IP" +msgid "Kill" +msgstr "sofort abbrechen" -#: lib/pages/groupmanagementpage.class.php:817 #, fuzzy -msgid "Group Printers" -msgstr "Gruppendrucker" +msgid "LDAP Connection Name" +msgstr "LDAP Verbindungsname" -#: lib/pages/groupmanagementpage.class.php:827 #, fuzzy -msgid "Printer Configuration" -msgstr "Druckerkonfiguration" +msgid "LDAP Connection Name" +msgstr "LDAP Verbindungsname" -#: lib/pages/groupmanagementpage.class.php:832 #, fuzzy -msgid "Select management level for these hosts" -msgstr "Wählen Sie die Verwaltungsebene für diese Hosts aus" - -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" -msgstr "Diese Einstellung schaltet FOG Druckerverwaltung aus" - -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" -msgstr "Obwohl es bereits mehrere Ebenen zwischen" +msgid "LDAP Create Fail" +msgstr "LDAP-Server erstellen fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" -msgstr "Host- und globalen Einstellungen gibt," +#, fuzzy +msgid "LDAP Create Success" +msgstr "LDAP-Server erfolgreich hinzugefügt" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" -msgstr "ist diese eine weitere, um die Sicherheit zu erhöhen" +#, fuzzy +msgid "LDAP General" +msgstr "LDAP allgemein" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" -msgstr "Keine Druckerverwaltung" +msgid "LDAP Management" +msgstr "LDAP-Verwaltung" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 #, fuzzy -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." -msgstr "" -"Diese Einstellung löscht oder fügt nur Drucker hinzu, die von FOGverwaltet " -"werden. Wenn der Drucker in der Druckerverwaltung existiert, aber keinem " -"Host zugewiesen ist, wird sie den Drucker entfernen, wenn er auf dem nicht " -"zugeordneten Host vorhanden ist. Außerdem werden dem Host, der zugewiesen " -"ist, Drucker hinzugefügt." +msgid "LDAP Ports" +msgstr "LDAP-Server-Port" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" -msgstr "FOG-verwaltete Drucker" +msgid "LDAP Server" +msgstr "LDAP-Server" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." -msgstr "" -"Diese Einstellung erlaubt, nur von FOG zugewiesene Drucker an den Host " -"hinzuzufügen. Jeder Drucker, der nicht zugeordnet ist, wird entfernt, " -"einschließlich nicht FOG-verwaltete Drucker." +msgid "LDAP Server Address" +msgstr "LDAP-Server-Adresse" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" -msgstr "Nur zugewiesene Drucker" +msgid "LDAP Server Description" +msgstr "LDAP-Server-Beschreibung" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 #, fuzzy -msgid "Update printer configuration" -msgstr "Druckerkonfiguration aktualisieren" +msgid "LDAP Server Port" +msgstr "LDAP-Server-Port" -#: lib/pages/groupmanagementpage.class.php:918 #, fuzzy -msgid "Printer Associations" -msgstr "Druckerzugehörigkeiten" +msgid "LDAP Server added!" +msgstr "LDAP-Server hinzugefügt!" -#: lib/pages/groupmanagementpage.class.php:928 #, fuzzy -msgid "Make Printer Changes" -msgstr "Änderungen speichern" +msgid "LDAP Server updated!" +msgstr "LDAP-Server aktualisiert" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 #, fuzzy -msgid "Add Printers" -msgstr "Drucker hinzufügen" +msgid "LDAP Servers" +msgstr "LDAP-Server" -#: lib/pages/groupmanagementpage.class.php:945 #, fuzzy -msgid "Update Default Printer" -msgstr "Standarddrucker aktualisieren" +msgid "LDAP Update Fail" +msgstr "Aktualisierung des LDAP-Servers fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 #, fuzzy -msgid "Remove selected printers" -msgstr "ausgewählte Drucker entfernen" +msgid "LDAP Update Success" +msgstr "LDAP-Server erfolgreich aktualisiert" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" -msgstr "Snapin-Namen" +msgid "Language" +msgstr "Sprache" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 #, fuzzy -msgid "Snapin Created" -msgstr "Snapin erstellt" +msgid "Last Captured" +msgstr "Zuletzt hochgeladen" -#: lib/pages/groupmanagementpage.class.php:1044 -#, fuzzy -msgid "Group Snapins" -msgstr "Gruppen-Snapins" +msgid "Last Deployed" +msgstr "Zuletzt verteilt" -#: lib/pages/groupmanagementpage.class.php:1054 #, fuzzy -msgid "Available Snapins" -msgstr "verfügbare Snapins" +msgid "Last Updated Time" +msgstr "Letzte Updatezeit" -#: lib/pages/groupmanagementpage.class.php:1064 #, fuzzy -msgid "Make Snapin Changes" -msgstr "Änderungen speichern" +msgid "Last captured" +msgstr "zuletzt erstellt" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 #, fuzzy -msgid "Add selected snapins" -msgstr "ausgewählte Snapins hinzufügen" +msgid "Latest Development Version" +msgstr "Neueste Entwicklungsversion" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" -msgstr "ausgewählte Snapins entfernen" +msgid "Latest Version" +msgstr "Neueste Version" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 #, fuzzy -msgid "This module is only used on the old client" -msgstr "Diese Einstellung wird nur auf alten Clients verwendet." +msgid "Level must be an integer" +msgstr "Level muss eine integer sein." -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" -msgstr "veraltete Clients wurden verteilt mit FOG 1.2.0 oder früher" +msgid "License" +msgstr "Lizenz" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" -msgstr "Dieses Modul funktioniert mit Windows Vista oder" +msgid "Line" +msgstr "Zeile" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "neuer wegen UAC nicht mehr." +#, fuzzy +msgid "Lines" +msgstr "Zeilen" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "Der veraltete Client sind Clients, die mit" +msgid "Link New Account" +msgstr "Neuen Account verknüpfen" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" -msgstr "FOG 1.2.0 oder früher verteilt wurden." +msgid "Link Pushbullet Account" +msgstr "Pushbullet-Account verknüpfen" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "Dieses Modul wurde im neuen Client ersetzt" +#, fuzzy +msgid "Link Pushbullet Account Fail" +msgstr "Verknüpfen eines Pushbullet-Accounts fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "und das entsprechende Modul, das früher" +#, fuzzy +msgid "Link Pushbullet Account Success" +msgstr "Verknüpfen eines Pushbullet-Accounts erfolgreich" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" -msgstr "Green FOG war, heißt nun Power Management" +msgid "Link Slack Account" +msgstr "Slack Account verknüpfen" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" -msgstr "Dies ist nur verfügbar, um veraltete Clients zu pflegen " +#, fuzzy +msgid "Link Slack Account Fail" +msgstr "Verknüpfen des Slack Accounts fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" -msgstr "Dieses Modul funktioniert mit Windows Vista oder neuer" +#, fuzzy +msgid "Link Slack Account Success" +msgstr "Slack Account erfolgreich verknüpft" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" -msgstr "wegen UAC nicht mehr." +#, fuzzy +msgid "Link must be a string" +msgstr "Verknüpfung muss eine Zeichenfolge sein." -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" -msgstr "Dieses Modul wird nur verwendet" +msgid "Linux" +msgstr "Linux" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" -msgstr "mit Modulen und Konfigurationen" +#, fuzzy +msgid "List" +msgstr "Zeige" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" -msgstr "auf dem veralteten Client." +#, php-format +msgid "List All %s" +msgstr "Alle %s auflisten" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" -msgstr "Alle auswählen/abwählen" +#, fuzzy, php-format +msgid "List all roles" +msgstr "Alle Rollen auflisten" -#: lib/pages/groupmanagementpage.class.php:1300 -#, fuzzy -msgid "Group FOG Client Module configuration" -msgstr "Gruppenkonfiguration FOG-Client-Module" +#, fuzzy, php-format +msgid "List all rules" +msgstr "Alle Regeln auflisten" -#: lib/pages/groupmanagementpage.class.php:1310 -#, fuzzy -msgid "Group module settings" -msgstr "Gruppeneinstellungen Module" +msgid "Listener must be an array or an object" +msgstr "Listener muss ein Array oder ein Objekt sein" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -#, fuzzy -msgid "Update module configurations" -msgstr "Modulkonfigurationen aktualisieren" +msgid "Load Average" +msgstr "Durchschnitt" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "Breite (in Pixel)" +msgid "Load MAC Vendors" +msgstr "MAC-Anbieter laden" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "Höhe (in Pixel)" +#, fuzzy +msgid "Load failed" +msgstr "Laden fehlgeschlagen: %s" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" -msgstr "Bildschirm-Aktualisierungsrate (in Hz)" +#, fuzzy +msgid "Loading data to field" +msgstr "Laden von Daten zum Feld %s" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" -msgstr "Gruppe Bildschirmauflösung" +msgid "Location" +msgstr "Ort" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 #, fuzzy -msgid "Update display resolution" -msgstr "Bilschirmauflösung aktualisieren" +msgid "Location Association" +msgstr "Standort Zugehörigkeiten" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "Auto-Logout-Zeit (in Minuten)" +#, fuzzy +msgid "Location Create Fail" +msgstr "Standort erstellen fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" -msgstr "Gruppe Auto-Logout" +#, fuzzy +msgid "Location Create Success" +msgstr "Standort erfolgreich erstellt" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 #, fuzzy -msgid "Update auto-logout time" -msgstr "Auto-Logout-Zeit aktualisieren" +msgid "Location General" +msgstr "Standort allgemein" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" -msgstr "PDF-Datei exportieren" +msgid "Location Management" +msgstr "Standortverwaltung" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" -msgstr "Hostspeicher" +msgid "Location Name" +msgstr "Name des Standorts" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 #, fuzzy -msgid "You must select an action to perform" -msgstr "Sie müssen eine Aktion auswählen, die ausgeführt werden soll" +msgid "Location Update Fail" +msgstr "Standort Aktualisierung fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:2099 #, fuzzy -msgid "Group update failed!" -msgstr "Gruppenaktualisierung fehlgeschlagen" +msgid "Location Update Success" +msgstr "Standort erfolgreich aktualisiert" -#: lib/pages/groupmanagementpage.class.php:2104 #, fuzzy -msgid "Group updated!" -msgstr "Gruppe aktualisiert" +msgid "Location added!" +msgstr "Standort hinzugefügt" + +msgid "Location already Exists, please try again." +msgstr "Standort bereits vorhanden, versuchen Sie es bitte erneut." + +msgid "Location is a plugin that allows your FOG Server" +msgstr "Standort ist ein Plugin, mit dem Ihr FOG-Server" -#: lib/pages/groupmanagementpage.class.php:2105 #, fuzzy -msgid "Group Update Success" -msgstr "Gruppe erfolgreich aktualisiert" +msgid "Location update failed!" +msgstr "Standortupdate fehlgeschlagen" -#: lib/pages/groupmanagementpage.class.php:2113 #, fuzzy -msgid "Group Update Fail" -msgstr "Gruppe aktualisieren fehlgeschlagen" +msgid "Location updated!" +msgstr "Standort aktualisiert" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" -msgstr "geimaged" +msgid "Location/Deployed" +msgstr "Standort / Verteilt" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" -msgstr "Zugeordnetes Image" +msgid "Locations" +msgstr "Standorte" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" -msgstr "Zur Task-Liste" +msgid "Log Viewer" +msgstr "Log-Viewer" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" -msgstr "Liste der ausstehenden Hosts" +msgid "Login" +msgstr "Anmeldung" + +msgid "Login History" +msgstr "Login-Verlauf" -#: lib/pages/hostmanagementpage.class.php:333 #, fuzzy -msgid "Approve selected hosts" -msgstr "Ausgewählte Hosts freigeben" +msgid "Login Users" +msgstr "Anmeldung" -#: lib/pages/hostmanagementpage.class.php:338 #, fuzzy -msgid "Delete selected hosts" -msgstr "Ausgewählte Hosts löschen" +msgid "Login accepted" +msgstr "Anmeldezeit" -#: lib/pages/hostmanagementpage.class.php:367 #, fuzzy -msgid "Approve Success" -msgstr "Freigabe erfolgreich" +msgid "Login failed" +msgstr "Laden fehlgeschlagen: %s" -#: lib/pages/hostmanagementpage.class.php:368 #, fuzzy -msgid "Selected hosts approved successfully" -msgstr "ausgewählte Hosts erfolgreich freigegeben" +msgid "Login time" +msgstr "Anmeldezeit" + +msgid "Login with the FOG credentials and you will see the menu" +msgstr "Melden Sie sich an mit den FOG-Anmeldedaten, dann" -#: lib/pages/hostmanagementpage.class.php:376 -#, fuzzy -msgid "Deleted Success" -msgstr "Löschen erfolgreich" +msgid "Logout" +msgstr "Logout" -#: lib/pages/hostmanagementpage.class.php:377 #, fuzzy -msgid "Selected hosts deleted successfully" -msgstr "ausgewählte Hosts erfolgreich gelöscht" +msgid "Logout not found" +msgstr "Logout nicht gefunden" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" -msgstr "Neuer Host" +msgid "MAC" +msgstr "MAC" -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" -msgstr "Host-Name" +#, fuzzy +msgid "MAC Address" +msgstr "MAC-Adresse" -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" -msgstr "Primäre MAC" +msgid "MAC Address List" +msgstr "Liste der MAC-Adressen" -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" -msgstr "Host-Beschreibung" +msgid "MAC Address Manufacturer Listing" +msgstr "Liste der Hersteller nach MAC-Adresse" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" -msgstr "Host Produktschlüssel" +msgid "MAC Format is invalid" +msgstr "MAC-Format ist ungültig" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" -msgstr "Host-Image" +msgid "MAC address is already in use by another host" +msgstr "Die MAC-Adresse wird bereits von einem andern Host verwendet" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" -msgstr "Host-Kernel" +msgid "MB Asset" +msgstr "Mainboard-Asset" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" -msgstr "Host Kernel Argumente" +msgid "MB Manufacturer" +msgstr "Mainboard-Hersteller" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 -#, fuzzy -msgid "Host Init" -msgstr "Host Init" +msgid "MB Name" +msgstr "Mainboard-Name" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" -msgstr "Primäre Festplatte Host" +msgid "MB Serial" +msgstr "Mainboard-Serie" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "Host-Bios-Exit-Typ" +msgid "MB Version" +msgstr "Mainboard-Version" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" -msgstr "Host-EFI-Exit-Typ" +msgid "MSI" +msgstr "MSI" -#: lib/pages/hostmanagementpage.class.php:616 #, fuzzy -msgid "A host name is required!" -msgstr "Ein Hostname ist erforderlich!" +msgid "Machine Details" +msgstr "Details" -#: lib/pages/hostmanagementpage.class.php:621 -#, fuzzy -msgid "A mac address is required!" -msgstr "MAC-Adresse ist erforderlich" +msgid "Main Colors" +msgstr "Hauptfarben" -#: lib/pages/hostmanagementpage.class.php:626 -#, fuzzy -msgid "A host already exists with this name!" -msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" +msgid "Main Menu" +msgstr "Hauptmenü" -#: lib/pages/hostmanagementpage.class.php:631 -msgid "MAC Format is invalid" -msgstr "MAC-Format ist ungültig" +msgid "Main fallback pairings" +msgstr "Alternative Hauptpaarungen" -#: lib/pages/hostmanagementpage.class.php:638 #, fuzzy -msgid "A host with this mac already exists with name" -msgstr "Ein Host mit diesem MAC bereits mit Hostname: %s" +msgid "Main pairings" +msgstr "Alternative Hauptpaarungen" -#: lib/pages/hostmanagementpage.class.php:673 #, fuzzy -msgid "Add host failed!" -msgstr "Hinzufügen eines Hosts fehlgeschlagen!" +msgid "Make Changes" +msgstr "Änderungen speichern" -#: lib/pages/hostmanagementpage.class.php:678 #, fuzzy -msgid "Host added!" -msgstr "Host hinzugefügt" +msgid "Make Changes?" +msgstr "Änderungen speichern?" -#: lib/pages/hostmanagementpage.class.php:679 #, fuzzy -msgid "Host Create Success" -msgstr "Host erfolgreich erstellt" +msgid "Make Printer Changes" +msgstr "Änderungen speichern" -#: lib/pages/hostmanagementpage.class.php:687 #, fuzzy -msgid "Host Create Fail" -msgstr "Host erstellen fehlgeschlagen" +msgid "Make Snapin Changes" +msgstr "Änderungen speichern" -#: lib/pages/hostmanagementpage.class.php:830 #, fuzzy -msgid "Current Power Management settings" -msgstr "Momentane Power Management Einstellungen" +msgid "Make changes?" +msgstr "Änderungen speichern?" -#: lib/pages/hostmanagementpage.class.php:841 -#, fuzzy -msgid "Update PM Values" -msgstr "Werte des Power Managements aktualisieren" +msgid "Management" +msgstr "Verwaltung" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" -msgstr "MAC entfernen" +msgid "Management Login" +msgstr "Management-Login" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" -msgstr "MAC auf dem Client ignorieren" +msgid "Management Password" +msgstr "Management-Passwort" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." -msgstr "Ignoriere MAC-Adressen beim Client" +msgid "Management Username" +msgstr "Management-Benutzernamen" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -#, fuzzy -msgid "Ignore MAC on Image" -msgstr "Ignoriere MAC-Adresse beim Image" +msgid "Master Node" +msgstr "Master-Knoten" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." -msgstr "Ignoriere MAC-Adresse beim Image (I.M.I.)" +msgid "Max" +msgstr "Maximal" -#: lib/pages/hostmanagementpage.class.php:968 -#, fuzzy -msgid "Approve MAC" -msgstr "MAC freigeben" +msgid "Max Clients" +msgstr "Maximale Clients" -#: lib/pages/hostmanagementpage.class.php:981 -#, fuzzy -msgid "Approve all pending? " -msgstr "Alle ausstehenden freigeben?" +msgid "Max Size" +msgstr "Max. Größe" -#: lib/pages/hostmanagementpage.class.php:987 -#, fuzzy -msgid "Approve all pending macs" -msgstr "alle ausstehenden MACs freigeben" +msgid "Members" +msgstr "Mitglieder" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" -msgstr "MAC hinzufügen" +msgid "Membership" +msgstr "Mitgliedschaft" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "Weitere MACs" +msgid "Memory" +msgstr "Speicher" -#: lib/pages/hostmanagementpage.class.php:1113 -#, fuzzy -msgid "Host description" -msgstr "Host-Beschreibung" +msgid "Menu Background File" +msgstr "Menü-Hintergrundbild" -#: lib/pages/hostmanagementpage.class.php:1263 -#, fuzzy -msgid "Host general" -msgstr "Host-Kernel" +msgid "Menu Hide/No Menu settings" +msgstr "Einstellungen Menü verstecken/kein Menü" -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" -msgstr "Bitte geben Sie einen Hostnamen ein" +#, fuzzy +msgid "Menu Item" +msgstr "Menüpunkt:" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "Bitte geben Sie einen gültigen Hostnamen ein" +msgid "Menu Item or title cannot be blank" +msgstr "Menüpunkt oder Titel darf nicht leer sein." -#: lib/pages/hostmanagementpage.class.php:1345 #, fuzzy -msgid "Please use another hostname" -msgstr "Bitte geben Sie einen anderen Hostnamen ein" +msgid "Menu Show with" +msgstr "Menü-Show mit:" -#: lib/pages/hostmanagementpage.class.php:1349 #, fuzzy -msgid "Please enter a mac address" -msgstr "Bitte geben Sie eine MAC-Adresse an" +msgid "Menu Timeout" +msgstr "Menü-Timeout" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 -#, fuzzy -msgid "Please enter a valid mac address" -msgstr "Bitte geben Sie eine gültige MAC-Adresse an" +msgid "Menu colors, pairings, settings" +msgstr "Menü Farben, Paarungen, Einstellungen" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" -msgstr "Das Image kann während eines Tasks nicht geändert werden" +msgid "Message" +msgstr "Nachricht" -#: lib/pages/hostmanagementpage.class.php:1485 -#, fuzzy -msgid "Host Printers" -msgstr "Host Drucker" +msgid "Method does not exist" +msgstr "Diese Methode ist nicht vorhanden" -#: lib/pages/hostmanagementpage.class.php:1495 -#, fuzzy -msgid "Host printer configuration" -msgstr "Host Druckerkonfiguration" +msgid "Microsoft AD" +msgstr "Microsoft AD" -#: lib/pages/hostmanagementpage.class.php:1500 -#, fuzzy -msgid "Select management level for this host" -msgstr "Verwaltungsebene für diesen Host auswählen" +msgid "Midnight" +msgstr "Mitternacht" -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" -msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" +msgid "Mind you" +msgstr "Wohlgemerkt" -#: lib/pages/hostmanagementpage.class.php:1617 -#, fuzzy -msgid "Add selected printers" -msgstr "Ausgewählte Drucker hinzufügen" +msgid "Minute value is not valid" +msgstr "Minutenwert ist nicht gültig" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "Standard" +msgid "Miscellaneous" +msgstr "Diverses" -#: lib/pages/hostmanagementpage.class.php:1702 -#, fuzzy -msgid "Update/Remove printers" -msgstr "Drucker Aktualisieren/Entfernen" +msgid "Missing a temporary folder" +msgstr "Ein temporärer Ordner fehlt" -#: lib/pages/hostmanagementpage.class.php:1709 #, fuzzy -msgid "Update default printer" -msgstr "Standarddrucker aktualisieren" +msgid "Missing one or more extensions." +msgstr "Eine odere mehrere Erweiterungen fehlen" -#: lib/pages/hostmanagementpage.class.php:1804 #, fuzzy -msgid "Host Snapins" -msgstr "Host Snapins" +msgid "Mobile Group" +msgstr "Mobile Gruppe" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" -msgstr "Überprüfen Sie hier, welche Snapins hinzugefügt werden können" +msgid "Mode" +msgstr "Modus" -#: lib/pages/hostmanagementpage.class.php:1835 -#, fuzzy -msgid "Add Snapins" -msgstr "Snapin(s) hinzufügen" +msgid "Model" +msgstr "Modell" -#: lib/pages/hostmanagementpage.class.php:1911 -#, fuzzy -msgid "Remove snapins" -msgstr "Snapin(s) entfernen" +msgid "Module MD5" +msgstr "Modul-MD5" -#: lib/pages/hostmanagementpage.class.php:2127 -#, fuzzy -msgid "Host FOG Client Module configuration" -msgstr "Host FOG-Client Modulkonfiguration" +msgid "Module Name" +msgstr "Modulname" -#: lib/pages/hostmanagementpage.class.php:2137 -#, fuzzy -msgid "Host module settings" -msgstr "Host Moduleinstellungen" +msgid "Module Type" +msgstr "Modul-Typ" -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" -msgstr "Host Bildschirmauflösung" +#, fuzzy +msgid "Module Update Fail" +msgstr "Modulupdate fehlgeschlagen" -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" -msgstr "Host Auto-Logout" +#, fuzzy +msgid "Module Update Success" +msgstr "Modulupdate erfolgreich" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" -msgstr "Etikett #1" +#, fuzzy +msgid "Module updated!" +msgstr "Modul aktualisiert!" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" -msgstr "Etikett #2" +#, fuzzy +msgid "Modules added/updated successfully!" +msgstr "Module erfolgreich hinzugefügt/aktualisiert" -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" -msgstr "Seriennummer des Systems" +msgid "Month value is not valid" +msgstr "Monats-Wert ist nicht gültig" -#: lib/pages/hostmanagementpage.class.php:2454 -#, fuzzy -msgid "System UUID" -msgstr "System UUID" +msgid "Monthly" +msgstr "Monatlich" + +msgid "Motherboard Asset Tag" +msgstr "Mainboard Asset-Tag" -#: lib/pages/hostmanagementpage.class.php:2459 msgid "Motherboard Manufacturer" msgstr "Mainboard-Hersteller" -#: lib/pages/hostmanagementpage.class.php:2460 msgid "Motherboard Product Name" msgstr "Mainboard-Produktname" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "Mainboard-Version" - -#: lib/pages/hostmanagementpage.class.php:2462 msgid "Motherboard Serial Number" msgstr "Mainboard-Seriennummer" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "Mainboard Asset-Tag" +msgid "Motherboard Version" +msgstr "Mainboard-Version" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" -msgstr "CPU Normalgeschwindigkeit" +msgid "Multicast" +msgstr "Multicast" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" -msgstr "Festplattenmodell" +#, fuzzy +msgid "Multicast Image" +msgstr "Multicast Image" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" -msgstr "Festplatten-Firmware" +msgid "Multicast Quick Deploy" +msgstr "Multicast Schnellverteilung" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" -msgstr "Seriennummer der Festplatte" +msgid "Multicast session created" +msgstr "Multicast-Sitzung erstellt" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" -msgstr "Host Hardwareinventur" +#, fuzzy +msgid "Multicast tasks from groups" +msgstr "Multicast-Tasks von Gruppen" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" -msgstr "Name des Virus" +msgid "MulticastTask" +msgstr "MulticastTask" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" -msgstr "Quarantäne" +msgid "Must be 0 through 23 for hours in a day." +msgstr "Der Wert muss zwischen 0 und 23 liegen (Stunden am Tag)" -#: lib/pages/hostmanagementpage.class.php:2619 -#, fuzzy -msgid "Host Virus History" -msgstr "Host Virus-Verlauf" +msgid "Must be 0 through 59 for minutes in an hour." +msgstr "Der Wert muss zwischen 0 und 59 liegen (Minuten in der Stunde)" -#: lib/pages/hostmanagementpage.class.php:2632 -#, fuzzy -msgid "Clear all history" -msgstr "gesamten Verlauf löschen" +msgid "Must be encrypted" +msgstr "Muss verschlüsselt werden" -#: lib/pages/hostmanagementpage.class.php:2642 -#, fuzzy -msgid "Virus Report" -msgstr "Virusbericht" +msgid "Must have a name to create the table" +msgstr "Zum Erstellen der Tabelle muss sie einen Namen haben" -#: lib/pages/hostmanagementpage.class.php:2746 #, fuzzy -msgid "Logout not found" -msgstr "Logout nicht gefunden" +msgid "Must have an image associated" +msgstr "Muss mit ein Image verknüpft sein" -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" -msgstr "Logout vor dem nächsten Login auf eine Sekunde setzen" +msgid "Must use an" +msgstr "Es muss ein @ oder # verwendet werden," -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" -msgstr "Host-Login-Verlauf" +msgid "MySQL Administrator or by running" +msgstr "dem MySQL Administrator oder mit" -#: lib/pages/hostmanagementpage.class.php:2805 -#, fuzzy -msgid "View History For" -msgstr "Verlauf anzeigen für" +msgid "N/A" +msgstr "nicht verfügbar" -#: lib/pages/hostmanagementpage.class.php:2815 -#, fuzzy -msgid "Selected Logins" -msgstr "ausgewählte Logins" +msgid "NAME" +msgstr "NAME" -#: lib/pages/hostmanagementpage.class.php:2825 -#, fuzzy -msgid "History Graph" -msgstr "Verlaufsgrafik" +msgid "NOT" +msgstr "NICHT" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "Ingenieur" +#, fuzzy +msgid "NOTE" +msgstr "HINWEIS" -#: lib/pages/hostmanagementpage.class.php:2859 #, fuzzy -msgid "Imaged From" -msgstr "Abgebildet von" +msgid "NOTICE" +msgstr "BEACHTE" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "Start" +msgid "Name" +msgstr "Name" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "Ende" +msgid "Name Change/AD Join Forced reboot" +msgstr "Namensänderung/AD-Beitreten erzwingt Reboot" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "Dauer" +msgid "Need more support" +msgstr "Falls Sie mehr Support brauchen," -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" -msgstr "Host Imagingverlauf" +msgid "Need the table name to drop" +msgstr "Der Name der zu entfernenden Tabelle wird benötigt." -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" -msgstr "Startzeit" +msgid "Needs a 256-bit key" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" -msgstr "Endzeit" +msgid "Needs action string of ask, get, or list" +msgstr "Benötigt Zeichenfolge von ask, get oder list" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "Return-Code" +msgid "Network Information" +msgstr "Netzwerkinformationen" -#: lib/pages/hostmanagementpage.class.php:3076 #, fuzzy -msgid "Snapin task not completed" -msgstr "Snapin Task ist nicht vollständig" +msgid "Network Installer" +msgstr "Netzwerk-Installer" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" -msgstr "Keine vollständige Zeit aufgezeichnet" +msgid "Network Printer" +msgstr "Netzwerk-Drucker" -#: lib/pages/hostmanagementpage.class.php:3106 -#, fuzzy -msgid "Host Snapin History" -msgstr "Host Snapinverlauf" +msgid "New" +msgstr "Neu" -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" -msgstr "Host freigeben" +msgid "New Broadcast Address" +msgstr "Neue Broadcast-Adresse" -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." -msgstr "Host-Genehmigung ist fehlgeschlagen." +msgid "New Client and Utilities" +msgstr "Neuer Client und Dienstprogramme" -#: lib/pages/hostmanagementpage.class.php:3158 #, fuzzy -msgid "Approve Host" -msgstr "Host freigeben" - -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" -msgstr "Diesen Host freigeben?" +msgid "New Event" +msgstr "Neues Ereignis hinzufügen" -#: lib/pages/hostmanagementpage.class.php:3186 -#, fuzzy -msgid "Approved" -msgstr "freigegeben" +msgid "New Group" +msgstr "Neue Gruppe" -#: lib/pages/hostmanagementpage.class.php:3213 -#, fuzzy -msgid "All Pending MACs approved" -msgstr "Alle ausstehenden MACs freigegeben." +msgid "New Host" +msgstr "Neuer Host" -#: lib/pages/hostmanagementpage.class.php:3665 -#, fuzzy -msgid "Virus items removed!" -msgstr "Virus gelöscht" +msgid "New Image" +msgstr "Neues Image" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" -msgstr "Host-Update fehlgeschlagen" +msgid "New LDAP Server" +msgstr "Neuer LDAP-Server" -#: lib/pages/hostmanagementpage.class.php:3693 -#, fuzzy -msgid "Host updated!" -msgstr "Host aktualisiert!" +msgid "New Location" +msgstr "Neuer Standort" -#: lib/pages/hostmanagementpage.class.php:3694 #, fuzzy -msgid "Host Update Success" -msgstr "Host Aktualisierung erfolgreich!" +msgid "New Role" +msgstr "Neue Rolle" -#: lib/pages/hostmanagementpage.class.php:3702 #, fuzzy -msgid "Host Update Fail" -msgstr "Host-Update fehlgeschlagen" +msgid "New Rule" +msgstr "Neue Regel" -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" -msgstr "Erstellen der neuen Gruppe fehlgeschlagen" +msgid "New Search" +msgstr "Neue Suche" -#: lib/pages/hostmanagementpage.class.php:3747 #, fuzzy -msgid "Successfully added selected hosts to the group!" -msgstr "ausgewählte Hosts erfolgreich zur Gruppe hinzugefügt " +msgid "New Site" +msgstr "Neue Site" -#: lib/pages/hostmanagementpage.class.php:3748 #, fuzzy -msgid "Host Add to Group Success" -msgstr "Host erfolgreich zur Gruppe hinzugefügt" +msgid "New Snapin" +msgstr "Neues Snapin" -#: lib/pages/hostmanagementpage.class.php:3755 #, fuzzy -msgid "Host Add to Group Fail" -msgstr "Hinzufügen zur Gruppe fehlgeschlagen" - -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" -msgstr "Partimage" +msgid "New Storage Group" +msgstr "Neue Speichergruppe" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" -msgstr "Partclone" +#, fuzzy +msgid "New Storage Node" +msgstr "Neuer Speicherknoten" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" -msgstr "Primary Storage Group" +#, fuzzy +msgid "New Subnetgroup" +msgstr "Neue Speichergruppe" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "Image-Name" +msgid "New Task State" +msgstr "Neuer Task-Status" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" -msgstr "Imagegröße: AUF DEM CLIENT" +msgid "New Task Type" +msgstr "Neuer Task-Typ" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" -msgstr "Imagegröße: AUF DEM SERVER" +msgid "New User" +msgstr "Neuer Benutzer" -#: lib/pages/imagemanagementpage.class.php:151 #, fuzzy -msgid "Captured" -msgstr "Erstellt" +msgid "New Windows Key" +msgstr "Neuer Windows-Schlüssel" -#: lib/pages/imagemanagementpage.class.php:170 #, fuzzy -msgid "Last captured" -msgstr "zuletzt erstellt" +msgid "New iPXE Menu" +msgstr "Neues iPXE-Menü" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" -msgstr "Nicht festgelegt" +#, fuzzy +msgid "New key must be a string" +msgstr "Neuer Schlüsselname muss eine Zeichenfolge sein." -#: lib/pages/imagemanagementpage.class.php:298 #, fuzzy -msgid "Invalid date" -msgstr "Ungültiges Datum" +msgid "New power management task" +msgstr "Neuer Power-Management Task" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -#, fuzzy -msgid "Not protected" -msgstr "Nicht geschützt" +msgid "No" +msgstr "Nein" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" -msgstr "Geschützt" +msgid "No Active Snapin Jobs Found For Host" +msgstr "Keine aktive Snapin-Jobs für den Host gefunden" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 -#, fuzzy -msgid "Disabled" -msgstr "Deaktiviert" +msgid "No Active Task found for Host" +msgstr "Keinen aktiven Task gefunden für Host" + +msgid "No Data" +msgstr "Keine Daten" -#: lib/pages/imagemanagementpage.class.php:362 #, fuzzy -msgid "Partclone Compressed" -msgstr "Partclone komprimiert" +msgid "No Data Available" +msgstr "Nicht verfügbar" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" -msgstr "Partclone komprimiert 200MiB gesplittet" +msgid "No FOGPage Class found for this node" +msgstr "Keine FOGPage-Klasse für diesen Knoten gefunden" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" -msgstr "Partclone unkomprimiert 200MiB gesplittet" +msgid "No Host found for MAC Address" +msgstr "Kein Host mit dieser MAC-Adresse gefunden" -#: lib/pages/imagemanagementpage.class.php:377 -#, fuzzy -msgid "ZSTD Compressed" -msgstr "ZSTD komprimiert" +msgid "No Image specified" +msgstr "Kein Image angegeben" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" -msgstr "ZSTD komprimiert 200MiB gesplittet" +msgid "No Menu" +msgstr "Kein Menü" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" -msgstr "Neues Image" +msgid "No Printer Management" +msgstr "Keine Druckerverwaltung" -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" -msgstr "Imagebeschreibung" +#, fuzzy +msgid "No Site" +msgstr "Keine Site" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "Betriebssystem" +msgid "No access is allowed" +msgstr "Kein Zugriff erlaubt" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" -msgstr "Partition" +msgid "No activity information available for this group" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" -msgstr "Image aktiviert" +msgid "No class value sent" +msgstr "Kein Klassenwert gesendet" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" -msgstr "Replizieren?" +msgid "No complete time recorded" +msgstr "Keine vollständige Zeit aufgezeichnet" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" -msgstr "Kompression" +msgid "No connection available" +msgstr "Keine Verbindung verfügbar" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" -msgstr "Image Manager" +msgid "No connection to the database" +msgstr "Keine Verbindung zur Datenbank" + +msgid "No data returned" +msgstr "Keine Daten zurückgegeben" -#: lib/pages/imagemanagementpage.class.php:639 #, fuzzy -msgid "Create Image" -msgstr "Image erstellen" +msgid "No data to insert" +msgstr "Keine Daten zum Einfügen" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" -msgstr "Ein Image mit diesem Namen ist bereits vorhanden!" +msgid "No database to work off" +msgstr "Keine Datenbank zum Arbeiten" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -#, fuzzy -msgid "Please choose a different name" -msgstr "Bitte wählen Sie einen anderen Namen!" +msgid "No directories defined to be cleaned up" +msgstr "Keine Verzeichnisse definiert, die bereinigt werden sollen" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -#, fuzzy -msgid "this one is reserved for FOG" -msgstr "Dieser ist reserviert für FOG." +msgid "No fields passed" +msgstr "Keine Felder übergeben" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 #, fuzzy -msgid "Please choose a different path" -msgstr "Bitte wählen Sie einen anderen Pfad. " +msgid "No file uploaded!" +msgstr "Keine Datei hochgeladen" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" -msgstr "Dieser wird durch ein anderes Image verwendet" +msgid "No file was uploaded" +msgstr "Keine Datei wurde hochgeladen" -#: lib/pages/imagemanagementpage.class.php:744 -#, fuzzy -msgid "Add image failed!" -msgstr "Image hinzufügen fehlgeschlagen" +msgid "No friendly name defined" +msgstr "Kein nutzerfreundlicher Name vergeben" -#: lib/pages/imagemanagementpage.class.php:754 -#, fuzzy -msgid "Image added!" -msgstr "Image hinzugefügt" +msgid "No groups defined, search will return all hosts." +msgstr "" -#: lib/pages/imagemanagementpage.class.php:755 #, fuzzy -msgid "Image Create Success" -msgstr "Imageerstellung erfolgreich" +msgid "No groups selected to be removed" +msgstr "Keine Gruppen zum Entfernen ausgewählt" -#: lib/pages/imagemanagementpage.class.php:763 #, fuzzy -msgid "Image Create Fail" -msgstr "Imageerstellung fehlgeschlagen" +msgid "No hosts available to task" +msgstr "Keine Hosts für Aufgaben (Task) verfügbar" -#: lib/pages/imagemanagementpage.class.php:1041 #, fuzzy -msgid "Image General" -msgstr "Image allgemein" +msgid "No hosts to task" +msgstr "Keine Hosts für Aufgaben (Task) vorhanden" -#: lib/pages/imagemanagementpage.class.php:1132 -#, fuzzy -msgid "Image Storage Groups" -msgstr "Speichergruppen" +msgid "No icons found" +msgstr "Keine Symbole gefunden" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -#, fuzzy -msgid "Check here to see what storage groups can be added" -msgstr "Prüfen Sie hier, welche Speichergruppen hinzugefügt werden können" +msgid "No image specified" +msgstr "Kein Image angegeben" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 #, fuzzy -msgid "Add Storage Groups" -msgstr "Speichergruppe hinzufügen" +msgid "No images associated with this group as master" +msgstr "Keine Images mit dieser Gruppe als Master verknüpft" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 #, fuzzy -msgid "Add selected storage groups" -msgstr "Ausgewählte Speichergruppen hinzufügen" +msgid "No items found" +msgstr "Keine Elemente gefunden" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -#, fuzzy -msgid "Update/Remove Storage Groups" -msgstr "Speichergruppen aktualisieren/entfernen" +msgid "No key being requested" +msgstr "Kein Schlüssel wurde angefordert" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 #, fuzzy -msgid "Update primary group" -msgstr "Primäre Gruppe aktualisieren" +msgid "No link established to the database" +msgstr "Keine Verbindung zur Datenbank hergestellt" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 -#, fuzzy -msgid "Remove selected groups" -msgstr "ausgewählte Gruppen entfernen" +msgid "No master nodes are enabled to delete this image" +msgstr "Keine Master-Knoten sind aktiviert, um dieses Image zu löschen" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 -#, fuzzy -msgid "No groups selected to be removed" -msgstr "Keine Gruppen zum Entfernen ausgewählt" +msgid "No need to sync" +msgstr "Synchronisierung nicht erforderlich" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 #, fuzzy -msgid "You must have at least one group associated" -msgstr "Sie müssen mindestens eine Speichergruppe verknüpfen" +msgid "No new tasks found" +msgstr "Keine neuen Tasks gefunden" -#: lib/pages/imagemanagementpage.class.php:1433 -#, fuzzy -msgid "Image update failed!" -msgstr "Image Update fehlgeschlagen" +msgid "No node associated" +msgstr "Kein Knoten verknüpft" -#: lib/pages/imagemanagementpage.class.php:1439 -#, fuzzy -msgid "Image updated!" -msgstr "Image aktualisiert" +msgid "No node associated with any addresses of this system" +msgstr "Kein Knoten mit beliebiger Adresse dieses Systems verbunden" -#: lib/pages/imagemanagementpage.class.php:1440 -#, fuzzy -msgid "Image Update Success" -msgstr "Image Update erfolgreich!" +msgid "No open slots" +msgstr "Keine offenen Slots" -#: lib/pages/imagemanagementpage.class.php:1448 #, fuzzy -msgid "Image Update Fail" -msgstr "Image Update fehlgeschlagen" +msgid "No query passed" +msgstr "Keine Abfrage übergeben" -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" -msgstr "Sitzungsname" +msgid "No query result, use query() first" +msgstr "Kein Abfrageergebnis, verwenden Sie zuerst query()" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" -msgstr "Anzahl der Clients" +msgid "No query sent" +msgstr "Keine Abfrage gesendet" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "Timeout" +msgid "No results found" +msgstr "Keine Ergebnisse gefunden" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" -msgstr "Minuten" +#, fuzzy +msgid "No role selected" +msgstr "Ausgewählte löschen" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" -msgstr "Wählen Sie ein Image" +#, fuzzy +msgid "No rule selected" +msgstr "Ausgewählte löschen" -#: lib/pages/imagemanagementpage.class.php:1524 #, fuzzy -msgid "Start Session" -msgstr "Sitzung starten" +msgid "No site" +msgstr "keine Site" -#: lib/pages/imagemanagementpage.class.php:1548 #, fuzzy -msgid "Multicast Image" -msgstr "Multicast Image" +msgid "No snapins associated with this group as master" +msgstr "Keine Snapins mit dieser Gruppe als Master verbunden" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" -msgstr "Multicast-Sitzung starten" +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" -msgstr "Task-Name" +#, fuzzy +msgid "No valid Image defined for this host" +msgstr "Kein valides Image für diesen Host definiert" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" -msgstr "Clients" +msgid "No valid class sent" +msgstr "Keine gültige Klasse gesendet" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" -msgstr "Prozent" +#, fuzzy +msgid "No valid hosts found and" +msgstr "Keine gültigen Hosts gefunden und/" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" -msgstr "Task beenden" +#, fuzzy +msgid "No valid storage nodes found" +msgstr "Keine gültigen Speicherknoten gefunden" -#: lib/pages/imagemanagementpage.class.php:1647 #, fuzzy -msgid "Current Sessions" -msgstr "Aktuelle Sitzungen" +msgid "No valid tasks found" +msgstr "Keine gültigen Tasks gefunden" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" -msgstr "Bitte geben Sie einen Sitzungsnamen ein" +msgid "No values passed" +msgstr "Keine Werte übergeben" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" -msgstr "Bitte wählen Sie ein Image" +#, fuzzy +msgid "No viable macs to use" +msgstr "Keine brauchbaren MACS" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" -msgstr "Sitzung mit diesem Namen ist bereits vorhanden" +msgid "No viable storage groups found" +msgstr "Keine brauchbaren Speichergruppen gefunden" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" -msgstr "Sitzungsname darf nicht mit vorhandenem Hostname identisch sein" +msgid "Node" +msgstr "Knoten" + +msgid "Node Offline" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1710 #, fuzzy -msgid "Please wait until a slot is open" -msgstr "Bitte warten, bis ein Slot offen ist" +msgid "Node Parent" +msgstr "Knoten Überordnung" -#: lib/pages/imagemanagementpage.class.php:1711 #, fuzzy -msgid "There are currently" -msgstr "Es gibt aktuell " +msgid "Node is unavailable" +msgstr "Pfad ist nicht verfügbar" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" -msgstr "Tasks in der Warteschlange" +#, fuzzy +msgid "Node must be a string" +msgstr "Knotenname muss eine Zeichenfolge sein." -#: lib/pages/imagemanagementpage.class.php:1714 #, fuzzy -msgid "Your server only allows" -msgstr "Ihr Server erlaubt nur " +msgid "Nodes" +msgstr "Knoten" -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" -msgstr "Fehler beim Erstellen der Sitzung" +#, fuzzy +msgid "Normal Snapin" +msgstr "Normales Snapin" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" -msgstr "Multicast-Sitzung erstellt" +msgid "Not Available" +msgstr "Nicht verfügbar" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" -msgstr "wurde gestartet auf Port" +msgid "Not Registered Hosts" +msgstr "Nicht registrierte Hosts" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" -msgstr "Stornierter Task" +#, fuzzy +msgid "Not Valid" +msgstr "nicht gültig" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" -msgstr "Plugin-Name" +msgid "Not a number" +msgstr "Keine Zahl" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." -msgstr "Die Plugin-Details können nicht ermittelt werden" +msgid "Not able to add" +msgstr "Hinzufügen nicht möglich" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" -msgstr "Plugin-Beschreibung" +msgid "Not all elements in filter or ports setting are integer" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" -msgstr "Plugin-Installation" +msgid "Not allowed here" +msgstr "Hier nicht erlaubt" -#: lib/pages/pluginmanagementpage.class.php:326 -#, fuzzy -msgid "This plugin is not installed" -msgstr "Dieses Plugin ist nicht installiert" +msgid "Not found" +msgstr "Nicht gefunden" -#: lib/pages/pluginmanagementpage.class.php:328 #, fuzzy -msgid "would you like to install it now" -msgstr "möchten Sie es jetzt installieren?" +msgid "Not protected" +msgstr "Nicht geschützt" -#: lib/pages/pluginmanagementpage.class.php:333 -#, fuzzy -msgid "Install Plugin" -msgstr "Plugin installieren" +msgid "Not set" +msgstr "Nicht festgelegt" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" -msgstr "Neustart nach der Verteilung" +msgid "Not syncing" +msgstr "Nicht synchronisieren" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" -msgstr "Herunterfahren nach der Verteilung" +msgid "Not syncing Image" +msgstr "Image wird nicht synchronisiert" -#: lib/pages/pluginmanagementpage.class.php:393 #, fuzzy -msgid "Basic Settings" -msgstr "Grundeinstellungen" +msgid "Not syncing Snapin" +msgstr "Snapin wird nicht synchronisiert" -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" -msgstr "DMI-Feld" +msgid "Notes" +msgstr "Notizen" -#: lib/pages/pluginmanagementpage.class.php:431 #, fuzzy -msgid "After image Action" -msgstr "Aktion nach dem Bereitstellen" +msgid "Nothing passed to search for" +msgstr "Nichts zum Suchen übermittelt" -#: lib/pages/pluginmanagementpage.class.php:449 -#, fuzzy -msgid "Image Associations" -msgstr "Image Zugehörigkeiten" +msgid "O/S" +msgstr "O/S" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" -msgstr "Image Definition" +msgid "OS Name" +msgstr "Betriebssystem" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" -msgstr "DMI-Ergebnis" +msgid "Object" +msgstr "Objekt" + +msgid "Old clients are the clients that came with FOG" +msgstr "Alte Clients sind die Clients, die von FOG Version 1.2.0" -#: lib/pages/pluginmanagementpage.class.php:476 #, fuzzy -msgid "Image to DMI Mappings" -msgstr "Abbilden zu DMI Mappings" +msgid "Old key must be a string" +msgstr "Alter Schlüsselname muss eine Zeichenfolge sein." -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" -msgstr "Betriebssystem" +msgid "On Dashboard" +msgstr "auf dem Dashboard" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" -msgstr "DMI-Schlüssel" +msgid "On reboot we will try to find a new node" +msgstr "Beim Neustart versuchen wir, automatisch" -#: lib/pages/pluginmanagementpage.class.php:531 #, fuzzy -msgid "Current Associations" -msgstr "Momentane Zugehörigkeiten" +msgid "One or more macs are associated with a host" +msgstr "Eine oder mehrere MACs sind mit einem Host verknüpft" -#: lib/pages/pluginmanagementpage.class.php:555 -#, fuzzy -msgid "Remove Selected?" -msgstr "Ausgewählte entfernen?" +msgid "Only Assigned Printers" +msgstr "Nur zugewiesene Drucker" -#: lib/pages/pluginmanagementpage.class.php:565 #, fuzzy -msgid "Remove Associations" -msgstr "Zugehörigkeiten entfernen" +msgid "Only allowed to have" +msgstr "Sie dürfen nur" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" -msgstr "Ungültiges Plugin übergeben" +msgid "Open Source Computer Cloning Solution" +msgstr "Open Source Computer-Cloning-Lösung" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" -msgstr "Fehler beim Installieren des Plugins" +msgid "Open VNC connection to" +msgstr "VNC-Verbindung öffnen" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" -msgstr "Fehler beim Speichern des Plugins" +msgid "OpenLDAP" +msgstr "OpenLDAP" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" -msgstr "Plugin installiert!" +msgid "Operating System" +msgstr "Betriebssystem" -#: lib/pages/pluginmanagementpage.class.php:666 #, fuzzy -msgid "Must have an image associated" -msgstr "Muss mit ein Image verknüpft sein" +msgid "Operation field not set" +msgstr "Operationsfeld nicht gesetzt: %s" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" -msgstr "Speichern der Zuweisung fehlgeschlagen" +msgid "Option below enforces a login system" +msgstr "Die Option unten erzwingt ein Anmeldesystem" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" -msgstr "Zuweisung erfolgreich gespeichert" +msgid "Option sets if there will even" +msgstr "Diese Option definiert, ob das Client-System" -#: lib/pages/pluginmanagementpage.class.php:691 -#, fuzzy -msgid "Destroyed assignments" -msgstr "Zerstörte Zuordnungen" +msgid "Option sets the ipxe keysequence to enter to gain menu" +msgstr "Diese Option legt die ipxe-Tastensequenz fest, um den Menüzugriff" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" -msgstr "Zerstörte Zuordnung" +msgid "Option sets the key sequence" +msgstr "Diese Option legt die Tastensequenz fest" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" -msgstr "Druckername" +#, fuzzy +msgid "Option specifies the background file to use" +msgstr "Die Option definiert das Hintergrundbild" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" -msgstr "Port" +#, fuzzy +msgid "Option specifies the color settings of the main menu items" +msgstr "Diese Option definiert die Farbeneinstellungen der Hauptmenü-Objekte" -#: lib/pages/printermanagementpage.class.php:89 #, fuzzy -msgid "Config File" -msgstr "Config-Datei" +msgid "Option specifies the color text on the menu if the host" +msgstr "Diese Option definiert die Textfarbe im Menü, falls der Host" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 #, fuzzy -msgid "Copy from existing" -msgstr "Kopie von bereits existierenden" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "Die Option definiert die EFI Exit-Methode von ipxe" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 #, fuzzy -msgid "Printer Name/Alias" -msgstr "Drucker-Name/-Alias" +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "Die Option definiert die Legacy Boot Exit-Methode von ipxe" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." -msgstr "z.B." +#, fuzzy +msgid "Option specifies the menu timeout" +msgstr "Die Option definiert das Menü-Timeout" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" -msgstr "Druckerbeschreibung" +msgid "Option specifies the pairings after host checks" +msgstr "Diese Option definiert die Paarungen nach der Hostprüfung" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" -msgstr "Drucker-Port" +msgid "Option specifies the pairings as a fallback" +msgstr "Diese Option spezifiziert die alternativen Paarungen" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" -msgstr "Drucker-INF-Datei" +msgid "Option specifies the pairings of colors to" +msgstr "Diese Option definiert die Farbkombinationen, " -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" -msgstr "Drucker IP" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "Die Option definiert den Timeoutwert für das versteckte Menüsystem" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" -msgstr "Druckermodell" +msgid "Or there was no number defined for joining session" +msgstr "oder es wurde keine Nummer für die Beitrittssitzung definiert" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -#, fuzzy -msgid "Printer Config File" -msgstr "Druckerkonfiguration" +msgid "Organizational Unit" +msgstr "Organisationseinheit" -#: lib/pages/printermanagementpage.class.php:459 -#, fuzzy -msgid "Create New Printer" -msgstr "Neuen Drucker erstellen" +msgid "Other Tag #1" +msgstr "Etikett #1" + +msgid "Other Tag #2" +msgstr "Etikett #2" + +msgid "Other Tag 1" +msgstr "Weiterer Eintrag 1" + +msgid "Other Tag 2" +msgstr "Weiterer Eintrag 2" + +msgid "Otherwise it will just boot like normal" +msgstr "sehen Sie das Menü. Andernfalls bootet es normal." + +msgid "PC Check-out Agreement" +msgstr "PC-Check-Out-Vereinbarung" -#: lib/pages/printermanagementpage.class.php:473 #, fuzzy -msgid "Add New Printer" -msgstr "Drucker hinzufügen" +msgid "Parameters" +msgstr "Parameter:" -#: lib/pages/printermanagementpage.class.php:515 #, fuzzy -msgid "A name must be set" -msgstr "Ein Name muss eingegeben werden" +msgid "Parent" +msgstr "Übergeordnet" -#: lib/pages/printermanagementpage.class.php:518 #, fuzzy -msgid "Printer name already exists" -msgstr "Druckername ist bereits vorhanden." +msgid "Parent Node" +msgstr "übergeordenter Knoten" + +msgid "Partclone" +msgstr "Partclone" -#: lib/pages/printermanagementpage.class.php:545 #, fuzzy -msgid "Add printer failed!" -msgstr "Hinzufügen eines Druckers fehlgeschlagen!" +msgid "Partclone Compressed" +msgstr "Partclone komprimiert" -#: lib/pages/printermanagementpage.class.php:551 -#, fuzzy -msgid "Printer added!" -msgstr "Drucker hinzugefügt" +msgid "Partclone Compressed 200MiB split" +msgstr "Partclone komprimiert 200MiB gesplittet" -#: lib/pages/printermanagementpage.class.php:552 #, fuzzy -msgid "Printer Create Success" -msgstr "Drucker hinzufügen erfolgreich." +msgid "Partclone Gzip" +msgstr "Partclone Gzip" -#: lib/pages/printermanagementpage.class.php:560 -#, fuzzy -msgid "Printer Create Fail" -msgstr "Drucker erstellen fehlgeschlagen!" +msgid "Partclone Gzip Split 200MiB" +msgstr "Partclone Gzip geteilt 200MiB" + +msgid "Partclone Uncompressed" +msgstr "Partclone unkomprimiert" + +msgid "Partclone Uncompressed 200MiB split" +msgstr "Partclone unkomprimiert 200MiB gesplittet" -#: lib/pages/printermanagementpage.class.php:869 #, fuzzy -msgid "Printer General" -msgstr "Drucker allgemein" +msgid "Partclone Uncompressed Split 200MiB" +msgstr "Partclone unkomprimiert gesplittet 200MiB" -#: lib/pages/printermanagementpage.class.php:936 #, fuzzy -msgid "A printer name is required!" -msgstr "Ein Druckername ist erforderlich!" +msgid "Partclone Zstd" +msgstr "Partclone ZSTD" -#: lib/pages/printermanagementpage.class.php:957 #, fuzzy -msgid "A printer already exists with this name!" -msgstr "Ein Drucker mit diesem Namen ist bereits vorhanden!" +msgid "Partclone Zstd Split 200MiB" +msgstr "Partclone ZSTD gesplittet 200MiB" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" -msgstr "Drucker-Update fehlgeschlagen!" +msgid "Partimage" +msgstr "Partimage" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" -msgstr "Drucker aktualisiert!" +msgid "Partition" +msgstr "Partition" -#: lib/pages/printermanagementpage.class.php:996 -#, fuzzy -msgid "Printer Update Success" -msgstr "Drucker aktualisiert!" +msgid "Password" +msgstr "Passwort" -#: lib/pages/printermanagementpage.class.php:1004 -#, fuzzy -msgid "Printer Update Fail" -msgstr "Drucker-Update fehlgeschlagen!" +msgid "Password reset requires a user account to reset" +msgstr "Zurücksetzen des Kennworts erfordert einen entsprechenden Benutzer" -#: lib/pages/reportmanagementpage.class.php:158 -#, fuzzy -msgid "Import Reports" -msgstr "Berichte importieren" +msgid "Path" +msgstr "Pfad" -#: lib/pages/reportmanagementpage.class.php:189 #, fuzzy -msgid "Import FOG Reports" -msgstr "FOG-Berichte importieren" +msgid "Path is unavailable" +msgstr "Pfad ist nicht verfügbar" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 #, fuzzy -msgid "Import Report?" -msgstr "Bericht importieren?" +msgid "Pause" +msgstr "Pause" -#: lib/pages/reportmanagementpage.class.php:250 -#, fuzzy -msgid "This section allows you to uploade user" -msgstr "In diesem Abschnitt können Sie benutzerdefinierte " +msgid "Pending Host List" +msgstr "Liste der ausstehenden Hosts" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" -msgstr "Berichte hochladen, die möglicherweise nicht Teil" +msgid "Pending Hosts" +msgstr "Ausstehende Hosts" -#: lib/pages/reportmanagementpage.class.php:254 #, fuzzy -msgid "the base FOG install" -msgstr "der Basisinstallation von FOG sind." +msgid "Pending MAC Actions" +msgstr "Aktionen für ausstehende MACs" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" -msgstr "Über FOG-Berichte" +msgid "Pending MAC Export" +msgstr "exportieren aller ausstehende MACs" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" -msgstr "FOG Berichte enthalten Informationen über" +msgid "Pending MACs" +msgstr "Ausstehende MACs" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" -msgstr "Vorgänge in Ihrem FOG-System." +msgid "Pending Registered Hosts" +msgstr "Ausstehende registrierte Hosts" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" -msgstr "Um einen Bericht anzusehen, wählen Sie einen aus dem Menü aus." +msgid "Pending Registration created by FOG_CLIENT" +msgstr "Ausstehende Registrierung erstellt von FOG_CLIENT" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" -msgstr "Datenbank-Schema Installer / Updater" +msgid "Pending hosts" +msgstr "Ausstehende Hosts" -#: lib/pages/schemaupdaterpage.class.php:63 -#, fuzzy -msgid "Install/Update" -msgstr "Installation/Update" +msgid "Pending macs" +msgstr "Ausstehende MACs" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" -msgstr "Wenn Sie die FOG Datenbank" +msgid "Pending..." +msgstr "Ausstehend..." -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" -msgstr "sichern möchten, können Sie das mit" +msgid "Percent" +msgstr "Prozent" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" -msgstr "dem MySQL Administrator oder mit" +msgid "Perform Immediately?" +msgstr "Sofort durchführen?" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" -msgstr "den folgenden Terminalbefehlen tun" +msgid "Perform search" +msgstr "Suche durchführen" -#: lib/pages/schemaupdaterpage.class.php:75 -#, fuzzy -msgid "window" -msgstr "Windows" +msgid "Personal Information" +msgstr "Persönliche Informationen" -#: lib/pages/schemaupdaterpage.class.php:76 #, fuzzy -msgid "Applications" -msgstr "Anwendungen" +msgid "Pick a template" +msgstr "Wählen Sie ein Template aus" -#: lib/pages/schemaupdaterpage.class.php:77 -#, fuzzy -msgid "System Tools" -msgstr "System Tools" +msgid "Ping Hosts" +msgstr "Hosts anpingen" -#: lib/pages/schemaupdaterpage.class.php:78 #, fuzzy -msgid "Terminal" -msgstr "Terminal" +msgid "Please Enter an admin or mobile lookup name" +msgstr "" +"Bitte geben Sie einen Namen für einen Admin oder einen mobilen Lookup ein." -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "Das wird Ihr Backup in Ihrem " +msgid "Please Select an option" +msgstr "Bitte wählen Sie eine Option" -#: lib/pages/schemaupdaterpage.class.php:80 -#, fuzzy -msgid "directory" -msgstr "Home-Verzeichnis speichern" +msgid "Please be very careful changing any of the following settings" +msgstr "" +"Seien Sie bitte sehr vorsichtig bei der Änderung der folgenden " +"Einstellungen, " -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" -msgstr "Ihr FOG-Datenbankschema ist nicht aktuell" +msgid "Please check your credentials in" +msgstr "Bitte überprüfen Sie die Zugangsdaten." -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" -msgstr "entweder weil Sie aktualisiert haben" +#, fuzzy +msgid "Please choose a different name" +msgstr "Bitte wählen Sie einen anderen Namen!" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" -msgstr "oder weil dies eine neue FOG-Installation ist." +#, fuzzy +msgid "Please choose a different path" +msgstr "Bitte wählen Sie einen anderen Pfad. " -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" -msgstr "Falls dies ein Upgrade ist," +msgid "Please choose an image" +msgstr "Bitte wählen Sie ein Image" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" -msgstr "existiert ein Backup, gespeichert auf dem" +msgid "Please confirm you want to delete" +msgstr "Löschen bitte bestätigen" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" -msgstr "FOG-Server im Standard-Ordner." +#, fuzzy +msgid "Please enter a Group Member Attribute" +msgstr "Bitte geben Sie ein Gruppenmitglied-Attribut ein" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" -msgstr "Sollte etwas schief gehen," +msgid "Please enter a LDAP server address" +msgstr "Bitte geben Sie eine LDAP-Server-Adresse an." -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" -msgstr "wird dieses Backup helfen, zur vorherigen" +#, fuzzy +msgid "Please enter a Search Base DN" +msgstr "Bitte geben Sie eine Such-Basis-DN an" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" -msgstr "Installation zurück zu kehren, falls erforderlich." +#, fuzzy +msgid "Please enter a User Name Attribute" +msgstr "Bitte geben Sie ein Benutzernamen-Attribut ein" + +msgid "Please enter a hostname" +msgstr "Bitte geben Sie einen Hostnamen ein" -#: lib/pages/schemaupdaterpage.class.php:103 #, fuzzy -msgid "Are you sure you wish to" -msgstr "Sind Sie sicher, dass Sie die Datenbank" +msgid "Please enter a mac address" +msgstr "Bitte geben Sie eine MAC-Adresse an" + +msgid "Please enter a name for this LDAP server." +msgstr "Bitte geben Sie einen Namen für den LDAP-Server an." + +msgid "Please enter a name for this location." +msgstr "Bitte geben Sie einen Namen für diesen Standort an" -#: lib/pages/schemaupdaterpage.class.php:104 #, fuzzy -msgid "install or update the FOG database" -msgstr "installieren oder aktualisieren möchten?" +msgid "Please enter a valid CIDR subnet." +msgstr "Bitte geben Sie einen gültigen Hostnamen ein" -#: lib/pages/schemaupdaterpage.class.php:115 #, fuzzy -msgid "Install/Update Now" -msgstr "Jetzt installieren/aktualisieren" +msgid "Please enter a valid CIDR subnets comma separated list" +msgstr "Bitte geben Sie eine gültige MAC-Adresse an" + +msgid "Please enter a valid hostname" +msgstr "Bitte geben Sie einen gültigen Hostnamen ein" + +msgid "Please enter a valid ip" +msgstr "Bitte geben Sie eine gültige IP-Adresse ein" -#: lib/pages/schemaupdaterpage.class.php:125 #, fuzzy -msgid "Database not available" -msgstr "Datenbank nicht verfügbar" +msgid "Please enter a valid mac address" +msgstr "Bitte geben Sie eine gültige MAC-Adresse an" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" -msgstr "Ihre Datenbankverbindung scheint ungültig zu sein" +msgid "Please enter an access token" +msgstr "Bitte geben Sie ein Zugriffstoken ein" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" -msgstr "FOG kann nicht mit der Datenbank verbinden." +msgid "Please input a session name" +msgstr "Bitte geben Sie einen Sitzungsnamen ein" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" -msgstr "Es gibt mehrere Möglichkeiten, wieso das so ist." +msgid "Please physically associate" +msgstr "Bitte ordnen Sie physisch" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" -msgstr "Bitte überprüfen Sie die Zugangsdaten." +#, fuzzy +msgid "Please select a valid ldap port" +msgstr "Bitte wählen Sie einen gültigen LDAP-Port aus" -#: lib/pages/schemaupdaterpage.class.php:138 #, fuzzy -msgid "Also confirm that the database is indeed running" -msgstr "Überprüfen Sie auch, ob die Datenbank tatsächlich ausgeführt wird" +msgid "Please select an LDAP port to use" +msgstr "Bitte wählen Sie einen LDAP-Port aus" -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" -msgstr "Falls die Zugangsdaten korrekt sind," +msgid "Please select an option" +msgstr "Bitte wählen Sie eine Option" -#: lib/pages/schemaupdaterpage.class.php:140 #, fuzzy -msgid "and if the Database service is running" -msgstr "und die Datenbank läuft," - -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" -msgstr "prüfen Sie bitte, ob sie genügend Speicherplatz haben." +msgid "Please select the snapin you want to install" +msgstr "Bitte wählen Sie das Snapin, das Sie installieren wollen" -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" -msgstr "Keine Verbindung verfügbar" +msgid "Please select the storage group this location relates to." +msgstr "" +"Bitte wählen Sie die Speichergruppe aus, die sich auf diesen Standort bezieht" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" -msgstr "Update wird nicht benötigt!" +msgid "Please update your FOG Client, this is old and insecure" +msgstr "" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 #, fuzzy -msgid "Function" -msgstr "Funktion" +msgid "Please use another hostname" +msgstr "Bitte geben Sie einen anderen Hostnamen ein" -#: lib/pages/schemaupdaterpage.class.php:230 #, fuzzy -msgid "Database" -msgstr "Datenbank" - -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" -msgstr "Die Variable enthält" - -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" -msgstr "Datenbank SQL" +msgid "Please wait until a slot is open" +msgstr "Bitte warten, bis ein Slot offen ist" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" -msgstr "Installation / Update fehlgeschlagen!" +msgid "Plugin" +msgstr "Plugin" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" -msgstr "Die folgenden Fehler sind aufgetreten" +#, fuzzy +msgid "Plugin Configuration" +msgstr "Druckerkonfiguration" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" -msgstr "Installation / Update erfolgreich!" +msgid "Plugin Description" +msgstr "Plugin-Beschreibung" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" -msgstr "anmelden" +msgid "Plugin Installation" +msgstr "Plugin-Installation" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" -msgstr "Die folgenden Fehler sind aufgetreten" +msgid "Plugin Installed!" +msgstr "Plugin installiert!" -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" -msgstr "Knoten bearbeiten" +msgid "Plugin Management" +msgstr "Plugin-Management" -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" -msgstr "Hostname / IP" +msgid "Plugin Name" +msgstr "Plugin-Name" -#: lib/pages/serverinfo.class.php:75 #, fuzzy -msgid "Server information" -msgstr "Serverinformationen" +msgid "Plugins" +msgstr "Plugins" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" -msgstr "Ungültige Serverinformation!" +msgid "Port" +msgstr "Port" -#: lib/pages/serverinfo.class.php:94 #, fuzzy -msgid "Unable to get server infromation!" -msgstr "Es konnten keine Serverinformationen abgerufen werden!" +msgid "Port is not valid ldap/ldaps port" +msgstr "Dieser Port ist kein gültiger LDAP/LADPS Port" -#: lib/pages/serverinfo.class.php:145 #, fuzzy -msgid "Unable to find basic information!" -msgstr "Grundlegende Informationen nicht gefunden" +msgid "Postfix requires an action of login" +msgstr "Postfix erfordert die Aktion Login," -#: lib/pages/serverinfo.class.php:158 -msgid "TX" -msgstr "TX" +msgid "Postfix requires an action of login, logout, or start to operate" +msgstr "Postfix erfordert die Aktion login, logout oder start zum Ausführen" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" -msgstr "RX" +#, fuzzy +msgid "Power Management" +msgstr "Power Management" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "ausgeworfen" +#, fuzzy +msgid "Power Management Task run time" +msgstr "Power Management" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" -msgstr "Allgemeine Informationen" +msgid "Primary Group" +msgstr "Primäre Gruppe" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "Betriebszeit" +msgid "Primary MAC" +msgstr "Primäre MAC" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" -msgstr "CPU-Typ" +msgid "Primary Storage Group" +msgstr "Primary Storage Group" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "CPU-Anzahl" +msgid "Primary User" +msgstr "Hauptbenutzer" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" -msgstr "CPU-Modell" +msgid "Printed" +msgstr "Gedruckt" -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "CPU-Cache" +msgid "Printer" +msgstr "Drucker" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "Gesamtspeicher" +msgid "Printer Alias" +msgstr "Drucker-Alias" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" -msgstr "Verwendeten Speicher" +#, fuzzy +msgid "Printer Associations" +msgstr "Druckerzugehörigkeiten" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "Freier Speicher" +#, fuzzy +msgid "Printer Config File" +msgstr "Druckerkonfiguration" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" -msgstr "Dateisystem-Informationen" +#, fuzzy +msgid "Printer Configuration" +msgstr "Druckerkonfiguration" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "Gesamtspeicherplatz" +#, fuzzy +msgid "Printer Create Fail" +msgstr "Drucker erstellen fehlgeschlagen!" -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "Verwendeter Speicherplatz" +#, fuzzy +msgid "Printer Create Success" +msgstr "Drucker hinzufügen erfolgreich." + +msgid "Printer Description" +msgstr "Druckerbeschreibung" -#: lib/pages/serverinfo.class.php:203 #, fuzzy -msgid "Free Disk Space" -msgstr "freier Speicherplatz" +msgid "Printer General" +msgstr "Drucker allgemein" -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" -msgstr "Netzwerkinformationen" +msgid "Printer INF File" +msgstr "Drucker-INF-Datei" -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" -msgstr "Informationen" +msgid "Printer IP" +msgstr "Drucker IP" -#: lib/pages/serviceconfigurationpage.class.php:133 #, fuzzy -msgid "Service general" -msgstr "Service allgemein" +msgid "Printer IP/Hostname" +msgstr "Druckername" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "Hiermit können Sie konfigurieren, " +msgid "Printer Management" +msgstr "Druckerverwaltung" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." -msgstr "wie Dienste auf Clientcomputer funktionieren." +msgid "Printer Model" +msgstr "Druckermodell" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." -msgstr "Die Einstellungen wirken sich in der Regel auf alle Hosts aus." +msgid "Printer Name" +msgstr "Druckername" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "Falls Sie einen einzelnen Host konfigurieren möchten, " +#, fuzzy +msgid "Printer Name/Alias" +msgstr "Drucker-Name/-Alias" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "nutzen Sie bitte die Host Service Settings." +msgid "Printer Port" +msgstr "Drucker-Port" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." -msgstr "Um zu beginnen, wählen Sie bitte ein Element aus dem Menü." +msgid "Printer Type" +msgstr "Druckertyp" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" -msgstr "FOG-Client-Download" +#, fuzzy +msgid "Printer Update Fail" +msgstr "Drucker-Update fehlgeschlagen!" -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "Der folgende Link führt zur Clientseite" +#, fuzzy +msgid "Printer Update Success" +msgstr "Drucker aktualisiert!" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "Dort können Sie Tools wie FOG Prep, " +#, fuzzy +msgid "Printer added!" +msgstr "Drucker hinzugefügt" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" -msgstr "FOG Krypto" +#, fuzzy +msgid "Printer name already exists" +msgstr "Druckername ist bereits vorhanden." -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "oder jeweils Legacy oder neue FOG Clients." +msgid "Printer update failed!" +msgstr "Drucker-Update fehlgeschlagen!" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" -msgstr "Klicken Sie hier" +msgid "Printer updated!" +msgstr "Drucker aktualisiert!" -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" -msgstr "Standardmäßig aktiviert" +msgid "Printers" +msgstr "Drucker" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" -msgstr "Service-Status" +msgid "Private key failed" +msgstr "Privater Schlüssel ist fehlgeschlagen" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 -#, fuzzy -msgid "Current settings" -msgstr "Momentane Einstellungen" +msgid "Private key not found" +msgstr "Privater Schlüssel nicht gefunden" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "Standard Logout-Zeit (in Minuten)" +msgid "Private key not readable" +msgstr "Private Schlüssel nicht lesbar" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 -#, fuzzy -msgid "This module is only used on the old client." -msgstr "Dieses Modul wird nur auf alten Clients genutzt." +msgid "Private key path not found" +msgstr "Privater Schlüsselpfad nicht gefunden" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" -msgstr "Alte Clients sind Clients, die mit FOG 1.2.0 oder" +msgid "Protected" +msgstr "Geschützt" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." -msgstr "älter verteilt wurden." +msgid "Pushbullet Accounts" +msgstr "Pushbullet Accounts" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" -msgstr "Dieses Modul funktioniert nicht auf Windows Vista oder" +#, fuzzy +msgid "Pushbullet Management" +msgstr "Client-Management" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." -msgstr "neuer aufgrund des eingeführten UAC." +msgid "Quarantine" +msgstr "Quarantäne" + +msgid "Queued" +msgstr "In der Warteschlange" -#: lib/pages/serviceconfigurationpage.class.php:463 #, fuzzy -msgid "Directories" -msgstr "Verzeichnis" +msgid "Quick" +msgstr "Schnell" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" -msgstr "Verzeichnis hinzufügen" +msgid "RX" +msgstr "RX" + +msgid "Reboot" +msgstr "Neustarten" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" -msgstr "Standardbreite" +msgid "Reboot after deploy" +msgstr "Neustart nach der Verteilung" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "Standardhöhe" +msgid "Reboot after install" +msgstr "Nach der Installation neu starten" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" -msgstr "Standard-Bildwiederholrate" +#, fuzzy +msgid "Rebranding element has been successfully updated!" +msgstr "Rebrandingelement wurde erfolgreich aktualisiert" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." -msgstr "Der alte Client wurde verteilt mit FOG 1.2.0 oder früher." +msgid "Receive" +msgstr "Erhalten" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." -msgstr "Dieses Modul wurde durch Power Management ersetzt." +msgid "Recommended" +msgstr "(empfohlen)" -#: lib/pages/serviceconfigurationpage.class.php:678 #, fuzzy -msgid "New Event" -msgstr "Neues Ereignis hinzufügen" +msgid "Record not found" +msgstr "Datensatz wurde nicht gefunden, Fehler: %s" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" -msgstr "Ereignis hinzufügen" +msgid "Register must be managed from hooks or events" +msgstr "Register muss von Haken oder Ereignissen gemanagt werden" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." -msgstr "Dieses Modul funktioniert wegen UAC nicht mehr." +msgid "Registered" +msgstr "Registriert" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" -msgstr "Benutzer hinzufügen" +msgid "Registered Hosts" +msgstr "Registrierte Hosts" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." -msgstr "Der Wert muss zwischen 0 und 23 liegen (Stunden am Tag)" +msgid "Releasing Staff Initials" +msgstr "Freigabe durch Personal (Kürzel)" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "Der Wert muss zwischen 0 und 59 liegen (Minuten in der Stunde)" +msgid "Remit Hello Interval" +msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." -msgstr "Entweder neustarten oder herunterfahren" +msgid "Remote address attempting to login" +msgstr "Remote-Adresse versucht, sich anzumelden" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" -msgstr "Service-Update fehlgeschlagen" +msgid "Remove" +msgstr "Entfernen" -#: lib/pages/serviceconfigurationpage.class.php:986 #, fuzzy -msgid "Module updated!" -msgstr "Modul aktualisiert!" +msgid "Remove " +msgstr "Entfernen " -#: lib/pages/serviceconfigurationpage.class.php:987 #, fuzzy -msgid "Module Update Success" -msgstr "Modulupdate erfolgreich" +msgid "Remove Accesscontrol Rules" +msgstr "Zugriffskontrollregeln" -#: lib/pages/serviceconfigurationpage.class.php:995 #, fuzzy -msgid "Module Update Fail" -msgstr "Modulupdate fehlgeschlagen" +msgid "Remove Associations" +msgstr "Zugehörigkeiten entfernen" -#: lib/pages/snapinmanagementpage.class.php:134 #, fuzzy -msgid "Filesize" -msgstr "Dateigröße" +msgid "Remove Hosts" +msgstr "Entfernen " -#: lib/pages/snapinmanagementpage.class.php:167 #, fuzzy -msgid "Is Pack" -msgstr "Ist ein Paket" - -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "Nein" +msgid "Remove Images" +msgstr "Images entfernen" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "Ja" +msgid "Remove MAC" +msgstr "MAC entfernen" -#: lib/pages/snapinmanagementpage.class.php:397 #, fuzzy -msgid "New Snapin" -msgstr "Neues Snapin" - -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" -msgstr "Snapin Beschreibung" +msgid "Remove Selected?" +msgstr "Ausgewählte entfernen?" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 #, fuzzy -msgid "Snapin Type" -msgstr "Snapin Typ" +msgid "Remove Users" +msgstr "Entfernen " -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 #, fuzzy -msgid "Normal Snapin" -msgstr "Normales Snapin" +msgid "Remove failed" +msgstr "Entfernen fehlgeschlagen" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 #, fuzzy -msgid "Snapin Pack" -msgstr "Snapin Paket" - -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" -msgstr "Snapin Template" +msgid "Remove selected " +msgstr "Ausgewählte entfernen " -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 #, fuzzy -msgid "Snapin Pack Template" -msgstr "Snapin Paket Template" - -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" -msgstr "Snapin läuft mit" +msgid "Remove selected groups" +msgstr "ausgewählte Gruppen entfernen" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 #, fuzzy -msgid "Snapin Pack File" -msgstr "Snapin Paketdatei" - -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" -msgstr "Snapin läuft mit Argument" +msgid "Remove selected hosts" +msgstr "Ausgewählte entfernen " -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 #, fuzzy -msgid "Snapin Pack Arguments" -msgstr "Snapin PaketArgumente" - -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" -msgstr "Snapin-Datei" - -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" -msgstr "Snapin-Datei (existiert)" - -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" -msgstr "Snapin-Argumente" - -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" -msgstr "Snapin aktiviert" +msgid "Remove selected images" +msgstr "ausgewählte Images entfernen" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 #, fuzzy -msgid "Snapin Arguments Hidden" -msgstr "Snapin-Argumente versteckt" +msgid "Remove selected printers" +msgstr "ausgewählte Drucker entfernen" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 #, fuzzy -msgid "Snapin Timeout (seconds)" -msgstr "Snapin-Timeout (in Sekunden)" - -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" -msgstr "Nach der Installation neu starten" - -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" -msgstr "Nach der Installation herunterfahren" - -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" -msgstr "Snapin Befehl" +msgid "Remove selected rules" +msgstr "Ausgewählte entfernen " -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" -msgstr "nur lesen" +msgid "Remove selected snapins" +msgstr "ausgewählte Snapins entfernen" -#: lib/pages/snapinmanagementpage.class.php:668 #, fuzzy -msgid "Create New Snapin" -msgstr "Neues Snapin erstellen" - -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." -msgstr "Snapin Datei ist zu groß, post_max_size in php.ini erhöhen." +msgid "Remove selected users" +msgstr "Ausgewählte entfernen " -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." -msgstr "$_POST Variable ist leer, siehe Apache Errorlog" +#, fuzzy +msgid "Remove snapins" +msgstr "Snapin(s) entfernen" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 #, fuzzy -msgid "A snapin name is required!" -msgstr "Ein Snapinname ist erforderlich!" +msgid "Remove these items?" +msgstr "Diese Objekte entfernen?" + +msgid "Removed" +msgstr "Entfernt" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 #, fuzzy -msgid "A snapin already exists with this name!" -msgstr "Ein Snapin mit diesem Namen ist bereits vorhanden!" +msgid "Removing Key" +msgstr "Enfernen des Schlüssels" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 #, fuzzy -msgid "A file" -msgstr "Eine Datei" +msgid "Replay from journal" +msgstr "Wiedergabe aus dem Journal" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" -msgstr "ob bereits ausgewählt oder hochgeladen" +msgid "Replicate?" +msgstr "Replizieren?" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 #, fuzzy -msgid "must be specified" -msgstr "muss angegeben werden" +msgid "Replicating" +msgstr "Replizieren" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" -msgstr "FTP-Verbindung fehlgeschlagen" +msgid "Replication Bandwidth" +msgstr "Replikationsbandbreite" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 #, fuzzy -msgid "Failed to add snapin" -msgstr "Hinzufügen eines Snapins fehlgeschlagen" +msgid "Replication already running with PID" +msgstr "Replikation läuft bereits mit PID" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" -msgstr "Hinzufügen/aktualisieren eines Snapin-Datei" +msgid "Report" +msgstr "Bericht" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" -msgstr "Snapin hinzufügen fehlgeschlagen" +msgid "Report Management" +msgstr "Berichteverwaltung" -#: lib/pages/snapinmanagementpage.class.php:867 -#, fuzzy -msgid "Snapin added!" -msgstr "Snapin hinzugefügt" +msgid "Reports" +msgstr "Berichte" -#: lib/pages/snapinmanagementpage.class.php:868 -#, fuzzy -msgid "Snapin Create Success" -msgstr "Snapin erfolgreich hinzugefügt" +msgid "Required database field is empty" +msgstr "Erforderliches Datenbankfeld ist leer" -#: lib/pages/snapinmanagementpage.class.php:877 -#, fuzzy -msgid "Snapin Create Fail" -msgstr "Snapin erstellen fehlgeschlagen" +msgid "Requires templates to process" +msgstr "Template erforderlich" -#: lib/pages/snapinmanagementpage.class.php:904 -#, fuzzy -msgid "Snapin General" -msgstr "Snapin allgemein" +msgid "Reset Encryption Data" +msgstr "Verschlüsselungsdatei zurücksetzen" -#: lib/pages/snapinmanagementpage.class.php:1123 #, fuzzy -msgid "Snapin Protected" -msgstr "Snapin geschützt" +msgid "Reset Token" +msgstr "Token zurücksetzen" -#: lib/pages/snapinmanagementpage.class.php:1291 #, fuzzy -msgid "Snapin Storage Groups" -msgstr "Snapin Speichergruppen" +msgid "Result" +msgstr "Ergebnis" -#: lib/pages/snapinmanagementpage.class.php:1701 -#, fuzzy -msgid "Snapin update failed!" -msgstr "Snapin Update fehlgeschlagen" +msgid "Results" +msgstr "Ergebnisse" -#: lib/pages/snapinmanagementpage.class.php:1706 -#, fuzzy -msgid "Snapin updated!" -msgstr "Snapin aktualisiert" +msgid "Return Code" +msgstr "Return-Code" -#: lib/pages/snapinmanagementpage.class.php:1707 -#, fuzzy -msgid "Snapin Update Success" -msgstr "Snapin Update erfolgreich!" +msgid "Return Desc" +msgstr "Zurück Desc" -#: lib/pages/snapinmanagementpage.class.php:1716 #, fuzzy -msgid "Snapin Update Fail" -msgstr "Snapin Update fehlgeschlagen" - -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" -msgstr "%s ID %s ist nicht gültig" +msgid "Return code" +msgstr "Rückgabewert" -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "Webroot" +msgid "Returning array within key" +msgstr "Array innerhalb des Schlüssels zurückgeben" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "Bitrate" +msgid "Returning value of key" +msgstr "Wert des Schlüssels zurückgeben" + +msgid "Reverse the file: (newest on top)" +msgstr "Datei umkehren (neueste oben)" -#: lib/pages/storagemanagementpage.class.php:422 msgid "Rexmit Hello Interval" msgstr "" -#: lib/pages/storagemanagementpage.class.php:462 #, fuzzy -msgid "Create Storage Node" -msgstr "Speicherknoten erstellen" +msgid "Role" +msgstr "Rolle" -#: lib/pages/storagemanagementpage.class.php:483 #, fuzzy -msgid "New Storage Node" -msgstr "Neuer Speicherknoten" - -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" -msgstr "Bandbreite sollte numerisch und größer als 0 sein." +msgid "Role Create Fail" +msgstr "Erstellen der Rolle fehlgeschlagen" -#: lib/pages/storagemanagementpage.class.php:578 #, fuzzy -msgid "Add storage node failed!" -msgstr "Hinzufügen eines Speicherknotens fehlgeschlagen!" +msgid "Role Create Success" +msgstr "Rolle erfolgreich erstellt" -#: lib/pages/storagemanagementpage.class.php:603 #, fuzzy -msgid "Storage Node added!" -msgstr "Speicherknoten hinzugefügt" +msgid "Role Description" +msgstr "Rollenbeschreibung" -#: lib/pages/storagemanagementpage.class.php:604 #, fuzzy -msgid "Storage Node Create Success" -msgstr "Speicherknoten erfolgreich erstellt" +msgid "Role Name" +msgstr "Rollenname" -#: lib/pages/storagemanagementpage.class.php:612 #, fuzzy -msgid "Storage Node Create Fail" -msgstr "Erstellen des Speicherknotens fehlgeschlagen" +msgid "Role Update Fail" +msgstr "Aktualisierung der Rolle fehlgeschlagen" -#: lib/pages/storagemanagementpage.class.php:686 #, fuzzy -msgid "Storage Node General" -msgstr "Speicherknoten allgemein" - -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" -msgstr "" +msgid "Role Update Success" +msgstr "Rolle erfolgreich aktualisiert" -#: lib/pages/storagemanagementpage.class.php:968 #, fuzzy -msgid "Storage Node update failed!" -msgstr "Speicherknoten aktualisieren fehlgeschlagen" +msgid "Role added!" +msgstr "Rolle hinzugefügt" -#: lib/pages/storagemanagementpage.class.php:993 #, fuzzy -msgid "Storage Node updated!" -msgstr "Speicherknoten aktualisiert" +msgid "Role update failed!" +msgstr "Aktualisierung der Rolle fehlgeschlagen" -#: lib/pages/storagemanagementpage.class.php:994 #, fuzzy -msgid "Storage Node Update Success" -msgstr "Aktualisierung des Speicherknotens erfolgreich" +msgid "Role updated!" +msgstr "Rolle aktualisiert" -#: lib/pages/storagemanagementpage.class.php:1002 -#, fuzzy -msgid "Storage Node Update Fail" -msgstr "Aktualisierung des Speicherknotens fehlgeschlagen" +msgid "Routes should be an array or an instance of Traversable" +msgstr "Routen sollten ein Array oder eine Instanz von Traversable sein" -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" -msgstr "Maximal" +msgid "Row" +msgstr "Zeile" + +msgid "Row number not set properly" +msgstr "Zeilennummer nicht richtig eingestellt" -#: lib/pages/storagemanagementpage.class.php:1250 #, fuzzy -msgid "Create Storage Group" -msgstr "Speichergruppe erstellen" +msgid "Rule Associate Fail" +msgstr "Regel Zuordnung" -#: lib/pages/storagemanagementpage.class.php:1271 #, fuzzy -msgid "New Storage Group" -msgstr "Neue Speichergruppe" +msgid "Rule Associate Success" +msgstr "Regel erfolgreich gelöscht" -#: lib/pages/storagemanagementpage.class.php:1311 #, fuzzy -msgid "Storage Group Create Success" -msgstr "Speichergruppe erfolgreich erstellt" +msgid "Rule Association" +msgstr "Regel Zuordnung" -#: lib/pages/storagemanagementpage.class.php:1319 #, fuzzy -msgid "Storage Group Create Fail" -msgstr "Erstellen einer Speichergruppe fehlgeschlagen" +msgid "Rule Create Fail" +msgstr "Erstellen der Rolle fehlgeschlagen" -#: lib/pages/storagemanagementpage.class.php:1346 #, fuzzy -msgid "Storage Group General" -msgstr "Speichergruppe allgemein" +msgid "Rule Create Success" +msgstr "Rolle erfolgreich erstellt" -#: lib/pages/storagemanagementpage.class.php:1444 #, fuzzy -msgid "Storage Group update failed!" -msgstr "Aktualisierung der Speichergruppe fehlgeschlagen" +msgid "Rule Delete Fail" +msgstr "Löschen fehlgeschlagen" + +msgid "Rule Delete Success" +msgstr "Regel erfolgreich gelöscht" -#: lib/pages/storagemanagementpage.class.php:1449 #, fuzzy -msgid "Storage Group updated!" -msgstr "Speichergruppe aktualisiert" +msgid "Rule Membership" +msgstr "Mitgliedschaft" -#: lib/pages/storagemanagementpage.class.php:1450 #, fuzzy -msgid "Storage Group Update Success" -msgstr "Speichergruppe erfolgreich aktualisiert" +msgid "Rule Name" +msgstr "Regelname" -#: lib/pages/storagemanagementpage.class.php:1457 #, fuzzy -msgid "Storage Group Update Fail" -msgstr "Aktualisierung der Speichergruppe fehlgeschlagen" +msgid "Rule Type" +msgstr "Rollentyp" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" -msgstr "gestartet von:" +#, fuzzy +msgid "Rule Update Fail" +msgstr "Aktualisierung der Rolle fehlgeschlagen" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" -msgstr "Arbeitet mit Knoten" +#, fuzzy +msgid "Rule Update Success" +msgstr "Rolle erfolgreich aktualisiert" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" -msgstr "Task Start erzwungen" +#, fuzzy +msgid "Rule Value" +msgstr "Regelwert" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" -msgstr "Task Start erzwingen" +#, fuzzy +msgid "Rule added!" +msgstr "Rolle hinzugefügt" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" -msgstr "Alle Gruppen" +#, fuzzy +msgid "Rule associate success!" +msgstr "Regel erfolgreich gelöscht" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" -msgstr "Ungültiger Objekttyp übergeben" +#, fuzzy +msgid "Rule deleted successfully!" +msgstr "Regel erfolgreich gelöscht" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" -msgstr "Ungültiger Task-Typ" +#, fuzzy +msgid "Rule type" +msgstr "Regeltyp" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" -msgstr "Ungültiges Image zugewiesen" +#, fuzzy +msgid "Rule updated!" +msgstr "Rolle aktualisiert" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" -msgstr "ist geschützt" +msgid "Rule value" +msgstr "Regelwert" -#: lib/pages/taskmanagementpage.class.php:550 #, fuzzy -msgid "Quick" -msgstr "Schnell" +msgid "Running Windows" +msgstr "Laufende Version" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" -msgstr "Den Hosts wurde nicht das gleiche Image zugewiesen" +#, fuzzy +msgid "SQL Error" +msgstr "SQL-Fehler" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" -msgstr "Multicast Schnellverteilung" +msgid "SSL Path" +msgstr "SSL-Pfad" -#: lib/pages/taskmanagementpage.class.php:564 -#, fuzzy -msgid "Group Quick Deploy" -msgstr "Gruppen Schnellverteilung" +msgid "Save Changes" +msgstr "Änderungen speichern" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." +msgid "Save Initrd" msgstr "" -"Erfogreiche Ausführung, ein Klick auf aktive Tasks zeigt sie in einer Zeile" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" -msgstr "Ungültiger Task" - -#: lib/pages/taskmanagementpage.class.php:801 #, fuzzy -msgid "Active Multi-cast Tasks" -msgstr "Aktive Multicast Tasks" - -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "MulticastTask" - -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" -msgstr "Tasks abbrechen auf diese Weise nicht möglich" - -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" -msgstr "Host/Gruppenname" +msgid "Save Kernel" +msgstr "Kernel speichern" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" -msgstr "ist Gruppe" +#, fuzzy +msgid "Saving data for" +msgstr "Speichern von Daten für %s Objekt" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" -msgstr "Task-Typ" +msgid "Schedule" +msgstr "Zeitplan" -#: lib/pages/taskmanagementpage.class.php:1204 #, fuzzy -msgid "All snapins" -msgstr "Alle Snapins" +msgid "Schedule Power" +msgstr "plane Power" -#: lib/pages/taskmanagementpage.class.php:1208 #, fuzzy -msgid "Invalid snapin" -msgstr "Ungültiger Snapin" +msgid "Schedule as debug task" +msgstr "Planen als Debugaufgabe" -#: lib/pages/taskmanagementpage.class.php:1210 #, fuzzy -msgid "Snapin to be installed" -msgstr "Snapin aktiviert" - -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" -msgstr "Gruppe" - -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" -msgstr "Host" +msgid "Schedule cron-style" +msgstr "Cron-Style planen" -#: lib/pages/usermanagementpage.class.php:52 #, fuzzy -msgid "Change password" -msgstr "Passwort ändern" +msgid "Schedule delayed" +msgstr "verzögert planen" -#: lib/pages/usermanagementpage.class.php:56 #, fuzzy -msgid "API Settings" -msgstr "API Einstellungen" +msgid "Schedule instant" +msgstr "sofort planen" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 #, fuzzy -msgid "Friendly Name" -msgstr "nutzerfreundlicher Name" - -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" -msgstr "Kein nutzerfreundlicher Name vergeben" - -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" -msgstr "API?" - -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" -msgstr "Benutzer bearbeiten" - -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" -msgstr "Neuer Benutzer" - -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" -msgstr "Benutzername" - -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" -msgstr "Benutzerpasswort" - -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" -msgstr "Benutzerpasswort (bestätigen)" +msgid "Schedule with shutdown" +msgstr "Zeitplan" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 #, fuzzy -msgid "User API Enabled" -msgstr "Benutzer-API aktiviert" +msgid "Scheduled Task run time" +msgstr "Geplante Tasks" -#: lib/pages/usermanagementpage.class.php:223 -#, fuzzy -msgid "Create user?" -msgstr "Benutzer erstellen?" +msgid "Scheduled Tasks" +msgstr "Geplante Tasks" + +msgid "Scheduled date is in the past" +msgstr "geplanter Termin liegt in der Vergangenheit" -#: lib/pages/usermanagementpage.class.php:283 #, fuzzy -msgid "A user name is required!" -msgstr "Ein Benutzername ist erforderlich!" +msgid "Scheduled tasks successfully created" +msgstr "geplante Tasks wurde erfolgreich erstellt" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" -msgstr "Benutzername erfüllt nicht die Anforderungen" +msgid "Scheduler" +msgstr "Scheduler" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" -msgstr "Benutzername muss mit einem Buchstaben beginnen" +msgid "Screen Height (in pixels)" +msgstr "Höhe (in Pixel)" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" -msgstr "Benutzername muss mind. 3 Zeichen haben" +msgid "Screen Refresh Rate (in Hz)" +msgstr "Bildschirm-Aktualisierungsrate (in Hz)" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" -msgstr "Benutzername darf max. 40 Zeichen haben" +msgid "Screen Width (in pixels)" +msgstr "Breite (in Pixel)" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" -msgstr "Benutzername darf keine zusammenhängenden Sonderzeichen enthalten" +msgid "Search" +msgstr "Suche" -#: lib/pages/usermanagementpage.class.php:304 #, fuzzy -msgid "A username already exists with this name!" -msgstr "Dieser Benutzername ist bereits vorhanden!" +msgid "Search Base DN" +msgstr "Suche Basis DN" -#: lib/pages/usermanagementpage.class.php:309 #, fuzzy -msgid "A password is required!" -msgstr "Ein Passwort ist erforderlich!" +msgid "Search DN" +msgstr "Suche DN" -#: lib/pages/usermanagementpage.class.php:321 -#, fuzzy -msgid "Add user failed!" -msgstr "Benutzer hinzufügen fehlgeschlagen!" +msgid "Search DN did not return any results" +msgstr "Suche DN hat keine Ergebnisse zurückgegeben" -#: lib/pages/usermanagementpage.class.php:327 #, fuzzy -msgid "User added!" -msgstr "Benutzer hinzugefügt" +msgid "Search Method" +msgstr "Suchmethode" -#: lib/pages/usermanagementpage.class.php:328 #, fuzzy -msgid "User Create Success" -msgstr "Benutzer erfolgreich erstellt" +msgid "Search Scope" +msgstr "Suchbereich" -#: lib/pages/usermanagementpage.class.php:336 #, fuzzy -msgid "User Create Fail" -msgstr "Benutzer erstellen fehlgeschlagen" +msgid "Search pattern" +msgstr "Suchbereich" -#: lib/pages/usermanagementpage.class.php:363 -#, fuzzy -msgid "User General" -msgstr "Benutzer allgemein" +msgid "Search results returned false" +msgstr "Die Suche lieferte kein passendes Ergebnis" -#: lib/pages/usermanagementpage.class.php:392 #, fuzzy -msgid "Update General?" -msgstr "Allgemein aktualisieren?" +msgid "Second paramater must be in array(class,function)" +msgstr "Zweiter Parameter muss innerhalb des Arrays (Klasse, Funktion) sein" -#: lib/pages/usermanagementpage.class.php:455 -#, fuzzy -msgid "User Change Password" -msgstr "Benutzerpasswort ändern" +msgid "Select Image" +msgstr "Wählen Sie ein Image" -#: lib/pages/usermanagementpage.class.php:481 -#, fuzzy -msgid "Update Password?" -msgstr "Benutzerpasswort aktualisieren?" +msgid "Select User" +msgstr "Wählen Sie einen Benutzer" -#: lib/pages/usermanagementpage.class.php:535 -#, fuzzy -msgid "User API Settings" -msgstr "Benutzer-API-Einstellungen" +msgid "Select a cron type" +msgstr "Wählen Sie einen Crontyp" -#: lib/pages/usermanagementpage.class.php:557 -#, fuzzy -msgid "User API Token" -msgstr "API-Zugangstoken" +msgid "Select a valid image" +msgstr "Wählen Sie ein gültiges Abbild" -#: lib/pages/usermanagementpage.class.php:573 #, fuzzy -msgid "Update API?" -msgstr "API aktualisieren?" +msgid "Select management level for these hosts" +msgstr "Wählen Sie die Verwaltungsebene für diese Hosts aus" -#: lib/pages/usermanagementpage.class.php:667 #, fuzzy -msgid "A user already exists with this name" -msgstr "Dieser Benutzername ist bereits vorhanden!" +msgid "Select management level for this host" +msgstr "Verwaltungsebene für diesen Host auswählen" -#: lib/pages/usermanagementpage.class.php:728 -#, fuzzy -msgid "User update failed!" -msgstr "Benutzer-Update fehlgeschlagen" +msgid "Select/Deselect All" +msgstr "Alle auswählen/abwählen" -#: lib/pages/usermanagementpage.class.php:733 #, fuzzy -msgid "User updated!" -msgstr "Benutzer aktualisiert" +msgid "Selected Logins" +msgstr "ausgewählte Logins" -#: lib/pages/usermanagementpage.class.php:734 -#, fuzzy -msgid "User Update Success" -msgstr "Benutzeraktualisierung erfolgreich!" +msgid "Selected groups's current activity" +msgstr "momentane Aktivität der ausgewählten Gruppen" -#: lib/pages/usermanagementpage.class.php:742 #, fuzzy -msgid "User Update Fail" -msgstr "Benutzer-Update fehlgeschlagen" +msgid "Selected hosts approved successfully" +msgstr "ausgewählte Hosts erfolgreich freigegeben" -#: lib/pages/processlogin.class.php:161 #, fuzzy -msgid "Login failed" -msgstr "Laden fehlgeschlagen: %s" +msgid "Selected hosts deleted successfully" +msgstr "ausgewählte Hosts erfolgreich gelöscht" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 #, fuzzy -msgid "username" -msgstr "Benutzername" +msgid "Selected node's disk usage" +msgstr "Datenträgerverwendung der ausgewählten Knoten" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "Anmelden fehlgeschlagen" +msgid "Serial" +msgstr "Serielle" -#: lib/pages/processlogin.class.php:185 -#, fuzzy -msgid "Login accepted" -msgstr "Anmeldezeit" +msgid "Serial Number" +msgstr "Seriennummer" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" -msgstr "" +msgid "Server Shell" +msgstr "Server-Shell" -#: lib/pages/processlogin.class.php:246 #, fuzzy -msgid "FOG Project" -msgstr "FOG Projekt auf Github" +msgid "Server information" +msgstr "Serverinformationen" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 #, fuzzy -msgid "Access Controls" -msgstr "Zugriffskontrollen" +msgid "Server information at a glance." +msgstr "Serverinformationen auf einen Blick" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 -#, fuzzy -msgid "Role" -msgstr "Rolle" +msgid "Service" +msgstr "Service" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -#, fuzzy -msgid "User Access Control" -msgstr "Benutzerzugriffskontrolle" +msgid "Service Configuration" +msgstr "Service-Konfiguration" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -#, fuzzy -msgid "Export Accesscontrols" -msgstr "Zugriffssteuerungen exportieren" +msgid "Service Master" +msgstr "Service-Master" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 #, fuzzy -msgid "Import Accesscontrols" -msgstr "Zugriffssteuerung importieren" +msgid "Service Setting Update Failed" +msgstr "Update der Service Settings fehlgeschlagen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 #, fuzzy -msgid "Rule Association" -msgstr "Regel Zuordnung" +msgid "Service Setting Update Success" +msgstr "Service Settings erfoglreich aktualisiert!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 #, fuzzy -msgid "Role Name" -msgstr "Rollenname" +msgid "Service Start" +msgstr "Service-Start" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -#, fuzzy -msgid "Rule type" -msgstr "Regeltyp" +msgid "Service Status" +msgstr "Service-Status" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" -msgstr "Regelwert" +msgid "Service Tag" +msgstr "Service-Tag" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 #, fuzzy -msgid "Parent Node" -msgstr "übergeordenter Knoten" +msgid "Service general" +msgstr "Service allgemein" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, fuzzy, php-format -msgid "List all roles" -msgstr "Alle Rollen auflisten" +msgid "Service update failed" +msgstr "Service-Update fehlgeschlagen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, fuzzy, php-format -msgid "Add new role" -msgstr "Neue Rolle hinzufügen" +msgid "Session Name" +msgstr "Sitzungsname" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, fuzzy, php-format -msgid "List all rules" -msgstr "Alle Regeln auflisten" +msgid "Session altered improperly" +msgstr "Sitzung nicht ordnungsgemäß geändert" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, fuzzy, php-format -msgid "Add new rule" -msgstr "Neue Regel hinzufügen" +msgid "Session name cannot be the same as an existing hostname" +msgstr "Sitzungsname darf nicht mit vorhandenem Hostname identisch sein" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 -#, fuzzy -msgid "Role Description" -msgstr "Rollenbeschreibung" +msgid "Session timeout" +msgstr "Session-Timeout" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -#, fuzzy -msgid "New Role" -msgstr "Neue Rolle" +msgid "Session with that name already exists" +msgstr "Sitzung mit diesem Namen ist bereits vorhanden" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 #, fuzzy -msgid "Create New Access Control Role" -msgstr "Neue Zugriffssteuerungsrolle erstellen" +msgid "Set Failed" +msgstr "Set fehlgeschlagen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 #, fuzzy -msgid "A name is required!" -msgstr "Ein Name ist erforderlich!" +msgid "Set failed" +msgstr "Service-Update fehlgeschlagen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -#, fuzzy -msgid "A role already exists with this name!" -msgstr "Eine Rolle mit diesem Namen ist bereits vorhanden!" +msgid "Setting Key" +msgstr "Einstellungen Schlüssel" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -#, fuzzy -msgid "Add role failed!" -msgstr "Hinzufügen einer Rolle fehlgeschlagen" +msgid "Setting logout to one second prior to next login" +msgstr "Logout vor dem nächsten Login auf eine Sekunde setzen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -#, fuzzy -msgid "Role added!" -msgstr "Rolle hinzugefügt" +msgid "Settings" +msgstr "Einstellungen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 #, fuzzy -msgid "Role Create Success" -msgstr "Rolle erfolgreich erstellt" +msgid "Settings Update Fail" +msgstr "Update der Einstellungen fehlgeschlagen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 #, fuzzy -msgid "Role Create Fail" -msgstr "Erstellen der Rolle fehlgeschlagen" +msgid "Settings Update Success" +msgstr "Einstellungen erfolgreich aktualisiert" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 #, fuzzy -msgid "Access Control Role General" -msgstr "Zugriffssteuerungsrolle Allgemein" +msgid "Settings successfully stored!" +msgstr "Einstellungen erfolgreich gespeichert!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -#, fuzzy -msgid "Role update failed!" -msgstr "Aktualisierung der Rolle fehlgeschlagen" +msgid "Should anything go wrong" +msgstr "Sollte etwas schief gehen," -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -#, fuzzy -msgid "Role updated!" -msgstr "Rolle aktualisiert" +msgid "Shutdown" +msgstr "Herunterfahren" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 -#, fuzzy -msgid "Role Update Success" -msgstr "Rolle erfolgreich aktualisiert" +msgid "Shutdown after deploy" +msgstr "Herunterfahren nach der Verteilung" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 -#, fuzzy -msgid "Role Update Fail" -msgstr "Aktualisierung der Rolle fehlgeschlagen" +msgid "Shutdown after install" +msgstr "Nach der Installation herunterfahren" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 -#, fuzzy -msgid "Access Control Rules" -msgstr "Zugriffskontrollregeln" +msgid "Signed" +msgstr "Unterschrift" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 #, fuzzy -msgid "Parent" -msgstr "Übergeordnet" +msgid "Site" +msgstr "Site" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 #, fuzzy -msgid "Access Control Rule" -msgstr "Zugriffskontrollregeln" +msgid "Site Association" +msgstr "Site Zugehörigkeit" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 #, fuzzy -msgid "New Rule" -msgstr "Neue Regel" +msgid "Site Control Management" +msgstr "Zugriffssteuerung" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 #, fuzzy -msgid "Rule Type" -msgstr "Rollentyp" +msgid "Site Create Fail" +msgstr "Drucker erstellen fehlgeschlagen!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 #, fuzzy -msgid "Node Parent" -msgstr "Knoten Überordnung" +msgid "Site Create Success" +msgstr "Drucker hinzufügen erfolgreich." -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 #, fuzzy -msgid "Rule Value" -msgstr "Regelwert" +msgid "Site Description" +msgstr "Site Beschreibung" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 #, fuzzy -msgid "Create Rule?" -msgstr "Regel erstellen?" +msgid "Site General" +msgstr "Drucker allgemein" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 #, fuzzy -msgid "A rule already exists with this name." -msgstr "Eine Rolle mit diesem Namen ist bereits vorhanden!" +msgid "Site Name" +msgstr "Sitename" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 #, fuzzy -msgid "Add rule failed!" -msgstr "Hinzufügen einer Rolle fehlgeschlagen" +msgid "Site Update Fail" +msgstr "Drucker-Update fehlgeschlagen!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 #, fuzzy -msgid "Rule added!" -msgstr "Rolle hinzugefügt" +msgid "Site Update Success" +msgstr "Drucker aktualisiert!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 #, fuzzy -msgid "Rule Create Success" -msgstr "Rolle erfolgreich erstellt" +msgid "Site Updated!" +msgstr "Drucker aktualisiert!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 #, fuzzy -msgid "Rule Create Fail" -msgstr "Erstellen der Rolle fehlgeschlagen" +msgid "Site added!" +msgstr "Drucker hinzugefügt" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 #, fuzzy -msgid "Access Control Rule General" -msgstr "Zugriffssteuerungsrolle Allgemein" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "Aktualisierung fehlgeschlagen" +msgid "Site update failed!" +msgstr "Drucker-Update fehlgeschlagen!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 #, fuzzy -msgid "Rule updated!" -msgstr "Rolle aktualisiert" +msgid "Sites" +msgstr "Sites" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 #, fuzzy -msgid "Rule Update Success" -msgstr "Rolle erfolgreich aktualisiert" +msgid "Size" +msgstr "Größe" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 -#, fuzzy -msgid "Rule Update Fail" -msgstr "Aktualisierung der Rolle fehlgeschlagen" +msgid "Slack Accounts" +msgstr "Slack Accounts" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 #, fuzzy -msgid "Fail to destroy" -msgstr "Fehler beim Zerstören" +msgid "Slack Management" +msgstr "Task-Management" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 #, fuzzy -msgid "Rule deleted successfully!" -msgstr "Regel erfolgreich gelöscht" +msgid "Smart Installer" +msgstr "Smart Installer" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" -msgstr "Regel erfolgreich gelöscht" +msgid "Snapin" +msgstr "Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 -#, fuzzy -msgid "Rule Delete Fail" -msgstr "Löschen fehlgeschlagen" +msgid "Snapin Args" +msgstr "Snapin Args" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 -#, fuzzy -msgid "Rule Name" -msgstr "Regelname" +msgid "Snapin Arguments" +msgstr "Snapin-Argumente" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 #, fuzzy -msgid "Rule Membership" -msgstr "Mitgliedschaft" +msgid "Snapin Arguments Hidden" +msgstr "Snapin-Argumente versteckt" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 -#, fuzzy -msgid "Check here to see what rules can be added" -msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" +msgid "Snapin Client" +msgstr "Snapin-Client" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 -#, fuzzy -msgid "Add Rules" -msgstr "Benutzer hinzufügen" +msgid "Snapin Command" +msgstr "Snapin Befehl" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 #, fuzzy -msgid "Add selected rules" -msgstr "Ausgewählte Drucker hinzufügen" +msgid "Snapin Create Fail" +msgstr "Snapin erstellen fehlgeschlagen" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 #, fuzzy -msgid "Remove Accesscontrol Rules" -msgstr "Zugriffskontrollregeln" +msgid "Snapin Create Success" +msgstr "Snapin erfolgreich hinzugefügt" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 #, fuzzy -msgid "Remove selected rules" -msgstr "Ausgewählte entfernen " +msgid "Snapin Created" +msgstr "Snapin erstellt" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 -#, fuzzy -msgid "No role selected" -msgstr "Ausgewählte löschen" +msgid "Snapin Creation Date" +msgstr "Snapin-Erstellungsdatum" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 -#, fuzzy -msgid "No rule selected" -msgstr "Ausgewählte löschen" +msgid "Snapin Creation Time" +msgstr "Snapin-Erstellungszeit" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 -#, fuzzy -msgid "Associate rule failed!" -msgstr "Hinzufügen einer Rolle fehlgeschlagen" +msgid "Snapin Description" +msgstr "Snapin Beschreibung" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 -#, fuzzy -msgid "Rule associate success!" -msgstr "Regel erfolgreich gelöscht" +msgid "Snapin Enabled" +msgstr "Snapin aktiviert" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 -#, fuzzy -msgid "Rule Associate Success" -msgstr "Regel erfolgreich gelöscht" +msgid "Snapin File" +msgstr "Snapin-Datei" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 -#, fuzzy -msgid "Rule Associate Fail" -msgstr "Regel Zuordnung" +msgid "Snapin File (exists)" +msgstr "Snapin-Datei (existiert)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 #, fuzzy -msgid "User name" -msgstr "Benutzername" +msgid "Snapin General" +msgstr "Snapin allgemein" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 #, fuzzy -msgid "Check here to see what users can be added" -msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" +msgid "Snapin Hash" +msgstr "Snapin Hash" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -#, fuzzy -msgid "Add Users" -msgstr "Benutzer hinzufügen" +msgid "Snapin History" +msgstr "Snapin-Verlauf" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -#, fuzzy -msgid "Add selected users" -msgstr "Ausgewählte Drucker hinzufügen" +msgid "Snapin ID" +msgstr "Snapin-ID" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 #, fuzzy -msgid "Remove Users" -msgstr "Entfernen " +msgid "Snapin Locations" +msgstr "Snapin Standorte" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 -#, fuzzy -msgid "Remove selected users" -msgstr "Ausgewählte entfernen " +msgid "Snapin Log" +msgstr "Snapin-Log" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" -msgstr "Capone Verteilung" +msgid "Snapin Management" +msgstr "Snapin-Management" + +msgid "Snapin Name" +msgstr "Snapin-Namen" -#: lib/plugins/ldap/class/ldap.class.php:107 #, fuzzy -msgid "Function does not exist" -msgstr "Methode ist nicht vorhanden" +msgid "Snapin Pack" +msgstr "Snapin Paket" -#: lib/plugins/ldap/class/ldap.class.php:147 #, fuzzy -msgid "Port is not valid ldap/ldaps port" -msgstr "Dieser Port ist kein gültiger LDAP/LADPS Port" +msgid "Snapin Pack Arguments" +msgstr "Snapin PaketArgumente" -#: lib/plugins/ldap/class/ldap.class.php:295 #, fuzzy -msgid "We cannot connect to LDAP server" -msgstr "Es kann keine Verbindung zum LDAP-Server hergestellt werden." +msgid "Snapin Pack File" +msgstr "Snapin Paketdatei" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" -msgstr "Verwenden der Gruppenübereinstimmungsfunktion," +#, fuzzy +msgid "Snapin Pack Template" +msgstr "Snapin Paket Template" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" -msgstr "aber das Anmeldekennwort ist nicht festgelegt." +msgid "Snapin Path" +msgstr "Snapin-Pfad" -#: lib/plugins/ldap/class/ldap.class.php:398 #, fuzzy -msgid "Cannot bind to the LDAP server" -msgstr "Anmeldung am LDAP-Server nicht möglich" +msgid "Snapin Protected" +msgstr "Snapin geschützt" -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" -msgstr "Die Suche lieferte kein passendes Ergebnis" +msgid "Snapin Replicator" +msgstr "Snapin-Replikator" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 -#, fuzzy -msgid "Search DN" -msgstr "Suche DN" +msgid "Snapin Return Code" +msgstr "Snapin-Return-Code" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 -#, fuzzy -msgid "Filter" -msgstr "Filter" +msgid "Snapin Return Detail" +msgstr "Snapin-Returndetails" -#: lib/plugins/ldap/class/ldap.class.php:460 -#, fuzzy -msgid "User was not authorized by the LDAP server" -msgstr "Der Benutzer war nicht vom LDAP-Server autorisiert" +msgid "Snapin Run With" +msgstr "Snapin läuft mit" -#: lib/plugins/ldap/class/ldap.class.php:461 -#, fuzzy -msgid "User DN" -msgstr "Benutzer DN" +msgid "Snapin Run With Args" +msgstr "Snapin-Ausführung mit Args" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" -msgstr "Alle Methoden der Bindung sind fehlgeschlagen" +msgid "Snapin Run With Argument" +msgstr "Snapin läuft mit Argument" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" -msgstr "Suche DN hat keine Ergebnisse zurückgegeben" +msgid "Snapin State" +msgstr "Snapin-Zustand" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" -msgstr "Zugriffsstufe ist immer noch 0 oder falsch" +#, fuzzy +msgid "Snapin Storage Groups" +msgstr "Snapin Speichergruppen" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" -msgstr "Kein Zugriff erlaubt" +#, fuzzy +msgid "Snapin Task is invalid" +msgstr "Snapin Task ist ungültig" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" -msgstr "Gruppensuche DN gab keine Ergebnisse zurück" +msgid "Snapin Template" +msgstr "Snapin Template" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 #, fuzzy -msgid "Group Search DN" -msgstr "Gruppensuche DN" +msgid "Snapin Timeout (seconds)" +msgstr "Snapin-Timeout (in Sekunden)" + +msgid "Snapin Transfer Log" +msgstr "Snapin Übertragungsprotokoll" -#: lib/plugins/ldap/class/ldap.class.php:848 #, fuzzy -msgid "Search Method" -msgstr "Suchmethode" +msgid "Snapin Type" +msgstr "Snapin Typ" -#: lib/plugins/ldap/class/ldap.class.php:852 #, fuzzy -msgid "Result" -msgstr "Ergebnis" +msgid "Snapin Update Fail" +msgstr "Snapin Update fehlgeschlagen" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 #, fuzzy -msgid "LDAP Servers" -msgstr "LDAP-Server" +msgid "Snapin Update Success" +msgstr "Snapin Update erfolgreich!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" -msgstr "LDAP-Verwaltung" +#, fuzzy +msgid "Snapin Used" +msgstr "genutzte Snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 #, fuzzy -msgid "Export LDAPs" -msgstr "LDAPs exportieren" +msgid "Snapin added!" +msgstr "Snapin hinzugefügt" + +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "Snapin Datei ist zu groß, post_max_size in php.ini erhöhen." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 #, fuzzy -msgid "Import LDAPs" -msgstr "LDAPs importieren" +msgid "Snapin is invalid" +msgstr "Snapin ist ungültig" + +msgid "Snapin is protected and cannot be deleted" +msgstr "Snapin ist geschützt und kann nicht gelöscht werden" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 #, fuzzy -msgid "Plugin Configuration" -msgstr "Druckerkonfiguration" +msgid "Snapin task not completed" +msgstr "Snapin Task ist nicht vollständig" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 #, fuzzy -msgid "LDAP Connection Name" -msgstr "LDAP Verbindungsname" +msgid "Snapin to be installed" +msgstr "Snapin aktiviert" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" -msgstr "LDAP-Server-Adresse" +#, fuzzy +msgid "Snapin update failed!" +msgstr "Snapin Update fehlgeschlagen" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 #, fuzzy -msgid "LDAP Connection Name" -msgstr "LDAP Verbindungsname" +msgid "Snapin updated!" +msgstr "Snapin aktualisiert" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" -msgstr "LDAP-Server-Beschreibung" +msgid "Snapins" +msgstr "Snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" -msgstr "LDAP-Server" +msgid "Snapins Are already deployed to this host" +msgstr "Snapins sind auf diesem Host schon verteilt" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 -#, fuzzy -msgid "Admin Group" -msgstr "Admingruppe" +msgid "So if you are trying to transmit to remote node A" +msgstr "Wenn Sie also versuchen, an den entfernten Knoten A zu senden," -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" -msgstr "Neuer LDAP-Server" +msgid "Somebody will be able to help in some form" +msgstr "dort wird jemand in der Lage sein, zu helfen." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "Nur Basis" +msgid "Space variable must be boolean" +msgstr "Bereichsvariable muss boolean sein" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" +msgid "Specified download URL not allowed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" -msgstr "Nur Teilstruktur" +msgid "Start" +msgstr "Start" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 -#, fuzzy -msgid "LDAP Server Port" -msgstr "LDAP-Server-Port" +msgid "Start Date" +msgstr "Startdatum" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" -msgstr "Gruppenabgleich verwenden (empfohlen)" +msgid "Start Multicast Session" +msgstr "Multicast-Sitzung starten" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 #, fuzzy -msgid "Search Base DN" -msgstr "Suche Basis DN" +msgid "Start Session" +msgstr "Sitzung starten" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 -#, fuzzy -msgid "Mobile Group" -msgstr "Mobile Gruppe" +msgid "Start Time" +msgstr "Startzeit" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -#, fuzzy -msgid "Initial Template" -msgstr "ursprüngliches Template" +msgid "Started By:" +msgstr "gestartet von:" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 -#, fuzzy -msgid "Pick a template" -msgstr "Wählen Sie ein Template aus" +msgid "Started sync for" +msgstr "Die Synchronistaion wurde gestartet für" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "Microsoft AD" +#, fuzzy +msgid "Starting Image Replication" +msgstr "Imagereplikation startet" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" -msgstr "OpenLDAP" +#, fuzzy +msgid "Starting Image Size Service" +msgstr "Imagegrößen-Service startet" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" -msgstr "Generic LDAP" +msgid "Starting Snapin Hashing Service" +msgstr "Snapin-Hash-Service wird gestartet" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 #, fuzzy -msgid "User Name Attribute" -msgstr "Benutzername Attribut" +msgid "Starting Snapin Replication" +msgstr "Snapin-Replikatoion startet" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" -msgstr "Gruppemmitglieder Attribut" +#, fuzzy +msgid "Starting Sync Actions" +msgstr "Starte Sync-Aktionen" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 #, fuzzy -msgid "Search Scope" -msgstr "Suchbereich" +msgid "Starting process" +msgstr "wird gestartet..." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "DN binden" +msgid "State" +msgstr "Zustand" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 -#, fuzzy -msgid "Bind Password" -msgstr "Passwort binden" +msgid "Status" +msgstr "Status" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 -#, fuzzy -msgid "Create New LDAP" -msgstr "Neues LDAP erstellen" +msgid "Stop Task" +msgstr "Task beenden" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "Hinzufügen nicht möglich" +msgid "Storage" +msgstr "Speicher" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "Bitte geben Sie einen Namen für den LDAP-Server an." +msgid "Storage Group" +msgstr "Speichergruppe" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "Bitte geben Sie eine LDAP-Server-Adresse an." +msgid "Storage Group Activity" +msgstr "Speichergruppenaktivität" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -#, fuzzy -msgid "Please enter a Search Base DN" -msgstr "Bitte geben Sie eine Such-Basis-DN an" +msgid "Storage Group Already Exists" +msgstr "Speichergruppe ist bereits vorhanden." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 #, fuzzy -msgid "Please select an LDAP port to use" -msgstr "Bitte wählen Sie einen LDAP-Port aus" +msgid "Storage Group Create Fail" +msgstr "Erstellen einer Speichergruppe fehlgeschlagen" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 #, fuzzy -msgid "Please select a valid ldap port" -msgstr "Bitte wählen Sie einen gültigen LDAP-Port aus" +msgid "Storage Group Create Success" +msgstr "Speichergruppe erfolgreich erstellt" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -#, fuzzy -msgid "Please Enter an admin or mobile lookup name" -msgstr "" -"Bitte geben Sie einen Namen für einen Admin oder einen mobilen Lookup ein." +msgid "Storage Group Created" +msgstr "Speichergruppe erstellt" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 -#, fuzzy -msgid "Please enter a User Name Attribute" -msgstr "Bitte geben Sie ein Benutzernamen-Attribut ein" +msgid "Storage Group Description" +msgstr "Speichergruppe Beschreibung" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 #, fuzzy -msgid "Please enter a Group Member Attribute" -msgstr "Bitte geben Sie ein Gruppenmitglied-Attribut ein" +msgid "Storage Group General" +msgstr "Speichergruppe allgemein" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 -#, fuzzy -msgid "A LDAP setup already exists with this name!" -msgstr "Ein LDAP mit diesem Namen ist bereits vorhanden!" +msgid "Storage Group Name" +msgstr "Name der Speichergruppe" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 #, fuzzy -msgid "Add LDAP server failed!" -msgstr "Hinzufügen eines LDAP-Servers fehlgeschlagen" +msgid "Storage Group Update Fail" +msgstr "Aktualisierung der Speichergruppe fehlgeschlagen" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 #, fuzzy -msgid "LDAP Server added!" -msgstr "LDAP-Server hinzugefügt!" +msgid "Storage Group Update Success" +msgstr "Speichergruppe erfolgreich aktualisiert" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 -#, fuzzy -msgid "LDAP Create Success" -msgstr "LDAP-Server erfolgreich hinzugefügt" +msgid "Storage Group Updated" +msgstr "Speichergruppe aktualisiert" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 -#, fuzzy -msgid "LDAP Create Fail" -msgstr "LDAP-Server erstellen fehlgeschlagen" +msgid "Storage Group deleted" +msgstr "Speichergruppe gelöscht" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 #, fuzzy -msgid "LDAP General" -msgstr "LDAP allgemein" +msgid "Storage Group update failed!" +msgstr "Aktualisierung der Speichergruppe fehlgeschlagen" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 #, fuzzy -msgid "Update LDAP server failed!" -msgstr "LDAP-Server aktualisieren fehlgeschlagen!" +msgid "Storage Group updated!" +msgstr "Speichergruppe aktualisiert" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 -#, fuzzy -msgid "LDAP Server updated!" -msgstr "LDAP-Server aktualisiert" +msgid "Storage Management" +msgstr "Speicherverwaltung" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 -#, fuzzy -msgid "LDAP Update Success" -msgstr "LDAP-Server erfolgreich aktualisiert" +msgid "Storage Node" +msgstr "Storage Node" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 #, fuzzy -msgid "LDAP Update Fail" -msgstr "Aktualisierung des LDAP-Servers fehlgeschlagen" +msgid "Storage Node Create Fail" +msgstr "Erstellen des Speicherknotens fehlgeschlagen" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 #, fuzzy -msgid "User Filter" -msgstr "Filter" +msgid "Storage Node Create Success" +msgstr "Speicherknoten erfolgreich erstellt" + +msgid "Storage Node Created" +msgstr "Speicherknoten erstellt" + +msgid "Storage Node Description" +msgstr "Speicherknotenbeschreibung" + +msgid "Storage Node Disk Usage" +msgstr "Storage Node Datenträgerverwendung" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 #, fuzzy -msgid "LDAP Ports" -msgstr "LDAP-Server-Port" +msgid "Storage Node General" +msgstr "Speicherknoten allgemein" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" +msgid "Storage Node IP" +msgstr "Speicherknoten-IP" -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "Standort ist ein Plugin, mit dem Ihr FOG-Server" +msgid "Storage Node Interface" +msgstr "Speicherknoten-Schnittstelle" -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" -msgstr "in einer Umgebung arbeiten kann, in der es mehrere" +msgid "Storage Node Max Clients" +msgstr "Speicherknoten max. Clients" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" -msgstr "Orte gibt, an denen Sie Ihr Image abrufen können" +msgid "Storage Node Name" +msgstr "Speicherknotenname" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" -msgstr "Dies ist besonders nützlich, wenn Sie mehrere Standorte " +msgid "Storage Node Password" +msgstr "Speicherknoten Passwort" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" -msgstr "mit Clients haben, die zwischen verschiedenen " +#, fuzzy +msgid "Storage Node Protocol" +msgstr "Speicherknoten-IP" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" -msgstr "Stellen hin und her wechseln." +#, fuzzy +msgid "Storage Node Update Fail" +msgstr "Aktualisierung des Speicherknotens fehlgeschlagen" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 #, fuzzy -msgid "Location Association" -msgstr "Standort Zugehörigkeiten" +msgid "Storage Node Update Success" +msgstr "Aktualisierung des Speicherknotens erfolgreich" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" -msgstr "Standort / Verteilt" +msgid "Storage Node Updated" +msgstr "Speicherknoten aktualisiert" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" -msgstr "Host Standort" +msgid "Storage Node Username" +msgstr "Speicherknoten Benutzername" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 #, fuzzy -msgid "This setting defines sending the" -msgstr "Diese Einstellung definiert das Senden" - -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "der Standort-URL basierend auf dem Host, der eincheckt." +msgid "Storage Node added!" +msgstr "Speicherknoten hinzugefügt" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "Es weist den Client an, Snapins vom hostdefinierten " +msgid "Storage Node already exists" +msgstr "Speicherknoten ist bereits vorhanden." -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "Speicherort herunterzuladen, sofern verfügbar." +msgid "Storage Node deleted" +msgstr "Speicherknoten gelöscht" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 #, fuzzy -msgid "Default is disabled" -msgstr "Standard ist deaktiviert" +msgid "Storage Node update failed!" +msgstr "Speicherknoten aktualisieren fehlgeschlagen" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 #, fuzzy -msgid "Snapin Locations" -msgstr "Snapin Standorte" - -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "In diesem Bereich kann der Host einchecken, um zu" +msgid "Storage Node updated!" +msgstr "Speicherknoten aktualisiert" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 #, fuzzy -msgid "where to download the snapin" -msgstr "erfahren, wo das Snapin heruntergeladen werden soll" +msgid "String must be a string" +msgstr "String muss eine Zeichenfolge sein." -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" -msgstr "Das ist nützlich bei langsamen Verbindungen" +#, fuzzy +msgid "Subnet Groups" +msgstr "Mobile Gruppe" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" -msgstr "zwischen dem Hauptrechner und dem Host." +#, fuzzy +msgid "SubnetGroup General" +msgstr "Speichergruppe allgemein" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" -msgstr "Standort senden aktivieren" +#, fuzzy +msgid "Subnetgroup Create Fail" +msgstr "Gruppe erstellen fehlgeschlagen" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 #, fuzzy -msgid "Export Locations" -msgstr "Standorte exportieren" +msgid "Subnetgroup Create Success" +msgstr "Gruppe erfolgreich erstellt" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 #, fuzzy -msgid "Import Locations" -msgstr "Standorte importieren" +msgid "Subnetgroup Management" +msgstr "Gruppenverwaltung" -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" -msgstr "Name des Standorts" +#, fuzzy +msgid "Subnetgroup Update Fail" +msgstr "Gruppe aktualisieren fehlgeschlagen" -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "Kerne / Inits von Standort" +#, fuzzy +msgid "Subnetgroup Update Success" +msgstr "Gruppe erfolgreich aktualisiert" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" -msgstr "Neuer Standort" +#, fuzzy +msgid "Subnetgroup added!" +msgstr "Gruppe hinzugefügt!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "Inits und Kernels von diesem Knoten verwenden" +#, fuzzy +msgid "Subnetgroup update failed!" +msgstr "Gruppenaktualisierung fehlgeschlagen" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 #, fuzzy -msgid "Create New Location" -msgstr "Neuen Standort erstellen" +msgid "Subnetgroup updated!" +msgstr "Gruppe aktualisiert" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." -msgstr "Standort bereits vorhanden, versuchen Sie es bitte erneut." +msgid "Subnets" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." -msgstr "Bitte geben Sie einen Namen für diesen Standort an" +msgid "Subree and Below" +msgstr "Nur Teilstruktur" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." +msgid "Subtree Only" msgstr "" -"Bitte wählen Sie die Speichergruppe aus, die sich auf diesen Standort bezieht" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 -#, fuzzy -msgid "Add location failed!" -msgstr "Standort hinzufügen fehlgeschlagen" +msgid "Successful" +msgstr "Erfolgreich" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 #, fuzzy -msgid "Location added!" -msgstr "Standort hinzugefügt" +msgid "Successfully added selected hosts to the group!" +msgstr "ausgewählte Hosts erfolgreich zur Gruppe hinzugefügt " -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 #, fuzzy -msgid "Location Create Success" -msgstr "Standort erfolgreich erstellt" +msgid "Successfully created" +msgstr "erfolgreich erstellt" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 #, fuzzy -msgid "Location Create Fail" -msgstr "Standort erstellen fehlgeschlagen" +msgid "Successfully deleted" +msgstr "erfolgreich gelöscht" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 -#, fuzzy -msgid "Location General" -msgstr "Standort allgemein" +msgid "System Manufacturer" +msgstr "Systemhersteller" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "Ein Standort mit diesem Namen ist bereits vorhanden." +msgid "System Overview" +msgstr "Systemübersicht" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -#, fuzzy -msgid "A group is required for a location" -msgstr "Eine Speichergruppe ist erforderlich!" +msgid "System Product" +msgstr "Systemprodukt" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -#, fuzzy -msgid "Location update failed!" -msgstr "Standortupdate fehlgeschlagen" +msgid "System Serial" +msgstr "Seriennummer" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 -#, fuzzy -msgid "Location updated!" -msgstr "Standort aktualisiert" +msgid "System Serial Number" +msgstr "Seriennummer des Systems" -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 #, fuzzy -msgid "Location Update Success" -msgstr "Standort erfolgreich aktualisiert" +msgid "System Tools" +msgstr "System Tools" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 -#, fuzzy -msgid "Location Update Fail" -msgstr "Standort Aktualisierung fehlgeschlagen" +msgid "System Type" +msgstr "Systemtyp" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" -msgstr "Remote-Adresse versucht, sich anzumelden" +#, fuzzy +msgid "System UUID" +msgstr "System UUID" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" -msgstr "Pushbullet Accounts" +msgid "System Uptime" +msgstr "Systemverfügbarkeit" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" -msgstr "Pushbullet-Account verknüpfen" +msgid "System Version" +msgstr "Systemversion" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" -msgstr "E-Mail" +msgid "TCP/IP" +msgstr "TCP/IP" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" -msgstr "Neuen Account verknüpfen" +msgid "TCP/IP Port Printer" +msgstr "TCP/IP-Port Drucker" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" -msgstr "Zugangs-Token" +msgid "TX" +msgstr "TX" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 #, fuzzy -msgid "Add Pushbullet Account" -msgstr "Pushbullet-Account hinzufügen" +msgid "Table not defined for this class" +msgstr "Keine Datenbank-Tabelle für diese Klasse definiert" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" -msgstr "Konto ist bereits verknüpft" +msgid "Task" +msgstr "Task" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "Bitte geben Sie ein Zugriffstoken ein" +msgid "Task Checkin Date" +msgstr "Task Eincheckdatum" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "Erstellen fehlgeschlagen" +msgid "Task Checkin Time" +msgstr "Task Eincheckzeit" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 #, fuzzy -msgid "Account successfully added!" -msgstr "Account erfolgreich hinzugefügt" +msgid "Task Complete Date" +msgstr "Task Fertigstellungsdatum" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 #, fuzzy -msgid "Link Pushbullet Account Success" -msgstr "Verknüpfen eines Pushbullet-Accounts erfolgreich" +msgid "Task Complete Time" +msgstr "Task Fertigstellungszeit" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 #, fuzzy -msgid "Link Pushbullet Account Fail" -msgstr "Verknüpfen eines Pushbullet-Accounts fehlgeschlagen" +msgid "Task ID" +msgstr "Task" + +msgid "Task Management" +msgstr "Task-Management" + +msgid "Task Name" +msgstr "Task-Name" + +msgid "Task Reboot" +msgstr "Task Neustart" + +msgid "Task State" +msgstr "Task Status" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 #, fuzzy -msgid "Site Association" -msgstr "Site Zugehörigkeit" +msgid "Task State Create Fail" +msgstr "Erstellen eines Task Status fehlgeschlagen" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 #, fuzzy -msgid "Site" -msgstr "Site" +msgid "Task State Create Success" +msgstr "Task Status erfolgreich erstellt" + +#, fuzzy +msgid "Task State General" +msgstr "Task Status allgemein" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 #, fuzzy -msgid "Associated Sites" -msgstr "zugehörige Sites" +msgid "Task State Management" +msgstr "Task-Management" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 #, fuzzy -msgid "Host Site" -msgstr "Hostliste" +msgid "Task State Update Fail" +msgstr "Aktualisierung des Task Status fehlgeschlagen" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 #, fuzzy -msgid "Sites" -msgstr "Sites" +msgid "Task State Update Success" +msgstr "Task Status erfolgreich aktualisiert" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 #, fuzzy -msgid "Is restricted" -msgstr "ist eingeschränkt" +msgid "Task State Updated!" +msgstr "Task Status aktualisiert!" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 #, fuzzy -msgid "No site" -msgstr "keine Site" +msgid "Task State added!" +msgstr "Task Status hinzugefügt" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " -msgstr "ist ein eingeschränkter Benutzer" +msgid "Task States" +msgstr "Task Status" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 -#, fuzzy -msgid "No Site" -msgstr "Keine Site" +msgid "Task Type" +msgstr "Task-Typ" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 #, fuzzy -msgid "Export Sites" -msgstr "Sites exportieren" +msgid "Task Type Create Fail" +msgstr "Task-Typ erstellen fehlgeschlagen" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 #, fuzzy -msgid "Import Sites" -msgstr "Sites importieren" +msgid "Task Type Create Success" +msgstr "Task-Typ erfolgreich erstellt" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 #, fuzzy -msgid "Hosts Associated" -msgstr "zugeordnete Hosts" +msgid "Task Type General" +msgstr "Task-Typ allgemein" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 #, fuzzy -msgid "Host Associated" -msgstr "zugeordneter Host" +msgid "Task Type Management" +msgstr "Task-Management" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 #, fuzzy -msgid "Site Name" -msgstr "Sitename" +msgid "Task Type Update Fail" +msgstr "Task-Typ aktualisieren fehlgeschlagen" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 #, fuzzy -msgid "Site Description" -msgstr "Site Beschreibung" +msgid "Task Type Update Success" +msgstr "Task-Typ erfolgreich aktualisiert" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 #, fuzzy -msgid "New Site" -msgstr "Neue Site" +msgid "Task Type Updated!" +msgstr "Task-Typ aktualisiert" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 #, fuzzy -msgid "Create Site" -msgstr "Erstellen" +msgid "Task Type added!" +msgstr "Task-Typ hinzugefügt" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 -#, fuzzy -msgid "A site already exists with this name!" -msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" +msgid "Task Type is not valid" +msgstr "Task-Typ ist nicht gültig" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 -#, fuzzy -msgid "Add site failed!" -msgstr "Hinzufügen eines Hosts fehlgeschlagen!" +msgid "Task Types" +msgstr "Task-Typen" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 -#, fuzzy -msgid "Site added!" -msgstr "Drucker hinzugefügt" +msgid "Task forced to start" +msgstr "Task Start erzwungen" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 -#, fuzzy -msgid "Site Create Success" -msgstr "Drucker hinzufügen erfolgreich." +msgid "Task not created as there are no associated tasks" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 #, fuzzy -msgid "Site Create Fail" -msgstr "Drucker erstellen fehlgeschlagen!" +msgid "Task sent to" +msgstr "Task gesendet an" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 #, fuzzy -msgid "Site General" -msgstr "Drucker allgemein" +msgid "Task started" +msgstr "Task gestartet" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 #, fuzzy -msgid "A site alread exists with this name!" -msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" +msgid "Task started for" +msgstr "Tasks gestartet um" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 -#, fuzzy -msgid "Site update failed!" -msgstr "Drucker-Update fehlgeschlagen!" +msgid "Task type is not valid" +msgstr "Task-Typ ist nicht gültig" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 #, fuzzy -msgid "Site Updated!" -msgstr "Drucker aktualisiert!" +msgid "Tasked Successfully" +msgstr "erfolgreich beauftragt" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -#, fuzzy -msgid "Site Update Success" -msgstr "Drucker aktualisiert!" +msgid "Tasked successfully, click active tasks to view in line." +msgstr "" +"Erfogreiche Ausführung, ein Klick auf aktive Tasks zeigt sie in einer Zeile" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 -#, fuzzy -msgid "Site Update Fail" -msgstr "Drucker-Update fehlgeschlagen!" +msgid "Tasking" +msgstr "Tasking" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 #, fuzzy -msgid "Host Membership" -msgstr "Mitgliedschaft" +msgid "Tasking Failed" +msgstr "Tasking fehlgeschlagen" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -#, fuzzy -msgid "Check here to see what hosts can be added" -msgstr "Überprüfen Sie hier, welche Drucker hinzugefügt werden können" +msgid "Tasks" +msgstr "Tasks" + +msgid "Team" +msgstr "Team" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 #, fuzzy -msgid "Add Hosts" -msgstr "Alle Hosts" +msgid "Terminal" +msgstr "Terminal" + +msgid "Terms and Conditions" +msgstr "Allgemeine Geschäftsbedingungen" + +msgid "Text" +msgstr "Text" -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 #, fuzzy -msgid "Add selected hosts" -msgstr "Ausgewählte Drucker hinzufügen" +msgid "The 'Is Master Node' setting defines which" +msgstr "Die Einstellung 'ist Masterknoten' definiert," -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 #, fuzzy -msgid "Remove Hosts" -msgstr "Entfernen " +msgid "The assigned image is protected" +msgstr "Das zugewiesene Image ist geschützt" -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 #, fuzzy -msgid "Remove selected hosts" -msgstr "Ausgewählte entfernen " +msgid "The below items are only used for the old client." +msgstr "Die unten aufgeführten Elemente werden nur für alte Clients genutzt" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" -msgstr "Kanalaufruf ist ungültig" +msgid "The clients will checkin with the server from time" +msgstr "Die Clients prüfen von Zeit zu Zeit," -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" -msgstr "Benutzeraufruf ist ungültig" +msgid "The following errors occured" +msgstr "Die folgenden Fehler sind aufgetreten" -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" -msgstr "Ungültige Methode aufgerufen" +msgid "The following errors occurred" +msgstr "Die folgenden Fehler sind aufgetreten" + +msgid "The image storage group assigned is not valid" +msgstr "Die zugewiesene Image Speichergruppe ist nicht gültig." -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 #, fuzzy -msgid "Completed imaging" -msgstr "Abgeschlossen" +msgid "The installers for the fog client" +msgstr "Die Installer für den FOG Client" -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" -msgstr "Slack Accounts" +msgid "The key will be assigned to registered hosts when a" +msgstr "Der Schlüssel wird registrierten Hosts zugewiesen, wenn" -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" -msgstr "Account von der FOG GUI entfernt" +msgid "The node trying to be used is currently" +msgstr "Der zu verwendende Knoten ist derzeit" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" -msgstr "Slack Account verknüpfen" +msgid "The old client is what was distributed with" +msgstr "Der veraltete Client sind Clients, die mit" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" -msgstr "Team" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgstr "veraltete Clients wurden verteilt mit FOG 1.2.0 oder früher" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "Erstellt von" +msgid "The old client iswhat was distributed with" +msgstr "Alte Clients sind Clients, die mit FOG 1.2.0 oder" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" -msgstr "Benutzer-/ Kanalname" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "Der alte Client wurde verteilt mit FOG 1.2.0 oder früher." -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" -msgstr "Benutzer/Kanal zum Veröffentlichen auf" +msgid "The primary mac associated is" +msgstr "Die zugeordnete Primär-MAC lautet" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -#, fuzzy -msgid "Add Slack Account" -msgstr "Slack Account hinzufügen" +msgid "The settings tend to be global which affects all hosts." +msgstr "Die Einstellungen wirken sich in der Regel auf alle Hosts aus." -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" -msgstr "Es muss ein @ oder # verwendet werden," +msgid "The storage groups associated storage node is not valid" +msgstr "" +"Der einer/mehrere Speichergruppen zugeordnete Speicherknoten ist ungültig" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 #, fuzzy -msgid "to signify if this is a user or channel to send to" -msgstr "" -"um anzuzeigen, ob dies ein Benutzer oder Kanal ist, an den gesendet werden " -"soll" +msgid "The uploaded file exceeds the max_file_size" +msgstr "Die hochgeladene Datei überschreitet die Upload_max_filesize" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" -msgstr "Ungültiger Token übergeben" +#, fuzzy +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "Die hochgeladene Datei überschreitet die Upload_max_filesize" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" -msgstr "Ungültiger Benutzer und/oder Kanal übergeben" +msgid "The uploaded file was only partially uploaded" +msgstr "Die hochgeladene Datei wurde nur teilweise hochgeladen" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" -msgstr "Konto verknüpft mit FOG-GUI unter" +msgid "There are" +msgstr "Es gibt" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 #, fuzzy -msgid "Link Slack Account Success" -msgstr "Slack Account erfolgreich verknüpft" +msgid "There are currently" +msgstr "Es gibt aktuell " + +msgid "There are many reasons why this could be the case" +msgstr "Es gibt mehrere Möglichkeiten, wieso das so ist." -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 #, fuzzy -msgid "Link Slack Account Fail" -msgstr "Verknüpfen des Slack Accounts fehlgeschlagen" +msgid "There are no groups on this server" +msgstr "Es gibt keine Gruppen auf diesem Server." -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 #, fuzzy -msgid "Subnet Groups" -msgstr "Mobile Gruppe" +msgid "There are no hosts to task in this group" +msgstr "Es gibt keine Hosts in dieser Gruppe" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 #, fuzzy -msgid "Export Subnetgroups" -msgstr "Gruppen exportieren" +msgid "There are no images on this server" +msgstr "Es gibt keine Images auf diesem Server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 #, fuzzy -msgid "Import Subnetgroups" -msgstr "Gruppen importieren" +msgid "There are no locations on this server" +msgstr "Es gibt keine Standorte auf diesem Server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" -msgstr "" +msgid "There are no other members to sync to" +msgstr "Es gibt keine anderen Mitglieder zu synchronisieren" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -#, fuzzy -msgid "New Subnetgroup" -msgstr "Neue Speichergruppe" +msgid "There are no snapins associated with this host" +msgstr "Mit diesem Host sind keine Snapins verknüpft" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 #, fuzzy -msgid "Create New SubnetGroup?" -msgstr "Neue Gruppe erstellen" +msgid "There are no snapins on this server" +msgstr "Es gibt keine Snapins auf diesem Server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 #, fuzzy -msgid "A subnetgroup already exists with this name!" -msgstr "Eine Gruppe mit diesem Namen ist bereits vorhanden!" +msgid "There are open slots" +msgstr "Es gibt offene Slots," -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 -#, fuzzy -msgid "A group is required!" -msgstr "Ein Gruppenname ist erforderlich!" +msgid "There is a host in a tasking" +msgstr "Es gibt einen Host in einer Aufgabe" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." -msgstr "" +msgid "There is nothing to replicate" +msgstr "Es gibt nichts zu replizieren" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 #, fuzzy -msgid "Please enter a valid CIDR subnets comma separated list" -msgstr "Bitte geben Sie eine gültige MAC-Adresse an" +msgid "There were errors during import!" +msgstr "Es gab Fehler während des Imports!" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -#, fuzzy -msgid "Add Subnetgroup failed!" -msgstr "Gruppe hinzufügen fehlgeschlagen!" +msgid "There you can download utilities such as FOG Prep" +msgstr "Dort können Sie Tools wie FOG Prep, " -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -#, fuzzy -msgid "Subnetgroup added!" -msgstr "Gruppe hinzugefügt!" +msgid "This MAC Belongs to another host" +msgstr "Diese MAC gehört zu einem anderen Host" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 -#, fuzzy -msgid "Subnetgroup Create Success" -msgstr "Gruppe erfolgreich erstellt" +msgid "This area will allow the host checking in to tell" +msgstr "In diesem Bereich kann der Host einchecken, um zu" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -#, fuzzy -msgid "Subnetgroup Create Fail" -msgstr "Gruppe erstellen fehlgeschlagen" +msgid "This file will only work on Windows" +msgstr "Diese Datei funktioniert nur auf Windows" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 #, fuzzy -msgid "SubnetGroup General" -msgstr "Speichergruppe allgemein" +msgid "This host already exists" +msgstr "Dieser Host ist bereits vorhanden." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -#, fuzzy -msgid "A subnet group already exists with this name!" -msgstr "Eine Gruppe mit diesem Namen ist bereits vorhanden!" +msgid "This installation process may take a few minutes" +msgstr "Der Installationsprozess kann ein paar Minuten dauern, " -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -#, fuzzy -msgid "A group must be selected." -msgstr "Ein Name muss eingegeben werden" +msgid "This is a cron style task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -#, fuzzy -msgid "Please enter a valid CIDR subnet." -msgstr "Bitte geben Sie einen gültigen Hostnamen ein" +msgid "This is a cron style task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "This is a single run task that should not run now." msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -#, fuzzy -msgid "Subnetgroup update failed!" -msgstr "Gruppenaktualisierung fehlgeschlagen" +msgid "This is a single run task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 -#, fuzzy -msgid "Subnetgroup updated!" -msgstr "Gruppe aktualisiert" +msgid "This is especially useful if you have multiple" +msgstr "Dies ist besonders nützlich, wenn Sie mehrere Standorte " + +msgid "This is ipxe script commands to operate with" +msgstr "Dies sind ipxe-Skriptbefehle, um mit " -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 #, fuzzy -msgid "Subnetgroup Update Success" -msgstr "Gruppe erfolgreich aktualisiert" +msgid "This is not the master for this group" +msgstr "Dies ist nicht die primäre Gruppe" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 #, fuzzy -msgid "Subnetgroup Update Fail" -msgstr "Gruppe aktualisieren fehlgeschlagen" +msgid "This is not the primary group" +msgstr "Dies ist nicht die primäre Gruppe" -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." -msgstr "" -"Ermöglicht das Bearbeiten / Erstellen von Taskstatus, die FOG zurzeit hat." +msgid "This is only here to maintain old client operations" +msgstr "Dies ist nur verfügbar, um veraltete Clients zu pflegen " -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "Task Status" +msgid "This is set in seconds and causes the default option" +msgstr "in Sekunden, bootet die voreingestellte Option" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 #, fuzzy -msgid "Export Task States" -msgstr "Taskstatus exportieren" +msgid "This is the recommended installer to use now" +msgstr "Dies ist der empfohlene Installer. " -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task States" -msgstr "Taskstatus exportieren" +msgid "This is useful in the case of slow links between" +msgstr "Das ist nützlich bei langsamen Verbindungen" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "Task Status" +msgid "This item allows you to edit all of the iPXE Menu items as you" +msgstr "Mit diesem Element können Sie alle iPXE-Menülemente " -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "Symbol" +msgid "This module did not work past Windows XP" +msgstr "Dieses Modul funktioniert nicht auf Windows Vista oder" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "Neuer Task-Status" +msgid "This module did not work past Windows XP due" +msgstr "Dieses Modul funktioniert mit Windows Vista oder neuer" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" -msgstr "zusätzliche Icon-Elemente" +msgid "This module did not work past Windows XP due to" +msgstr "Dieses Modul funktioniert mit Windows Vista oder" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 -#, fuzzy -msgid "Create Task state" -msgstr "Neuen Task-Status erstellen" +msgid "This module did not work past Windows XP due to UAC." +msgstr "Dieses Modul funktioniert wegen UAC nicht mehr." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 -#, fuzzy -msgid "A task state already exists with this name!" -msgstr "Ein Taskstatus mit diesem Namen ist bereits vorhanden!" +msgid "This module has been replaced in the new client" +msgstr "Dieses Modul wurde im neuen Client ersetzt" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -#, fuzzy -msgid "Add task state failed!" -msgstr "Hinzufügen eines Taskstatus fehlgeschlagen!" +msgid "This module has since been replaced with Power Management." +msgstr "Dieses Modul wurde durch Power Management ersetzt." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 -#, fuzzy -msgid "Task State added!" -msgstr "Task Status hinzugefügt" +msgid "This module is only used" +msgstr "Dieses Modul wird nur verwendet" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 #, fuzzy -msgid "Task State Create Success" -msgstr "Task Status erfolgreich erstellt" +msgid "This module is only used on the old client" +msgstr "Diese Einstellung wird nur auf alten Clients verwendet." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 #, fuzzy -msgid "Task State Create Fail" -msgstr "Erstellen eines Task Status fehlgeschlagen" +msgid "This module is only used on the old client." +msgstr "Dieses Modul wird nur auf alten Clients genutzt." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 -#, fuzzy -msgid "Task State General" -msgstr "Task Status allgemein" +msgid "This node does not appear to be online" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 #, fuzzy -msgid "Update task state failed!" -msgstr "Task-Status aktualisieren fehlgeschlagen!" +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "Diese Seite erlaubt Ihnen den Upload einer CSV-Datei auf den FOG," -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 #, fuzzy -msgid "Task State Updated!" -msgstr "Task Status aktualisiert!" +msgid "This plugin is not installed" +msgstr "Dieses Plugin ist nicht installiert" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 #, fuzzy -msgid "Task State Update Success" -msgstr "Task Status erfolgreich aktualisiert" +msgid "This section allows you to customize or alter" +msgstr "Dieser Bereich erlaubt die Anpassung oder Änderung" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 #, fuzzy -msgid "Task State Update Fail" -msgstr "Aktualisierung des Task Status fehlgeschlagen" - -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" msgstr "" -"Erlaubt das Bearbeiten/Erstellen von Task-Typen, die der FOG derzeit hat" +"In diesem Abschnitt können Sie bekannte MAC-Adressenhersteller in die FOG-" +"Datenbank zur leichteren Identifizierung importieren." -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" -msgstr "Task-Typen" +msgid "This section allows you to update" +msgstr "In diesem Abschnitt können Sie den Linux-Kernel" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 #, fuzzy -msgid "Export Task Types" -msgstr "Task-Typen exportieren" +msgid "This section allows you to update the modules and" +msgstr "In diesem Abschnitt können Sie die Module und " -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 #, fuzzy -msgid "Import Task Types" -msgstr "Task-Typen importieren" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" -msgstr "Zugang" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" -msgstr "Kernel Args" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" -msgstr "Neuer Task-Typ" +msgid "This section allows you to uploade user" +msgstr "In diesem Abschnitt können Sie benutzerdefinierte " -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" -msgstr "Kernel-Argumente" +msgid "This servers ip(s)" +msgstr "IP(s) dieses Servers" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 #, fuzzy -msgid "Init" -msgstr "In " +msgid "This setting" +msgstr "Diese Einstellung" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" -msgstr "Ist fortgeschritten" +#, fuzzy +msgid "This setting defines sending the" +msgstr "Diese Einstellung definiert das Senden" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" -msgstr "Zugriff von" +msgid "This setting limits the bandwidth for replication between nodes" +msgstr "" +"Diese Einstellung begrenzt die Bandbreite für die Replikation zwischen den " +"Knoten," -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 #, fuzzy -msgid "Create Task type" -msgstr "Neuen Task-Typ erstellen" +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." +msgstr "" +"Diese Einstellung löscht oder fügt nur Drucker hinzu, die von FOGverwaltet " +"werden. Wenn der Drucker in der Druckerverwaltung existiert, aber keinem " +"Host zugewiesen ist, wird sie den Drucker entfernen, wenn er auf dem nicht " +"zugeordneten Host vorhanden ist. Außerdem werden dem Host, der zugewiesen " +"ist, Drucker hinzugefügt." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -#, fuzzy -msgid "A task type already exists with this name!" -msgstr "Ein Task-Typ mit diesem Namen ist bereits vorhanden!" +msgid "This setting turns off all FOG Printer Management" +msgstr "Diese Einstellung schaltet FOG Druckerverwaltung aus" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -#, fuzzy -msgid "Add task type failed!" -msgstr "Hinzufügen eines Task-Typs fehlgeschlagen!" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." +msgstr "" +"Diese Einstellung erlaubt, nur von FOG zugewiesene Drucker an den Host " +"hinzuzufügen. Jeder Drucker, der nicht zugeordnet ist, wird entfernt, " +"einschließlich nicht FOG-verwaltete Drucker." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 -#, fuzzy -msgid "Task Type added!" -msgstr "Task-Typ hinzugefügt" +msgid "This will allow you to configure how services" +msgstr "Hiermit können Sie konfigurieren, " -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -#, fuzzy -msgid "Task Type Create Success" -msgstr "Task-Typ erfolgreich erstellt" +msgid "Those images should be activated with the associated" +msgstr "Diese Images sollten mit dem zugehörigen Schlüssel" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -#, fuzzy -msgid "Task Type Create Fail" -msgstr "Task-Typ erstellen fehlgeschlagen" +msgid "Time" +msgstr "Zeit" + +msgid "Time Already Exists" +msgstr "Zeit bereits vorhanden" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -#, fuzzy -msgid "Task Type General" -msgstr "Task-Typ allgemein" +msgid "Timeout" +msgstr "Timeout" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 #, fuzzy -msgid "Task Type Updated!" -msgstr "Task-Typ aktualisiert" +msgid "Title must be a string" +msgstr "Titelname muss eine Zeichenfolge sein." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 -#, fuzzy -msgid "Task Type Update Success" -msgstr "Task-Typ erfolgreich aktualisiert" +msgid "To be released only by" +msgstr "Freigabe nur durch" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 -#, fuzzy -msgid "Task Type Update Fail" -msgstr "Task-Typ aktualisieren fehlgeschlagen" +msgid "To get started please select an item from the menu." +msgstr "Um zu beginnen, wählen Sie bitte ein Element aus dem Menü." -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" -msgstr "Windows Keys ist ein Plugin, das Produktschlüssel für" +msgid "To perform an imaging task an image must be assigned" +msgstr "Um ein Task durchzuführen, muss ein Image zugewiesen werden" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" -msgstr "MS Windows den Images zuordnet." +msgid "To view a report, select an item from the menu" +msgstr "Um einen Bericht anzusehen, wählen Sie einen aus dem Menü aus." -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" -msgstr "Diese Images sollten mit dem zugehörigen Schlüssel" +msgid "Toggle Navigation" +msgstr "Navigation umschalten" -#: lib/plugins/windowskey/config/plugin.config.php:31 #, fuzzy -msgid "key" -msgstr "aktiviert werden." +msgid "Too many MACs" +msgstr "zu viele MACs" -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" -msgstr "Der Schlüssel wird registrierten Hosts zugewiesen, wenn" +msgid "Total Disk Space" +msgstr "Gesamtspeicherplatz" -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" -msgstr "es eine Verteilungs-Task gibt." +msgid "Total Memory" +msgstr "Gesamtspeicher" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "Wenn das Plugin entfernt wird, verbleibt der zugewiesene" +msgid "Total Rows" +msgstr "Zeilen gesamt" -#: lib/plugins/windowskey/config/plugin.config.php:36 -#, fuzzy -msgid "with the host" -msgstr "Schlüssel beim Host." +msgid "Transmit" +msgstr "Übertragen" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 #, fuzzy -msgid "Windows Key for Image" -msgstr "Windows-Schlüssel für Image" +msgid "Trying Snapin hash for" +msgstr "Versuche Snapin-Hash für" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 #, fuzzy -msgid "Windows Keys" -msgstr "Windows Keys" +msgid "Trying image size for" +msgstr "Versuche Imagegröße für" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 #, fuzzy -msgid "Export Windows Keys" -msgstr "Windows-Schlüssel exportieren" +msgid "Txt must be a string" +msgstr "Txt muss eine Zeichenfolge sein." -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -#, fuzzy -msgid "Import Windows Keys" -msgstr "Windows-Schlüssel importieren" +msgid "Type" +msgstr "Typ" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 -#, fuzzy -msgid "Key Name" -msgstr "Schlüsselname" +msgid "UAC introduced in Vista and up" +msgstr "neuer wegen UAC nicht mehr." -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 #, fuzzy -msgid "New Windows Key" -msgstr "Neuer Windows-Schlüssel" +msgid "Unable to Authenticate" +msgstr "Authentifizieren nicht möglich" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 -#, fuzzy -msgid "Windows Key Name" -msgstr "Windows-Schlüsselname" +msgid "Unable to determine plugin details." +msgstr "Die Plugin-Details können nicht ermittelt werden" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 #, fuzzy -msgid "Windows Key Description" -msgstr "Windows-Schlüssel beschreibung" +msgid "Unable to find basic information!" +msgstr "Grundlegende Informationen nicht gefunden" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 #, fuzzy -msgid "Windows Key" -msgstr "Windows Schlüssel" +msgid "Unable to find master Storage Node" +msgstr "Fehler beim Finden des Master Storage Nodes" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 #, fuzzy -msgid "Create New Key" -msgstr "Neuen Schlüssel erstellen" +msgid "Unable to get server infromation!" +msgstr "Es konnten keine Serverinformationen abgerufen werden!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 -#, fuzzy -msgid "A Windows Key already exists with this name!" -msgstr "Ein Windows-Schlüssel mit diesem Namen ist bereits vorhanden!" +msgid "Unable to open file for reading" +msgstr "Datei kann zum Lesen nicht geöffnet werden" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 -#, fuzzy -msgid "Add Windows Key failed!" -msgstr "Windows-Schlüssel hinzufügen fehlgeschlagen" +msgid "Unauthorized" +msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 #, fuzzy -msgid "Windows Key added!" -msgstr "Windows-Schlüssel hinzugefügt" +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 #, fuzzy -msgid "Windows Key Create Success" -msgstr "Windows-Schlüssel erfolgreich erstellt" +msgid "Unicaset" +msgstr "Unicast" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 #, fuzzy -msgid "Windows Key Create Fail" -msgstr "Windows-Schlüssel erstellen fehlgeschlagen" +msgid "Unit of time must be a string" +msgstr "Zeiteinheit muss eine Zeichenfolge sein." -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 -#, fuzzy -msgid "Windows Key General" -msgstr "Windows-Schlüssel allgemein" +msgid "Unknown" +msgstr "Unbekannt" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 #, fuzzy -msgid "Update Windows Key failed!" -msgstr "Windows-Schlüssel aktualisieren fehlgeschlagen" +msgid "Unknown upload error occurred" +msgstr "Ein unbekannter Upload-Fehler ist aufgetreten" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 -#, fuzzy -msgid "Windows Key updated!" -msgstr "Windows-Schlüssel aktualisiert" +msgid "Update" +msgstr "Update" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 #, fuzzy -msgid "Windows Key Update Success" -msgstr "Windows-Schlüssel erfolgreich aktualisiert" +msgid "Update API?" +msgstr "API aktualisieren?" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 #, fuzzy -msgid "Windows Key Update Fail" -msgstr "Windows-Schlüssel aktualisieren fehlgeschlagen" +msgid "Update Default Printer" +msgstr "Standarddrucker aktualisieren" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 #, fuzzy -msgid "Image Membership" -msgstr "Image-Mitgliedschaft" +msgid "Update General?" +msgstr "Allgemein aktualisieren?" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 #, fuzzy -msgid "Check here to see what images can be added" -msgstr "Prüfen Sie hier, welche Images hinzugefügt werden können" +msgid "Update LDAP server failed!" +msgstr "LDAP-Server aktualisieren fehlgeschlagen!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 -#, fuzzy -msgid "Add selected images" -msgstr "ausgewählte Images hinzufügen" +msgid "Update MACs" +msgstr "MACs aktualisieren" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 #, fuzzy -msgid "Remove Images" -msgstr "Images entfernen" +msgid "Update PM Values" +msgstr "Werte des Power Managements aktualisieren" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 #, fuzzy -msgid "Remove selected images" -msgstr "ausgewählte Images entfernen" +msgid "Update Password?" +msgstr "Benutzerpasswort aktualisieren?" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 #, fuzzy -msgid "WOL Broadcasts" -msgstr "WOLBroadcasts" +msgid "Update Windows Key failed!" +msgstr "Windows-Schlüssel aktualisieren fehlgeschlagen" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 #, fuzzy -msgid "Export WOLBroadcasts" -msgstr "WOLBroadcasts exportieren" +msgid "Update auto-logout time" +msgstr "Auto-Logout-Zeit aktualisieren" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 #, fuzzy -msgid "Import WOLBroadcasts" -msgstr "WOLBroadcasts importieren" +msgid "Update default printer" +msgstr "Standarddrucker aktualisieren" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" -msgstr "Broadcastname" +#, fuzzy +msgid "Update display resolution" +msgstr "Bilschirmauflösung aktualisieren" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" -msgstr "Broadcast-IP" +#, fuzzy +msgid "Update module configurations" +msgstr "Modulkonfigurationen aktualisieren" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" -msgstr "Neue Broadcast-Adresse" +msgid "Update not required!" +msgstr "Update wird nicht benötigt!" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 #, fuzzy -msgid "Create WOL Broadcast?" -msgstr "WOLBroadcast erstellen?" +msgid "Update primary group" +msgstr "Primäre Gruppe aktualisieren" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 #, fuzzy -msgid "A broadcast already exists with this name!" -msgstr "Ein Broadcast mit diesem Namen ist bereits vorhanden!" +msgid "Update printer configuration" +msgstr "Druckerkonfiguration aktualisieren" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 #, fuzzy -msgid "A broadcast address is required" -msgstr "Eine Broadcast-Adresse ist erforderlich" - -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" -msgstr "Bitte geben Sie eine gültige IP-Adresse ein" +msgid "Update task state failed!" +msgstr "Task-Status aktualisieren fehlgeschlagen!" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 #, fuzzy -msgid "Add broadcast failed!" -msgstr "Hinzufügen eines Broadcasts fehlgeschlagen!" +msgid "Update/Remove Storage Groups" +msgstr "Speichergruppen aktualisieren/entfernen" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 #, fuzzy -msgid "Broadcast added!" -msgstr "Broadcast hinzugefügt!" +msgid "Update/Remove printers" +msgstr "Drucker Aktualisieren/Entfernen" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -#, fuzzy -msgid "Broadcast Create Success" -msgstr "Broadcast erfolgreich erstellt" +msgid "Upload Reports" +msgstr "Berichte hochladen" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 #, fuzzy -msgid "Broadcast Create Fail" -msgstr "Erstellen eines Broadcasts fehlgeschlagen" +msgid "Upload file" +msgstr "Datei hochladen" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -#, fuzzy -msgid "WOL Broadcast General" -msgstr "WOLBroadcast allgemein" +msgid "Upload file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -#, fuzzy -msgid "A broadcast already exists with this name" -msgstr "Ein Broadcast mit diesem Namen ist bereits vorhanden!" +msgid "Uptime" +msgstr "Betriebszeit" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 -#, fuzzy -msgid "Broadcast update failed!" -msgstr "Aktualisieren des Broadcasts fehlgeschlagen!" +msgid "Use Group Matching (recommended)" +msgstr "Gruppenabgleich verwenden (empfohlen)" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 -#, fuzzy -msgid "Broadcast updated!" -msgstr "Broadcast aktualisiert" +msgid "Use extreme caution with this setting" +msgstr "Seien Sie seeehr vorsichtig mit diesen Einstellungen" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 -#, fuzzy -msgid "Broadcast Update Success" -msgstr "Broadcast erfolgreich aktualisiert" +msgid "Use inits and kernels from this node" +msgstr "Inits und Kernels von diesem Knoten verwenden" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 -#, fuzzy -msgid "Broadcast Update Fail" -msgstr "Aktualisieren des Broadcasts fehlgeschlagen!" +msgid "Use the following link to go to the client page." +msgstr "Der folgende Link führt zur Clientseite" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." -msgstr "" +msgid "Use the forums to post issues so others" +msgstr "In Forum können Sie Ihr Problem schildern, so dass" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 -#, fuzzy -msgid "Host Ext" -msgstr "Hostliste" +msgid "Use the links below if you need assistance" +msgstr "Folgen Sie den Links unten, falls Sie Unterstützung brauchen." + +msgid "Use this for network installs" +msgstr "Nutzen Sie dies für Netzwerkinstallationen" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " +msgid "Used" msgstr "" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 -#, fuzzy -msgid "External Links" -msgstr "zusätzliche Angaben" +msgid "Used Disk Space" +msgstr "Verwendeter Speicherplatz" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 -#, fuzzy -msgid "Export Host Exts" -msgstr "Hosts exportieren" +msgid "Used Memory" +msgstr "Verwendeten Speicher" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 -#, fuzzy -msgid "Import Host Exts" -msgstr "Hosts importieren" +msgid "User" +msgstr "Benutzer" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 #, fuzzy -msgid "Host Ext Name" -msgstr "Host-Name" +msgid "User API Enabled" +msgstr "Benutzer-API aktiviert" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 #, fuzzy -msgid "Host Ext URL" -msgstr "Host AD OU" +msgid "User API Settings" +msgstr "Benutzer-API-Einstellungen" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 #, fuzzy -msgid "Host Ext Variable" -msgstr "Host-Update fehlgeschlagen" +msgid "User API Token" +msgstr "API-Zugangstoken" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 #, fuzzy -msgid "Create New Host Ext" -msgstr "Neue %s erstellen" +msgid "User Access Control" +msgstr "Benutzerzugriffskontrolle" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 -#, fuzzy -msgid "A hostext already exists with this name!" -msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" +msgid "User Agent Changed" +msgstr "User-Agent geändert" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -#, fuzzy -msgid "Add ou failed!" -msgstr "Gruppe hinzufügen fehlgeschlagen!" +msgid "User Already Exists" +msgstr "Benutzer ist bereits vorhanden" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 #, fuzzy -msgid "Hostext added!" -msgstr "Host hinzugefügt" +msgid "User Change Password" +msgstr "Benutzerpasswort ändern" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 -#, fuzzy -msgid "Hostext Create Success" -msgstr "Host erfolgreich erstellt" +msgid "User Cleanup" +msgstr "Benutzer-Bereinigung" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 #, fuzzy -msgid "Hostext Create Fail" -msgstr "Host erstellen fehlgeschlagen" +msgid "User Create Fail" +msgstr "Benutzer erstellen fehlgeschlagen" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 #, fuzzy -msgid "Hostext update failed!" -msgstr "Drucker-Update fehlgeschlagen!" +msgid "User Create Success" +msgstr "Benutzer erfolgreich erstellt" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 #, fuzzy -msgid "Hostext updated!" -msgstr "Host aktualisiert!" +msgid "User DN" +msgstr "Benutzer DN" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 #, fuzzy -msgid "Hostext Update Success" -msgstr "Host Aktualisierung erfolgreich!" +msgid "User Filter" +msgstr "Filter" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 #, fuzzy -msgid "Hostext Update Fail" -msgstr "Host-Update fehlgeschlagen" +msgid "User General" +msgstr "Benutzer allgemein" -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" -msgstr "" +msgid "User Management" +msgstr "Benutzerverwaltung" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" -msgstr "Plugin-Details können nicht ermittelt werden" +msgid "User Name" +msgstr "Benutzername" -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" -msgstr "Kein Knoten mit beliebiger Adresse dieses Systems verbunden" +#, fuzzy +msgid "User Name Attribute" +msgstr "Benutzername Attribut" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" -msgstr "Ordnet die Dateien auf Knoten zu" +msgid "User Password" +msgstr "Benutzerpasswort" -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" -msgstr "und speichert ihre jeweiligen Prüfsummen" +msgid "User Password (confirm)" +msgstr "Benutzerpasswort (bestätigen)" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" -msgstr "Mod Daten" +msgid "User Tracker" +msgstr "Benutzer-Tracker" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" -msgstr "und der Speicherort der Datei auf diesem" +#, fuzzy +msgid "User Update Fail" +msgstr "Benutzer-Update fehlgeschlagen" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" -msgstr "bestimmten Knoten" +#, fuzzy +msgid "User Update Success" +msgstr "Benutzeraktualisierung erfolgreich!" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 #, fuzzy -msgid "Integrity Settings" -msgstr "Integritätseinstellungen" +msgid "User added!" +msgstr "Benutzer hinzugefügt" + +msgid "User call is invalid" +msgstr "Benutzeraufruf ist ungültig" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 #, fuzzy -msgid "Export Checksums" -msgstr "Prüfsummen exportieren" +msgid "User name" +msgstr "Benutzername" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" -msgstr "Prüfsummen" +#, fuzzy +msgid "User update failed!" +msgstr "Benutzer-Update fehlgeschlagen" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" -msgstr "Prüfsumme" +#, fuzzy +msgid "User updated!" +msgstr "Benutzer aktualisiert" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 #, fuzzy -msgid "Last Updated Time" -msgstr "Letzte Updatezeit" +msgid "User was not authorized by the LDAP server" +msgstr "Der Benutzer war nicht vom LDAP-Server autorisiert" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" -msgstr "widersprüchliche(r) Pfad/Datei" +msgid "User/Channel Name" +msgstr "Benutzer-/ Kanalname" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" -msgstr "" +msgid "User/Channel to post to" +msgstr "Benutzer/Kanal zum Veröffentlichen auf" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" -msgstr "" +msgid "Username" +msgstr "Benutzername" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" -msgstr "" +msgid "Username cannot contain contiguous special characters" +msgstr "Benutzername darf keine zusammenhängenden Sonderzeichen enthalten" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" -msgstr "" +msgid "Username does not meet requirements" +msgstr "Benutzername erfüllt nicht die Anforderungen" -#: lib/plugins/hoststatus/config/plugin.config.php:19 -#, fuzzy -msgid "

Version 1.5.5" -msgstr "Version" +msgid "Username must be at least 3 characters" +msgstr "Benutzername muss mind. 3 Zeichen haben" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 -#, fuzzy -msgid "Host Status" -msgstr "Status" +msgid "Username must be less than 41 characters" +msgstr "Benutzername darf max. 40 Zeichen haben" -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" -msgstr "Erstellt von FOG Reg am" +msgid "Username must start with a word character" +msgstr "Benutzername muss mit einem Buchstaben beginnen" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" -msgstr "Bereits registriert als" +msgid "Users" +msgstr "Benutzer" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" -msgstr "Host erstellen fehlgeschlagen" +msgid "Using the group match function" +msgstr "Verwenden der Gruppenübereinstimmungsfunktion," -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" -msgstr "Erledigt, ohne Image" +msgid "VNC" +msgstr "VNC" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" -msgstr "Erledigt, kein Image zugeordnet!" +#, fuzzy +msgid "Valid Host Colors" +msgstr "Gültige Host-Farben" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" -msgstr "Fertig, Tasking konnte nicht erstellt werden" +msgid "Value" +msgstr "Wert" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "Erledigt, mit Image!" +msgid "Variable contains" +msgstr "Die Variable enthält" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "Fertig" +msgid "Version" +msgstr "Version" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "Keinen aktiven Task gefunden für Host" +msgid "Version 1.2.0 and earlier" +msgstr "oder früher gekommen sind." -#: lib/reg-task/taskingelement.class.php:205 #, fuzzy -msgid "Could not find a Storage Node in this group" -msgstr "In dieser Gruppe wurde kein Speicherknoten gefunden" +msgid "View History For" +msgstr "Verlauf anzeigen für" + +msgid "View advanced tasks for this" +msgstr "Anzeigen der erweiterte Aufgaben für diese" + +msgid "Virus History" +msgstr "Virus-Verlauf" + +msgid "Virus Name" +msgstr "Name des Virus" -#: lib/reg-task/taskingelement.class.php:206 #, fuzzy -msgid "is there one enabled" -msgstr "gibt es eine aktivierte" +msgid "Virus Report" +msgstr "Virusbericht" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" -msgstr "ist offen" +#, fuzzy +msgid "Virus items removed!" +msgstr "Virus gelöscht" -#: lib/reg-task/taskingelement.class.php:233 #, fuzzy -msgid "but has recently failed for this host" -msgstr "ist offen, aber ist vor kurzem für diesen Host fehlgeschlagen" +msgid "WOL Broadcast General" +msgstr "WOLBroadcast allgemein" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" -msgstr "Fehler beim Aktualisieren des Tasks" +#, fuzzy +msgid "WOL Broadcast Management" +msgstr "Standortverwaltung" -#: lib/reg-task/taskqueue.class.php:57 #, fuzzy -msgid "Invalid Multicast Session" -msgstr "ungültige Multicast-Sitzung" +msgid "WOL Broadcasts" +msgstr "WOLBroadcasts" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" -msgstr "Fehler beim Aktualisieren der Sitzung" +#, fuzzy +msgid "Wait time has changed to" +msgstr "Wartezeit wurde geändert auf" -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" -msgstr "Keine offenen Slots" +msgid "Waiting for mysql to be available" +msgstr "Warten auf die Verfügbarkeit von MySQL" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" -msgstr "Es gibt" +#, fuzzy +msgid "Wake On Lan" +msgstr "Wake On Lan" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" -msgstr "vor mir" +msgid "Wake on lan?" +msgstr "Wake-on-LAN?" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" -msgstr "Der zu verwendende Knoten ist derzeit" +msgid "We are group ID" +msgstr "Wir sind Gruppen-ID " -#: lib/reg-task/taskqueue.class.php:133 #, fuzzy -msgid "unavailable" -msgstr "nicht verfügbar" - -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" -msgstr "Beim Neustart versuchen wir, automatisch" +msgid "We are group name" +msgstr "Wir sind Gruppenname " -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" -msgstr "einen neuen Knoten zu finden" +msgid "We are node ID" +msgstr "Wir sind Knoten-ID " -#: lib/reg-task/taskqueue.class.php:156 #, fuzzy -msgid "There are open slots" -msgstr "Es gibt offene Slots," +msgid "We are node name" +msgstr "Wir sind Knotenname " -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" -msgstr "aber " +#, fuzzy +msgid "We cannot connect to LDAP server" +msgstr "Es kann keine Verbindung zum LDAP-Server hergestellt werden." -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" -msgstr "vor mir auf diesem Knoten" +msgid "Web Server" +msgstr "Web-Server" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" -msgstr "Aktualisieren/Erstellen des Image-Logs fehlgeschlagen" +msgid "Web root" +msgstr "Webroot" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" -msgstr "Fehler beim Aktualisieren des Tasks" +msgid "Weekly" +msgstr "Wöchentlich" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" -msgstr "Aktualisieren/Erstellen des Task-Logs fehlgeschlagen" +msgid "When the plugin is removed, the assigned key will remain" +msgstr "Wenn das Plugin entfernt wird, verbleibt der zugewiesene" -#: lib/reg-task/taskqueue.class.php:301 -#, fuzzy -msgid "Machine Details" -msgstr "Details" +msgid "Where to get help" +msgstr "Wo bekomme ich Hilfe?" -#: lib/reg-task/taskqueue.class.php:303 -#, fuzzy -msgid "Computer Model" -msgstr "Computermodell" +msgid "Width must be 650 pixels." +msgstr "Breite muss 650 Pixel betragen" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "Seriennummer" +msgid "Window size must be greater than 1" +msgstr "Fenstergröße muss größer sein als 1" -#: lib/reg-task/taskqueue.class.php:305 #, fuzzy -msgid "MAC Address" -msgstr "MAC-Adresse" +msgid "Windows Key" +msgstr "Windows Schlüssel" -#: lib/reg-task/taskqueue.class.php:307 #, fuzzy -msgid "Image Used" -msgstr "genutzte Images" +msgid "Windows Key Create Fail" +msgstr "Windows-Schlüssel erstellen fehlgeschlagen" -#: lib/reg-task/taskqueue.class.php:308 #, fuzzy -msgid "Snapin Used" -msgstr "genutzte Snapins" +msgid "Windows Key Create Success" +msgstr "Windows-Schlüssel erfolgreich erstellt" -#: lib/reg-task/taskqueue.class.php:310 #, fuzzy -msgid "Imaged By" -msgstr "Imaged von" +msgid "Windows Key Description" +msgstr "Windows-Schlüssel beschreibung" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 #, fuzzy -msgid "Imaged For" -msgstr "Imaged für" +msgid "Windows Key General" +msgstr "Windows-Schlüssel allgemein" -#: lib/reg-task/taskqueue.class.php:312 #, fuzzy -msgid "Imaging Started" -msgstr "Snapin-Zustand" +msgid "Windows Key Management" +msgstr "Windows-Schlüsselname" -#: lib/reg-task/taskqueue.class.php:313 #, fuzzy -msgid "Imaging Completed" -msgstr "Image Task vollständig" +msgid "Windows Key Name" +msgstr "Windows-Schlüsselname" -#: lib/reg-task/taskqueue.class.php:314 #, fuzzy -msgid "Imaging Duration" -msgstr "Imaging Log" +msgid "Windows Key Update Fail" +msgstr "Windows-Schlüssel aktualisieren fehlgeschlagen" -#: lib/reg-task/taskqueue.class.php:332 #, fuzzy -msgid "Image Task Completed" -msgstr "Image Task vollständig" - -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" -msgstr "Aufruf" +msgid "Windows Key Update Success" +msgstr "Windows-Schlüssel erfolgreich aktualisiert" -#: lib/reg-task/taskqueue.class.php:461 #, fuzzy -msgid "Failed to update Host" -msgstr "Aktualisieren des Hosts fehlgeschlagen" +msgid "Windows Key added!" +msgstr "Windows-Schlüssel hinzugefügt" -#: lib/reg-task/taskqueue.class.php:475 #, fuzzy -msgid "Failed to update task log" -msgstr "Aktualisierung des Task-Logs fehlgeschlagen" +msgid "Windows Key for Image" +msgstr "Windows-Schlüssel für Image" -#: lib/reg-task/taskqueue.class.php:479 #, fuzzy -msgid "Failed to update imaging log" -msgstr "Update des Image-Logs fehlgeschlagen" +msgid "Windows Key updated!" +msgstr "Windows-Schlüssel aktualisiert" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" -msgstr "FOG-Equipment Leihformular" +#, fuzzy +msgid "Windows Keys" +msgstr "Windows Keys" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" -msgstr "Wählen Sie einen Benutzer" +msgid "Windows keys is a plugin that associates product keys" +msgstr "Windows Keys ist ein Plugin, das Produktschlüssel für" -#: lib/reports/equipment_loan.report.php:66 -#, fuzzy -msgid "Create Report?" -msgstr "Bericht erstellen?" +msgid "Working with node" +msgstr "Arbeitet mit Knoten" -#: lib/reports/equipment_loan.report.php:69 #, fuzzy -msgid "Generate" -msgstr "Generieren" +msgid "Wrong file name!" +msgstr "Keine Datei hochgeladen" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" -msgstr "der" +msgid "Yearly" +msgstr "Jährlich" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" -msgstr "Gedruckt" +msgid "Yes" +msgstr "Ja" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" -msgstr "PC-Check-Out-Vereinbarung" +msgid "You are only allowed to assign" +msgstr "Sie dürfen nur zuweisen" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" -msgstr "Persönliche Informationen" +#, fuzzy +msgid "You have version" +msgstr "Sie haben Version" -#: lib/reports/equipment_loan.report.php:162 -msgid "Your Location Here" -msgstr "Ihr Standort hier" +msgid "You must have at least one Storage Group" +msgstr "Sie müssen mindestens eine Speichergruppe haben" -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" -msgstr "Heimatadresse" +#, fuzzy +msgid "You must have at least one group associated" +msgstr "Sie müssen mindestens eine Speichergruppe verknüpfen" -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" -msgstr "Stadt/Staat/PLZ" +#, fuzzy +msgid "You must select an action to perform" +msgstr "Sie müssen eine Aktion auswählen, die ausgeführt werden soll" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" -msgstr "zusätzliche Angaben" +msgid "Your FOG database schema is not up to date" +msgstr "Ihr FOG-Datenbankschema ist nicht aktuell" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" -msgstr "Telefonnummer" +msgid "Your Location Here" +msgstr "Ihr Standort hier" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" -msgstr "Computer-Informationen" +msgid "Your database connection appears to be invalid" +msgstr "Ihre Datenbankverbindung scheint ungültig zu sein" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" -msgstr "Service-Tag" +#, fuzzy +msgid "Your form is ready" +msgstr "Ihr Formular ist fertig." -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "Barcode-Nummern" +#, fuzzy +msgid "Your server only allows" +msgstr "Ihr Server erlaubt nur " -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" -msgstr "Datum der Abreise" +#, fuzzy +msgid "Your system PHP Version is not sufficient" +msgstr "" +"Ihre PHP-Version ist nicht ausreichend. Sie haben Version %s, Version %s ist " +"erforderlich." -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" -msgstr "Notizen" +#, fuzzy +msgid "ZSTD Compressed" +msgstr "ZSTD komprimiert" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "Diverses" +msgid "ZSTD Compressed 200MiB split" +msgstr "ZSTD komprimiert 200MiB gesplittet" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "Zubehör" +#, fuzzy +msgid "access to the hidden menu system" +msgstr "auf das versteckte Menüsystem zu erhalten" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" -msgstr "Freigabe durch Personal (Kürzel)" +#, fuzzy +msgid "additional macs" +msgstr "zusätzliche MACs haben" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" -msgstr "Freigabe nur durch" +#, fuzzy +msgid "ago" +msgstr "vor" -#: lib/reports/equipment_loan.report.php:219 #, fuzzy -msgid "I have read" -msgstr "Ich habe die" +msgid "all current storage nodes" +msgstr "momentanen Speicherknoten löschen." -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" -msgstr "auf den folgenden Seiten" +msgid "and Mac OS X" +msgstr "und Mac OS X" -#: lib/reports/equipment_loan.report.php:221 msgid "and agree to all the" msgstr "bekanntgegebenen" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" -msgstr "Allgemeine Geschäftsbedingungen" - -#: lib/reports/equipment_loan.report.php:223 -#, fuzzy -msgid "on the following pages of this document" -msgstr "gelesen und verstanden und akzeptiere sie." - -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "Unterschrift" - -#: lib/reports/equipment_loan.report.php:262 -#, fuzzy -msgid "Your form is ready" -msgstr "Ihr Formular ist fertig." - -#: lib/reports/equipment_loan.report.php:266 -#, fuzzy -msgid "Form" -msgstr "Formular" - -#: lib/reports/history_report.report.php:26 -#, fuzzy -msgid "FOG History - Search" -msgstr "FOG Benutzerverfolgung - Suche" +msgid "and both the legacy and new FOG clients." +msgstr "oder jeweils Legacy oder neue FOG Clients." -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 -#, fuzzy -msgid "Enter an user name to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "and cannot be captured" +msgstr "und kann nicht hochgeladen werden" -#: lib/reports/history_report.report.php:68 #, fuzzy -msgid "Enter a term to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "and if the Database service is running" +msgstr "und die Datenbank läuft," -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" -msgstr "Suche durchführen" +msgid "and much easier on the server" +msgstr "und viel einfacher auf dem Server" -#: lib/reports/history_report.report.php:111 -#, fuzzy -msgid "Full History Export" -msgstr "Vollständigen Verlauf exportieren" +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "und Knoten A hat nur 5MBit/s, und Sie wollen die Geschwindigkeit" -#: lib/reports/history_report.report.php:166 -#, fuzzy -msgid "History ID" -msgstr "Verlaufs-ID" +msgid "and set it to master" +msgstr "und diesen als Master einstellen," -#: lib/reports/history_report.report.php:167 -#, fuzzy -msgid "History Info" -msgstr "Verlaufinformationen" +msgid "and stores their respective checksums" +msgstr "und speichert ihre jeweiligen Prüfsummen" -#: lib/reports/history_report.report.php:168 -#, fuzzy -msgid "History User" -msgstr "Benutzerverlauf" +msgid "and the equivalent module for what Green" +msgstr "und das entsprechende Modul, das früher" -#: lib/reports/history_report.report.php:169 -#, fuzzy -msgid "History Time" -msgstr "Verlaufszeit" +msgid "and the location of the file on that" +msgstr "und der Speicherort der Datei auf diesem" -#: lib/reports/history_report.report.php:170 -#, fuzzy -msgid "History IP" -msgstr "Verlaufs-IP" +msgid "as FOG will attempt to go out to the internet" +msgstr "da der FOG versuchen wird, mit dem Internet zu verbinden, " -#: lib/reports/host_list.report.php:33 #, fuzzy -msgid "FOG Host - Search" -msgstr "FOG Benutzerverfolgung - Suche" +msgid "as its primary group" +msgstr "als primäre Gruppe finden" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -#, fuzzy -msgid "Enter a group name to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "as they can cause issues that are difficult to troubleshoot" +msgstr "da sie Probleme verursachen kann, die sehr schwierig zu lösen sind." -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -#, fuzzy -msgid "Enter a location name to search for" -msgstr "Geben Sie für die Suche einen Hostnamen ein" +msgid "automatically" +msgstr "einen neuen Knoten zu finden" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 #, fuzzy -msgid "Enter a site name to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "based task." +msgstr "Basis-Task" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 -#, fuzzy -msgid "Search pattern" -msgstr "Suchbereich" +msgid "be the presence of a menu" +msgstr "überhaupt ein Menü" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" -msgstr "Host-Liste exportieren" +msgid "before me" +msgstr "vor mir" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" -msgstr "Host erstellt" +msgid "before me on this node" +msgstr "vor mir auf diesem Knoten" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -#, fuzzy -msgid "Host AD Join" -msgstr "Host AD-Beitretung" +msgid "between" +msgstr "zwischen" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -#, fuzzy -msgid "Host AD OU" -msgstr "Host AD OU" +msgid "between different sites" +msgstr "Stellen hin und her wechseln." -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -#, fuzzy -msgid "Host AD Domain" -msgstr "Host AD-Domäne" +msgid "between host and global settings" +msgstr "Host- und globalen Einstellungen gibt," -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 -#, fuzzy -msgid "Host HD Device" -msgstr "Host HD-Gerät" +msgid "boot the client computers" +msgstr "die Client Computer in den FOG" -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" -msgstr "Image-ID" +msgid "but" +msgstr "aber " -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" -msgstr "Image-Desc" +msgid "but bind password is not set" +msgstr "aber das Anmeldekennwort ist nicht festgelegt." -#: lib/reports/hosts_and_users.report.php:24 #, fuzzy -msgid "FOG Host and Users - Search" -msgstr "FOG Hosts und Benutzer-Login" - -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" -msgstr "FOG Hosts und Benutzer-Login" +msgid "but has recently failed for this host" +msgstr "ist offen, aber ist vor kurzem für diesen Host fehlgeschlagen" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" -msgstr "AD-Beitretung" +msgid "check to ensure your filesystem has enough space" +msgstr "prüfen Sie bitte, ob sie genügend Speicherplatz haben." -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" -msgstr "AD-OU" +#, fuzzy +msgid "client" +msgstr "Client" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" -msgstr "Active Directory-Domäne" +#, fuzzy +msgid "clients" +msgstr "Client" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" -msgstr "HD-Gerät" +msgid "config files that run on the client computers." +msgstr "" +"Konfigurationsdateien aktualisieren, die auf den Clientcomputern ausgeführt " +"werden." -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 #, fuzzy -msgid "Login Users" -msgstr "Anmeldung" +msgid "could not be cancelled" +msgstr "wurde abgebrochen" -#: lib/reports/imaging_log.report.php:24 #, fuzzy -msgid "FOG Imaging - Search" -msgstr "FOG Benutzerverfolgung - Suche" +msgid "could not be completed" +msgstr "Temporäre Datei konnte nicht gelesen werden." -#: lib/reports/imaging_log.report.php:105 #, fuzzy -msgid "Enter an image name to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "could not be killed" +msgstr "Temporäre Datei konnte nicht gelesen werden." -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" -msgstr "Geben Sie für die Suche einen Hostnamen ein" +msgid "day" +msgstr "Tag" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" -msgstr "FOG Imaging-Logbuch" +msgid "day of month" +msgstr "Tag (Monat)" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" -msgstr "Startdatum" +msgid "day of week" +msgstr "Tag (Woche)" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" -msgstr "Enddatum" +msgid "defined reports that may not be a part of" +msgstr "Berichte hochladen, die möglicherweise nicht Teil" -#: lib/reports/imaging_log.report.php:214 -#, fuzzy -msgid "Deploy/Capture" -msgstr "Verteilen/Upload" +msgid "deleted" +msgstr "gelöscht" -#: lib/reports/imaging_log.report.php:268 -#, fuzzy -msgid "Not Valid" -msgstr "nicht gültig" +msgid "deploy task occurs for it" +msgstr "es eine Verteilungs-Task gibt." -#: lib/reports/inventory_report.report.php:24 -#, fuzzy -msgid "FOG Host Inventory - Search" -msgstr "FOG Benutzerverfolgung - Suche" +msgid "directive in php.ini" +msgstr "Richtlinie in der php.ini" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." +#, fuzzy +msgid "directive specified in the HTML form" msgstr "" +"Die hochgeladene Datei überschreitet die Max_file_size-Richtlinie im HTML-" +"Formular" -#: lib/reports/inventory_report.report.php:129 #, fuzzy -msgid "Enter a model name to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "directory" +msgstr "Home-Verzeichnis speichern" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" -msgstr "Vollständiger Inventur-Export" +msgid "download the module and use it on the next" +msgstr "der Client das Modul herunterladen und verwendet es " -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." -msgstr "Alle ausstehenden MACs freigegeben." +msgid "due to UAC introduced in Vista and up." +msgstr "neuer aufgrund des eingeführten UAC." -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" -msgstr "exportieren aller ausstehende MACs" +msgid "e.g." +msgstr "z.B." -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" -msgstr "Primäre MAC des Hosts" +msgid "either already selected or uploaded" +msgstr "ob bereits ausgewählt oder hochgeladen" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" -msgstr "ausstehende MACs des Hosts" +msgid "either because you have updated" +msgstr "entweder weil Sie aktualisiert haben" -#: lib/reports/pending_mac_list.report.php:130 #, fuzzy -msgid "Approve All Pending MACs for All Hosts" -msgstr "Alle ausstehenden MACs für alle Hosts freigeben" +msgid "failed to execute, image file: " +msgstr "Löschen der Imagedateien fehlgeschlagen" -#: lib/reports/pending_mac_list.report.php:154 -#, fuzzy -msgid "Pending MAC Actions" -msgstr "Aktionen für ausstehende MACs" +msgid "failed to execute, port must be even and numeric" +msgstr "" -#: lib/reports/pending_mac_list.report.php:160 -#, fuzzy -msgid "Approve Selected MACs" -msgstr "Ausgewählten MAcs freigeben" +msgid "failed to execute, there are no clients included" +msgstr "" -#: lib/reports/pending_mac_list.report.php:165 -#, fuzzy -msgid "Approve" -msgstr "freigeben" +msgid "failed to login" +msgstr "Anmelden fehlgeschlagen" -#: lib/reports/pending_mac_list.report.php:171 #, fuzzy -msgid "Delete Selected MACs" -msgstr "Ausgewählte MACs löschen" +msgid "failed to start" +msgstr "Starten fehlgeschlagen" -#: lib/reports/product_keys.report.php:31 #, fuzzy -msgid "Host Product Keys" -msgstr "Host-Produkt-Schlüssel" +msgid "faster" +msgstr "schneller" -#: lib/reports/snapin_log.report.php:18 -#, fuzzy -msgid "FOG Snapin - Search" -msgstr "FOG Benutzerverfolgung - Suche" +msgid "filesize" +msgstr "Dateigröße" + +msgid "for Microsoft Windows to images" +msgstr "MS Windows den Images zuordnet." + +msgid "for the advanced menu parameters" +msgstr "für die erweiterten Menüparameter" + +msgid "for the menu background" +msgstr "für das Menü" -#: lib/reports/snapin_log.report.php:82 #, fuzzy -msgid "Enter a snapin name to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +msgid "found" +msgstr "gefunden" -#: lib/reports/snapin_log.report.php:120 #, fuzzy -msgid "Found snapin information" -msgstr "Zugangsdaten gefunden" +msgid "from" +msgstr "Von" -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" -msgstr "Zurück Desc" +msgid "function on client computers." +msgstr "wie Dienste auf Clientcomputer funktionieren." -#: lib/reports/snapin_log.report.php:153 -#, fuzzy -msgid "Checkin Time" -msgstr "Check-in-Zeit" +msgid "group" +msgstr "Gruppe" -#: lib/reports/snapin_log.report.php:154 #, fuzzy -msgid "Complete Time" -msgstr "Fertigstellungszeit" +msgid "has been cancelled" +msgstr "wurde abgebrochen" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" -msgstr "Snapin-ID" +#, fuzzy +msgid "has been completed" +msgstr "wurde abgeschlossen" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" -msgstr "Snapin Args" +#, fuzzy +msgid "has been killed" +msgstr "wurde abgebrochen" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" -msgstr "Snapin-Ausführung mit Args" +msgid "has been started on port" +msgstr "wurde gestartet auf Port" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" -msgstr "Snapin-Zustand" +#, fuzzy +msgid "has been successfully destroyed" +msgstr "wurde erfolgreich zerstört" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" -msgstr "Snapin-Return-Code" +msgid "has been successfully updated" +msgstr "wurde erfolgreich aktualisiert" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" -msgstr "Snapin-Returndetails" +#, fuzzy +msgid "has failed to destroy" +msgstr "konnte nicht zerstört werden" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" -msgstr "Snapin-Erstellungsdatum" +msgid "has failed to save" +msgstr "konnte nicht gespeichert werden" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" -msgstr "Snapin-Erstellungszeit" +#, fuzzy +msgid "has started" +msgstr "hat begonnen" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" -msgstr "Job-Erstellungsdatum" +msgid "help with any aspect of FOG" +msgstr "um Hilfe in allen Aspekten rund um FOG zu erhalten" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" -msgstr "Job-Erstellungszeit" +msgid "here" +msgstr "Hier" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" -msgstr "Task Eincheckdatum" +msgid "host" +msgstr "Host" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" -msgstr "Task Eincheckzeit" +#, fuzzy +msgid "hosts" +msgstr "Hosts" -#: lib/reports/snapin_log.report.php:194 #, fuzzy -msgid "Task Complete Date" -msgstr "Task Fertigstellungsdatum" +msgid "hour" +msgstr "Stunde" -#: lib/reports/snapin_log.report.php:195 #, fuzzy -msgid "Task Complete Time" -msgstr "Task Fertigstellungszeit" +msgid "hr" +msgstr "Stunde" -#: lib/reports/user_tracking.report.php:31 #, fuzzy -msgid "FOG User tracking - Search" -msgstr "FOG Benutzerverfolgung - Suche" +msgid "iPXE General Configuration" +msgstr "iPXE allg. Konfiguration" -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" -msgstr "Geben Sie für die Suche einen Benutzernamen ein" +#, fuzzy +msgid "iPXE Item Create Fail" +msgstr "Erstellung eines iPXE-Elements fehlgeschlagen!" -#: lib/reports/user_tracking.report.php:132 #, fuzzy -msgid "Found login information" -msgstr "Zugangsdaten gefunden" +msgid "iPXE Item Create Success" +msgstr "iPXE-Element erfolgreich erstellt" -#: lib/reports/user_tracking.report.php:233 #, fuzzy -msgid "FOG User tracking history" -msgstr "FOG Benutzerverfolgungsverlauf" +msgid "iPXE Item Remove Success" +msgstr "iPXE Element erfolgreich entfernt!" -#: lib/reports/user_tracking.report.php:290 #, fuzzy -msgid "Service Start" -msgstr "Service-Start" +msgid "iPXE Item Update Success" +msgstr "iPXE Element erfolgreich aktualisiert!" -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" -msgstr "FOG Viruszusammenfassung" +#, fuzzy +msgid "iPXE Item added!" +msgstr "iPXE Element hinzugefügt!" -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" -msgstr "Routen sollten ein Array oder eine Instanz von Traversable sein" +#, fuzzy +msgid "iPXE Item create failed!" +msgstr "Erstellen eines iPXE-Menüs fehlgeschlagen" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" -msgstr "Route kann nicht nochmal neu definiert werden" +msgid "iPXE Menu Customization" +msgstr "iPXE Menüanpassung" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 #, fuzzy -msgid "Already created" -msgstr "Bereits erstellt" +msgid "iPXE Menu Item Settings" +msgstr "iPXE Menüeinstellungen" -#: lib/router/route.class.php:857 #, fuzzy -msgid "Invalid tasking type passed" -msgstr "Ungültiger Tasking Typ übergeben" +msgid "iPXE Menu Settings" +msgstr "iPXE Menüeinstellungen" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" -msgstr "* Imagereplikation ist global deaktiviert" +msgid "iPXE New Menu Entry" +msgstr "iPXE neuen Menü-Eintrag" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 #, fuzzy -msgid "I am the group manager" -msgstr "Ich bin der Gruppenmanager" +msgid "iPXE Settings updated successfully!" +msgstr "iPXE-Einstellungen erfolgreich aktualisiert!" -#: lib/service/imagereplicator.class.php:119 #, fuzzy -msgid "Starting Image Replication" -msgstr "Imagereplikation startet" - -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" -msgstr "Wir sind Gruppen-ID " +msgid "iPXE Update Fail" +msgstr "iPXE-Update fehlgeschlagen" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 #, fuzzy -msgid "We are group name" -msgstr "Wir sind Gruppenname " +msgid "iPXE Update Success" +msgstr "iPXE-Update erfolgreich!" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" -msgstr "Wir sind Knoten-ID " +msgid "iPXE syntax is very finicky when it comes to editing" +msgstr "iPXE-Syntax ist sehr anspruchsvoll, wenn es um die Bearbeitung geht." + +msgid "iPrint Printer" +msgstr "iPrint Drucker" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 #, fuzzy -msgid "We are node name" -msgstr "Wir sind Knotenname " +msgid "if there is a task" +msgstr "wenn es eine Aufgabe (Task) gibt, " + +msgid "if used incorrectly could potentially" +msgstr "kann im Falle einer fehlerhaften Eingabe" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 #, fuzzy -msgid "Attempting to perform" -msgstr "Versuche, durchzuführen" +msgid "image" +msgstr "Image" + +msgid "image file found, file: " +msgstr "" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 #, fuzzy msgid "image replication" msgstr "Imagereplikation" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "Es gibt nichts zu replizieren" - -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" -msgstr "Bitte ordnen Sie physisch" +#, fuzzy +msgid "images" +msgstr "Images" -#: lib/service/imagereplicator.class.php:207 #, fuzzy msgid "images to a storage group" msgstr "bildet ab zu einer Speichergruppe" -#: lib/service/imagereplicator.class.php:241 -#, fuzzy -msgid "Replicating" -msgstr "Replizieren" +msgid "in seconds" +msgstr "in Sekunden" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" -msgstr "Image wird nicht synchronisiert" +#, fuzzy +msgid "install or update the FOG database" +msgstr "installieren oder aktualisieren möchten?" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 #, fuzzy -msgid "This is not the primary group" -msgstr "Dies ist nicht die primäre Gruppe" +msgid "is already running with pid: " +msgstr "läuft bereits mit PID" + +msgid "is going on with your FOG System" +msgstr "Vorgänge in Ihrem FOG-System." -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 #, fuzzy -msgid "Nodes" -msgstr "Knoten" +msgid "is invalid" +msgstr "sind ungültig." -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" -msgstr "Prüfe, ob ich der Gruppenmanager bin" +#, fuzzy +msgid "is new" +msgstr "ist neu" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" -msgstr "" +#, fuzzy +msgid "is no longer running" +msgstr "läuft nicht mehr" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" -msgstr "oder es wurde keine Nummer für die Beitrittssitzung definiert" +#, fuzzy +msgid "is now cancelled" +msgstr "wurde abgebrochen" -#: lib/service/multicasttask.class.php:104 #, fuzzy -msgid " | Unable to find image path" -msgstr "Fehler beim Finden des Master Storage Nodes" +msgid "is now completed" +msgstr "wurde abgeschlossen" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" -msgstr "* Anpingen der Hosts ist global deaktiviert" +msgid "is open" +msgstr "ist offen" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "Ich bin nicht der FOG-Web-Server" +msgid "is protected" +msgstr "ist geschützt" -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" -msgstr "IP(s) dieses Servers" +msgid "is protected, removal not allowed" +msgstr "ist geschützt, Entfernen ist nicht erlaubt" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" -msgstr "Versuche, anzupingen" +#, fuzzy +msgid "is required" +msgstr "%s ist erforderlich" -#: lib/service/pinghosts.class.php:147 #, fuzzy -msgid "hosts" -msgstr "Hosts" +msgid "is there one enabled" +msgstr "gibt es eine aktivierte" -#: lib/service/snapinhash.class.php:102 #, fuzzy -msgid " * Snapin hash is globally disabled" -msgstr "Snapin-Hashs global deaktiviert" +msgid "is valid" +msgstr "gültig ist." -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" -msgstr "Snapin-Hash-Service wird gestartet" +msgid "it boots to the first device" +msgstr "bootet es in das erste Objekt." -#: lib/service/snapinhash.class.php:135 -#, fuzzy -msgid "Finding any snapins associated" -msgstr "Verbundene Snapins" +msgid "it performs that task" +msgstr "führt es diese durch" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 -#, fuzzy -msgid "with this group" -msgstr "mit dieser Gruppe" +msgid "it will distribute its store" +msgstr "verteilt er seinen Speicher," + +msgid "it will enforce login to gain access to the advanced" +msgstr "wird es einen Login erzwingen, um Zugriff" + +msgid "it's transmitting to" +msgstr "empfängt, an den es sendet." -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 #, fuzzy -msgid "as its primary group" -msgstr "als primäre Gruppe finden" +msgid "kernel to boot the client computers" +msgstr "die Client Computer in den FOG" -#: lib/service/snapinhash.class.php:158 #, fuzzy -msgid "No snapins associated with this group as master" -msgstr "Keine Snapins mit dieser Gruppe als Master verbunden" +msgid "key" +msgstr "aktiviert werden." -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" -msgstr "Gefundene" +msgid "limited to 1Mbps on that node" +msgstr "auf 1 MBit/s begrenzen, " -#: lib/service/snapinhash.class.php:170 -#, fuzzy -msgid "snapins" -msgstr "SnapIns" +msgid "location url based on the host that checks in" +msgstr "der Standort-URL basierend auf dem Host, der eincheckt." -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" -msgstr "um Hash-Werte nach Bedarf zu aktualisieren" +msgid "logged in" +msgstr "" -#: lib/service/snapinhash.class.php:187 #, fuzzy -msgid "Trying Snapin hash for" -msgstr "Versuche Snapin-Hash für" +msgid "logout" +msgstr "Logout" -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "Empfange Snapin-Hash und Größe für" +msgid "may see the issue and help and/or use the solutions" +msgstr "andere das Problem erkennen und Ihnen helfen können." -#: lib/service/snapinhash.class.php:216 -msgid "Hash" -msgstr "Hash" +msgid "meaning a node that has no images on it" +msgstr "also einen ohne Images," -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" -msgstr "Abgeschlossen" +#, fuzzy +msgid "menu system" +msgstr "auf die erweiterten Menüpunkt zu erhalten." -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" -msgstr "* Snapin Replikation ist global deaktiviert" +msgid "migration or mass import new items" +msgstr "um leichter große Mengen Daten zu importieren." -#: lib/service/snapinreplicator.class.php:118 #, fuzzy -msgid "Starting Snapin Replication" -msgstr "Snapin-Replikatoion startet" +msgid "min" +msgstr "Minuten" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 #, fuzzy -msgid "snapin replication" -msgstr "Snapin-Replikation" +msgid "minute" +msgstr "Minuten" -#: lib/service/snapinreplicator.class.php:206 -#, fuzzy -msgid "snapins to a storage group" -msgstr "Snapins einer Speichergruppe zu" +msgid "minutes" +msgstr "Minuten" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "Replizieren von SSL-freiem privatem Schlüssel" +msgid "mod dates" +msgstr "Mod Daten" -#: lib/service/snapinreplicator.class.php:249 #, fuzzy -msgid "Not syncing Snapin" -msgstr "Snapin wird nicht synchronisiert" - -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" -msgstr " | Dies ist nicht der Master-Knoten" +msgid "month" +msgstr "Monat" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" -msgstr "Netzwerkschnittstelle nicht bereit, warte auf deren Start" +#, fuzzy +msgid "more secure" +msgstr "sicherer" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" -msgstr "Warten auf die Verfügbarkeit von MySQL" +msgid "multiple places to get your image" +msgstr "Orte gibt, an denen Sie Ihr Image abrufen können" -#: lib/service/fogservice.class.php:356 #, fuzzy -msgid "This is not the master for this group" -msgstr "Dies ist nicht die primäre Gruppe" +msgid "must be specified" +msgstr "muss angegeben werden" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" -msgstr "" +msgid "n/a" +msgstr "nicht verfügbar" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" -msgstr "Nicht synchronisieren" +#, fuzzy +msgid "no database to" +msgstr "Keine Datenbank zum" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" -msgstr "zwischen" +msgid "no login will appear" +msgstr "wird kein Login erscheinen." -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" -msgstr "Es gibt keine anderen Mitglieder zu synchronisieren" +msgid "node is the distributor of the images" +msgstr "welcher Knoten die Images verteilt." -#: lib/service/fogservice.class.php:411 #, fuzzy -msgid "to transfer to" -msgstr "übertragen auf" +msgid "nodes containing this image" +msgstr "Knoten enthalten dieses Image" -#: lib/service/fogservice.class.php:482 #, fuzzy -msgid "Replication already running with PID" -msgstr "Replikation läuft bereits mit PID" +msgid "not found on this node" +msgstr "auf diesem Knoten nicht gefunden" -#: lib/service/fogservice.class.php:514 #, fuzzy -msgid "File or path cannot be reached" -msgstr " | Datei oder Pfad ist nicht erreichbar" +msgid "object" +msgstr "Objekt" -#: lib/service/fogservice.class.php:530 -#, fuzzy -msgid "Cannot connect to" -msgstr "kann keine Verbindung aufbauen" +msgid "of" +msgstr "der" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 #, fuzzy -msgid "File does not exist" -msgstr "Datei existiert nicht" +msgid "on the following pages of this document" +msgstr "gelesen und verstanden und akzeptiere sie." -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" -msgstr "Hash der Datei stimmt nicht überein" +msgid "on the old client" +msgstr "auf dem veralteten Client." -#: lib/service/fogservice.class.php:735 -#, fuzzy -msgid "File size mismatch" -msgstr "Dateigröße stimmt nicht überein" +msgid "open" +msgstr "offen ist" + +msgid "or" +msgstr "oder" -#: lib/service/fogservice.class.php:743 #, fuzzy -msgid "Deleting remote file" -msgstr "Remotedatei wird gelöscht" +msgid "or no valid images specified" +msgstr "oder kein gültiges Image angegeben" -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" -msgstr "Synchronisierung nicht erforderlich" +msgid "or start to operate" +msgstr "oder Start zum Ausführen" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." -msgstr "Alle Dateien für dieses Element wurden synchronisiert." +msgid "or this is a new FOG installation" +msgstr "oder weil dies eine neue FOG-Installation ist." + +msgid "particular node" +msgstr "bestimmten Knoten" -#: lib/service/fogservice.class.php:780 #, fuzzy -msgid "Starting Sync Actions" -msgstr "Starte Sync-Aktionen" +msgid "per host" +msgstr "per Host" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" -msgstr "Die Synchronistaion wurde gestartet für" +msgid "please see the hosts service settings section." +msgstr "nutzen Sie bitte die Host Service Settings." -#: lib/service/fogservice.class.php:868 #, fuzzy -msgid "Task started" -msgstr "Task gestartet" +msgid "power management task(s) to run" +msgstr "Neuer Power-Management Task" -#: lib/service/imagesize.class.php:102 -#, fuzzy -msgid " * Image size is globally disabled" -msgstr " * Imagegröße ist global deaktiviert" +msgid "present and where/how they need to display" +msgstr "und wo und wie sie zu zeigen sind." -#: lib/service/imagesize.class.php:111 -#, fuzzy -msgid "Starting Image Size Service" -msgstr "Imagegrößen-Service startet" +msgid "previous install if needed" +msgstr "Installation zurück zu kehren, falls erforderlich." + +msgid "read-only" +msgstr "nur lesen" -#: lib/service/imagesize.class.php:135 #, fuzzy -msgid "Finding any images associated" -msgstr "Suche nach zugeordneten Images" +msgid "real insert time" +msgstr "Echte Zeit einfügen" -#: lib/service/imagesize.class.php:158 #, fuzzy -msgid "No images associated with this group as master" -msgstr "Keine Images mit dieser Gruppe als Master verknüpft" +msgid "require all hosts have the same image" +msgstr "Alle Hosts müssen das gleiche Image haben" -#: lib/service/imagesize.class.php:170 #, fuzzy -msgid "images" -msgstr "Images" +msgid "scheduled task(s) to run" +msgstr "Geplante Tasks" -#: lib/service/imagesize.class.php:171 #, fuzzy -msgid "image" -msgstr "Image" +msgid "second" +msgstr "Sekunde" -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" -msgstr "Größenwerte nach Bedarf aktualisieren" +msgid "seconds" +msgstr "Sekunden" -#: lib/service/imagesize.class.php:187 -#, fuzzy -msgid "Trying image size for" -msgstr "Versuche Imagegröße für" +msgid "see fit" +msgstr "nach Belieben bearbeiten" + +msgid "see the forums or lookup the commands and scripts available" +msgstr "" +"lesen Sie bitte die Foren oder suchen Sie nach den verfügbaren Befehlen und " +"Skripts." -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 #, fuzzy -msgid "Path is unavailable" -msgstr "Pfad ist nicht verfügbar" +msgid "sending on base port " +msgstr "Senden auf Basis-Port" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" -msgstr "Empfange Imagegrößé für" +msgid "sites with clients moving back and forth" +msgstr "mit Clients haben, die zwischen verschiedenen " -#: lib/service/imagesize.class.php:225 #, fuzzy -msgid "Size" -msgstr "Größe" - -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" -msgstr " * Multicast Service ist global deaktiviert" +msgid "snapin" +msgstr "Snapin" -#: lib/service/multicastmanager.class.php:222 #, fuzzy -msgid "Task ID" -msgstr "Task" +msgid "snapin replication" +msgstr "Snapin-Replikation" -#: lib/service/multicastmanager.class.php:234 #, fuzzy -msgid "No new tasks found" -msgstr "Keine neuen Tasks gefunden" +msgid "snapins" +msgstr "SnapIns" -#: lib/service/multicastmanager.class.php:264 #, fuzzy -msgid " No open slots " -msgstr "Keine offenen Slots" +msgid "snapins to a storage group" +msgstr "Snapins einer Speichergruppe zu" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" +msgid "so if it seems like the process is hanging please be patient" +msgstr "Wenn es den Anschein hat, der Prozess hängt, haben Sie bitte Geduld." + +msgid "so if you are unable to boot a client you may wish to" msgstr "" +"Wenn Sie also nicht in der Lage sind, einen Client zu booten, können Sie" -#: lib/service/multicastmanager.class.php:289 #, fuzzy -msgid "failed to execute, image file: " -msgstr "Löschen der Imagedateien fehlgeschlagen" +msgid "successfully removed!" +msgstr "erfolgreich entfernt!" -#: lib/service/multicastmanager.class.php:291 -#, fuzzy -msgid "not found on this node" -msgstr "auf diesem Knoten nicht gefunden" +msgid "task found" +msgstr "Task gefunden" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" +msgid "tasks in queue" +msgstr "Tasks in der Warteschlange" + +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" msgstr "" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" +msgid "the Initrd (initial ramdisk) which is used alongside the" msgstr "" -#: lib/service/multicastmanager.class.php:327 -#, fuzzy -msgid "failed to start" -msgstr "Starten fehlgeschlagen" +msgid "the Linux kernel which is used to" +msgstr "aktualisieren, der genutzt wird um" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 #, fuzzy -msgid "could not be killed" -msgstr "Temporäre Datei konnte nicht gelesen werden." +msgid "the advanced menu to use" +msgstr "erweiterte Menü nutzen soll" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 #, fuzzy -msgid "has been killed" -msgstr "wurde abgebrochen" +msgid "the base FOG install" +msgstr "der Basisinstallation von FOG sind." + +msgid "the following command in a terminal" +msgstr "den folgenden Terminalbefehlen tun" + +msgid "the host defined location where available" +msgstr "Speicherort herunterzuladen, sofern verfügbar." + +msgid "the main and the host" +msgstr "zwischen dem Hauptrechner und dem Host." + +msgid "the way in which FOG operates" +msgstr "der Art und Weise, wie FOG arbeitet." -#: lib/service/multicastmanager.class.php:363 #, fuzzy -msgid "is new" -msgstr "ist neu" +msgid "there one enabled within this Storage Group" +msgstr "da innerhalb diese Speichergruppe einer aktiviert ist" + +msgid "there will be a database backup stored on your" +msgstr "existiert ein Backup, gespeichert auf dem" + +msgid "this backup will enable you to return to the" +msgstr "wird dieses Backup helfen, zur vorherigen" + +msgid "this is just another to ensure safety" +msgstr "ist diese eine weitere, um die Sicherheit zu erhöhen" + +msgid "this kernel holds all the drivers for the client computer" +msgstr "dieser Kernel stellt alle Treiber für den Client Computer bereit. " + +msgid "this one is already in use by another image" +msgstr "Dieser wird durch ein anderes Image verwendet" -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 #, fuzzy -msgid "unable to be updated" -msgstr "Aktualisierung fehlgeschlagen" +msgid "this one is reserved for FOG" +msgstr "Dieser ist reserviert für FOG." -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " -msgstr "" +msgid "this will save the backup in your home" +msgstr "Das wird Ihr Backup in Ihrem " + +msgid "time the service is started." +msgstr "beim nächsten Start des Dienstes." + +msgid "to UAC introduced in Vista and up" +msgstr "wegen UAC nicht mehr." -#: lib/service/multicastmanager.class.php:397 #, fuzzy -msgid "client" -msgstr "Client" +msgid "to all nodes in the group" +msgstr "auf alle Knoten in der Gruppe." + +msgid "to be booted if no keys are pressed when the menu is" +msgstr "" -#: lib/service/multicastmanager.class.php:398 #, fuzzy -msgid "clients" -msgstr "Client" +msgid "to get the requested Initrd" +msgstr "um den angeforderten Kernel herunterzuladen." -#: lib/service/multicastmanager.class.php:401 #, fuzzy -msgid "found" -msgstr "gefunden" +msgid "to get the requested Kernel" +msgstr "um den angeforderten Kernel herunterzuladen." -#: lib/service/multicastmanager.class.php:409 -#, fuzzy -msgid "sending on base port " -msgstr "Senden auf Basis-Port" +msgid "to login" +msgstr "anmelden" -#: lib/service/multicastmanager.class.php:416 -#, fuzzy -msgid "Command" -msgstr "Befehl" +msgid "to operate in an environment where there may be" +msgstr "in einer Umgebung arbeiten kann, in der es mehrere" -#: lib/service/multicastmanager.class.php:425 -#, fuzzy -msgid "has started" -msgstr "hat begonnen" +msgid "to review." +msgstr "um zu überprüfen." -#: lib/service/multicastmanager.class.php:490 #, fuzzy -msgid "is already running with pid: " -msgstr "läuft bereits mit PID" +msgid "to signify if this is a user or channel to send to" +msgstr "" +"um anzuzeigen, ob dies ein Benutzer oder Kanal ist, an den gesendet werden " +"soll" -#: lib/service/multicastmanager.class.php:502 -#, fuzzy -msgid "is no longer running" -msgstr "läuft nicht mehr" +msgid "to the client systems" +msgstr "enthält oder nicht" -#: lib/service/multicastmanager.class.php:528 -#, fuzzy -msgid "has been completed" -msgstr "wurde abgeschlossen" +msgid "to time to see if a new module is published." +msgstr "ob ein neues Modul veröffentlicht wurde." -#: lib/service/multicastmanager.class.php:539 #, fuzzy -msgid "has been cancelled" -msgstr "wurde abgebrochen" +msgid "to transfer to" +msgstr "übertragen auf" -#: lib/service/multicastmanager.class.php:584 -#, fuzzy -msgid "is now cancelled" -msgstr "wurde abgebrochen" +msgid "to update hash values as needed" +msgstr "um Hash-Werte nach Bedarf zu aktualisieren" -#: lib/service/multicastmanager.class.php:585 -#, fuzzy -msgid "could not be cancelled" -msgstr "wurde abgebrochen" +msgid "to update size values as needed" +msgstr "Größenwerte nach Bedarf aktualisieren" -#: lib/service/multicastmanager.class.php:600 #, fuzzy -msgid "is now completed" -msgstr "wurde abgeschlossen" +msgid "unable to be updated" +msgstr "Aktualisierung fehlgeschlagen" -#: lib/service/multicastmanager.class.php:601 #, fuzzy -msgid "could not be completed" -msgstr "Temporäre Datei konnte nicht gelesen werden." +msgid "unavailable" +msgstr "nicht verfügbar" -#: lib/service/multicastmanager.class.php:619 -#, fuzzy -msgid "Wait time has changed to" -msgstr "Wartezeit wurde geändert auf" +msgid "understood" +msgstr "auf den folgenden Seiten" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" -msgstr "Sekunden" +msgid "update to a newer kernel which may have more drivers built in" +msgstr "auf einen neueren Kernel updaten, der mehr Treiber beinhaltet. " -#: lib/service/multicastmanager.class.php:624 -#, fuzzy -msgid "second" -msgstr "Sekunde" +msgid "used" +msgstr "" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" -msgstr "* Taskplaner ist global deaktiviert" +msgid "user failed to login" +msgstr "Benutzer konnte sich nicht anmelden" + +msgid "user successfully logged in" +msgstr "Benutzer erfolgreich angemeldet" -#: lib/service/taskscheduler.class.php:172 #, fuzzy -msgid "scheduled task(s) to run" -msgstr "Geplante Tasks" +msgid "username" +msgstr "Benutzername" -#: lib/service/taskscheduler.class.php:179 #, fuzzy -msgid "power management task(s) to run" -msgstr "Neuer Power-Management Task" +msgid "version" +msgstr "Version" -#: lib/service/taskscheduler.class.php:187 #, fuzzy -msgid "Scheduled Task run time" -msgstr "Geplante Tasks" +msgid "we need a file name in the request" +msgstr "wird ein Dateiname in der Anfrage benötigt" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." -msgstr "" +#, fuzzy +msgid "where to download the snapin" +msgstr "erfahren, wo das Snapin heruntergeladen werden soll" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" -msgstr "Ist ein" +msgid "which is empty" +msgstr "der ja leer ist," -#: lib/service/taskscheduler.class.php:216 #, fuzzy -msgid "based task." -msgstr "Basis-Task" +msgid "window" +msgstr "Windows" -#: lib/service/taskscheduler.class.php:224 -#, fuzzy -msgid "Unicaset" -msgstr "Unicast" +msgid "wipe out all of your images stored on" +msgstr "alle Images auf sämtlichen" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" -msgstr "Task gefunden" +msgid "with modules and config" +msgstr "mit Modulen und Konfigurationen" -#: lib/service/taskscheduler.class.php:252 #, fuzzy -msgid "Task started for" -msgstr "Tasks gestartet um" +msgid "with the host" +msgstr "Schlüssel beim Host." -#: lib/service/taskscheduler.class.php:275 #, fuzzy -msgid "Power Management Task run time" -msgstr "Power Management" - -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." -msgstr "" +msgid "with this group" +msgstr "mit dieser Gruppe" -#: lib/service/taskscheduler.class.php:294 #, fuzzy -msgid "Task sent to" -msgstr "Task gesendet an" +msgid "would you like to install it now" +msgstr "möchten Sie es jetzt installieren?" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" -msgstr "Navigation umschalten" +msgid "you set the bandwidth field on that node to 1000" +msgstr "setzen Sie die Bandbreite auf diesem Knoten auf 1000." -#: management/other/index.php:167 #, fuzzy -msgid "Credits" -msgstr "Credits" +#~ msgid "A hostext already exists with this name!" +#~ msgstr "Ein Host mit diesem Namen ist bereits vorhanden!" -#: management/other/index.php:170 #, fuzzy -msgid "FOG Client" -msgstr "FOG Client" +#~ msgid "Add ou failed!" +#~ msgstr "Gruppe hinzufügen fehlgeschlagen!" + +#~ msgid "Could not read temp file" +#~ msgstr "Temporäre Datei konnte nicht gelesen werden." -#: service/hostnameloop.php:36 #, fuzzy -msgid "A host with that name already exists" -msgstr "Ein Host mit diesem Namen ist bereits vorhanden." +#~ msgid "Create New Host Ext" +#~ msgstr "Neue %s erstellen" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" -msgstr "Die zugeordnete Primär-MAC lautet" +#~ msgid "DO NOT USE THIS IF YOU ARE USING THE NEW CLIENT" +#~ msgstr "BENUTZEN SIE DIESE DATEI NICHT, WENN SIE EINEN NEUEN CLIENT NUTZEN!" -#: service/inventory.php:90 #, fuzzy -msgid "Failed to create inventory for this host" -msgstr "Erstellen eines Inventars für diesen Host fehlgeschlagen!" +#~ msgid "Export Host Exts" +#~ msgstr "Hosts exportieren" -#: service/grouplisting.php:28 #, fuzzy -msgid "There are no groups on this server" -msgstr "Es gibt keine Gruppen auf diesem Server." +#~ msgid "External Links" +#~ msgstr "zusätzliche Angaben" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" -msgstr "Kann vom Browser nicht angezeigt werden" +#~ msgid "FOG Snapin Log" +#~ msgstr "FOG Snapin-Log" -#: service/hostinfo.php:31 -#, fuzzy -msgid "Invalid tasking!" -msgstr "Ungültiger Vorgang" +#~ msgid "Hello FOG Client" +#~ msgstr "Hallo FOG Client" -#: service/imagelisting.php:28 #, fuzzy -msgid "There are no images on this server" -msgstr "Es gibt keine Images auf diesem Server." +#~ msgid "Host Ext" +#~ msgstr "Hostliste" -#: service/locationlisting.php:28 #, fuzzy -msgid "There are no locations on this server" -msgstr "Es gibt keine Standorte auf diesem Server." - -#: service/progress.php:39 -msgid "Invalid image" -msgstr "Ungültiges Image" +#~ msgid "Host Ext Name" +#~ msgstr "Host-Name" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "Ungültige Einheit übergeben" +#, fuzzy +#~ msgid "Host Ext URL" +#~ msgstr "Host AD OU" -#: service/Test.php:217 #, fuzzy -msgid "Invalid Unit" -msgstr "Ungültige Einheit" +#~ msgid "Host Ext Variable" +#~ msgstr "Host-Update fehlgeschlagen" -#: service/av.php:25 -msgid "Invalid operational mode" -msgstr "Ungültiger Betriebsmodus" +#, fuzzy +#~ msgid "Hostext Create Fail" +#~ msgstr "Host erstellen fehlgeschlagen" -#: service/av.php:38 -msgid "Accepted" -msgstr "Akzeptiert" +#, fuzzy +#~ msgid "Hostext Create Success" +#~ msgstr "Host erfolgreich erstellt" -#: service/snapinlisting.php:28 #, fuzzy -msgid "There are no snapins on this server" -msgstr "Es gibt keine Snapins auf diesem Server." +#~ msgid "Hostext Update Fail" +#~ msgstr "Host-Update fehlgeschlagen" -#: status/bandwidth.php:40 #, fuzzy -msgid "Device must be a string" -msgstr "Gerätename muss eine Zeichenfolge sein." +#~ msgid "Hostext Update Success" +#~ msgstr "Host Aktualisierung erfolgreich!" -#: status/getfiles.php:27 #, fuzzy -msgid "Invalid" -msgstr "Ungültig" +#~ msgid "Hostext added!" +#~ msgstr "Host hinzugefügt" -#: status/logtoview.php:31 status/logtoview.php:130 #, fuzzy -msgid "Invalid IP" -msgstr "Ungültige IP" +#~ msgid "Hostext update failed!" +#~ msgstr "Drucker-Update fehlgeschlagen!" -#: status/logtoview.php:37 status/logtoview.php:136 #, fuzzy -msgid "Invalid File" -msgstr "Ungültige Datei" +#~ msgid "Hostext updated!" +#~ msgstr "Host aktualisiert!" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "Ungültiger Ordner" +#, fuzzy +#~ msgid "Import Host Exts" +#~ msgstr "Hosts importieren" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "Datei kann zum Lesen nicht geöffnet werden" +#, fuzzy +#~ msgid "Invalid Unit" +#~ msgstr "Ungültige Einheit" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "IP ist inkorrekt" +#~ msgid "Invalid unit passed" +#~ msgstr "Ungültige Einheit übergeben" -#~ msgid "Hello FOG Client" -#~ msgstr "Hallo FOG Client" +#~ msgid "Inventory Desc" +#~ msgstr "Inventarbeschreibung" -#~ msgid "FOG Snapin Log" -#~ msgstr "FOG Snapin-Log" +#~ msgid "It is recommended to not use this file but" +#~ msgstr "Es wird empfohlen, diese Datei nicht zu nutzen, " #~ msgid "Legacy Client and Utilities" #~ msgstr "Legacy Client und Dienstprogramme" -#~ msgid "The old client and fogcrypt, deprecated" -#~ msgstr "Der alte Client und FOG Krypto, veraltet" +#~ msgid "Legacy FOG Client" +#~ msgstr "Legacy FOG Client" + +#~ msgid "Replicating ssl less private key" +#~ msgstr "Replizieren von SSL-freiem privatem Schlüssel" #~ msgid "The legacy client and fog crypt utility for those" #~ msgstr "Der Legacy Client und FOG Krypto Dienstprogramm für diejenigen," -#~ msgid "that are not yet using the new client" -#~ msgstr "die nicht die neuen Clients nutzen." +#~ msgid "The old client and fogcrypt, deprecated" +#~ msgstr "Der alte Client und FOG Krypto, veraltet" -#~ msgid "We highly recommend you make the switch for more" -#~ msgstr "Wir empfehlen dringend, den Umstieg auf" +#~ msgid "This client is not being developed any further so any issues" +#~ msgstr "Dieser Client wird nicht weiter entwickelt, so dass" -#~ msgid "security and faster client communication and management" -#~ msgstr "mehr Sicherheit und schnellere Clientkommunikation und -management" +#, fuzzy +#~ msgid "This file is used to encrypt the AD Password" +#~ msgstr "Diese Datei wird verwendet, um das AD-Passwort zu verschlüsseln." #~ msgid "This is the file to install the legacy client" #~ msgstr "Diese Datei installiert den Legacy Client" -#~ msgid "It is recommended to not use this file but" -#~ msgstr "Es wird empfohlen, diese Datei nicht zu nutzen, " - -#~ msgid "you may do as you please" -#~ msgstr "aber Sie können tun, was Sie möchten." +#~ msgid "Unable to determine plugin details" +#~ msgstr "Plugin-Details können nicht ermittelt werden" -#~ msgid "This client is not being developed any further so any issues" -#~ msgstr "Dieser Client wird nicht weiter entwickelt, so dass" +#~ msgid "We highly recommend you make the switch for more" +#~ msgstr "Wir empfehlen dringend, den Umstieg auf" -#~ msgid "you may find" -#~ msgstr "mögliche Probleme oder Features, " +#, fuzzy +#~ msgid "file to" +#~ msgstr "Datei nach" #~ msgid "or features you may request" #~ msgstr "die Sie gerne hätten," -#~ msgid "will not be added to this client" -#~ msgstr "nicht mehr berücksichtigt werden können." - -#~ msgid "Legacy FOG Client" -#~ msgstr "Legacy FOG Client" +#~ msgid "security and faster client communication and management" +#~ msgstr "mehr Sicherheit und schnellere Clientkommunikation und -management" -#, fuzzy -#~ msgid "This file is used to encrypt the AD Password" -#~ msgstr "Diese Datei wird verwendet, um das AD-Passwort zu verschlüsseln." +#~ msgid "that are not yet using the new client" +#~ msgstr "die nicht die neuen Clients nutzen." -#~ msgid "DO NOT USE THIS IF YOU ARE USING THE NEW CLIENT" -#~ msgstr "BENUTZEN SIE DIESE DATEI NICHT, WENN SIE EINEN NEUEN CLIENT NUTZEN!" +#~ msgid "will not be added to this client" +#~ msgstr "nicht mehr berücksichtigt werden können." -#~ msgid "Could not read temp file" -#~ msgstr "Temporäre Datei konnte nicht gelesen werden." +#~ msgid "you may do as you please" +#~ msgstr "aber Sie können tun, was Sie möchten." -#, fuzzy -#~ msgid "file to" -#~ msgstr "Datei nach" +#~ msgid "you may find" +#~ msgstr "mögliche Probleme oder Features, " diff --git a/packages/web/management/languages/en_US.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/en_US.UTF-8/LC_MESSAGES/messages.po index 1e3094d2f5..d09f9aee3d 100644 --- a/packages/web/management/languages/en_US.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/en_US.UTF-8/LC_MESSAGES/messages.po @@ -17,11119 +17,7900 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: commons/text.php:22 -msgid "Display" -msgstr "Display" - -#: commons/text.php:23 -msgid "Auto" -msgstr "Auto" - -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "Model" - -#: commons/text.php:25 -msgid "Inventory" -msgstr "Inventory" - -#: commons/text.php:26 -msgid "O/S" -msgstr "O/S" - -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "Edit" - -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "Delete" - -#: commons/text.php:29 -msgid "Deleted" -msgstr "Deleted" - -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "All" - -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "Add" - -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "Search" - -#: commons/text.php:33 -msgid "Storage" -msgstr "Storage" - -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "Snapin" - -#: commons/text.php:35 -msgid "Snapins" -msgstr "Snapins" - -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "Remove" - -#: commons/text.php:37 -msgid "Removed" -msgstr "Removed" - -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "Enabled" - -#: commons/text.php:39 -msgid "Management" -msgstr "Management" - -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "Update" - -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "Image" - -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "Images" - -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "Node" - -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "Group" - -#: commons/text.php:45 -msgid "Groups" -msgstr "Groups" - -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "Logout" - -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "Host" - -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "Hosts" - -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "Bandwidth" - -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "Replication Bandwidth" - -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" +msgid " * Image replication is globally disabled" msgstr "" -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" -msgstr "" +#, fuzzy +msgid " * Image size is globally disabled" +msgstr "Snapin with that name already exists" -#: commons/text.php:55 -msgid "it's transmitting to" +msgid " * Multicast service is globally disabled" msgstr "" -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" +msgid " * Ping hosts is globally disabled" msgstr "" -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "" +#, fuzzy +msgid " * Snapin hash is globally disabled" +msgstr "Snapin with that name already exists" -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" +msgid " * Snapin replication is globally disabled" msgstr "" -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" +msgid " * Task Scheduler is globally disabled" msgstr "" -#: commons/text.php:61 -msgid "Transmit" -msgstr "Transmit" - -#: commons/text.php:62 -msgid "Receive" -msgstr "Receive" - -#: commons/text.php:63 -msgid "New" -msgstr "New" - -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "User" - -#: commons/text.php:65 -msgid "Users" -msgstr "Users" - -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" +#, fuzzy +msgid " Name" msgstr "Name" -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "Members" - -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "Advanced" - -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" -msgstr "Hostname" - -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" - -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "MAC" - -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" -msgstr "Version" - -#: commons/text.php:73 -msgid "Text" -msgstr "Text" - -#: commons/text.php:74 -msgid "Graphical" -msgstr "Graphical" - -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "File" - -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "Path" - -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "Shutdown" - -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "Reboot" - -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "Time" - -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "Action" - -#: commons/text.php:81 -msgid "Printer" -msgstr "Printer" - -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 #, fuzzy -msgid "Power Management" -msgstr "User Management" - -#: commons/text.php:83 -msgid "Client" -msgstr "Client" - -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "Task" - -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "Username" - -#: commons/text.php:86 -msgid "Service" -msgstr "Service" - -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "General" - -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "Mode" - -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "Date" - -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "Clear" - -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "Description" - -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "here" - -#: commons/text.php:93 -msgid "NOT" -msgstr "NOT" - -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "or" - -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "Row" - -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "Errors" - -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "Error" - -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "Export" +msgid " No open slots " +msgstr "No open slots" -#: commons/text.php:99 -msgid "Schedule" -msgstr "Schedule" +msgid " Task state has been updated, now the task is queued!" +msgstr "" -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "Deploy" +msgid " | This is not the master node" +msgstr " | This is not the master node" -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 #, fuzzy -msgid "Capture" -msgstr "Create" - -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "Multicast" - -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "Status" - -#: commons/text.php:104 -msgid "Actions" -msgstr "Actions" - -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "State" - -#: commons/text.php:107 -msgid "Kill" -msgstr "Kill" - -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "Kernel" - -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "Location" - -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "N/A" - -#: commons/text.php:111 -msgid "Home" -msgstr "Home" - -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "Report" - -#: commons/text.php:113 -msgid "Reports" -msgstr "Reports" - -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "Login" - -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "Queued" - -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "Complete" - -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "Unknown" - -#: commons/text.php:118 -msgid "Force" -msgstr "Force" - -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "Type" - -#: commons/text.php:120 -msgid "Settings" -msgstr "Settings" - -#: commons/text.php:121 -msgid "FOG" -msgstr "FOG" - -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 -msgid "Active" -msgstr "Active" - -#: commons/text.php:123 -msgid "Printers" -msgstr "Printers" - -#: commons/text.php:124 -msgid "Directory" -msgstr "Directory" - -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 -msgid "Active Directory" -msgstr "Active Directory" - -#: commons/text.php:126 -msgid "Virus History" -msgstr "Virus History" - -#: commons/text.php:127 -msgid "Login History" -msgstr "Login History" - -#: commons/text.php:128 -msgid "Image History" -msgstr "Image History" +msgid " | Unable to find image path" +msgstr "Failed to destroy Storage Node" -#: commons/text.php:129 -msgid "Snapin History" -msgstr "Snapin History" +msgid "$_POST variable is empty, check apache error log." +msgstr "$_POST variable is empty, check apache error log." -#: commons/text.php:130 -msgid "Configuration" -msgstr "Configuration" +#, fuzzy, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %s is not valid" -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "Plugin" +#, php-format +msgid "%s ID %s is not valid" +msgstr "%s ID %s is not valid" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "Locations" +#, php-format +msgid "%s Manager" +msgstr "%s Manager" -#: commons/text.php:134 -msgid "License" -msgstr "License" +#, php-format +msgid "%s Menu" +msgstr "%s Menu" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "Kernel Update" +#, php-format +msgid "%s is required" +msgstr "%s is required" -#: commons/text.php:136 #, fuzzy -msgid "iPXE General Configuration" -msgstr "iPXE Menu Configuration" +msgid "1 Hour" +msgstr "1 hour" -#: commons/text.php:137 -msgid "Client Updater" -msgstr "Client Updater" +msgid "10 Minutes" +msgstr "10 Minutes" -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "Hostname Changer" +msgid "2 Minutes" +msgstr "2 Minutes" -#: commons/text.php:139 -msgid "Host Registration" -msgstr "Host Registration" +msgid "30 Minutes" +msgstr "30 Minutes" -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "Snapin Client" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "" -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "Task Reboot" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "" -#: commons/text.php:142 -msgid "User Cleanup" -msgstr "User Cleanup" +#, fuzzy +msgid "

Version 1.5.5" +msgstr "Version" -#: commons/text.php:143 -msgid "User Tracker" -msgstr "User Tracker" +#, fuzzy +msgid "A LDAP setup already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:144 -#, php-format -msgid "%s Manager" -msgstr "%s Manager" +#, fuzzy +msgid "A Windows Key already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:145 -msgid "Green FOG" -msgstr "Green FOG" +#, fuzzy +msgid "A broadcast address is required" +msgstr "MAC Address is required" -#: commons/text.php:146 -msgid "Directory Cleaner" -msgstr "Directory Cleaner" +#, fuzzy +msgid "A broadcast already exists with this name" +msgstr "An image already exists with this name!" -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "MAC Address List" +#, fuzzy +msgid "A broadcast already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "FOG Settings" +msgid "A description needs to be set" +msgstr "A description needs to be set" -#: commons/text.php:149 -msgid "Server Shell" -msgstr "Server Shell" +#, fuzzy +msgid "A file" +msgstr "File" -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "Log Viewer" +#, fuzzy +msgid "A group already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "Configuration Save" +#, fuzzy +msgid "A group is required for a location" +msgstr "A Storage Group is required!" -#: commons/text.php:152 -msgid "FOG Sourceforge Page" -msgstr "FOG Sourceforge Page" +#, fuzzy +msgid "A group is required!" +msgstr "An image name is required!" -#: commons/text.php:153 -msgid "FOG Home Page" -msgstr "FOG Home Page" +#, fuzzy +msgid "A group must be selected." +msgstr "Event must be a string" -#: commons/text.php:154 -msgid "New Search" -msgstr "New Search" +#, fuzzy +msgid "A group name is required!" +msgstr "An image name is required!" -#: commons/text.php:155 -#, php-format -msgid "List All %s" -msgstr "List All %s" +#, fuzzy +msgid "A host already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:156 -#, php-format -msgid "Create New %s" -msgstr "Create New %s" +#, fuzzy +msgid "A host name is required!" +msgstr "An image name is required!" -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "Tasks" +#, fuzzy +msgid "A host with that name already exists" +msgstr "A hostname with that name already exists." -#: commons/text.php:158 #, fuzzy -msgid "Client Settings" -msgstr "Settings" +msgid "A host with this mac already exists with name" +msgstr "A host with this MAC already exists with Hostname: %s" + +msgid "A location with that name already exists." +msgstr "A location with that name already exists." -#: commons/text.php:159 #, fuzzy -msgid "Plugins" -msgstr "Plugin" +msgid "A mac address is required!" +msgstr "MAC Address is required" -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "Basic Tasks" +#, fuzzy +msgid "A name is required!" +msgstr "An image name is required!" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "Membership" +msgid "A name must be defined if using the \"name\" property" +msgstr "" -#: commons/text.php:162 -msgid "Image Association" -msgstr "Image Association" +#, fuzzy +msgid "A name must be set" +msgstr "Event must be a string" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" -msgstr "%s Menu" +#, fuzzy +msgid "A password is required!" +msgstr "%s is required" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "Primary Group" +#, fuzzy +msgid "A printer already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "All Storage Nodes" +#, fuzzy +msgid "A printer name is required!" +msgstr "An image name is required!" -#: commons/text.php:166 -msgid "Add Storage Node" -msgstr "Add Storage Node" +#, fuzzy +msgid "A role already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "All Storage Groups" +#, fuzzy +msgid "A rule already exists with this name." +msgstr "An image already exists with this name!" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "Add Storage Group" +#, fuzzy +msgid "A site alread exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "Active Tasks" +#, fuzzy +msgid "A site already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "Active Multicast Tasks" +#, fuzzy +msgid "A snapin already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "Active Snapin Tasks" +#, fuzzy +msgid "A snapin name is required!" +msgstr "An image name is required!" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "Scheduled Tasks" +#, fuzzy +msgid "A subnet group already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "Installed Plugins" +msgid "A subnet group is already using this group." +msgstr "" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "Install Plugins" +#, fuzzy +msgid "A subnetgroup already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "Activate Plugins" +msgid "A task already exists for this host at the scheduled tasking" +msgstr "A task already exists for this host at the scheduled tasking" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "Export Configuration" +#, fuzzy +msgid "A task state already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "Import Configuration" +#, fuzzy +msgid "A task type already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "Open Source Computer Cloning Solution" +#, fuzzy +msgid "A user already exists with this name" +msgstr "An image already exists with this name!" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "Invalid MAC Address!" +#, fuzzy +msgid "A user name is required!" +msgstr "An image name is required!" -#: commons/text.php:180 #, fuzzy -msgid "iPXE Menu Item Settings" -msgstr "Settings" +msgid "A username already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:181 -msgid "iPXE Menu Customization" -msgstr "iPXE Menu Customization" +msgid "A valid database connection could not be made" +msgstr "" + +msgid "AD Domain" +msgstr "AD Domain" + +msgid "AD Join" +msgstr "AD Join" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" -msgstr "iPXE New Menu Entry" +msgid "AD OU" +msgstr "AD OU" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "Save Changes" +#, fuzzy +msgid "API Settings" +msgstr "Settings" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "Required database field is empty" +msgid "API?" +msgstr "" -#: commons/text.php:185 -msgid "No results found" -msgstr "No results found" +msgid "About FOG Reports" +msgstr "About FOG Reports" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s is required" +msgid "Accepted" +msgstr "Accepted" -#: commons/text.php:188 -msgid "Host Management" -msgstr "Host Management" +msgid "Access" +msgstr "Access" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "Storage Management" +msgid "Access Control Management" +msgstr "Access Control Management" -#: commons/text.php:190 -msgid "Task Management" -msgstr "Task Management" +#, fuzzy +msgid "Access Control Role General" +msgstr "All Access Controls" -#: commons/text.php:191 -msgid "Client Management" -msgstr "Client Management" +#, fuzzy +msgid "Access Control Rule" +msgstr "All Access Controls" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "Dashboard" +#, fuzzy +msgid "Access Control Rule General" +msgstr "All Access Controls" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "Service Configuration" +#, fuzzy +msgid "Access Control Rules" +msgstr "All Access Controls" -#: commons/text.php:194 -msgid "Report Management" -msgstr "Report Management" +#, fuzzy +msgid "Access Controls" +msgstr "All Access Controls" -#: commons/text.php:195 -msgid "Printer Management" -msgstr "Printer Management" +msgid "Access Token" +msgstr "Access Token" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "FOG Configuration" +msgid "Access level is still 0 or false" +msgstr "" -#: commons/text.php:197 -msgid "Group Management" -msgstr "Group Management" +msgid "Accessed By" +msgstr "Accessed By" -#: commons/text.php:198 -msgid "Image Management" -msgstr "Image Management" +msgid "Account already linked" +msgstr "Account already linked" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "User Management" +msgid "Account linked to FOG GUI at" +msgstr "Account linked to FOG GUI at" -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "Hardware Information" +#, fuzzy +msgid "Account name to reset" +msgstr "Event must be a string" -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "Snapin Management" +msgid "Account removed from FOG GUI at" +msgstr "Account removed from FOG GUI at" -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "Plugin Management" +#, fuzzy +msgid "Account successfully added!" +msgstr "successfully updated" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "Location Management" +msgid "Action" +msgstr "Action" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "Access Control Management" +msgid "Actions" +msgstr "Actions" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "FOG General Help" +msgid "Activate Plugins" +msgstr "Activate Plugins" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "Pending Hosts" +msgid "Active" +msgstr "Active" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "Last Deployed" +msgid "Active Directory" +msgstr "Active Directory" -#: commons/text.php:210 #, fuzzy -msgid "Last Captured" -msgstr "Host Created" +msgid "Active Multi-cast Tasks" +msgstr "Active Multicast Tasks" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "Deploy Method" +msgid "Active Multicast Tasks" +msgstr "Active Multicast Tasks" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "Image Type" +msgid "Active Snapin Tasks" +msgstr "Active Snapin Tasks" -#: commons/text.php:213 -msgid "Not Available" -msgstr "Not Available" +msgid "Active Tasks" +msgstr "Active Tasks" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "Export Hosts" +msgid "Add" +msgstr "Add" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "Import Hosts" +msgid "Add Directory" +msgstr "Add Directory" -#: commons/text.php:216 -msgid "Export Users" -msgstr "Export Users" +msgid "Add Event" +msgstr "Add Event" -#: commons/text.php:217 -msgid "Import Users" -msgstr "Import Users" +#, fuzzy +msgid "Add Hosts" +msgstr "All Hosts" -#: commons/text.php:218 -msgid "Export Images" -msgstr "Export Images" +#, fuzzy +msgid "Add LDAP server failed!" +msgstr "Add snapin failed!" -#: commons/text.php:219 -msgid "Import Images" -msgstr "Import Images" +msgid "Add MAC" +msgstr "Add MAC" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "Export Groups" +#, fuzzy +msgid "Add New Printer" +msgstr "Printer" -#: commons/text.php:221 -msgid "Import Groups" -msgstr "Import Groups" +#, fuzzy +msgid "Add Printers" +msgstr "Printer" -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "Export Snapins" +#, fuzzy +msgid "Add Pushbullet Account" +msgstr "Pushbullet Accounts" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "Import Snapins" +#, fuzzy +msgid "Add Rules" +msgstr "Add User" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "Export Printers" +#, fuzzy +msgid "Add Slack Account" +msgstr "Slack Accounts" -#: commons/text.php:225 -msgid "Import Printers" -msgstr "Import Printers" +#, fuzzy +msgid "Add Snapins" +msgstr "Add Snapin(s)" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" -msgstr "Equipment Loan" +msgid "Add Storage Group" +msgstr "Add Storage Group" -#: commons/text.php:227 -msgid "Host List" -msgstr "Host List" +#, fuzzy +msgid "Add Storage Groups" +msgstr "Add Storage Group" -#: commons/text.php:228 -msgid "Imaging Log" -msgstr "Imaging Log" +msgid "Add Storage Node" +msgstr "Add Storage Node" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" -msgstr "Pending MACs" +#, fuzzy +msgid "Add Subnetgroup failed!" +msgstr "Add snapin failed!" -#: commons/text.php:230 -msgid "Snapin Log" -msgstr "Snapin Log" +msgid "Add User" +msgstr "Add User" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "Upload Reports" +#, fuzzy +msgid "Add Users" +msgstr "Add User" -#: commons/text.php:233 -msgid "Main Menu" -msgstr "Main Menu" +#, fuzzy +msgid "Add Windows Key failed!" +msgstr "Add snapin failed!" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "Invalid Login" +msgid "Add any custom text you would like" +msgstr "" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "Not allowed here" +#, fuzzy +msgid "Add broadcast failed!" +msgstr "Add snapin failed!" -#: commons/text.php:237 -msgid "Management Login" -msgstr "Management Login" +#, fuzzy +msgid "Add failed" +msgstr "Add snapin failed!" -#: commons/text.php:238 -msgid "Password" -msgstr "Password" +#, fuzzy +msgid "Add group failed!" +msgstr "Add snapin failed!" -#: commons/text.php:239 -msgid "Estimated FOG Sites" -msgstr "Estimated FOG Sites" +#, fuzzy +msgid "Add host failed!" +msgstr "Add snapin failed!" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "Latest Version" +#, fuzzy +msgid "Add image failed!" +msgstr "Add snapin failed!" -#: commons/text.php:241 #, fuzzy -msgid "Latest Development Version" -msgstr "Latest Version" +msgid "Add location failed!" +msgstr "Add snapin failed!" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "Image is protected and cannot be deleted" +#, fuzzy, php-format +msgid "Add new role" +msgstr "Add new user account" + +#, fuzzy, php-format +msgid "Add new rule" +msgstr "Add new user account" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "Snapin is protected and cannot be deleted" +#, fuzzy +msgid "Add printer failed!" +msgstr "Add snapin failed!" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "No master nodes are enabled to delete this image" +#, fuzzy +msgid "Add role failed!" +msgstr "Add snapin failed!" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "Failed to delete image files" +#, fuzzy +msgid "Add rule failed!" +msgstr "Add snapin failed!" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "Failed to delete file" +#, fuzzy +msgid "Add selected hosts" +msgstr "Remove selected printers" -#: commons/text.php:249 -msgid "Not Registered Hosts" -msgstr "Not Registered Hosts" +#, fuzzy +msgid "Add selected images" +msgstr "Remove selected printers" -#: commons/text.php:250 -msgid "Registered Hosts" -msgstr "Registered Hosts" +#, fuzzy +msgid "Add selected printers" +msgstr "Remove selected printers" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "All Hosts" +#, fuzzy +msgid "Add selected rules" +msgstr "Remove selected printers" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "Debug Options" +#, fuzzy +msgid "Add selected snapins" +msgstr "Remove selected snapins" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "Advanced Options" +#, fuzzy +msgid "Add selected storage groups" +msgstr "Remove selected snapins" -#: commons/text.php:254 -msgid "Advanced Login Required" -msgstr "Advanced Login Required" +#, fuzzy +msgid "Add selected users" +msgstr "Remove selected printers" -#: commons/text.php:255 -msgid "Pending Registered Hosts" -msgstr "Pending Registered Hosts" +#, fuzzy +msgid "Add site failed!" +msgstr "Add snapin failed!" -#: commons/text.php:257 -msgid "n/a" -msgstr "n/a" +msgid "Add snapin failed!" +msgstr "Add snapin failed!" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "Directory Already Exists" +#, fuzzy +msgid "Add storage node failed!" +msgstr "Add snapin failed!" -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "Time Already Exists" +#, fuzzy +msgid "Add task state failed!" +msgstr "Add snapin failed!" -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "User Already Exists" +#, fuzzy +msgid "Add task type failed!" +msgstr "Add snapin failed!" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "No Active Snapin Jobs Found For Host" +msgid "Add to group" +msgstr "Add to group" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "Failed to create task" +#, fuzzy +msgid "Add user failed!" +msgstr "Add snapin failed!" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "Host is already a member of an active task" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" +msgstr "Adding FOGPage: %s, Node: %s" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "Host is not valid" +msgid "Adding Key" +msgstr "Adding Key" -#: commons/text.php:267 -#, fuzzy -msgid "Group is not valid" -msgstr "Group is Invalid" +msgid "Additional Icon elements" +msgstr "Additional Icon elements" -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "Task Type is not valid" +msgid "Additional MACs" +msgstr "Additional MACs" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "Image is not valid" +#, fuzzy +msgid "Admin Group" +msgstr "Modify Group" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "The image storage group assigned is not valid" +msgid "Advanced" +msgstr "Advanced" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "There are no snapins associated with this host" +msgid "Advanced Actions" +msgstr "Advanced Actions" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Snapins Are already deployed to this host" +msgid "Advanced Login Required" +msgstr "Advanced Login Required" -#: commons/text.php:275 -#, fuzzy -msgid "Could not find a Storage Node is" -msgstr "Could not find temp filename" +msgid "Advanced Menu Login" +msgstr "Advanced Menu Login" -#: commons/text.php:276 #, fuzzy -msgid "there one enabled within this Storage Group" -msgstr "" -"Could not find a Storage Node Is there one enabled within this Storage Group" - -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" -msgstr "The storage groups associated storage node is not valid" +msgid "Advanced Menu settings" +msgstr "Advanced Settings" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "Scheduled date is in the past" +msgid "Advanced Options" +msgstr "Advanced Options" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "A task already exists for this host at the scheduled tasking" +msgid "Advanced Settings" +msgstr "Advanced Settings" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "Minute value is not valid" +#, fuzzy +msgid "Advanced menu command" +msgstr "Advanced Menu Login" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "Hour value is not valid" +#, fuzzy +msgid "After image Action" +msgstr "Image Association" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "Day of month value is not valid" +msgid "Ago must be boolean" +msgstr "" -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "Month value is not valid" +msgid "All" +msgstr "All" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "Day of week value is not valid" +msgid "All Groups" +msgstr "All Groups" -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "No Host found for MAC Address" +msgid "All Hosts" +msgstr "All Hosts" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "Please select an option" +#, fuzzy +msgid "All Pending MACs approved" +msgstr "All Pending MACs approved." -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" -msgstr "Error multiple hosts returned for list of mac addresses" +msgid "All Pending MACs approved." +msgstr "All Pending MACs approved." -#: commons/text.php:302 -msgid "Session timeout" -msgstr "Session timeout" +msgid "All Storage Groups" +msgstr "All Storage Groups" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "Storage Node" +msgid "All Storage Nodes" +msgstr "All Storage Nodes" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "Storage Group" +msgid "All files synced for this item." +msgstr "All files synced for this item." -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "Graph Enabled" +msgid "All methods of binding have failed" +msgstr "" -#: commons/text.php:307 -msgid "Master Node" -msgstr "Master Node" +#, fuzzy +msgid "All snapins" +msgstr "All Snap-ins" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "Is Master Node" +msgid "Allows editing/creating of Task States fog currently has." +msgstr "" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "Storage Node Name" +msgid "Allows editing/creating of Task Types fog currently has." +msgstr "" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "Storage Node Description" +#, fuzzy +msgid "Already created" +msgstr "Already registered as" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" -msgstr "IP Address" +msgid "Already registered as" +msgstr "Already registered as" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "Max Clients" +#, fuzzy +msgid "Also confirm that the database is indeed running" +msgstr "Check that database is running" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" -msgstr "Image Path" +msgid "Although there are multiple levels already" +msgstr "" -#: commons/text.php:314 -msgid "FTP Path" -msgstr "FTP Path" +msgid "An image already exists with this name!" +msgstr "An image already exists with this name!" -#: commons/text.php:315 -msgid "Snapin Path" -msgstr "Snapin Path" +msgid "Annually" +msgstr "Annually" -#: commons/text.php:316 -msgid "SSL Path" -msgstr "SSL Path" +#, fuzzy +msgid "Applications" +msgstr "Actions" -#: commons/text.php:317 -msgid "Interface" -msgstr "Interface" +#, fuzzy +msgid "Approve" +msgstr "Host approved" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "Is Enabled" +#, fuzzy +msgid "Approve All Pending MACs for All Hosts" +msgstr "Approve All Pending MACs for all hosts" -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "Is Graph Enabled" +#, fuzzy +msgid "Approve Host" +msgstr "Approve this host?" -#: commons/text.php:320 -msgid "On Dashboard" -msgstr "On Dashboard" +#, fuzzy +msgid "Approve MAC" +msgstr "Approve All MACs?" -#: commons/text.php:321 -msgid "Management Username" -msgstr "Management Username" +#, fuzzy +msgid "Approve Selected MACs" +msgstr "Approve selected Hosts" -#: commons/text.php:322 -msgid "Management Password" -msgstr "Management Password" +#, fuzzy +msgid "Approve Success" +msgstr "Approve this host?" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "" +#, fuzzy +msgid "Approve all pending macs" +msgstr "Approve selected pending macs" -#: commons/text.php:326 #, fuzzy -msgid "This setting" -msgstr "This setting defines " +msgid "Approve all pending? " +msgstr "Approve selected pending macs" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "" +#, fuzzy +msgid "Approve selected hosts" +msgstr "Approve selected Hosts" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" -msgstr "" +msgid "Approve this host?" +msgstr "Approve this host?" -#: commons/text.php:329 #, fuzzy -msgid "all current storage nodes" -msgstr "Invalid storage node" +msgid "Approved" +msgstr "Host approved" -#: commons/text.php:330 #, fuzzy -msgid "The 'Is Master Node' setting defines which" -msgstr "This setting defines " +msgid "Are you sure you wish to" +msgstr "Are you sure you wish to remove these items" -#: commons/text.php:331 -msgid "node is the distributor of the images" +msgid "Array" msgstr "" -#: commons/text.php:332 -msgid "If you add a blank node" -msgstr "" +msgid "Assigned Image" +msgstr "Assigned Image" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" -msgstr "" +msgid "Assignment saved successfully" +msgstr "Assignment saved successfully" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "" +#, fuzzy +msgid "Associate rule failed!" +msgstr "Add snapin failed!" -#: commons/text.php:335 -msgid "it will distribute its store" -msgstr "" +#, fuzzy +msgid "Associated Sites" +msgstr "Estimated FOG Sites" -#: commons/text.php:336 -msgid "which is empty" +msgid "Associates the files on nodes" msgstr "" -#: commons/text.php:337 #, fuzzy -msgid "to all nodes in the group" -msgstr "Delete all hosts within group" +msgid "Attempting to perform" +msgstr "Attempting to ping" -#: commons/text.php:343 -msgid "Storage Node already exists" -msgstr "Storage Node already exists" +msgid "Attempting to ping" +msgstr "Attempting to ping" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "Storage Node IP" +msgid "Auto" +msgstr "Auto" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "Storage Node Max Clients" +msgid "Auto Log Out Time (in minutes)" +msgstr "Auto Log Out Time (in minutes)" -#: commons/text.php:354 -msgid "Storage Node Interface" -msgstr "Storage Node Interface" +#, fuzzy +msgid "Available Snapins" +msgstr "All Snap-ins" -#: commons/text.php:358 -msgid "Storage Node Username" -msgstr "Storage Node Username" +msgid "BIOS Date" +msgstr "BIOS Date" -#: commons/text.php:362 -msgid "Storage Node Password" -msgstr "Storage Node Password" +msgid "BIOS Vendor" +msgstr "BIOS Vendor" -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "Storage Node Created" +msgid "BIOS Version" +msgstr "BIOS Version" -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "Storage Node Updated" +msgid "Bandwidth" +msgstr "Bandwidth" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "Database Update Failed" +msgid "Bandwidth should be numeric and greater than 0" +msgstr "Bandwidth should be numeric and greater than 0" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "Please confirm you want to delete" +msgid "Barcode Numbers" +msgstr "Barcode Numbers" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "Failed to destroy Storage Node" +msgid "Base Only" +msgstr "" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "Storage Node deleted" +#, fuzzy +msgid "Basic Settings" +msgstr "Settings" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" -msgstr "Storage Group Name" +msgid "Basic Tasks" +msgstr "Basic Tasks" -#: commons/text.php:371 -msgid "Storage Group Description" -msgstr "Storage Group Description" +msgid "Bind DN" +msgstr "" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "Storage Group Already Exists" +#, fuzzy +msgid "Bind Password" +msgstr "Domain Password" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "Storage Group Created" +msgid "Bitrate" +msgstr "Bitrate" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "Storage Group Updated" +msgid "Blank for default" +msgstr "Blank for default" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "You must have at least one Storage Group" +#, fuzzy +msgid "Boot Exit settings" +msgstr "Auto Log Out Settings" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "Storage Group deleted" +msgid "Boot Key Sequence" +msgstr "Boot Key Sequence" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "Failed to destroy Storage Group" +#, fuzzy +msgid "Boot Options" +msgstr "Boot Options:" -#: commons/text.php:382 -msgid "Invalid Class" -msgstr "Invalid Class" +#, fuzzy +msgid "Broadcast Create Fail" +msgstr "Host create failed" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" -msgstr "Class is not extended from FOGPage" +#, fuzzy +msgid "Broadcast Create Success" +msgstr "Host Created" -#: commons/text.php:384 -msgid "Do not list on menu" -msgstr "Do not list on menu" +msgid "Broadcast IP" +msgstr "Broadcast IP" -#: commons/text.php:386 -msgid "Language" -msgstr "Language" +msgid "Broadcast Name" +msgstr "Broadcast Name" -#: commons/init.php:433 #, fuzzy -msgid "Missing one or more extensions." -msgstr "Missing Extensions" +msgid "Broadcast Update Fail" +msgstr "Broadcast Updated" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 #, fuzzy -msgid "No valid tasks found" -msgstr "No valid class sent" +msgid "Broadcast Update Success" +msgstr "Install / Update Successful!" -#: lib/client/snapinclient.class.php:306 #, fuzzy -msgid "Snapin is invalid" -msgstr "Snapin is not valid" +msgid "Broadcast added!" +msgstr "Broadcast Name" -#: lib/client/snapinclient.class.php:328 #, fuzzy -msgid "Snapin Task is invalid" -msgstr "Snapin is not valid" +msgid "Broadcast update failed!" +msgstr "Broadcast Updated" -#: lib/client/snapinclient.class.php:411 #, fuzzy -msgid "Invalid task id sent" -msgstr "Invalid task" +msgid "Broadcast updated!" +msgstr "Broadcast Updated" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" -msgstr "Invalid Snapin Tasking" +msgid "Browse" +msgstr "" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "Invalid Snapin" +msgid "CPU Cache" +msgstr "CPU Cache" -#: lib/client/snapinclient.class.php:500 -#, fuzzy -msgid "Invalid task id" -msgstr "Invalid task" +msgid "CPU Count" +msgstr "CPU Count" -#: lib/client/snapinclient.class.php:510 -#, fuzzy -msgid "Invalid Snapin Tasking object" -msgstr "Invalid Snapin Tasking" +msgid "CPU Manufacturer" +msgstr "CPU Manufacturer" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" -msgstr "Invalid Storage Group" +msgid "CPU Max Speed" +msgstr "CPU Max Speed" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "Invalid Storage Node" +msgid "CPU Model" +msgstr "CPU Model" -#: lib/client/snapinclient.class.php:587 -#, fuzzy -msgid "Cannot connect to ftp server" -msgstr "Cannot connect to database" +msgid "CPU Normal Speed" +msgstr "CPU Normal Speed" -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." -msgstr "Pending..." +msgid "CPU Speed" +msgstr "CPU Speed" -#: lib/client/snapinclient.class.php:628 -#, fuzzy -msgid "Could not read snapin file" -msgstr "Could not read tmp file." +msgid "CPU Type" +msgstr "CPU Type" -#: lib/client/usertrack.class.php:67 -#, fuzzy -msgid "Postfix requires an action of login" -msgstr "Postfix requires an action of login, logout, or start to operate" +msgid "CPU Version" +msgstr "CPU Version" -#: lib/client/usertrack.class.php:68 -#, fuzzy -msgid "logout" -msgstr "Logout" +msgid "CUPS Printer" +msgstr "CUPS Printer" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" +msgid "Call" msgstr "" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" -msgstr "Postfix requires an action of login, logout, or start to operate" +msgid "Can be a comma seperated list." +msgstr "" -#: lib/client/usertrack.class.php:139 -#, fuzzy -msgid "Replay from journal" -msgstr "Replay from journal: real insert time" +msgid "Can not redeclare route" +msgstr "" + +msgid "Cancelled due to new tasking." +msgstr "Cancelled due to new tasking." + +msgid "Cancelled task" +msgstr "Cancelled task" + +msgid "Cannot add Primary mac as additional mac" +msgstr "Cannot add Primary mac as additional mac" -#: lib/client/usertrack.class.php:140 #, fuzzy -msgid "real insert time" -msgstr "Replay from journal: real insert time" +msgid "Cannot add a pre-existing primary mac" +msgstr "Cannot add a pre-existing Primary MAC as a pending MAC" -#: lib/client/usertrack.class.php:142 #, fuzzy -msgid "Login time" -msgstr "Login" +msgid "Cannot bind to the LDAP server" +msgstr "Cannot connect to database" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "" +msgid "Cannot cancel tasks this way" +msgstr "Cannot cancel tasks this way" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "Pending Registration created by FOG_CLIENT" +msgid "Cannot change image when in tasking" +msgstr "" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 #, fuzzy -msgid "Too many MACs" -msgstr "Host Primary MAC" +msgid "Cannot connect to" +msgstr "Cannot connect to" -#: lib/client/registerclient.class.php:110 -#, fuzzy -msgid "Only allowed to have" -msgstr "You are only allowed to assign" +msgid "Cannot connect to database" +msgstr "Cannot connect to database" -#: lib/client/registerclient.class.php:112 #, fuzzy -msgid "additional macs" -msgstr "Additional MACs" - -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "Needs action string of ask, get, or list" +msgid "Cannot connect to ftp server" +msgstr "Cannot connect to database" -#: lib/client/updateclient.class.php:70 #, fuzzy -msgid "If action of ask or get" -msgstr "Needs action string of ask, get, or list" +msgid "Cannot create tasking as image is not enabled" +msgstr "Cannot set tasking as image is not enabled" + +msgid "Cannot set tasking as image is not enabled" +msgstr "Cannot set tasking as image is not enabled" -#: lib/client/updateclient.class.php:71 #, fuzzy -msgid "we need a file name in the request" -msgstr "If action of ask or get, we need a file name in the request" +msgid "Cannot set tasking to invalid hosts" +msgstr "Cannot set taskings to pending or invalid items" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 #, fuzzy -msgid "Invalid data found" -msgstr "Invalid data" +msgid "Cannot set tasking to pending hosts" +msgstr "Cannot set taskings to pending or invalid items" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" +msgid "Cannot view from browser" msgstr "" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" -msgstr "Failed to connect" +msgid "Capone Deploy" +msgstr "Capone Deploy" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" -msgstr "Failed to" +#, fuzzy +msgid "Capture" +msgstr "Create" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "No query sent" +#, fuzzy +msgid "Captured" +msgstr "Created" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" -msgstr "No database to work off" +#, fuzzy +msgid "Change password" +msgstr "Management Password" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "No query result, use query() first" +msgid "Channel call is invalid" +msgstr "Channel call is invalid" -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" -msgstr "No valid class sent" +msgid "Chassis Asset" +msgstr "Chassis Asset" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" -msgstr "Row number not set properly" +msgid "Chassis Manufacturer" +msgstr "Chassis Manufacturer" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" -msgstr "No data returned" +msgid "Chassis Serial" +msgstr "Chassis Serial" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" -msgstr "Message" +msgid "Chassis Version" +msgstr "Chassis Version" -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" -msgstr "Check that database is running" +msgid "Chat is also available on the forums for more realtime help" +msgstr "" -#: lib/db/pdodb.class.php:114 #, fuzzy -msgid "SQL Error" -msgstr "SQL Error:" - -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" -msgstr "Error Message" +msgid "Check here to see what hosts can be added" +msgstr "Check here to see what printers can be added" -#: lib/db/pdodb.class.php:208 #, fuzzy -msgid "No link established to the database" -msgstr "No connection to the database" +msgid "Check here to see what images can be added" +msgstr "Check here to see what printers can be added" -#: lib/db/pdodb.class.php:264 -#, fuzzy -msgid "No query passed" -msgstr "No query sent" +msgid "Check here to see what printers can be added" +msgstr "Check here to see what printers can be added" -#: lib/db/pdodb.class.php:290 #, fuzzy -msgid "no database to" -msgstr "No database to work off" - -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" -msgstr "No connection to the database" - -#: lib/db/pdodb.class.php:426 -msgid "Error Code" -msgstr "Error Code" - -#: lib/db/pdodb.class.php:430 -msgid "Debug" -msgstr "Debug" +msgid "Check here to see what rules can be added" +msgstr "Check here to see what printers can be added" -#: lib/db/pdodb.class.php:435 -msgid "Cannot connect to database" -msgstr "Cannot connect to database" +msgid "Check here to see what snapins can be added" +msgstr "Check here to see what snapins can be added" -#: lib/db/pdodb.class.php:449 #, fuzzy -msgid "Database connection unavailable" -msgstr "Database update failed" +msgid "Check here to see what storage groups can be added" +msgstr "Check here to see what snapins can be added" -#: lib/fog/bootmenu.class.php:1498 #, fuzzy -msgid "No valid storage nodes found" -msgstr "Invalid storage node" - -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "Registered" - -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "Event must be a string" - -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" -msgstr "" +msgid "Check here to see what users can be added" +msgstr "Check here to see what printers can be added" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "Class must extend event" +msgid "Check that database is running" +msgstr "Check that database is running" -#: lib/fog/eventmanager.class.php:76 #, fuzzy -msgid "Second paramater must be in array(class,function)" -msgstr "Second parameter must be in the form array(Hook class,Function to run)" - -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "Class must extend hook" +msgid "Checkin Time" +msgstr "Task Checkin Time" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "Method does not exist" +msgid "Checking if I am the group manager" +msgstr "" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" +msgid "Checksum" msgstr "" -#: lib/fog/eventmanager.class.php:102 -#, fuzzy -msgid "Could not register" -msgstr "Could not create printer" +msgid "Checksums" +msgstr "" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 -#, fuzzy -msgid "Event" -msgstr "Add Event" +msgid "City/State/Zip" +msgstr "City/State/Zip" -#: lib/fog/eventmanager.class.php:107 #, fuzzy msgid "Class" msgstr "Tasks" -#: lib/fog/eventmanager.class.php:147 -#, fuzzy -msgid "Event Data must be an array" -msgstr "Event must be a string" +msgid "Class is not extended from FOGPage" +msgstr "Class is not extended from FOGPage" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "" +msgid "Class must extend event" +msgstr "Class must extend event" -#: lib/fog/eventmanager.class.php:165 -#, fuzzy -msgid "Could not notify" -msgstr "Could not read tmp file." +msgid "Class must extend hook" +msgstr "Class must extend hook" -#: lib/fog/fogbase.class.php:443 #, fuzzy msgid "Class name must be a string" msgstr "Event must be a string" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "Invalid Host" +msgid "Clear" +msgstr "Clear" + +msgid "Clear Fields" +msgstr "" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 #, fuzzy -msgid "Key must be a string or index" -msgstr "Event must be a string" +msgid "Clear all fields?" +msgstr "clear all history" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." -msgstr "" +#, fuzzy +msgid "Clear all history" +msgstr "clear all history" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" -msgstr "No Data" +msgid "Click" +msgstr "Click" -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" -msgstr "Not a number" +msgid "Click Here" +msgstr "Click Here" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" -msgstr "" +msgid "Client" +msgstr "Client" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" -msgstr "" +msgid "Client Count" +msgstr "Client Count" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" +msgid "Client Management" +msgstr "Client Management" + +msgid "Client Modules Change Fail" msgstr "" -#: lib/fog/fogbase.class.php:1347 #, fuzzy -msgid "Unit of time must be a string" -msgstr "Event must be a string" +msgid "Client Modules Change Success" +msgstr "Printer already exists" -#: lib/fog/fogbase.class.php:1351 #, fuzzy -msgid "In" -msgstr "In " +msgid "Client Settings" +msgstr "Settings" -#: lib/fog/fogbase.class.php:1354 -#, fuzzy -msgid "ago" -msgstr " ago" +msgid "Client Updater" +msgstr "Client Updater" -#: lib/fog/fogbase.class.php:1382 #, fuzzy -msgid "Old key must be a string" -msgstr "Event must be a string" +msgid "Client Version" +msgstr "CPU Version" + +msgid "Clients" +msgstr "Clients" -#: lib/fog/fogbase.class.php:1385 #, fuzzy -msgid "New key must be a string" -msgstr "Event must be a string" +msgid "Command" +msgstr "Snapin Command" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" -msgstr "" +msgid "Complete" +msgstr "Complete" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" -msgstr "" +#, fuzzy +msgid "Complete Time" +msgstr "Task Checkin Time" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "Private key path not found" +msgid "Completed" +msgstr "Completed" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "Private key not found" +#, fuzzy +msgid "Completed imaging" +msgstr "Completed" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" -msgstr "Private key not readable" +msgid "Compression" +msgstr "Compression" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "Private key failed" +msgid "Computer Information" +msgstr "Computer Information" -#: lib/fog/fogbase.class.php:1677 #, fuzzy -msgid "Failed to decrypt data on server" -msgstr "Failed to decrypt data" +msgid "Computer Model" +msgstr "Printer Model" -#: lib/fog/fogbase.class.php:1910 #, fuzzy -msgid "Txt must be a string" -msgstr "Event must be a string" +msgid "Config File" +msgstr "Printer Config File" -#: lib/fog/fogbase.class.php:1913 -#, fuzzy -msgid "Level must be an integer" -msgstr "Event must be a string" +msgid "Configuration" +msgstr "Configuration" -#: lib/fog/fogbase.class.php:1941 #, fuzzy -msgid "String must be a string" -msgstr "Event must be a string" +msgid "Configuration Import/Export" +msgstr "Configuration" + +msgid "Configuration Save" +msgstr "Configuration Save" -#: lib/fog/fogbase.class.php:2067 #, fuzzy -msgid "Key must be a string" -msgstr "Event must be a string" +msgid "Confirm tasking" +msgstr "Invalid task" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" -msgstr "Line" +msgid "Conflicting path/file" +msgstr "" -#: lib/fog/fogcontroller.class.php:129 #, fuzzy -msgid "Table not defined for this class" -msgstr "No database table defined for this class" +msgid "Copy from existing" +msgstr "Could not create printer" -#: lib/fog/fogcontroller.class.php:132 #, fuzzy -msgid "Fields not defined for this class" -msgstr "No database fields defined for this class" +msgid "Could not find a Storage Node in this group" +msgstr "Could not find a Storage Node, is there one enabled within this group?" -#: lib/fog/fogcontroller.class.php:145 #, fuzzy -msgid "Record not found" -msgstr "Record not found, Error: %s" +msgid "Could not find a Storage Node is" +msgstr "Could not find temp filename" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" -msgstr "Returning value of key" +#, fuzzy +msgid "Could not find any" +msgstr "Could not find temp filename" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "Value" +msgid "Could not find temp filename" +msgstr "Could not find temp filename" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" -msgstr "No key being requested" +#, fuzzy +msgid "Could not notify" +msgstr "Could not read tmp file." -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" -msgstr "Invalid key being set" +#, fuzzy +msgid "Could not read snapin file" +msgstr "Could not read tmp file." -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" -msgstr "Setting Key" +msgid "Could not read tmp file." +msgstr "Could not read tmp file." -#: lib/fog/fogcontroller.class.php:267 #, fuzzy -msgid "Set failed" -msgstr "Service update failed" +msgid "Could not register" +msgstr "Could not create printer" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 -#, fuzzy -msgid "Key" -msgstr "DMI Key" +msgid "Create" +msgstr "Create" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "Invalid key being added" +#, fuzzy +msgid "Create Image" +msgstr "Create Date" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "Adding Key" +#, php-format +msgid "Create New %s" +msgstr "Create New %s" -#: lib/fog/fogcontroller.class.php:317 #, fuzzy -msgid "Add failed" -msgstr "Add snapin failed!" - -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" -msgstr "Invalid key being removed" +msgid "Create New Access Control Role" +msgstr "All Access Controls" -#: lib/fog/fogcontroller.class.php:359 #, fuzzy -msgid "Removing Key" -msgstr "Setting Key" +msgid "Create New Key" +msgstr "Create New %s" -#: lib/fog/fogcontroller.class.php:371 #, fuzzy -msgid "Remove failed" -msgstr "Removed" +msgid "Create New LDAP" +msgstr "Create New %s" -#: lib/fog/fogcontroller.class.php:456 #, fuzzy -msgid "Saving data for" -msgstr "Saving data for %s object" +msgid "Create New Location" +msgstr "Create New %s" -#: lib/fog/fogcontroller.class.php:458 #, fuzzy -msgid "object" -msgstr "Object" +msgid "Create New Printer" +msgstr "Create New %s" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" -msgstr "ID" +#, fuzzy +msgid "Create New Snapin" +msgstr "Create New %s" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "" +#, fuzzy +msgid "Create New SubnetGroup?" +msgstr "Create new group" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" -msgstr "has been successfully updated" +msgid "Create New iPXE Menu Entry" +msgstr "Create New iPXE Menu Entry" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" -msgstr "has failed to save" +#, fuzzy +msgid "Create Report?" +msgstr "Create Report" -#: lib/fog/fogcontroller.class.php:516 #, fuzzy -msgid "Database save failed" -msgstr "Database update failed" +msgid "Create Rule?" +msgstr "Create User" -#: lib/fog/fogcontroller.class.php:542 #, fuzzy -msgid "Key field must be a string" -msgstr "Event must be a string" +msgid "Create Site" +msgstr "Create" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 #, fuzzy -msgid "Operation field not set" -msgstr "Operation Field not set: %s" +msgid "Create Storage Group" +msgstr "Storage Node" -#: lib/fog/fogcontroller.class.php:588 #, fuzzy -msgid "Loading data to field" -msgstr "Loading data to field %s" +msgid "Create Storage Node" +msgstr "Storage Node" -#: lib/fog/fogcontroller.class.php:606 #, fuzzy -msgid "Load failed" -msgstr "Load failed: %s" +msgid "Create Task state" +msgstr "New Task State" -#: lib/fog/fogcontroller.class.php:668 #, fuzzy -msgid "Invalid key being destroyed" -msgstr "Invalid key being removed" +msgid "Create Task type" +msgstr "New Task State" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 #, fuzzy -msgid "has been successfully destroyed" -msgstr "has been successfully updated" +msgid "Create WOL Broadcast?" +msgstr "All Broadcasts" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 #, fuzzy -msgid "has failed to destroy" -msgstr "has failed to be destroyed" +msgid "Create new PM Schedule" +msgstr "Cron Schedule" + +msgid "Create new group" +msgstr "Create new group" -#: lib/fog/fogcontroller.class.php:750 #, fuzzy -msgid "Destroy failed" -msgstr "Destroy failed: %s" +msgid "Create user?" +msgstr "Create User" + +msgid "Created By" +msgstr "Created By" -#: lib/fog/fogcontroller.class.php:831 #, fuzzy -msgid "Invalid key being requested" -msgstr "Invalid key being removed" +msgid "Created Tasks For" +msgstr "Create User" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" +msgid "Created by FOG Reg on" +msgstr "Created by FOG Reg on" + +msgid "Created file extension must be, jpg, jpeg, or png" msgstr "" -#: lib/fog/fogcontroller.class.php:877 #, fuzzy -msgid "Invalid ID passed" -msgstr "Invalid unit passed" +msgid "Credits" +msgstr "Create" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" -msgstr "Failed" +msgid "Cron" +msgstr "Cron" -#: lib/fog/fogcore.class.php:40 -msgid "day" +msgid "Cron Schedule" +msgstr "Cron Schedule" + +msgid "Cross platform" msgstr "" -#: lib/fog/fogcore.class.php:49 #, fuzzy -msgid "hr" -msgstr "here" +msgid "Current Associations" +msgstr "Image Association" -#: lib/fog/fogcore.class.php:58 #, fuzzy -msgid "min" -msgstr "minutes" +msgid "Current Power Management settings" +msgstr "User Management" -#: lib/fog/fogcore.class.php:76 -#, fuzzy -msgid "Running Windows" -msgstr "Running Version" +msgid "Current Records" +msgstr "Current Records" -#: lib/fog/fogcore.class.php:88 #, fuzzy -msgid "Unavailable" -msgstr "Not Available" +msgid "Current Sessions" +msgstr "Image Association" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" -msgstr "Select a cron type" +#, fuzzy +msgid "Current files" +msgstr "Current Records" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" -msgstr "Yearly" +#, fuzzy +msgid "Current settings" +msgstr "Update Current Listing" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" -msgstr "Annually" +msgid "DMI Field" +msgstr "DMI Field" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "Monthly" +msgid "DMI Key" +msgstr "DMI Key" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "Weekly" +msgid "DMI Result" +msgstr "DMI Result" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 msgid "Daily" msgstr "Daily" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" -msgstr "Midnight" +msgid "Dashboard" +msgstr "Dashboard" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" -msgstr "Hourly" +msgid "Data is blank" +msgstr "" + +msgid "Data must be an array or a callable item." +msgstr "" + +#, fuzzy +msgid "Database" +msgstr "Date" + +#, fuzzy +msgid "Database Failure" +msgstr "Database Update Failed" -#: lib/fog/fogftp.class.php:219 #, fuzzy -msgid "FTP connection failed" -msgstr "FTP Connection failed" +msgid "Database Reverted" +msgstr "Database changes reverted" -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" -msgstr "No fields passed" +msgid "Database SQL" +msgstr "" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" -msgstr "No values passed" +msgid "Database Schema Installer / Updater" +msgstr "Database Schema Installer / Updater" -#: lib/fog/fogmanagercontroller.class.php:603 -#, fuzzy -msgid "No data to insert" -msgstr "No data returned" +msgid "Database Update Failed" +msgstr "Database Update Failed" -#: lib/fog/fogmanagercontroller.class.php:909 #, fuzzy -msgid "No items found" -msgstr "No icons found" +msgid "Database changes reverted!" +msgstr "Database changes reverted" -#: lib/fog/fogmanagercontroller.class.php:987 #, fuzzy -msgid "Nothing passed to search for" -msgstr "Enter a username to search for" +msgid "Database connection unavailable" +msgstr "Database update failed" -#: lib/fog/fogpage.class.php:236 #, fuzzy -msgid "ID Must be set to edit" -msgstr "Must be encrypted" - -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, fuzzy, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %s is not valid" - -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" -msgstr "Host ID" +msgid "Database imported and added successfully!" +msgstr "Database Imported and added successfully" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" -msgstr "Host name" +#, fuzzy +msgid "Database not available" +msgstr "Database update failed" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" -msgstr "Host MAC" +#, fuzzy +msgid "Database save failed" +msgstr "Database update failed" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" -msgstr "Host Desc" +msgid "Date" +msgstr "Date" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "Inventory ID" +#, fuzzy +msgid "Date and Time" +msgstr "Host Update Failed" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "Inventory Desc" +msgid "Date of checkout" +msgstr "Date of checkout" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" -msgstr "Primary User" +msgid "Day of month value is not valid" +msgstr "Day of month value is not valid" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" -msgstr "Other Tag 1" +msgid "Day of week value is not valid" +msgstr "Day of week value is not valid" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "Other Tag 2" +msgid "Debug" +msgstr "Debug" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" -msgstr "System Manufacturer" +msgid "Debug Options" +msgstr "Debug Options" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" -msgstr "System Product" +msgid "Default" +msgstr "Default" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" -msgstr "System Version" +msgid "Default Height" +msgstr "Default Height" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" -msgstr "System Serial" +#, fuzzy +msgid "Default Item" +msgstr "Default Item:" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" -msgstr "System Type" +msgid "Default Refresh Rate" +msgstr "Default Refresh Rate" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" -msgstr "BIOS Version" +msgid "Default Width" +msgstr "Default Width" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "BIOS Vendor" +#, fuzzy +msgid "Default is disabled" +msgstr "Donations are disabled" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" -msgstr "BIOS Date" +msgid "Default log out time (in minutes)" +msgstr "Default log out time (in minutes)" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "MB Manufacturer" +msgid "Delayed" +msgstr "Delayed" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "MB Name" +msgid "Delayed Start" +msgstr "Delayed Start" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "MB Version" +msgid "Delete" +msgstr "Delete" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "MB Serial" +#, fuzzy +msgid "Delete Fail" +msgstr "Delete file data" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "MB Asset" +msgid "Delete MACs" +msgstr "Delete MACs" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" -msgstr "CPU Manufacturer" +#, fuzzy +msgid "Delete Menu Item" +msgstr "Menu Item:" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" -msgstr "CPU Version" +msgid "Delete Selected" +msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "CPU Speed" +#, fuzzy +msgid "Delete Selected Items" +msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" -msgstr "CPU Max Speed" +#, fuzzy +msgid "Delete Selected MACs" +msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "Memory" +#, fuzzy +msgid "Delete Success" +msgstr "User created" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" -msgstr "HD Model" +#, fuzzy +msgid "Delete all PM tasks?" +msgstr "Delete all selected %ss" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" -msgstr "HD Firmware" +#, fuzzy +msgid "Delete files" +msgstr "Delete file data" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "HD Serial" +#, fuzzy +msgid "Delete hosts within" +msgstr "Delete all hosts within group" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "Chassis Manufacturer" +#, fuzzy +msgid "Delete selected" +msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" -msgstr "Chassis Version" +#, fuzzy +msgid "Delete selected hosts" +msgstr "Delete selected Hosts" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "Chassis Serial" +msgid "Deleted" +msgstr "Deleted" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "Chassis Asset" +#, fuzzy +msgid "Deleted Success" +msgstr "User created" -#: lib/fog/fogpage.class.php:643 #, fuzzy -msgid "Group Associations" -msgstr "Group Location" +msgid "Deleting remote file" +msgstr "Deleting remote file" -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "Create new group" +msgid "Deploy" +msgstr "Deploy" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "Add to group" +msgid "Deploy Method" +msgstr "Deploy Method" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 #, fuzzy -msgid "Make changes?" -msgstr "Save Changes" +msgid "Deploy/Capture" +msgstr "Deploy" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 -msgid "Delete Selected" -msgstr "Delete Selected" +msgid "Description" +msgstr "Description" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 #, fuzzy -msgid "Delete selected" -msgstr "Delete Selected" +msgid "Destroy failed" +msgstr "Destroy failed: %s" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" -msgstr "Requires templates to process" +msgid "Destroyed assignment" +msgstr "Destroyed assignment" -#: lib/fog/fogpage.class.php:1019 #, fuzzy -msgid "Cannot set tasking to invalid hosts" -msgstr "Cannot set taskings to pending or invalid items" +msgid "Destroyed assignments" +msgstr "Destroyed assignment" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 #, fuzzy -msgid "Cannot set tasking to pending hosts" -msgstr "Cannot set taskings to pending or invalid items" +msgid "Detailed documentation" +msgstr "Failed to create Session" -#: lib/fog/fogpage.class.php:1034 #, fuzzy -msgid "Invalid object to try tasking" -msgstr "Invalid object type passed" +msgid "Device must be a string" +msgstr "Device must be a string" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" -msgstr "Cannot set tasking as image is not enabled" +msgid "Diff parameter must be numeric" +msgstr "" -#: lib/fog/fogpage.class.php:1092 #, fuzzy -msgid "Host Associated Snapins" -msgstr "No node associated" +msgid "Directories" +msgstr "Directory" + +msgid "Directory" +msgstr "Directory" + +msgid "Directory Already Exists" +msgstr "Directory Already Exists" + +msgid "Directory Cleaner" +msgstr "Directory Cleaner" -#: lib/fog/fogpage.class.php:1119 #, fuzzy -msgid "Host Unassociated Snapins" -msgstr "No node associated" +msgid "Disabled" +msgstr "Enabled" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" -msgstr "Edit Host" +msgid "Display" +msgstr "Display" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" -msgstr "Edit Image" +msgid "Do not list on menu" +msgstr "Do not list on menu" + +msgid "Domain Password" +msgstr "Domain Password" + +msgid "Domain Password Legacy" +msgstr "Domain Password Legacy" -#: lib/fog/fogpage.class.php:1218 -#, fuzzy -msgid "Confirm tasking" -msgstr "Invalid task" +msgid "Domain Username" +msgstr "Domain Username" -#: lib/fog/fogpage.class.php:1223 -#, fuzzy -msgid "Image Associated: " -msgstr "Image Association" +msgid "Domain name" +msgstr "Domain name" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "Advanced Settings" +msgid "Donate to FOG" +msgstr "Donate to FOG" -#: lib/fog/fogpage.class.php:1243 -#, fuzzy -msgid "Please select the snapin you want to install" -msgstr "Please select the snapin you want to deploy" +msgid "Done" +msgstr "Done" -#: lib/fog/fogpage.class.php:1253 -#, fuzzy -msgid "Account name to reset" -msgstr "Event must be a string" +msgid "Done, Failed to create tasking" +msgstr "Done, Failed to create tasking" -#: lib/fog/fogpage.class.php:1274 -#, fuzzy -msgid "Schedule with shutdown" -msgstr "Scheduler" +msgid "Done, with imaging!" +msgstr "Done, with imaging!" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "Wake on lan?" +msgid "Done, without imaging!" +msgstr "Done, without imaging!" -#: lib/fog/fogpage.class.php:1313 #, fuzzy -msgid "Schedule as debug task" -msgstr "Schedule task as a debug task" +msgid "Done, without imaging! Invalid Login!" +msgstr "Done, without imaging!" -#: lib/fog/fogpage.class.php:1323 #, fuzzy -msgid "Schedule instant" -msgstr "Schedule" +msgid "Done, without imaging! No image assigned!" +msgstr "Done, No image assigned!" -#: lib/fog/fogpage.class.php:1335 -#, fuzzy -msgid "Schedule delayed" -msgstr "Schedule" +msgid "Dot in Filename not allowed!" +msgstr "" + +msgid "Download Failed" +msgstr "Download Failed" -#: lib/fog/fogpage.class.php:1340 #, fuzzy -msgid "Date and Time" -msgstr "Host Update Failed" +msgid "Downloading Initrd" +msgstr "Download" -#: lib/fog/fogpage.class.php:1373 #, fuzzy -msgid "Schedule cron-style" -msgstr "Scheduler" +msgid "Downloading Kernel" +msgstr "Download" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "Create" +msgid "Dropped" +msgstr "Dropped" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" -msgstr "Tasking" +msgid "Duration" +msgstr "Duration" -#: lib/fog/fogpage.class.php:1445 #, fuzzy -msgid "Hosts in task" -msgstr "Hosts in Task" +msgid "ESC is defaulted" +msgstr "Enabled as default" -#: lib/fog/fogpage.class.php:1556 -#, fuzzy -msgid "Invalid scheduling type" -msgstr "Invalid type" +msgid "Edit" +msgstr "Edit" -#: lib/fog/fogpage.class.php:1595 -#, fuzzy -msgid "minute" -msgstr "minutes" +msgid "Edit Host" +msgstr "Edit Host" -#: lib/fog/fogpage.class.php:1604 -#, fuzzy -msgid "hour" -msgstr "1 hour" +msgid "Edit Image" +msgstr "Edit Image" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" -msgstr "" +msgid "Edit Node" +msgstr "Edit Node" -#: lib/fog/fogpage.class.php:1622 -#, fuzzy -msgid "month" -msgstr "Monthly" +msgid "Edit User" +msgstr "Edit User" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" +msgid "Either reboot or shutdown action must be used." msgstr "" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "Task type is not valid" +msgid "Email" +msgstr "Email" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "Password reset requires a user account to reset" +msgid "Enable location Sending" +msgstr "" -#: lib/fog/fogpage.class.php:1663 -#, fuzzy -msgid "There are no hosts to task in this group" -msgstr "There are no groups on this server." +msgid "Enabled" +msgstr "Enabled" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" -msgstr "" +msgid "Enabled as default" +msgstr "Enabled as default" -#: lib/fog/fogpage.class.php:1678 -#, fuzzy -msgid "Cannot create tasking as image is not enabled" -msgstr "Cannot set tasking as image is not enabled" +msgid "End" +msgstr "End" -#: lib/fog/fogpage.class.php:1685 -#, fuzzy -msgid "The assigned image is protected" -msgstr "None selected or item is protected" +msgid "End Date" +msgstr "End Date" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" -msgstr "" +msgid "End Time" +msgstr "End Time" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" -msgstr "" +msgid "Engineer" +msgstr "Engineer" -#: lib/fog/fogpage.class.php:1700 #, fuzzy -msgid "Multicast tasks from groups" -msgstr "MulticastTask" +msgid "Enter a group name to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1702 -#, fuzzy -msgid "require all hosts have the same image" -msgstr "Hosts do not have the same image assigned" +msgid "Enter a hostname to search for" +msgstr "Enter a hostname to search for" -#: lib/fog/fogpage.class.php:1722 #, fuzzy -msgid "No valid hosts found and" -msgstr "No valid class sent" +msgid "Enter a location name to search for" +msgstr "Enter a hostname to search for" -#: lib/fog/fogpage.class.php:1723 #, fuzzy -msgid "or no valid images specified" -msgstr "No image specified" +msgid "Enter a model name to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 #, fuzzy -msgid "Tasking Failed" -msgstr "Tasking" +msgid "Enter a site name to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 #, fuzzy -msgid "Failed to create tasking" -msgstr "Failed to create task" +msgid "Enter a snapin name to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1803 #, fuzzy -msgid "Failed to create scheduled tasking" -msgstr "Failed to create task" +msgid "Enter a term to search for" +msgstr "Enter a username to search for" + +msgid "Enter a username to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1806 #, fuzzy -msgid "Scheduled tasks successfully created" -msgstr "has been successfully updated" +msgid "Enter an image name to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1812 #, fuzzy -msgid "Failed to start tasking type" -msgstr "Failed to start deployment tasking" +msgid "Enter an user name to search for" +msgstr "Enter a username to search for" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "Cron Schedule" +msgid "Equipment Loan" +msgstr "Equipment Loan" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" -msgstr "Delayed Start" +msgid "Error" +msgstr "Error" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 -#, fuzzy -msgid "Tasked Successfully" -msgstr "saved successfully" +msgid "Error Code" +msgstr "Error Code" -#: lib/fog/fogpage.class.php:1882 -#, fuzzy -msgid "Successfully created" -msgstr "successfully updated" +msgid "Error Message" +msgstr "Error Message" -#: lib/fog/fogpage.class.php:1889 -#, fuzzy -msgid "Created Tasks For" -msgstr "Create User" +msgid "Error Opening DB File" +msgstr "Error Opening DB File" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -#, fuzzy -msgid "Remove these items?" -msgstr "Remove selected printers" +msgid "Error multiple hosts returned for list of mac addresses" +msgstr "Error multiple hosts returned for list of mac addresses" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 -#, fuzzy -msgid "Unable to Authenticate" -msgstr "Error contacting server" +msgid "Error performing query" +msgstr "Error performing query" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 #, fuzzy -msgid "Successfully deleted" -msgstr "successfully updated" +msgid "Error: Failed to download initrd" +msgstr "Error: Failed to download kernel" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 -#, fuzzy -msgid "Delete Success" -msgstr "User created" +msgid "Error: Failed to download kernel" +msgstr "Error: Failed to download kernel" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "View advanced tasks for this" +msgid "Error: Failed to open temp file" +msgstr "Error: Failed to open temp file" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "Advanced Actions" +msgid "Errors" +msgstr "Errors" -#: lib/fog/fogpage.class.php:2314 #, fuzzy -msgid "Clear all fields?" -msgstr "clear all history" +msgid "Errors on revert detected!" +msgstr "Errors on revert detected" -#: lib/fog/fogpage.class.php:2317 -msgid "Clear Fields" +msgid "Especially when your organization has many hosts" msgstr "" -#: lib/fog/fogpage.class.php:2321 -#, fuzzy -msgid "Join Domain after deploy" -msgstr "Join Domain after image task" - -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "Domain name" - -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "Organizational Unit" - -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "Blank for default" +msgid "Estimated FOG Sites" +msgstr "Estimated FOG Sites" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "Domain Username" +#, fuzzy +msgid "Event" +msgstr "Add Event" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "Domain Password" +#, fuzzy +msgid "Event Data must be an array" +msgstr "Event must be a string" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "Domain Password Legacy" +msgid "Event and data are not set" +msgstr "" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "Must be encrypted" +msgid "Event must be a string" +msgstr "Event must be a string" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" +msgid "Exists item must be boolean" msgstr "" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" -msgstr "" +msgid "Exit to Hard Drive Type" +msgstr "Exit to Hard Drive Type" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" +msgid "Exit to Hard Drive Type(EFI)" +msgstr "Exit to Hard Drive Type(EFI)" + +msgid "Expand All" msgstr "" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" -msgstr "Error: Failed to open temp file" +msgid "Export" +msgstr "Export" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" -msgstr "Error: Failed to download kernel" +#, fuzzy +msgid "Export Accesscontrols" +msgstr "Access Control" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "Download Failed" +msgid "Export CSV" +msgstr "Export CSV" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "filesize" +#, fuzzy +msgid "Export Checksums" +msgstr "Export Hosts" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "Load MAC Vendors" +#, fuzzy +msgid "Export Complete" +msgstr "Complete" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "Not found" +msgid "Export Configuration" +msgstr "Export Configuration" -#: lib/fog/fogpage.class.php:2779 #, fuzzy -msgid "Delete hosts within" -msgstr "Delete all hosts within group" +msgid "Export Database" +msgstr "Date" -#: lib/fog/fogpage.class.php:2788 #, fuzzy -msgid "Delete files" -msgstr "Delete file data" +msgid "Export Database?" +msgstr "Date" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" -msgstr "is protected, removal not allowed" +msgid "Export Groups" +msgstr "Export Groups" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" -msgstr "Failed to destroy" +msgid "Export Hosts" +msgstr "Export Hosts" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" -msgstr "deleted" +msgid "Export Images" +msgstr "Export Images" -#: lib/fog/fogpage.class.php:3323 #, fuzzy -msgid "Delete Fail" -msgstr "Delete file data" +msgid "Export LDAPs" +msgstr "Export PDF" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 #, fuzzy -msgid " Name" -msgstr "Name" +msgid "Export Locations" +msgstr "Host Location" -#: lib/fog/fogpage.class.php:3600 -#, fuzzy -msgid "Remove " -msgstr "Remove" +msgid "Export PDF" +msgstr "Export PDF" + +msgid "Export Printers" +msgstr "Export Printers" -#: lib/fog/fogpage.class.php:3607 #, fuzzy -msgid "Remove selected " -msgstr "Remove selected snapins" +msgid "Export Sites" +msgstr "Export Printers" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 -msgid "Export CSV" -msgstr "Export CSV" +msgid "Export Snapins" +msgstr "Export Snapins" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" -msgstr "Import" +#, fuzzy +msgid "Export Subnetgroups" +msgstr "Export Groups" -#: lib/fog/fogpage.class.php:3788 #, fuzzy -msgid "List" -msgstr "Host List" +msgid "Export Task States" +msgstr "Task States" -#: lib/fog/fogpage.class.php:3806 #, fuzzy -msgid "Import CSV" -msgstr "Export CSV" +msgid "Export Task Types" +msgstr "Task Types" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" -msgstr "Max Size" +msgid "Export Users" +msgstr "Export Users" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" -msgstr "" +#, fuzzy +msgid "Export WOLBroadcasts" +msgstr "Host Location" -#: lib/fog/fogpage.class.php:3824 #, fuzzy -msgid "Import CSV?" -msgstr "Export CSV" +msgid "Export Windows Keys" +msgstr "Windows 8" -#: lib/fog/fogpage.class.php:3852 -msgid "This page allows you to upload a CSV file into FOG to ease" -msgstr "" +msgid "Extension" +msgstr "Extension" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" +msgid "FOG" +msgstr "FOG" + +msgid "FOG 1.2.0 and earlier" msgstr "" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" +msgid "FOG 1.2.0 and earlier." msgstr "" -#: lib/fog/fogpage.class.php:3888 #, fuzzy -msgid "File must be a csv" -msgstr "Event must be a string" +msgid "FOG Client" +msgstr "FOG Client Wiki" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" -msgstr "Could not find temp filename" +msgid "FOG Client Download" +msgstr "FOG Client Download" -#: lib/fog/fogpage.class.php:3929 -#, fuzzy -msgid "Invalid data being parsed" -msgstr "Invalid token passed" +msgid "FOG Client Installer" +msgstr "FOG Client Installer" -#: lib/fog/fogpage.class.php:3941 -#, fuzzy -msgid "One or more macs are associated with a host" -msgstr "Error, Is an image associated with this host" +msgid "FOG Client Service Updater" +msgstr "FOG Client Service Updater" -#: lib/fog/fogpage.class.php:3966 -#, fuzzy -msgid "This host already exists" -msgstr "Printer already exists" +msgid "FOG Client Wiki" +msgstr "FOG Client Wiki" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" -msgstr "Results" +msgid "FOG Client on Github" +msgstr "FOG Client on Github" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" -msgstr "Total Rows" +msgid "FOG Configuration" +msgstr "FOG Configuration" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "Successful" +msgid "FOG Crypt" +msgstr "FOG Crypt" -#: lib/fog/fogpage.class.php:4154 -#, fuzzy -msgid "Schedule Power" -msgstr "Scheduler" +msgid "FOG Equipment Loan Form" +msgstr "FOG Equipment Loan Form" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" -msgstr "" +msgid "FOG Forums" +msgstr "FOG Forums" -#: lib/fog/fogpage.class.php:4217 -#, fuzzy -msgid "Create new PM Schedule" -msgstr "Cron Schedule" +msgid "FOG General Help" +msgstr "FOG General Help" -#: lib/fog/fogpage.class.php:4227 #, fuzzy -msgid "New power management task" -msgstr "User Management" +msgid "FOG History - Search" +msgstr "FOG User Login History Summary - Search" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "No FOGPage Class found for this node" +msgid "FOG Home Page" +msgstr "FOG Home Page" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "Failed to Render Page: Node: %s, Error: %s" +#, fuzzy +msgid "FOG Host - Search" +msgstr "FOG User Login History Summary - Search" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" -msgstr "No class value sent" +#, fuzzy +msgid "FOG Host Inventory - Search" +msgstr "FOG User Login History Summary - Search" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" -msgstr "No node associated" +#, fuzzy +msgid "FOG Host and Users - Search" +msgstr "FOG Hosts and Users Login" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" -msgstr "Adding FOGPage: %s, Node: %s" +msgid "FOG Hosts and Users Login" +msgstr "FOG Hosts and Users Login" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" -msgstr "" +#, fuzzy +msgid "FOG Imaging - Search" +msgstr "FOG User Login History Summary - Search" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "Select a valid image" +msgid "FOG Imaging Log" +msgstr "FOG Imaging Log" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" -msgstr "There is a host in a tasking" +msgid "FOG License Information" +msgstr "FOG License Information" -#: lib/fog/group.class.php:452 -#, fuzzy -msgid "No hosts to task" -msgstr "Hosts in Task" +msgid "FOG Log Viewer" +msgstr "FOG Log Viewer" -#: lib/fog/group.class.php:475 -#, fuzzy -msgid "No hosts available to task" -msgstr "Hosts in Task" +msgid "FOG Managed Printers" +msgstr "FOG Managed Printers" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "Image is not enabled" +msgid "FOG PXE Boot Menu Configuration" +msgstr "FOG PXE Boot Menu Configuration" -#: lib/fog/group.class.php:502 #, fuzzy -msgid "Unable to find master Storage Node" -msgstr "Failed to destroy Storage Node" +msgid "FOG Project" +msgstr "FOG Project on Github" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "This MAC Belongs to another host" +msgid "FOG Project on Github" +msgstr "FOG Project on Github" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" -msgstr "Cannot add Primary mac as additional mac" +msgid "FOG Reports exist to give you information about what" +msgstr "" + +msgid "FOG Settings" +msgstr "FOG Settings" -#: lib/fog/host.class.php:498 #, fuzzy -msgid "Cannot add a pre-existing primary mac" -msgstr "Cannot add a pre-existing Primary MAC as a pending MAC" +msgid "FOG Snapin - Search" +msgstr "FOG User Login History Summary - Search" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." -msgstr "Cancelled due to new tasking." +msgid "FOG Sourceforge Page" +msgstr "FOG Sourceforge Page" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "Failed to create Snapin Job" +msgid "FOG System Settings" +msgstr "FOG System Settings" -#: lib/fog/host.class.php:1371 #, fuzzy -msgid "Could not find any" -msgstr "Could not find temp filename" +msgid "FOG User tracking - Search" +msgstr "FOG User Login History Summary - Search" -#: lib/fog/host.class.php:1372 #, fuzzy -msgid "nodes containing this image" -msgstr "Could not find any nodes containing this image" +msgid "FOG User tracking history" +msgstr "FOG User Login History Summary" -#: lib/fog/host.class.php:1538 #, fuzzy -msgid "No valid Image defined for this host" -msgstr "No Image defined for this host" +msgid "FOG Version" +msgstr "BIOS Version" -#: lib/fog/host.class.php:1689 -#, fuzzy -msgid "No viable macs to use" -msgstr "Not able to update" +msgid "FOG Version Information" +msgstr "FOG Version Information" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "MAC address is already in use by another host" +msgid "FOG Virus Summary" +msgstr "FOG Virus Summary" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 -#, fuzzy -msgid "snapin" -msgstr "Snapin" +msgid "FOG Wiki" +msgstr "FOG Wiki" -#: lib/fog/host.class.php:1768 -#, fuzzy -msgid "per host" -msgstr "snapin per host" +msgid "FOG database you can do so using" +msgstr "" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "You are only allowed to assign" +msgid "FOG did is now called Power Management" +msgstr "" -#: lib/fog/system.class.php:38 -#, fuzzy -msgid "Your system PHP Version is not sufficient" +msgid "FOG is unable to communicate with the database" msgstr "" -"Your systems PHP version is not sufficient. You have version %s, version %s " -"is required." -#: lib/fog/system.class.php:39 -#, fuzzy -msgid "You have version" -msgstr "Latest Version" +msgid "FOG server defaulting under the folder" +msgstr "" -#: lib/fog/system.class.php:41 -#, fuzzy -msgid "version" -msgstr "Version" +msgid "FTP Connection has failed" +msgstr "FTP Connection has failed" -#: lib/fog/system.class.php:43 -#, fuzzy -msgid "is required" -msgstr "%s is required" +msgid "FTP Path" +msgstr "FTP Path" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "" +#, fuzzy +msgid "FTP connection failed" +msgstr "FTP Connection failed" -#: lib/fog/powermanagementmanager.class.php:112 #, fuzzy -msgid "Wake On Lan" -msgstr "Wake on lan?" +msgid "Fail to destroy" +msgstr "Failed to destroy" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "TCP/IP Port Printer" +msgid "Failed" +msgstr "Failed" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" -msgstr "iPrint Printer" +msgid "Failed to" +msgstr "Failed to" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" -msgstr "Network Printer" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" +msgstr "Failed to Render Page: Node: %s, Error: %s" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" -msgstr "CUPS Printer" +#, fuzzy +msgid "Failed to add snapin" +msgstr "Failed to add/update snapin file" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "Cron" +msgid "Failed to add/update snapin file" +msgstr "Failed to add/update snapin file" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "Delayed" +msgid "Failed to connect" +msgstr "Failed to connect" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "Could not read tmp file." +msgid "Failed to create" +msgstr "Failed to create" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "Error Opening DB File" +msgid "Failed to create Host" +msgstr "Failed to create Host" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "Error performing query" +msgid "Failed to create Session" +msgstr "Failed to create Session" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "" +msgid "Failed to create Snapin Job" +msgstr "Failed to create Snapin Job" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" -msgstr "" +#, fuzzy +msgid "Failed to create inventory for this host" +msgstr "Failed to create inventory for this host!" + +msgid "Failed to create new Group" +msgstr "Failed to create new Group" -#: lib/fog/schema.class.php:325 #, fuzzy -msgid "Fields and types must have equal count" -msgstr "Field and values do not have equal parameters." +msgid "Failed to create scheduled tasking" +msgstr "Failed to create task" -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" -msgstr "" +msgid "Failed to create task" +msgstr "Failed to create task" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" -msgstr "Please Select an option" +#, fuzzy +msgid "Failed to create tasking" +msgstr "Failed to create task" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." -msgstr "" +#, fuzzy +msgid "Failed to decrypt data on server" +msgstr "Failed to decrypt data" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." -msgstr "" +msgid "Failed to delete file" +msgstr "Failed to delete file" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." -msgstr "" +msgid "Failed to delete image files" +msgstr "Failed to delete image files" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." -msgstr "" +msgid "Failed to destroy" +msgstr "Failed to destroy" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" -msgstr "Invalid numeric entry" +msgid "Failed to destroy Storage Group" +msgstr "Failed to destroy Storage Group" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" -msgstr "Object" +msgid "Failed to destroy Storage Node" +msgstr "Failed to destroy Storage Node" -#: lib/fog/foggetset.class.php:73 -msgid "Array" -msgstr "" +msgid "Failed to install plugin" +msgstr "Failed to install plugin" -#: lib/fog/foggetset.class.php:89 -#, fuzzy -msgid "Set Failed" -msgstr "Failed" +msgid "Failed to save assignment" +msgstr "Failed to save assignment" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" -msgstr "Returning array within key" +msgid "Failed to save plugin" +msgstr "Failed to save plugin" -#: lib/fog/reportmaker.class.php:157 #, fuzzy -msgid "Invalid Type" -msgstr "Invalid type" +msgid "Failed to start tasking type" +msgstr "Failed to start deployment tasking" + +msgid "Failed to update" +msgstr "Failed to update" -#: lib/fog/reportmaker.class.php:333 #, fuzzy -msgid "Export Complete" -msgstr "Complete" +msgid "Failed to update Host" +msgstr "Failed to update" -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "Icon File not found" +msgid "Failed to update Session" +msgstr "Failed to update Session" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "No icons found" +msgid "Failed to update Task" +msgstr "Failed to update Task" -#: lib/fog/uploadexception.class.php:50 #, fuzzy -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini" - -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" -msgstr "" +msgid "Failed to update imaging log" +msgstr "Failed to update/create image log" -#: lib/fog/uploadexception.class.php:57 -#, fuzzy -msgid "The uploaded file exceeds the max_file_size" -msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini" +msgid "Failed to update task" +msgstr "Failed to update task" -#: lib/fog/uploadexception.class.php:58 #, fuzzy -msgid "directive specified in the HTML form" -msgstr "" -"The uploaded file exceeds the max_file_size directive specified in the HTML " -"form" - -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" -msgstr "The uploaded file was only partially uploaded" +msgid "Failed to update task log" +msgstr "Failed to update task" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "No file was uploaded" +msgid "Failed to update/create image log" +msgstr "Failed to update/create image log" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" -msgstr "Missing a temporary folder" +msgid "Failed to update/create task log" +msgstr "Failed to update/create task log" -#: lib/fog/uploadexception.class.php:71 msgid "Failed to write file to disk" msgstr "Failed to write file to disk" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" -msgstr "File upload stopped by an extension" - -#: lib/fog/uploadexception.class.php:79 #, fuzzy -msgid "Unknown upload error occurred" -msgstr "Unknown upload error occurred. Return code: " +msgid "Fields and types must have equal count" +msgstr "Field and values do not have equal parameters." -#: lib/fog/uploadexception.class.php:80 #, fuzzy -msgid "Return code" -msgstr "Return Code" +msgid "Fields not defined for this class" +msgstr "No database fields defined for this class" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" -msgstr "user successfully logged in" +msgid "File" +msgstr "File" -#: lib/fog/user.class.php:312 -msgid "user failed to login" -msgstr "user failed to login" +#, fuzzy +msgid "File Integrity Management" +msgstr "Printer Management" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "IP Address Changed" +msgid "File System Information" +msgstr "File System Information" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" -msgstr "User Agent Changed" +#, fuzzy +msgid "File does not exist" +msgstr "File does not exist" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" -msgstr "Session altered improperly" +msgid "File hash mismatch" +msgstr "File hash mismatch" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 #, fuzzy -msgid "Node must be a string" +msgid "File must be a csv" msgstr "Event must be a string" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" -msgstr "" +#, fuzzy +msgid "File or path cannot be reached" +msgstr "File or path cannot be reached" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." -msgstr "" +#, fuzzy +msgid "File size mismatch" +msgstr "File size mismatch" + +msgid "File upload stopped by an extension" +msgstr "File upload stopped by an extension" -#: lib/fog/fogsubmenu.class.php:313 #, fuzzy -msgid "Info" -msgstr "In " +msgid "Filesize" +msgstr "filesize" -#: lib/fog/fogsubmenu.class.php:563 #, fuzzy -msgid "Title must be a string" -msgstr "Event must be a string" +msgid "Filter" +msgstr "File" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 #, fuzzy -msgid "Link must be a string" -msgstr "Event must be a string" - -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" -msgstr "Serial" +msgid "Finding any images associated" +msgstr "No snapins associated" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "Open VNC connection to" +#, fuzzy +msgid "Finding any snapins associated" +msgstr "No snapins associated" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" +msgid "For example, a GPO policy to push" msgstr "" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" -msgstr "FOG Client Installer" +msgid "Force" +msgstr "Force" -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" -msgstr "New Client and Utilities" +msgid "Force task to start" +msgstr "Force task to start" -#: lib/pages/clientmanagementpage.class.php:87 #, fuzzy -msgid "The installers for the fog client" -msgstr "This setting defines the username used for the ssh client." +msgid "Form" +msgstr "Format" -#: lib/pages/clientmanagementpage.class.php:89 -#, fuzzy -msgid "Client Version" -msgstr "CPU Version" +msgid "Forums are the most common and fastest method of getting" +msgstr "" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" +msgid "Found" +msgstr "" + +msgid "Found a scheduled task that should run." +msgstr "" + +msgid "Found a wake on lan task that should run." msgstr "" -#: lib/pages/clientmanagementpage.class.php:98 #, fuzzy -msgid "more secure" -msgstr "Import Users" +msgid "Found login information" +msgstr "FOG Version Information" -#: lib/pages/clientmanagementpage.class.php:99 #, fuzzy -msgid "faster" -msgstr "Date" +msgid "Found snapin information" +msgstr "FOG Version Information" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" +msgid "Free" msgstr "" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" -msgstr "" +#, fuzzy +msgid "Free Disk Space" +msgstr "Used Disk Space" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" -msgstr "" +msgid "Free Memory" +msgstr "Free Memory" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" -msgstr "" +#, fuzzy +msgid "Friendly Name" +msgstr "Kernel Name" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "" +#, fuzzy +msgid "Full History Export" +msgstr "Full Inventory Export" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" -msgstr "" +msgid "Full Inventory Export" +msgstr "Full Inventory Export" -#: lib/pages/clientmanagementpage.class.php:119 #, fuzzy -msgid "Network Installer" -msgstr "Network Printer" +msgid "Function" +msgstr "Action" -#: lib/pages/clientmanagementpage.class.php:126 #, fuzzy -msgid "This is the recommended installer to use now" -msgstr "" -"This is the recommended installer to use now. It can be used on Windows, " -"Linux, and Mac OS X." +msgid "Function does not exist" +msgstr "Method does not exist" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" +msgid "GNU Gneral Public License" msgstr "" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "Linux" +msgid "General" +msgstr "General" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" -msgstr "" +msgid "General Information" +msgstr "General Information" -#: lib/pages/clientmanagementpage.class.php:130 #, fuzzy -msgid "Smart Installer" -msgstr "Smart Installer (Recommended)" +msgid "Generate" +msgstr "General" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" +msgid "Generic LDAP" msgstr "" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "Help and Guide" +msgid "Getting image size for" +msgstr "" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" +msgid "Getting snapin hash and size for" msgstr "" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" +msgid "Goto task list" msgstr "" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 -#, fuzzy -msgid "NOTE" -msgstr "NOT" +msgid "Graph Enabled" +msgstr "Graph Enabled" -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" -msgstr "" +msgid "Graphical" +msgstr "Graphical" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" -msgstr "" +msgid "Green FOG" +msgstr "Green FOG" -#: lib/pages/clientmanagementpage.class.php:161 -#, fuzzy -msgid "Detailed documentation" -msgstr "Failed to create Session" +msgid "Group" +msgstr "Group" -#: lib/pages/clientmanagementpage.class.php:162 #, fuzzy -msgid "It is primarily geared for the smart installer methodology now" +msgid "Group Associations" +msgstr "Group Location" + +msgid "Group Auto Logout" msgstr "" -"Detailed documentation. It is primarily geared for the smart installer " -"methodology now." -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" -msgstr "FOG Client Wiki" +msgid "Group Bios Exit Type" +msgstr "Group Bios Exit Type" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" -msgstr "" +#, fuzzy +msgid "Group Create Fail" +msgstr "Group create failed" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" -msgstr "" +#, fuzzy +msgid "Group Create Success" +msgstr "User created" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "" +msgid "Group Description" +msgstr "Group Description" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "" +msgid "Group EFI Exit Type" +msgstr "Group EFI Exit Type" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" -msgstr "" +#, fuzzy +msgid "Group FOG Client Module configuration" +msgstr "Host Printer Configuration" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" -msgstr "FOG Forums" +msgid "Group Kernel" +msgstr "Group Kernel" -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" -msgstr "Pending hosts" +msgid "Group Kernel Arguments" +msgstr "Group Kernel Arguments" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "Click" +msgid "Group Management" +msgstr "Group Management" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "to review." +msgid "Group Member Attribute" +msgstr "" -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" -msgstr "Pending macs" +msgid "Group Name" +msgstr "Group Name" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" -msgstr "Web Server" +#, fuzzy +msgid "Group Power Management Remove" +msgstr "User Management" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "Load Average" +msgid "Group Primary Disk" +msgstr "Group Primary Disk" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" -msgstr "System Uptime" +#, fuzzy +msgid "Group Printers" +msgstr "Export Printers" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" -msgstr "System Overview" +msgid "Group Product Key" +msgstr "Group Product Key" -#: lib/pages/dashboardpage.class.php:254 #, fuzzy -msgid "Server information at a glance." -msgstr "LDAP information updated!" +msgid "Group Quick Deploy" +msgstr "Quick Deploy" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" -msgstr "Storage Group Activity" +msgid "Group Screen Resolution" +msgstr "Group Screen Resolution" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" +#, fuzzy +msgid "Group Search DN" +msgstr "Host Search" + +msgid "Group Search DN did not return any results" msgstr "" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" -msgstr "Storage Node Disk Usage" +#, fuzzy +msgid "Group Snapins" +msgstr "Export Snapins" -#: lib/pages/dashboardpage.class.php:303 #, fuzzy -msgid "Selected node's disk usage" -msgstr "The selected node's image storage disk usage" +msgid "Group Update Fail" +msgstr "Group create failed" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" -msgstr "Imaging Over the last 30 days" +#, fuzzy +msgid "Group Update Success" +msgstr "User created" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "2 Minutes" +#, fuzzy +msgid "Group added!" +msgstr "Group added" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" -msgstr "10 Minutes" +#, fuzzy +msgid "Group general" +msgstr "Group Kernel" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "30 Minutes" +#, fuzzy +msgid "Group image" +msgstr "Group Name" -#: lib/pages/dashboardpage.class.php:407 #, fuzzy -msgid "1 Hour" -msgstr "1 hour" +msgid "Group image association" +msgstr "Image Association" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" -msgstr "" +#, fuzzy +msgid "Group is not valid" +msgstr "Group is Invalid" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" -msgstr "" +#, fuzzy +msgid "Group module settings" +msgstr "Update Settings" -#: lib/pages/dashboardpage.class.php:447 #, fuzzy -msgid "No Data Available" -msgstr "Not Available" - -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "" +msgid "Group update failed!" +msgstr "User update failed" -#: lib/pages/dashboardpage.class.php:481 #, fuzzy -msgid "Node is unavailable" -msgstr "No hash available" +msgid "Group updated!" +msgstr "Group added" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" -msgstr "" +msgid "Groups" +msgstr "Groups" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" +msgid "Groups are not allowed to schedule upload tasks" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" -msgstr "FOG Project on Github" +msgid "HD Device" +msgstr "HD Device" -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" -msgstr "FOG Client on Github" +msgid "HD Firmware" +msgstr "HD Firmware" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" -msgstr "FOG Wiki" +msgid "HD Model" +msgstr "HD Model" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" -msgstr "Donate to FOG" +msgid "HD Serial" +msgstr "HD Serial" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" -msgstr "FOG Version Information" +msgid "Hard Disk Firmware" +msgstr "Hard Disk Firmware" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" -msgstr "Kernel Versions" +msgid "Hard Disk Model" +msgstr "Hard Disk Model" -#: lib/pages/fogconfigurationpage.class.php:145 -#, fuzzy -msgid "FOG Version" -msgstr "BIOS Version" +msgid "Hard Disk Serial Number" +msgstr "Hard Disk Serial Number" -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" -msgstr "FOG License Information" +msgid "Hardware Information" +msgstr "Hardware Information" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" +msgid "Hash" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" +msgid "Have not locked the host for access" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" +msgid "Height must be 120 pixels." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" -msgstr "" +msgid "Help and Guide" +msgstr "Help and Guide" -#: lib/pages/fogconfigurationpage.class.php:220 -#, fuzzy -msgid "In FOG" -msgstr "In " +msgid "Hide Menu" +msgstr "Hide Menu" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" -msgstr "" +msgid "Hide Menu Timeout" +msgstr "Hide Menu Timeout" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" -msgstr "" +#, fuzzy +msgid "History Graph" +msgstr "View History for" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" -msgstr "" +#, fuzzy +msgid "History ID" +msgstr "Host ID" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" -msgstr "" +#, fuzzy +msgid "History IP" +msgstr "View History for" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" -msgstr "" +#, fuzzy +msgid "History Info" +msgstr "View History for" -#: lib/pages/fogconfigurationpage.class.php:226 #, fuzzy -msgid "to get the requested Kernel" -msgstr "No key being requested" +msgid "History Time" +msgstr "View History for" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" -msgstr "" +#, fuzzy +msgid "History User" +msgstr "View History for" + +msgid "Home" +msgstr "Home" + +msgid "Home Address" +msgstr "Home Address" + +msgid "Home Phone" +msgstr "Home Phone" + +msgid "Host" +msgstr "Host" -#: lib/pages/fogconfigurationpage.class.php:279 #, fuzzy -msgid "Downloading Kernel" -msgstr "Download" +msgid "Host AD Domain" +msgstr "AD Domain" -#: lib/pages/fogconfigurationpage.class.php:285 #, fuzzy -msgid "Starting process" -msgstr "Starting process..." +msgid "Host AD Join" +msgstr "AD Join" -#: lib/pages/fogconfigurationpage.class.php:307 #, fuzzy -msgid "Save Kernel" -msgstr "Kernel" +msgid "Host AD OU" +msgstr "Host ID" -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" -msgstr "Kernel Name" +#, fuzzy +msgid "Host Add to Group Fail" +msgstr "Add to group" -#: lib/pages/fogconfigurationpage.class.php:332 #, fuzzy -msgid "Install Kernel" -msgstr "Host Kernel" +msgid "Host Add to Group Success" +msgstr "Install / Update Successful!" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 #, fuzzy -msgid "Install" -msgstr "Smart Installer (Recommended)" +msgid "Host Associated" +msgstr "No node associated" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "FOG PXE Boot Menu Configuration" +#, fuzzy +msgid "Host Associated Snapins" +msgstr "No node associated" -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" +msgid "Host Auto Logout" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:465 -#, fuzzy -msgid "Option specifies the color settings of the main menu items" -msgstr "Option specifies the timeout value for the hidden menu system" +msgid "Host Bios Exit Type" +msgstr "Host Bios Exit Type" -#: lib/pages/fogconfigurationpage.class.php:469 #, fuzzy -msgid "Valid Host Colors" -msgstr "Invalid Host" +msgid "Host Create Fail" +msgstr "Host create failed" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 #, fuzzy -msgid "Option specifies the color text on the menu if the host" -msgstr "Option specifies the timeout value for the hidden menu system" +msgid "Host Create Success" +msgstr "Host Created" -#: lib/pages/fogconfigurationpage.class.php:479 -#, fuzzy -msgid "is valid" -msgstr "Data is invalid" +msgid "Host Created" +msgstr "Host Created" -#: lib/pages/fogconfigurationpage.class.php:483 -#, fuzzy -msgid "Invalid Host Colors" -msgstr "Invalid Host" +msgid "Host Desc" +msgstr "Host Desc" + +msgid "Host Description" +msgstr "Host Description" + +msgid "Host EFI Exit Type" +msgstr "Host EFI Exit Type" -#: lib/pages/fogconfigurationpage.class.php:494 #, fuzzy -msgid "is invalid" -msgstr "Data is invalid" +msgid "Host FOG Client Module configuration" +msgstr "Host Printer Configuration" -#: lib/pages/fogconfigurationpage.class.php:498 -msgid "Main pairings" -msgstr "" +#, fuzzy +msgid "Host HD Device" +msgstr "HD Device" -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" -msgstr "" +msgid "Host Hardware Inventory" +msgstr "Host Hardware Inventory" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" -msgstr "" +msgid "Host ID" +msgstr "Host ID" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" -msgstr "" +msgid "Host Image" +msgstr "Host Image" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" -msgstr "" +msgid "Host Imaging History" +msgstr "Host Imaging History" -#: lib/pages/fogconfigurationpage.class.php:526 #, fuzzy -msgid "Host pairings" +msgid "Host Init" msgstr "Host List" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "" - -#: lib/pages/fogconfigurationpage.class.php:538 #, fuzzy -msgid "Menu Timeout" -msgstr "Hide Menu Timeout" - -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" -msgstr "" +msgid "Host Invalid" +msgstr "Host List" -#: lib/pages/fogconfigurationpage.class.php:549 -#, fuzzy -msgid "Option specifies the menu timeout" -msgstr "Option specifies the timeout value for the hidden menu system" +msgid "Host Kernel" +msgstr "Host Kernel" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "" +msgid "Host Kernel Arguments" +msgstr "Host Kernel Arguments" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "" +msgid "Host List" +msgstr "Host List" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "" +msgid "Host Listing Export" +msgstr "Host Listing Export" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" -msgstr "" +msgid "Host Location" +msgstr "Host Location" -#: lib/pages/fogconfigurationpage.class.php:567 -#, fuzzy -msgid "Option specifies the background file to use" -msgstr "Option specifies the timeout value for the hidden menu system" +msgid "Host Login History" +msgstr "Host Login History" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" -msgstr "" +msgid "Host MAC" +msgstr "Host MAC" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 -#, fuzzy -msgid "Make Changes?" -msgstr "Save Changes" +msgid "Host Management" +msgstr "Host Management" -#: lib/pages/fogconfigurationpage.class.php:598 #, fuzzy -msgid "iPXE Menu Settings" -msgstr "Settings" +msgid "Host Membership" +msgstr "Membership" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "" +msgid "Host Memory" +msgstr "Host Memory" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" -msgstr "No Menu" +msgid "Host Name" +msgstr "Host Name" -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" -msgstr "" +msgid "Host Pending MAC" +msgstr "Host Pending MAC" -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" -msgstr "" +msgid "Host Primary Disk" +msgstr "Host Primary Disk" -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" -msgstr "" +msgid "Host Primary MAC" +msgstr "Host Primary MAC" -#: lib/pages/fogconfigurationpage.class.php:631 #, fuzzy -msgid "If there is not a task set" -msgstr "There is a host in a tasking" +msgid "Host Printers" +msgstr "Export Printers" -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" -msgstr "" +msgid "Host Product Key" +msgstr "Host Product Key" -#: lib/pages/fogconfigurationpage.class.php:635 #, fuzzy -msgid "if there is a task" -msgstr "There is a host in a tasking" +msgid "Host Product Keys" +msgstr "Host Product Key" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" -msgstr "" +msgid "Host Registration" +msgstr "Host Registration" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" -msgstr "Hide Menu" +msgid "Host Screen Resolution" +msgstr "Host Screen Resolution" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" -msgstr "" +#, fuzzy +msgid "Host Site" +msgstr "Host List" -#: lib/pages/fogconfigurationpage.class.php:649 #, fuzzy -msgid "If none is specified" -msgstr "No image specified" +msgid "Host Snapin History" +msgstr "Snapin History" -#: lib/pages/fogconfigurationpage.class.php:651 #, fuzzy -msgid "ESC is defaulted" -msgstr "Enabled as default" +msgid "Host Snapins" +msgstr "Export Snapins" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" -msgstr "" +#, fuzzy +msgid "Host Status" +msgstr "Status" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" -msgstr "Hide Menu Timeout" - -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "Option specifies the timeout value for the hidden menu system" +#, fuzzy +msgid "Host Unassociated Snapins" +msgstr "No node associated" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" -msgstr "Boot Key Sequence" +#, fuzzy +msgid "Host Update Fail" +msgstr "Host Update Failed" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" -msgstr "" +msgid "Host Update Failed" +msgstr "Host Update Failed" -#: lib/pages/fogconfigurationpage.class.php:678 #, fuzzy -msgid "access to the hidden menu system" -msgstr "Option specifies the timeout value for the hidden menu system" - -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" -msgstr "" +msgid "Host Update Success" +msgstr "Install / Update Successful!" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" -msgstr "Exit to Hard Drive Type" +#, fuzzy +msgid "Host Virus History" +msgstr "Virus History" -#: lib/pages/fogconfigurationpage.class.php:721 #, fuzzy -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "Option specifies the timeout value for the hidden menu system" +msgid "Host added!" +msgstr "Host added" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "Exit to Hard Drive Type(EFI)" +msgid "Host approval failed." +msgstr "Host approval failed." + +msgid "Host approved" +msgstr "Host approved" -#: lib/pages/fogconfigurationpage.class.php:729 #, fuzzy -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "Option specifies the timeout value for the hidden menu system" +msgid "Host description" +msgstr "Host Description" -#: lib/pages/fogconfigurationpage.class.php:758 #, fuzzy -msgid "Boot Exit settings" -msgstr "Auto Log Out Settings" +msgid "Host general" +msgstr "Host Kernel" -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" -msgstr "Advanced Menu Login" +msgid "Host is already a member of an active task" +msgstr "Host is already a member of an active task" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "" +msgid "Host is not valid" +msgstr "Host is not valid" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" +msgid "Host module settings" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "" +msgid "Host name" +msgstr "Host name" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" -msgstr "" +#, fuzzy +msgid "Host pairings" +msgstr "Host List" -#: lib/pages/fogconfigurationpage.class.php:782 #, fuzzy -msgid "If on" -msgstr "Icon" +msgid "Host printer configuration" +msgstr "Host Printer Configuration" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" +msgid "Host token is currently in use" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:786 #, fuzzy -msgid "menu system" -msgstr "Menu Item:" +msgid "Host updated!" +msgstr "User updated" -#: lib/pages/fogconfigurationpage.class.php:790 -#, fuzzy -msgid "Advanced menu command" -msgstr "Advanced Menu Login" +msgid "Host/Group Name" +msgstr "Host/Group Name" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" -msgstr "" +msgid "Hostname" +msgstr "Hostname" -#: lib/pages/fogconfigurationpage.class.php:800 -#, fuzzy -msgid "the advanced menu to use" -msgstr "Advanced Menu Login" +msgid "Hostname / IP" +msgstr "Hostname / IP" -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" -msgstr "" +msgid "Hostname Changer" +msgstr "Hostname Changer" + +msgid "Hosts" +msgstr "Hosts" -#: lib/pages/fogconfigurationpage.class.php:831 #, fuzzy -msgid "Advanced Menu settings" -msgstr "Advanced Settings" +msgid "Hosts Associated" +msgstr "No snapins associated" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" -msgstr "Invalid Timeout Value" +msgid "Hosts do not have the same image assigned" +msgstr "Hosts do not have the same image assigned" -#: lib/pages/fogconfigurationpage.class.php:974 #, fuzzy -msgid "iPXE Settings updated successfully!" -msgstr "Install / Update Successful!" +msgid "Hosts in task" +msgstr "Hosts in Task" -#: lib/pages/fogconfigurationpage.class.php:975 #, fuzzy -msgid "iPXE Update Success" -msgstr "Install / Update Successful!" +msgid "Hot Key Enabled" +msgstr "Image Enabled" -#: lib/pages/fogconfigurationpage.class.php:982 #, fuzzy -msgid "iPXE Update Fail" -msgstr "Snapin update failed" +msgid "Hot Key to use" +msgstr "Not able to update" -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "" +msgid "Hour value is not valid" +msgstr "Hour value is not valid" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" -msgstr "" +msgid "Hourly" +msgstr "Hourly" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" -msgstr "" +msgid "I am not the fog web server" +msgstr "I am not the fog web server" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" -msgstr "" +#, fuzzy +msgid "I am the group manager" +msgstr " | I am the only member" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" +#, fuzzy +msgid "I have read" +msgstr "Image created" + +msgid "I.M.C." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" +msgid "I.M.I." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1026 -#, fuzzy -msgid "from" -msgstr "From" +msgid "ID" +msgstr "ID" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 #, fuzzy -msgid "Menu Item" -msgstr "Menu Item:" +msgid "ID Must be set to edit" +msgstr "Must be encrypted" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 -#, fuzzy -msgid "Parameters" -msgstr "Parameters:" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 -#, fuzzy -msgid "Boot Options" -msgstr "Boot Options:" +msgid "IP Address" +msgstr "IP Address" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 -#, fuzzy -msgid "Default Item" -msgstr "Default Item:" +msgid "IP Address Changed" +msgstr "IP Address Changed" + +msgid "IP Passed is incorrect" +msgstr "IP Passed is incorrect" + +msgid "Icon" +msgstr "Icon" + +msgid "Icon File not found" +msgstr "Icon File not found" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 #, fuzzy -msgid "Hot Key Enabled" -msgstr "Image Enabled" +msgid "If a new module is published the client will" +msgstr "This setting defines the username used for the ssh client." -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 #, fuzzy -msgid "Hot Key to use" -msgstr "Not able to update" +msgid "If action of ask or get" +msgstr "Needs action string of ask, get, or list" + +msgid "If credentials are correct" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 #, fuzzy -msgid "Menu Show with" -msgstr "Menu Show with:" +msgid "If none is specified" +msgstr "No image specified" + +msgid "If off" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1161 #, fuzzy -msgid "Delete Menu Item" -msgstr "Menu Item:" +msgid "If on" +msgstr "Icon" -#: lib/pages/fogconfigurationpage.class.php:1310 #, fuzzy -msgid "iPXE Item Update Success" -msgstr "Install / Update Successful!" +msgid "If there is not a task set" +msgstr "There is a host in a tasking" + +msgid "If this is an upgrade" +msgstr "" + +msgid "If you add a blank node" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1328 -#, fuzzy -msgid "successfully removed!" -msgstr "successfully removed" +msgid "If you are looking to configure settings for a specific host" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1329 -#, fuzzy -msgid "iPXE Item Remove Success" -msgstr "Install / Update Successful!" +msgid "If you need help understanding what items are needed please" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "Create New iPXE Menu Entry" +msgid "If you would like to backup your" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1488 -#, fuzzy -msgid "New iPXE Menu" -msgstr "New Menu" +msgid "Ignore MAC on Client" +msgstr "Ignore MAC on Client" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "Menu Item or title cannot be blank" +#, fuzzy +msgid "Ignore MAC on Image" +msgstr "Ignore MAC for Imaging" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" -msgstr "A description needs to be set" +msgid "Image" +msgstr "Image" -#: lib/pages/fogconfigurationpage.class.php:1559 #, fuzzy -msgid "iPXE Item create failed!" -msgstr "Menu create failed" +msgid "Image Associated: " +msgstr "Image Association" + +msgid "Image Association" +msgstr "Image Association" -#: lib/pages/fogconfigurationpage.class.php:1575 #, fuzzy -msgid "iPXE Item added!" -msgstr "Printer Name" +msgid "Image Associations" +msgstr "Image Association" -#: lib/pages/fogconfigurationpage.class.php:1576 #, fuzzy -msgid "iPXE Item Create Success" -msgstr "Printer already exists" +msgid "Image Create Fail" +msgstr "User created" -#: lib/pages/fogconfigurationpage.class.php:1584 #, fuzzy -msgid "iPXE Item Create Fail" -msgstr "Printer update failed!" +msgid "Image Create Success" +msgstr "User created" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "FOG Client Service Updater" +msgid "Image Definition" +msgstr "Image Definition" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" -msgstr "Module Name" +msgid "Image Desc" +msgstr "Image Desc" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" -msgstr "Module MD5" +msgid "Image Description" +msgstr "Image Description" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" -msgstr "Module Type" +msgid "Image Enabled" +msgstr "Image Enabled" -#: lib/pages/fogconfigurationpage.class.php:1666 #, fuzzy -msgid "Current files" -msgstr "Current Records" +msgid "Image General" +msgstr "Update Printer" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 -#, fuzzy -msgid "NOTICE" -msgstr "NOT" +msgid "Image History" +msgstr "Image History" -#: lib/pages/fogconfigurationpage.class.php:1672 -#, fuzzy -msgid "The below items are only used for the old client." -msgstr "This setting defines the username used for the ssh client." +msgid "Image ID" +msgstr "Image ID" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" -msgstr "" +msgid "Image Management" +msgstr "Image Management" -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" -msgstr "" +msgid "Image Manager" +msgstr "Image Manager" -#: lib/pages/fogconfigurationpage.class.php:1678 #, fuzzy -msgid "This section allows you to update the modules and" -msgstr "" -"This section allows you to import known mac address makers into the FOG " -"Database for easier identification." +msgid "Image Membership" +msgstr "Membership" -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." -msgstr "" +msgid "Image Name" +msgstr "Image Name" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" -msgstr "" +msgid "Image Path" +msgstr "Image Path" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." -msgstr "" +msgid "Image Replicator" +msgstr "Image Replicator" -#: lib/pages/fogconfigurationpage.class.php:1686 #, fuzzy -msgid "If a new module is published the client will" -msgstr "This setting defines the username used for the ssh client." +msgid "Image Size" +msgstr "Image Name" -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" -msgstr "" +msgid "Image Size: ON CLIENT" +msgstr "Image Size: ON CLIENT" -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." -msgstr "" +msgid "Image Size: ON SERVER" +msgstr "Image Size: ON SERVER" -#: lib/pages/fogconfigurationpage.class.php:1710 #, fuzzy -msgid "Upload file" -msgstr "Upload File" +msgid "Image Storage Groups" +msgstr "Storage Group" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 #, fuzzy -msgid "Delete Selected Items" -msgstr "Delete Selected" +msgid "Image Task Completed" +msgstr "after task completion" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 -#, fuzzy -msgid "Make Changes" -msgstr "Save Changes" +msgid "Image Transfer Log" +msgstr "Image Transfer Log" -#: lib/pages/fogconfigurationpage.class.php:1795 -#, fuzzy -msgid "Item removed successfully!" -msgstr "saved successfully" +msgid "Image Type" +msgstr "Image Type" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 #, fuzzy -msgid "Client Modules Change Success" -msgstr "Printer already exists" +msgid "Image Update Fail" +msgstr "Image updated" -#: lib/pages/fogconfigurationpage.class.php:1803 #, fuzzy -msgid "No file uploaded!" -msgstr "No file uploaded" +msgid "Image Update Success" +msgstr "Install / Update Successful!" -#: lib/pages/fogconfigurationpage.class.php:1849 #, fuzzy -msgid "Modules added/updated successfully!" -msgstr "Modules added/updated" - -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" -msgstr "" - -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" -msgstr "MAC Address Manufacturer Listing" +msgid "Image Used" +msgstr "Imaged" -#: lib/pages/fogconfigurationpage.class.php:1881 #, fuzzy -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" -msgstr "" -"This section allows you to import known mac address makers into the FOG " -"Database for easier identification." - -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" -msgstr "Current Records" +msgid "Image added!" +msgstr "Image Name" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" -msgstr "Delete MACs" +msgid "Image is not enabled" +msgstr "Image is not enabled" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" -msgstr "Update MACs" +msgid "Image is not valid" +msgstr "Image is not valid" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" -msgstr "FOG System Settings" +msgid "Image is protected and cannot be deleted" +msgstr "Image is protected and cannot be deleted" -#: lib/pages/fogconfigurationpage.class.php:2073 #, fuzzy -msgid "This section allows you to customize or alter" -msgstr "" -"This section allows you to import known mac address makers into the FOG " -"Database for easier identification." +msgid "Image to DMI Mappings" +msgstr "Add Image to DMI Associations" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" -msgstr "" +#, fuzzy +msgid "Image update failed!" +msgstr "Image updated" -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "" +#, fuzzy +msgid "Image updated!" +msgstr "Image updated" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" -msgstr "" +msgid "Imaged" +msgstr "Imaged" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" -msgstr "" +#, fuzzy +msgid "Imaged By" +msgstr "Imaged" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 #, fuzzy -msgid "Partclone Gzip" -msgstr "Partclone" +msgid "Imaged For" +msgstr "Imaged" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "" +#, fuzzy +msgid "Imaged From" +msgstr "Imaged" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" -msgstr "" +msgid "Images" +msgstr "Images" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 #, fuzzy -msgid "Partclone Uncompressed Split 200MiB" -msgstr "Partclone" +msgid "Imaging Completed" +msgstr "after task completion" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 #, fuzzy -msgid "Partclone Zstd" -msgstr "Partclone" +msgid "Imaging Duration" +msgstr "Imaging Log" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 -#, fuzzy -msgid "Partclone Zstd Split 200MiB" -msgstr "Partclone" +msgid "Imaging Log" +msgstr "Imaging Log" -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" -msgstr "No image specified" +msgid "Imaging Over the last 30 days" +msgstr "Imaging Over the last 30 days" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 #, fuzzy -msgid "Reset Token" -msgstr "Access Token" - -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" -msgstr "No Image specified" +msgid "Imaging Started" +msgstr "Snapin State" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." -msgstr "" +msgid "Import" +msgstr "Import" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "" +#, fuzzy +msgid "Import Accesscontrols" +msgstr "Access Control" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 #, fuzzy -msgid "Settings successfully stored!" -msgstr "has been successfully updated" +msgid "Import CSV" +msgstr "Export CSV" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 #, fuzzy -msgid "Settings Update Success" -msgstr "Install / Update Successful!" +msgid "Import CSV?" +msgstr "Export CSV" + +msgid "Import Configuration" +msgstr "Import Configuration" -#: lib/pages/fogconfigurationpage.class.php:2874 #, fuzzy -msgid "Service Setting Update Success" -msgstr "Install / Update Successful!" +msgid "Import Database" +msgstr "Date" -#: lib/pages/fogconfigurationpage.class.php:2878 #, fuzzy -msgid "Rebranding element has been successfully updated!" -msgstr "has been successfully updated" +msgid "Import Database?" +msgstr "Date" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 #, fuzzy -msgid "Settings Update Fail" -msgstr "Settings Updated" +msgid "Import FOG Reports" +msgstr "About FOG Reports" -#: lib/pages/fogconfigurationpage.class.php:2896 #, fuzzy -msgid "Service Setting Update Failed" -msgstr "Settings Updated" +msgid "Import Failed" +msgstr "Import Printers" -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" -msgstr "Service Master" +msgid "Import Groups" +msgstr "Import Groups" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" -msgstr "Scheduler" +msgid "Import Hosts" +msgstr "Import Hosts" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" -msgstr "Image Replicator" +msgid "Import Images" +msgstr "Import Images" -#: lib/pages/fogconfigurationpage.class.php:3052 #, fuzzy -msgid "Image Size" -msgstr "Image Name" - -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" -msgstr "Snapin Replicator" +msgid "Import LDAPs" +msgstr "Import" -#: lib/pages/fogconfigurationpage.class.php:3070 #, fuzzy -msgid "Snapin Hash" -msgstr "Snapin Path" - -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" -msgstr "Ping Hosts" +msgid "Import Locations" +msgstr "Host Location" -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" -msgstr "Image Transfer Log" +msgid "Import Printers" +msgstr "Import Printers" -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" -msgstr "Snapin Transfer Log" +#, fuzzy +msgid "Import Report?" +msgstr "Import Hosts" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" -msgstr "FOG Log Viewer" +#, fuzzy +msgid "Import Reports" +msgstr "Import Hosts" -#: lib/pages/fogconfigurationpage.class.php:3235 #, fuzzy -msgid "Lines" -msgstr "Line" +msgid "Import Sites" +msgstr "Import Printers" -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" -msgstr "Reverse the file: (newest on top)" +msgid "Import Snapins" +msgstr "Import Snapins" -#: lib/pages/fogconfigurationpage.class.php:3251 #, fuzzy -msgid "Pause" -msgstr "User" +msgid "Import Subnetgroups" +msgstr "Import Groups" -#: lib/pages/fogconfigurationpage.class.php:3270 #, fuzzy -msgid "Configuration Import/Export" -msgstr "Configuration" +msgid "Import Successful" +msgstr "Successful" -#: lib/pages/fogconfigurationpage.class.php:3290 #, fuzzy -msgid "Export Database?" -msgstr "Date" +msgid "Import Task States" +msgstr "Task States" -#: lib/pages/fogconfigurationpage.class.php:3309 #, fuzzy -msgid "Export Database" -msgstr "Date" +msgid "Import Task Types" +msgstr "Task Types" + +msgid "Import Users" +msgstr "Import Users" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 #, fuzzy -msgid "Import Database?" -msgstr "Date" +msgid "Import WOLBroadcasts" +msgstr "Host Location" -#: lib/pages/fogconfigurationpage.class.php:3351 #, fuzzy -msgid "Import Database" -msgstr "Date" +msgid "Import Windows Keys" +msgstr "Windows 8" -#: lib/pages/fogconfigurationpage.class.php:3399 #, fuzzy -msgid "Import Successful" -msgstr "Successful" +msgid "In" +msgstr "In " -#: lib/pages/fogconfigurationpage.class.php:3403 #, fuzzy -msgid "Database imported and added successfully!" -msgstr "Database Imported and added successfully" +msgid "In FOG" +msgstr "In " + +msgid "Included Items" +msgstr "Included Items" -#: lib/pages/fogconfigurationpage.class.php:3414 #, fuzzy -msgid "Import Failed" -msgstr "Import Printers" +msgid "Info" +msgstr "In " + +msgid "Information" +msgstr "Information" -#: lib/pages/fogconfigurationpage.class.php:3418 #, fuzzy -msgid "There were errors during import!" -msgstr "There were errors during import" +msgid "Init" +msgstr "In " -#: lib/pages/fogconfigurationpage.class.php:3427 #, fuzzy -msgid "Database Reverted" -msgstr "Database changes reverted" +msgid "Initial Template" +msgstr "Snapin Template" -#: lib/pages/fogconfigurationpage.class.php:3430 #, fuzzy -msgid "Database changes reverted!" -msgstr "Database changes reverted" +msgid "Initrd Name" +msgstr "Printer Name" -#: lib/pages/fogconfigurationpage.class.php:3437 #, fuzzy -msgid "Database Failure" -msgstr "Database Update Failed" +msgid "Initrd Update" +msgstr "Invalid type" -#: lib/pages/fogconfigurationpage.class.php:3441 #, fuzzy -msgid "Errors on revert detected!" -msgstr "Errors on revert detected" +msgid "Install" +msgstr "Smart Installer (Recommended)" -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" -msgstr "New Group" +msgid "Install / Update Failed!" +msgstr "Install / Update Failed!" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" -msgstr "Group Name" +msgid "Install / Update Successful!" +msgstr "Install / Update Successful!" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" -msgstr "Group Description" +#, fuzzy +msgid "Install Initrd" +msgstr "Smart Installer (Recommended)" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" -msgstr "Group Kernel" +#, fuzzy +msgid "Install Kernel" +msgstr "Host Kernel" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" -msgstr "Group Kernel Arguments" +#, fuzzy +msgid "Install Plugin" +msgstr "Install Plugins" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" -msgstr "Group Primary Disk" +msgid "Install Plugins" +msgstr "Install Plugins" -#: lib/pages/groupmanagementpage.class.php:298 #, fuzzy -msgid "A group name is required!" -msgstr "An image name is required!" +msgid "Install/Update" +msgstr "Install / Update Failed!" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 #, fuzzy -msgid "A group already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Install/Update Now" +msgstr "Install/Upgrade Now" -#: lib/pages/groupmanagementpage.class.php:313 -#, fuzzy -msgid "Add group failed!" -msgstr "Add snapin failed!" +msgid "Installed Plugins" +msgstr "Installed Plugins" -#: lib/pages/groupmanagementpage.class.php:318 #, fuzzy -msgid "Group added!" -msgstr "Group added" +msgid "Integrity Settings" +msgstr "Settings" -#: lib/pages/groupmanagementpage.class.php:319 -#, fuzzy -msgid "Group Create Success" -msgstr "User created" +msgid "Interface" +msgstr "Interface" + +msgid "Interface not ready, waiting for it to come up" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:327 #, fuzzy -msgid "Group Create Fail" -msgstr "Group create failed" +msgid "Invalid" +msgstr "Invalid ID" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" -msgstr "Group Product Key" +msgid "Invalid Class" +msgstr "Invalid Class" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "Group Bios Exit Type" +#, fuzzy +msgid "Invalid File" +msgstr "Invalid File" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "Group EFI Exit Type" +msgid "Invalid Folder" +msgstr "Invalid Folder" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" -msgstr "" +msgid "Invalid Host" +msgstr "Invalid Host" -#: lib/pages/groupmanagementpage.class.php:562 #, fuzzy -msgid "Group general" -msgstr "Group Kernel" +msgid "Invalid Host Colors" +msgstr "Invalid Host" -#: lib/pages/groupmanagementpage.class.php:611 #, fuzzy -msgid "Group image" -msgstr "Group Name" +msgid "Invalid ID passed" +msgstr "Invalid unit passed" -#: lib/pages/groupmanagementpage.class.php:644 #, fuzzy -msgid "Group image association" -msgstr "Image Association" +msgid "Invalid IP" +msgstr "Invalid IP" + +msgid "Invalid Login" +msgstr "Invalid Login" + +msgid "Invalid MAC Address!" +msgstr "Invalid MAC Address!" -#: lib/pages/groupmanagementpage.class.php:698 #, fuzzy -msgid "Group Power Management Remove" -msgstr "User Management" +msgid "Invalid Multicast Session" +msgstr "Start Multicast Session" + +msgid "Invalid Plugin Passed" +msgstr "Invalid Plugin Passed" + +msgid "Invalid Server Information!" +msgstr "Invalid Server Information!" + +msgid "Invalid Snapin" +msgstr "Invalid Snapin" + +msgid "Invalid Snapin Tasking" +msgstr "Invalid Snapin Tasking" -#: lib/pages/groupmanagementpage.class.php:703 #, fuzzy -msgid "Delete all PM tasks?" -msgstr "Delete all selected %ss" +msgid "Invalid Snapin Tasking object" +msgstr "Invalid Snapin Tasking" -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" -msgstr "Printer Alias" +msgid "Invalid Storage Group" +msgstr "Invalid Storage Group" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" -msgstr "Printer Type" +msgid "Invalid Storage Node" +msgstr "Invalid Storage Node" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" -msgstr "TCP/IP" +msgid "Invalid Task Type" +msgstr "Invalid Task Type" + +#, fuzzy +msgid "Invalid Tasking" +msgstr "Invalid task" + +msgid "Invalid Timeout Value" +msgstr "Invalid Timeout Value" -#: lib/pages/groupmanagementpage.class.php:817 #, fuzzy -msgid "Group Printers" -msgstr "Export Printers" +msgid "Invalid Type" +msgstr "Invalid type" -#: lib/pages/groupmanagementpage.class.php:827 #, fuzzy -msgid "Printer Configuration" -msgstr "Service Configuration" +msgid "Invalid data being parsed" +msgstr "Invalid token passed" -#: lib/pages/groupmanagementpage.class.php:832 #, fuzzy -msgid "Select management level for these hosts" -msgstr "Select Management Level for this Host" +msgid "Invalid data found" +msgstr "Invalid data" -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" -msgstr "" +#, fuzzy +msgid "Invalid date" +msgstr "Invalid type" -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" -msgstr "" +msgid "Invalid image" +msgstr "Invalid image" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" -msgstr "" +msgid "Invalid image assigned to host" +msgstr "Invalid image assigned to host" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" -msgstr "" +msgid "Invalid key being added" +msgstr "Invalid key being added" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" -msgstr "No Printer Management" +#, fuzzy +msgid "Invalid key being destroyed" +msgstr "Invalid key being removed" + +msgid "Invalid key being removed" +msgstr "Invalid key being removed" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 #, fuzzy -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." -msgstr "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." +msgid "Invalid key being requested" +msgstr "Invalid key being removed" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" -msgstr "FOG Managed Printers" +msgid "Invalid key being set" +msgstr "Invalid key being set" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." -msgstr "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." +msgid "Invalid method called" +msgstr "Invalid method called" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" -msgstr "Only Assigned Printers" +msgid "Invalid numeric entry" +msgstr "Invalid numeric entry" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 #, fuzzy -msgid "Update printer configuration" -msgstr "Host Printer Configuration" +msgid "Invalid object to try tasking" +msgstr "Invalid object type passed" -#: lib/pages/groupmanagementpage.class.php:918 -#, fuzzy -msgid "Printer Associations" -msgstr "Printer Description" +msgid "Invalid object type passed" +msgstr "Invalid object type passed" -#: lib/pages/groupmanagementpage.class.php:928 -#, fuzzy -msgid "Make Printer Changes" -msgstr "Save Changes" +msgid "Invalid operational mode" +msgstr "Invalid operational mode" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 #, fuzzy -msgid "Add Printers" -msgstr "Printer" +msgid "Invalid scheduling type" +msgstr "Invalid type" -#: lib/pages/groupmanagementpage.class.php:945 #, fuzzy -msgid "Update Default Printer" -msgstr "Update Printer" - -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 -msgid "Remove selected printers" -msgstr "Remove selected printers" - -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" -msgstr "Snapin Name" +msgid "Invalid snapin" +msgstr "Invalid Snapin" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 -#, fuzzy -msgid "Snapin Created" -msgstr "Snapin updated" +msgid "Invalid task" +msgstr "Invalid task" -#: lib/pages/groupmanagementpage.class.php:1044 #, fuzzy -msgid "Group Snapins" -msgstr "Export Snapins" +msgid "Invalid task id" +msgstr "Invalid task" -#: lib/pages/groupmanagementpage.class.php:1054 #, fuzzy -msgid "Available Snapins" -msgstr "All Snap-ins" +msgid "Invalid task id sent" +msgstr "Invalid task" -#: lib/pages/groupmanagementpage.class.php:1064 #, fuzzy -msgid "Make Snapin Changes" -msgstr "Save Changes" +msgid "Invalid tasking type passed" +msgstr "Invalid object type passed" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 #, fuzzy -msgid "Add selected snapins" -msgstr "Remove selected snapins" +msgid "Invalid tasking!" +msgstr "Invalid task" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" -msgstr "Remove selected snapins" +msgid "Invalid token passed" +msgstr "Invalid token passed" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 #, fuzzy -msgid "This module is only used on the old client" -msgstr "This setting defines the username used for the ssh client." +msgid "Invalid token passed for host" +msgstr "Invalid token passed" -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgid "Invalid type, merge to add, diff to remove" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" -msgstr "" +msgid "Invalid user and/or channel passed" +msgstr "Invalid user and/or channel passed" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "" +msgid "Inventory" +msgstr "Inventory" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "" +msgid "Inventory ID" +msgstr "Inventory ID" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" -msgstr "" +msgid "Is Advanced" +msgstr "Is Advanced" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "" +msgid "Is Enabled" +msgstr "Is Enabled" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "" +msgid "Is Graph Enabled" +msgstr "Is Graph Enabled" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" +msgid "Is Group" +msgstr "Is Group" + +msgid "Is Master Node" +msgstr "Is Master Node" + +#, fuzzy +msgid "Is Pack" +msgstr "Is a" + +msgid "Is Restricted User " msgstr "" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" +msgid "Is a" +msgstr "Is a" + +#, fuzzy +msgid "Is restricted" +msgstr "Task Started" + +msgid "It can be used on Windows" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" +#, fuzzy +msgid "It is primarily geared for the smart installer methodology now" msgstr "" +"Detailed documentation. It is primarily geared for the smart installer " +"methodology now." -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" +msgid "It operates by getting the max bandwidth setting of the node" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" +msgid "It tells the client to download snapins from" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" +msgid "It will operate based on the fields the area typically requires" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" +#, fuzzy +msgid "Item removed successfully!" +msgstr "saved successfully" + +msgid "Items must be an array" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" -msgstr "Select/Deselect All" +msgid "Job Create Date" +msgstr "Job Create Date" -#: lib/pages/groupmanagementpage.class.php:1300 -#, fuzzy -msgid "Group FOG Client Module configuration" -msgstr "Host Printer Configuration" +msgid "Job Create Time" +msgstr "Job Create Time" -#: lib/pages/groupmanagementpage.class.php:1310 #, fuzzy -msgid "Group module settings" -msgstr "Update Settings" +msgid "Join Domain after deploy" +msgstr "Join Domain after image task" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -#, fuzzy -msgid "Update module configurations" -msgstr "Upload a new client module/configuration file" +msgid "Kernel" +msgstr "Kernel" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "Screen Width (in pixels)" +msgid "Kernel Args" +msgstr "Kernel Args" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "Screen Height (in pixels)" +msgid "Kernel Arguments" +msgstr "Kernel Arguments" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" -msgstr "Screen Refresh Rate (in Hz)" +msgid "Kernel Name" +msgstr "Kernel Name" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" -msgstr "Group Screen Resolution" +msgid "Kernel Update" +msgstr "Kernel Update" + +msgid "Kernel Versions" +msgstr "Kernel Versions" + +msgid "Kernels/Inits from location" +msgstr "Kernels/Inits from location" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 #, fuzzy -msgid "Update display resolution" -msgstr "Update Primary Group" +msgid "Key" +msgstr "DMI Key" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "Auto Log Out Time (in minutes)" +#, fuzzy +msgid "Key Name" +msgstr "Kernel Name" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" -msgstr "" +#, fuzzy +msgid "Key field must be a string" +msgstr "Event must be a string" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 #, fuzzy -msgid "Update auto-logout time" -msgstr "Update Images" +msgid "Key must be a string" +msgstr "Event must be a string" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" -msgstr "Export PDF" +#, fuzzy +msgid "Key must be a string or index" +msgstr "Event must be a string" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" -msgstr "Host Memory" +msgid "Key must be an array of keys or a string." +msgstr "" + +msgid "Kill" +msgstr "Kill" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 #, fuzzy -msgid "You must select an action to perform" -msgstr "You must specify the alias and port" +msgid "LDAP Connection Name" +msgstr "Location Name" -#: lib/pages/groupmanagementpage.class.php:2099 #, fuzzy -msgid "Group update failed!" -msgstr "User update failed" +msgid "LDAP Connection Name" +msgstr "Location Name" -#: lib/pages/groupmanagementpage.class.php:2104 #, fuzzy -msgid "Group updated!" -msgstr "Group added" +msgid "LDAP Create Fail" +msgstr "User created" -#: lib/pages/groupmanagementpage.class.php:2105 #, fuzzy -msgid "Group Update Success" +msgid "LDAP Create Success" msgstr "User created" -#: lib/pages/groupmanagementpage.class.php:2113 #, fuzzy -msgid "Group Update Fail" -msgstr "Group create failed" +msgid "LDAP General" +msgstr "General" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" -msgstr "Imaged" +msgid "LDAP Management" +msgstr "LDAP Management" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" -msgstr "Assigned Image" +#, fuzzy +msgid "LDAP Ports" +msgstr "LDAP Server" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" -msgstr "" +msgid "LDAP Server" +msgstr "LDAP Server" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" -msgstr "Pending Host List" +msgid "LDAP Server Address" +msgstr "LDAP Server Address" + +msgid "LDAP Server Description" +msgstr "LDAP Server Description" -#: lib/pages/hostmanagementpage.class.php:333 #, fuzzy -msgid "Approve selected hosts" -msgstr "Approve selected Hosts" +msgid "LDAP Server Port" +msgstr "LDAP Server" -#: lib/pages/hostmanagementpage.class.php:338 #, fuzzy -msgid "Delete selected hosts" -msgstr "Delete selected Hosts" +msgid "LDAP Server added!" +msgstr "LDAP Server Name" -#: lib/pages/hostmanagementpage.class.php:367 #, fuzzy -msgid "Approve Success" -msgstr "Approve this host?" +msgid "LDAP Server updated!" +msgstr "LDAP Server Name" -#: lib/pages/hostmanagementpage.class.php:368 #, fuzzy -msgid "Selected hosts approved successfully" -msgstr "saved successfully" +msgid "LDAP Servers" +msgstr "LDAP Server" -#: lib/pages/hostmanagementpage.class.php:376 #, fuzzy -msgid "Deleted Success" -msgstr "User created" +msgid "LDAP Update Fail" +msgstr "Snapin update failed" -#: lib/pages/hostmanagementpage.class.php:377 #, fuzzy -msgid "Selected hosts deleted successfully" +msgid "LDAP Update Success" msgstr "Install / Update Successful!" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" -msgstr "New Host" - -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" -msgstr "Host Name" - -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" -msgstr "Primary MAC" - -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" -msgstr "Host Description" +msgid "Language" +msgstr "Language" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" -msgstr "Host Product Key" +#, fuzzy +msgid "Last Captured" +msgstr "Host Created" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" -msgstr "Host Image" +msgid "Last Deployed" +msgstr "Last Deployed" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" -msgstr "Host Kernel" +#, fuzzy +msgid "Last Updated Time" +msgstr "Host Update Failed" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" -msgstr "Host Kernel Arguments" +#, fuzzy +msgid "Last captured" +msgstr "Host Created" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 #, fuzzy -msgid "Host Init" -msgstr "Host List" +msgid "Latest Development Version" +msgstr "Latest Version" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" -msgstr "Host Primary Disk" +msgid "Latest Version" +msgstr "Latest Version" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "Host Bios Exit Type" +#, fuzzy +msgid "Level must be an integer" +msgstr "Event must be a string" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" -msgstr "Host EFI Exit Type" +msgid "License" +msgstr "License" -#: lib/pages/hostmanagementpage.class.php:616 -#, fuzzy -msgid "A host name is required!" -msgstr "An image name is required!" +msgid "Line" +msgstr "Line" -#: lib/pages/hostmanagementpage.class.php:621 #, fuzzy -msgid "A mac address is required!" -msgstr "MAC Address is required" +msgid "Lines" +msgstr "Line" -#: lib/pages/hostmanagementpage.class.php:626 -#, fuzzy -msgid "A host already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Link New Account" +msgstr "Link New Account" -#: lib/pages/hostmanagementpage.class.php:631 -msgid "MAC Format is invalid" -msgstr "MAC Format is invalid" +msgid "Link Pushbullet Account" +msgstr "Link Pushbullet Account" -#: lib/pages/hostmanagementpage.class.php:638 #, fuzzy -msgid "A host with this mac already exists with name" -msgstr "A host with this MAC already exists with Hostname: %s" +msgid "Link Pushbullet Account Fail" +msgstr "Link Pushbullet Account" -#: lib/pages/hostmanagementpage.class.php:673 #, fuzzy -msgid "Add host failed!" -msgstr "Add snapin failed!" +msgid "Link Pushbullet Account Success" +msgstr "Link Pushbullet Account" -#: lib/pages/hostmanagementpage.class.php:678 -#, fuzzy -msgid "Host added!" -msgstr "Host added" +msgid "Link Slack Account" +msgstr "Link Slack Account" -#: lib/pages/hostmanagementpage.class.php:679 #, fuzzy -msgid "Host Create Success" -msgstr "Host Created" +msgid "Link Slack Account Fail" +msgstr "Link Slack Account" -#: lib/pages/hostmanagementpage.class.php:687 #, fuzzy -msgid "Host Create Fail" -msgstr "Host create failed" +msgid "Link Slack Account Success" +msgstr "Link Slack Account" -#: lib/pages/hostmanagementpage.class.php:830 #, fuzzy -msgid "Current Power Management settings" -msgstr "User Management" +msgid "Link must be a string" +msgstr "Event must be a string" + +msgid "Linux" +msgstr "Linux" -#: lib/pages/hostmanagementpage.class.php:841 #, fuzzy -msgid "Update PM Values" -msgstr "Update Images" +msgid "List" +msgstr "Host List" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" -msgstr "Remove MAC" +#, php-format +msgid "List All %s" +msgstr "List All %s" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" -msgstr "Ignore MAC on Client" +#, fuzzy, php-format +msgid "List all roles" +msgstr "List All %s" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." +#, fuzzy, php-format +msgid "List all rules" +msgstr "List All %s" + +msgid "Listener must be an array or an object" msgstr "" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -#, fuzzy -msgid "Ignore MAC on Image" -msgstr "Ignore MAC for Imaging" +msgid "Load Average" +msgstr "Load Average" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." -msgstr "" +msgid "Load MAC Vendors" +msgstr "Load MAC Vendors" -#: lib/pages/hostmanagementpage.class.php:968 #, fuzzy -msgid "Approve MAC" -msgstr "Approve All MACs?" +msgid "Load failed" +msgstr "Load failed: %s" -#: lib/pages/hostmanagementpage.class.php:981 #, fuzzy -msgid "Approve all pending? " -msgstr "Approve selected pending macs" +msgid "Loading data to field" +msgstr "Loading data to field %s" -#: lib/pages/hostmanagementpage.class.php:987 -#, fuzzy -msgid "Approve all pending macs" -msgstr "Approve selected pending macs" +msgid "Location" +msgstr "Location" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" -msgstr "Add MAC" +#, fuzzy +msgid "Location Association" +msgstr "Image Association" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "Additional MACs" +#, fuzzy +msgid "Location Create Fail" +msgstr "Snapin updated" -#: lib/pages/hostmanagementpage.class.php:1113 #, fuzzy -msgid "Host description" -msgstr "Host Description" +msgid "Location Create Success" +msgstr "Snapin updated" -#: lib/pages/hostmanagementpage.class.php:1263 #, fuzzy -msgid "Host general" -msgstr "Host Kernel" +msgid "Location General" +msgstr "Snapin Enabled" -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" -msgstr "Please enter a hostname" +msgid "Location Management" +msgstr "Location Management" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "Please enter a valid hostname" +msgid "Location Name" +msgstr "Location Name" -#: lib/pages/hostmanagementpage.class.php:1345 #, fuzzy -msgid "Please use another hostname" -msgstr "Please enter a hostname" +msgid "Location Update Fail" +msgstr "Location Updated" -#: lib/pages/hostmanagementpage.class.php:1349 #, fuzzy -msgid "Please enter a mac address" -msgstr "Please enter a valid IP address" +msgid "Location Update Success" +msgstr "Install / Update Successful!" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 #, fuzzy -msgid "Please enter a valid mac address" -msgstr "Please enter a valid IP address" +msgid "Location added!" +msgstr "Location Name" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" -msgstr "" +msgid "Location already Exists, please try again." +msgstr "Location already Exists, please try again." -#: lib/pages/hostmanagementpage.class.php:1485 -#, fuzzy -msgid "Host Printers" -msgstr "Export Printers" +msgid "Location is a plugin that allows your FOG Server" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:1495 #, fuzzy -msgid "Host printer configuration" -msgstr "Host Printer Configuration" +msgid "Location update failed!" +msgstr "Snapin update failed" -#: lib/pages/hostmanagementpage.class.php:1500 #, fuzzy -msgid "Select management level for this host" -msgstr "Select Management Level for this Host" - -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" -msgstr "Check here to see what printers can be added" +msgid "Location updated!" +msgstr "Location Updated" -#: lib/pages/hostmanagementpage.class.php:1617 -#, fuzzy -msgid "Add selected printers" -msgstr "Remove selected printers" +msgid "Location/Deployed" +msgstr "Location/Deployed" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "Default" +msgid "Locations" +msgstr "Locations" -#: lib/pages/hostmanagementpage.class.php:1702 -#, fuzzy -msgid "Update/Remove printers" -msgstr "Update Printer" +msgid "Log Viewer" +msgstr "Log Viewer" -#: lib/pages/hostmanagementpage.class.php:1709 -#, fuzzy -msgid "Update default printer" -msgstr "Update Printer" +msgid "Login" +msgstr "Login" -#: lib/pages/hostmanagementpage.class.php:1804 -#, fuzzy -msgid "Host Snapins" -msgstr "Export Snapins" +msgid "Login History" +msgstr "Login History" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" -msgstr "Check here to see what snapins can be added" +#, fuzzy +msgid "Login Users" +msgstr "Login" -#: lib/pages/hostmanagementpage.class.php:1835 #, fuzzy -msgid "Add Snapins" -msgstr "Add Snapin(s)" +msgid "Login accepted" +msgstr "Login" -#: lib/pages/hostmanagementpage.class.php:1911 #, fuzzy -msgid "Remove snapins" -msgstr "Remove Snapin(s)" +msgid "Login failed" +msgstr "Load failed: %s" -#: lib/pages/hostmanagementpage.class.php:2127 #, fuzzy -msgid "Host FOG Client Module configuration" -msgstr "Host Printer Configuration" +msgid "Login time" +msgstr "Login" -#: lib/pages/hostmanagementpage.class.php:2137 -msgid "Host module settings" +msgid "Login with the FOG credentials and you will see the menu" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" -msgstr "Host Screen Resolution" +msgid "Logout" +msgstr "Logout" -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" -msgstr "" +#, fuzzy +msgid "Logout not found" +msgstr "Record not found, Error: %s" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" -msgstr "Other Tag #1" +msgid "MAC" +msgstr "MAC" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" -msgstr "Other Tag #2" +#, fuzzy +msgid "MAC Address" +msgstr "MAC Address List" -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" -msgstr "System Serial Number" +msgid "MAC Address List" +msgstr "MAC Address List" -#: lib/pages/hostmanagementpage.class.php:2454 -#, fuzzy -msgid "System UUID" -msgstr "System Uptime" +msgid "MAC Address Manufacturer Listing" +msgstr "MAC Address Manufacturer Listing" -#: lib/pages/hostmanagementpage.class.php:2459 -msgid "Motherboard Manufacturer" -msgstr "Motherboard Manufacturer" +msgid "MAC Format is invalid" +msgstr "MAC Format is invalid" -#: lib/pages/hostmanagementpage.class.php:2460 -msgid "Motherboard Product Name" -msgstr "Motherboard Product Name" +msgid "MAC address is already in use by another host" +msgstr "MAC address is already in use by another host" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "Motherboard Version" +msgid "MB Asset" +msgstr "MB Asset" -#: lib/pages/hostmanagementpage.class.php:2462 -msgid "Motherboard Serial Number" -msgstr "Motherboard Serial Number" +msgid "MB Manufacturer" +msgstr "MB Manufacturer" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "Motherboard Asset Tag" +msgid "MB Name" +msgstr "MB Name" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" -msgstr "CPU Normal Speed" +msgid "MB Serial" +msgstr "MB Serial" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" -msgstr "Hard Disk Model" +msgid "MB Version" +msgstr "MB Version" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" -msgstr "Hard Disk Firmware" +msgid "MSI" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" -msgstr "Hard Disk Serial Number" +#, fuzzy +msgid "Machine Details" +msgstr "Snapin Return Detail" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" -msgstr "Host Hardware Inventory" +msgid "Main Colors" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" -msgstr "Virus Name" +msgid "Main Menu" +msgstr "Main Menu" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" -msgstr "Quarantine" +msgid "Main fallback pairings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2619 -#, fuzzy -msgid "Host Virus History" -msgstr "Virus History" +msgid "Main pairings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2632 #, fuzzy -msgid "Clear all history" -msgstr "clear all history" +msgid "Make Changes" +msgstr "Save Changes" -#: lib/pages/hostmanagementpage.class.php:2642 #, fuzzy -msgid "Virus Report" -msgstr "Report" +msgid "Make Changes?" +msgstr "Save Changes" -#: lib/pages/hostmanagementpage.class.php:2746 #, fuzzy -msgid "Logout not found" -msgstr "Record not found, Error: %s" - -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" -msgstr "" - -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" -msgstr "Host Login History" +msgid "Make Printer Changes" +msgstr "Save Changes" -#: lib/pages/hostmanagementpage.class.php:2805 #, fuzzy -msgid "View History For" -msgstr "View History for" +msgid "Make Snapin Changes" +msgstr "Save Changes" -#: lib/pages/hostmanagementpage.class.php:2815 #, fuzzy -msgid "Selected Logins" -msgstr "Remove selected snapins" +msgid "Make changes?" +msgstr "Save Changes" -#: lib/pages/hostmanagementpage.class.php:2825 -#, fuzzy -msgid "History Graph" -msgstr "View History for" +msgid "Management" +msgstr "Management" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "Engineer" +msgid "Management Login" +msgstr "Management Login" -#: lib/pages/hostmanagementpage.class.php:2859 -#, fuzzy -msgid "Imaged From" -msgstr "Imaged" +msgid "Management Password" +msgstr "Management Password" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "Start" +msgid "Management Username" +msgstr "Management Username" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "End" +msgid "Master Node" +msgstr "Master Node" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "Duration" +msgid "Max" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" -msgstr "Host Imaging History" +msgid "Max Clients" +msgstr "Max Clients" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" -msgstr "Start Time" +msgid "Max Size" +msgstr "Max Size" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" -msgstr "End Time" +msgid "Members" +msgstr "Members" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "Return Code" +msgid "Membership" +msgstr "Membership" -#: lib/pages/hostmanagementpage.class.php:3076 -#, fuzzy -msgid "Snapin task not completed" -msgstr "Snapin is not valid" +msgid "Memory" +msgstr "Memory" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" +msgid "Menu Background File" +msgstr "" + +msgid "Menu Hide/No Menu settings" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3106 #, fuzzy -msgid "Host Snapin History" -msgstr "Snapin History" +msgid "Menu Item" +msgstr "Menu Item:" -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" -msgstr "Host approved" +msgid "Menu Item or title cannot be blank" +msgstr "Menu Item or title cannot be blank" -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." -msgstr "Host approval failed." +#, fuzzy +msgid "Menu Show with" +msgstr "Menu Show with:" -#: lib/pages/hostmanagementpage.class.php:3158 #, fuzzy -msgid "Approve Host" -msgstr "Approve this host?" +msgid "Menu Timeout" +msgstr "Hide Menu Timeout" -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" -msgstr "Approve this host?" +msgid "Menu colors, pairings, settings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3186 -#, fuzzy -msgid "Approved" -msgstr "Host approved" +msgid "Message" +msgstr "Message" -#: lib/pages/hostmanagementpage.class.php:3213 -#, fuzzy -msgid "All Pending MACs approved" -msgstr "All Pending MACs approved." +msgid "Method does not exist" +msgstr "Method does not exist" -#: lib/pages/hostmanagementpage.class.php:3665 -#, fuzzy -msgid "Virus items removed!" -msgstr "Virus cleared" +msgid "Microsoft AD" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" -msgstr "Host Update Failed" +msgid "Midnight" +msgstr "Midnight" -#: lib/pages/hostmanagementpage.class.php:3693 -#, fuzzy -msgid "Host updated!" -msgstr "User updated" +msgid "Mind you" +msgstr "" + +msgid "Minute value is not valid" +msgstr "Minute value is not valid" + +msgid "Miscellaneous" +msgstr "Miscellaneous" + +msgid "Missing a temporary folder" +msgstr "Missing a temporary folder" -#: lib/pages/hostmanagementpage.class.php:3694 #, fuzzy -msgid "Host Update Success" -msgstr "Install / Update Successful!" +msgid "Missing one or more extensions." +msgstr "Missing Extensions" -#: lib/pages/hostmanagementpage.class.php:3702 #, fuzzy -msgid "Host Update Fail" -msgstr "Host Update Failed" +msgid "Mobile Group" +msgstr "Modify Group" -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" -msgstr "Failed to create new Group" +msgid "Mode" +msgstr "Mode" + +msgid "Model" +msgstr "Model" + +msgid "Module MD5" +msgstr "Module MD5" + +msgid "Module Name" +msgstr "Module Name" + +msgid "Module Type" +msgstr "Module Type" -#: lib/pages/hostmanagementpage.class.php:3747 #, fuzzy -msgid "Successfully added selected hosts to the group!" -msgstr "Successfully associated Hosts with the Group " +msgid "Module Update Fail" +msgstr "Group create failed" -#: lib/pages/hostmanagementpage.class.php:3748 #, fuzzy -msgid "Host Add to Group Success" -msgstr "Install / Update Successful!" +msgid "Module Update Success" +msgstr "User created" -#: lib/pages/hostmanagementpage.class.php:3755 #, fuzzy -msgid "Host Add to Group Fail" -msgstr "Add to group" +msgid "Module updated!" +msgstr "Group added" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" -msgstr "Partimage" +#, fuzzy +msgid "Modules added/updated successfully!" +msgstr "Modules added/updated" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" -msgstr "Partclone" +msgid "Month value is not valid" +msgstr "Month value is not valid" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" -msgstr "Primary Storage Group" +msgid "Monthly" +msgstr "Monthly" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "Image Name" +msgid "Motherboard Asset Tag" +msgstr "Motherboard Asset Tag" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" -msgstr "Image Size: ON CLIENT" +msgid "Motherboard Manufacturer" +msgstr "Motherboard Manufacturer" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" -msgstr "Image Size: ON SERVER" +msgid "Motherboard Product Name" +msgstr "Motherboard Product Name" -#: lib/pages/imagemanagementpage.class.php:151 -#, fuzzy -msgid "Captured" -msgstr "Created" +msgid "Motherboard Serial Number" +msgstr "Motherboard Serial Number" -#: lib/pages/imagemanagementpage.class.php:170 -#, fuzzy -msgid "Last captured" -msgstr "Host Created" +msgid "Motherboard Version" +msgstr "Motherboard Version" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" -msgstr "Not set" +msgid "Multicast" +msgstr "Multicast" -#: lib/pages/imagemanagementpage.class.php:298 #, fuzzy -msgid "Invalid date" -msgstr "Invalid type" +msgid "Multicast Image" +msgstr "Multicast" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -#, fuzzy -msgid "Not protected" -msgstr "Not Protected" +msgid "Multicast Quick Deploy" +msgstr "Multicast Quick Deploy" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" -msgstr "Protected" +msgid "Multicast session created" +msgstr "Multicast session created" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 #, fuzzy -msgid "Disabled" -msgstr "Enabled" +msgid "Multicast tasks from groups" +msgstr "MulticastTask" -#: lib/pages/imagemanagementpage.class.php:362 -#, fuzzy -msgid "Partclone Compressed" -msgstr "Partclone" +msgid "MulticastTask" +msgstr "MulticastTask" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" +msgid "Must be 0 through 23 for hours in a day." msgstr "" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" +msgid "Must be 0 through 59 for minutes in an hour." msgstr "" -#: lib/pages/imagemanagementpage.class.php:377 -#, fuzzy -msgid "ZSTD Compressed" -msgstr "Partclone" +msgid "Must be encrypted" +msgstr "Must be encrypted" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" +msgid "Must have a name to create the table" msgstr "" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" -msgstr "New Image" - -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" -msgstr "Image Description" +#, fuzzy +msgid "Must have an image associated" +msgstr "Must have snapin associated to a group" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "Operating System" +msgid "Must use an" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" -msgstr "Partition" +msgid "MySQL Administrator or by running" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" -msgstr "Image Enabled" +msgid "N/A" +msgstr "N/A" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" -msgstr "Replicate?" +msgid "NAME" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" -msgstr "Compression" +msgid "NOT" +msgstr "NOT" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" -msgstr "Image Manager" +#, fuzzy +msgid "NOTE" +msgstr "NOT" -#: lib/pages/imagemanagementpage.class.php:639 #, fuzzy -msgid "Create Image" -msgstr "Create Date" +msgid "NOTICE" +msgstr "NOT" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Name" +msgstr "Name" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -#, fuzzy -msgid "Please choose a different name" -msgstr "Please choose an image" +msgid "Name Change/AD Join Forced reboot" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -#, fuzzy -msgid "this one is reserved for FOG" -msgstr "Please choose a different name, this one is reserved for FOG." +msgid "Need more support" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -#, fuzzy -msgid "Please choose a different path" -msgstr "Please choose an image" +msgid "Need the table name to drop" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" +msgid "Needs a 256-bit key" msgstr "" -#: lib/pages/imagemanagementpage.class.php:744 -#, fuzzy -msgid "Add image failed!" -msgstr "Add snapin failed!" +msgid "Needs action string of ask, get, or list" +msgstr "Needs action string of ask, get, or list" -#: lib/pages/imagemanagementpage.class.php:754 -#, fuzzy -msgid "Image added!" -msgstr "Image Name" +msgid "Network Information" +msgstr "Network Information" -#: lib/pages/imagemanagementpage.class.php:755 #, fuzzy -msgid "Image Create Success" -msgstr "User created" +msgid "Network Installer" +msgstr "Network Printer" -#: lib/pages/imagemanagementpage.class.php:763 -#, fuzzy -msgid "Image Create Fail" -msgstr "User created" +msgid "Network Printer" +msgstr "Network Printer" -#: lib/pages/imagemanagementpage.class.php:1041 -#, fuzzy -msgid "Image General" -msgstr "Update Printer" +msgid "New" +msgstr "New" -#: lib/pages/imagemanagementpage.class.php:1132 -#, fuzzy -msgid "Image Storage Groups" -msgstr "Storage Group" +msgid "New Broadcast Address" +msgstr "New Broadcast Address" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -#, fuzzy -msgid "Check here to see what storage groups can be added" -msgstr "Check here to see what snapins can be added" +msgid "New Client and Utilities" +msgstr "New Client and Utilities" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 #, fuzzy -msgid "Add Storage Groups" -msgstr "Add Storage Group" +msgid "New Event" +msgstr "Add Event" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -#, fuzzy -msgid "Add selected storage groups" -msgstr "Remove selected snapins" +msgid "New Group" +msgstr "New Group" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -#, fuzzy -msgid "Update/Remove Storage Groups" -msgstr "Update Printer" +msgid "New Host" +msgstr "New Host" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 -#, fuzzy -msgid "Update primary group" -msgstr "Update Primary Group" +msgid "New Image" +msgstr "New Image" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 -#, fuzzy -msgid "Remove selected groups" -msgstr "Remove selected snapins" +msgid "New LDAP Server" +msgstr "New LDAP Server" + +msgid "New Location" +msgstr "New Location" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 #, fuzzy -msgid "No groups selected to be removed" -msgstr "No Group selected and no new Group name entered" +msgid "New Role" +msgstr "New Menu" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 #, fuzzy -msgid "You must have at least one group associated" -msgstr "You must have at least one Storage Group" +msgid "New Rule" +msgstr "New Menu" + +msgid "New Search" +msgstr "New Search" -#: lib/pages/imagemanagementpage.class.php:1433 #, fuzzy -msgid "Image update failed!" -msgstr "Image updated" +msgid "New Site" +msgstr "Add New Snapin" -#: lib/pages/imagemanagementpage.class.php:1439 #, fuzzy -msgid "Image updated!" -msgstr "Image updated" +msgid "New Snapin" +msgstr "Add New Snapin" -#: lib/pages/imagemanagementpage.class.php:1440 #, fuzzy -msgid "Image Update Success" -msgstr "Install / Update Successful!" +msgid "New Storage Group" +msgstr "Storage Group" -#: lib/pages/imagemanagementpage.class.php:1448 #, fuzzy -msgid "Image Update Fail" -msgstr "Image updated" +msgid "New Storage Node" +msgstr "Storage Node" -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" -msgstr "Session Name" +#, fuzzy +msgid "New Subnetgroup" +msgstr "Storage Group" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" -msgstr "Client Count" +msgid "New Task State" +msgstr "New Task State" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "Timeout" +msgid "New Task Type" +msgstr "New Task Type" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" -msgstr "minutes" +msgid "New User" +msgstr "New User" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" -msgstr "Select Image" +#, fuzzy +msgid "New Windows Key" +msgstr "Windows 8" -#: lib/pages/imagemanagementpage.class.php:1524 #, fuzzy -msgid "Start Session" -msgstr "Start Multicast Session" +msgid "New iPXE Menu" +msgstr "New Menu" -#: lib/pages/imagemanagementpage.class.php:1548 #, fuzzy -msgid "Multicast Image" -msgstr "Multicast" +msgid "New key must be a string" +msgstr "Event must be a string" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" -msgstr "Start Multicast Session" +#, fuzzy +msgid "New power management task" +msgstr "User Management" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" -msgstr "Task Name" +msgid "No" +msgstr "No" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" -msgstr "Clients" +msgid "No Active Snapin Jobs Found For Host" +msgstr "No Active Snapin Jobs Found For Host" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" -msgstr "Percent" +msgid "No Active Task found for Host" +msgstr "No Active Task found for Host" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" -msgstr "Stop Task" +msgid "No Data" +msgstr "No Data" -#: lib/pages/imagemanagementpage.class.php:1647 #, fuzzy -msgid "Current Sessions" -msgstr "Image Association" +msgid "No Data Available" +msgstr "Not Available" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" -msgstr "Please input a session name" +msgid "No FOGPage Class found for this node" +msgstr "No FOGPage Class found for this node" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" -msgstr "Please choose an image" +msgid "No Host found for MAC Address" +msgstr "No Host found for MAC Address" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" -msgstr "Session with that name already exists" +msgid "No Image specified" +msgstr "No Image specified" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" -msgstr "Session name cannot be the same as an existing hostname" +msgid "No Menu" +msgstr "No Menu" -#: lib/pages/imagemanagementpage.class.php:1710 -#, fuzzy -msgid "Please wait until a slot is open" -msgstr "Please enter an access token" +msgid "No Printer Management" +msgstr "No Printer Management" -#: lib/pages/imagemanagementpage.class.php:1711 #, fuzzy -msgid "There are currently" -msgstr "There are" +msgid "No Site" +msgstr "Not Set" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" +msgid "No access is allowed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1714 -#, fuzzy -msgid "Your server only allows" -msgstr "You are only allowed to assign" - -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" -msgstr "Failed to create Session" +msgid "No activity information available for this group" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" -msgstr "Multicast session created" +msgid "No class value sent" +msgstr "No class value sent" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" -msgstr "has been started on port" +msgid "No complete time recorded" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" -msgstr "Cancelled task" +msgid "No connection available" +msgstr "No connection available" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" -msgstr "Plugin Name" +msgid "No connection to the database" +msgstr "No connection to the database" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." -msgstr "Unable to determine plugin details." +msgid "No data returned" +msgstr "No data returned" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" -msgstr "Plugin Description" +#, fuzzy +msgid "No data to insert" +msgstr "No data returned" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" -msgstr "Plugin Installation" +msgid "No database to work off" +msgstr "No database to work off" -#: lib/pages/pluginmanagementpage.class.php:326 -#, fuzzy -msgid "This plugin is not installed" +msgid "No directories defined to be cleaned up" msgstr "" -"This plugin is currently not installed, would you like to install it now?" -#: lib/pages/pluginmanagementpage.class.php:328 -#, fuzzy -msgid "would you like to install it now" -msgstr "" -"This plugin is currently not installed, would you like to install it now?" +msgid "No fields passed" +msgstr "No fields passed" -#: lib/pages/pluginmanagementpage.class.php:333 #, fuzzy -msgid "Install Plugin" -msgstr "Install Plugins" +msgid "No file uploaded!" +msgstr "No file uploaded" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" -msgstr "Reboot after deploy" +msgid "No file was uploaded" +msgstr "No file was uploaded" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" -msgstr "Shutdown after deploy" +msgid "No friendly name defined" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:393 -#, fuzzy -msgid "Basic Settings" -msgstr "Settings" +msgid "No groups defined, search will return all hosts." +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" -msgstr "DMI Field" +#, fuzzy +msgid "No groups selected to be removed" +msgstr "No Group selected and no new Group name entered" -#: lib/pages/pluginmanagementpage.class.php:431 #, fuzzy -msgid "After image Action" -msgstr "Image Association" +msgid "No hosts available to task" +msgstr "Hosts in Task" -#: lib/pages/pluginmanagementpage.class.php:449 #, fuzzy -msgid "Image Associations" -msgstr "Image Association" +msgid "No hosts to task" +msgstr "Hosts in Task" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" -msgstr "Image Definition" +msgid "No icons found" +msgstr "No icons found" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" -msgstr "DMI Result" +msgid "No image specified" +msgstr "No image specified" -#: lib/pages/pluginmanagementpage.class.php:476 #, fuzzy -msgid "Image to DMI Mappings" -msgstr "Add Image to DMI Associations" +msgid "No images associated with this group as master" +msgstr "There are no snapins associated with this host" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" -msgstr "OS Name" +#, fuzzy +msgid "No items found" +msgstr "No icons found" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" -msgstr "DMI Key" +msgid "No key being requested" +msgstr "No key being requested" -#: lib/pages/pluginmanagementpage.class.php:531 #, fuzzy -msgid "Current Associations" -msgstr "Image Association" +msgid "No link established to the database" +msgstr "No connection to the database" -#: lib/pages/pluginmanagementpage.class.php:555 -#, fuzzy -msgid "Remove Selected?" -msgstr "Remove selected snapins" +msgid "No master nodes are enabled to delete this image" +msgstr "No master nodes are enabled to delete this image" -#: lib/pages/pluginmanagementpage.class.php:565 -#, fuzzy -msgid "Remove Associations" -msgstr "Image Association" +msgid "No need to sync" +msgstr "No need to sync" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" -msgstr "Invalid Plugin Passed" +#, fuzzy +msgid "No new tasks found" +msgstr "No valid class sent" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" -msgstr "Failed to install plugin" +msgid "No node associated" +msgstr "No node associated" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" -msgstr "Failed to save plugin" +msgid "No node associated with any addresses of this system" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" -msgstr "Plugin Installed!" +msgid "No open slots" +msgstr "No open slots" -#: lib/pages/pluginmanagementpage.class.php:666 #, fuzzy -msgid "Must have an image associated" -msgstr "Must have snapin associated to a group" +msgid "No query passed" +msgstr "No query sent" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" -msgstr "Failed to save assignment" +msgid "No query result, use query() first" +msgstr "No query result, use query() first" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" -msgstr "Assignment saved successfully" +msgid "No query sent" +msgstr "No query sent" + +msgid "No results found" +msgstr "No results found" -#: lib/pages/pluginmanagementpage.class.php:691 #, fuzzy -msgid "Destroyed assignments" -msgstr "Destroyed assignment" +msgid "No role selected" +msgstr "Delete Selected" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" -msgstr "Destroyed assignment" +#, fuzzy +msgid "No rule selected" +msgstr "Delete Selected" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" -msgstr "Printer Name" +#, fuzzy +msgid "No site" +msgstr "Not set" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" -msgstr "Port" +#, fuzzy +msgid "No snapins associated with this group as master" +msgstr "There are no snapins associated with this host" + +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/printermanagementpage.class.php:89 #, fuzzy -msgid "Config File" -msgstr "Printer Config File" +msgid "No valid Image defined for this host" +msgstr "No Image defined for this host" + +msgid "No valid class sent" +msgstr "No valid class sent" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 #, fuzzy -msgid "Copy from existing" -msgstr "Could not create printer" +msgid "No valid hosts found and" +msgstr "No valid class sent" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 #, fuzzy -msgid "Printer Name/Alias" -msgstr "Printer Alias" - -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." -msgstr "" +msgid "No valid storage nodes found" +msgstr "Invalid storage node" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" -msgstr "Printer Description" +#, fuzzy +msgid "No valid tasks found" +msgstr "No valid class sent" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" -msgstr "Printer Port" +msgid "No values passed" +msgstr "No values passed" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" -msgstr "Printer INF File" +#, fuzzy +msgid "No viable macs to use" +msgstr "Not able to update" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" -msgstr "Printer IP" +msgid "No viable storage groups found" +msgstr "" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" -msgstr "Printer Model" +msgid "Node" +msgstr "Node" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -#, fuzzy -msgid "Printer Config File" -msgstr "Service Configuration" +msgid "Node Offline" +msgstr "" -#: lib/pages/printermanagementpage.class.php:459 #, fuzzy -msgid "Create New Printer" -msgstr "Create New %s" +msgid "Node Parent" +msgstr "Percent" -#: lib/pages/printermanagementpage.class.php:473 #, fuzzy -msgid "Add New Printer" -msgstr "Printer" +msgid "Node is unavailable" +msgstr "No hash available" -#: lib/pages/printermanagementpage.class.php:515 #, fuzzy -msgid "A name must be set" +msgid "Node must be a string" msgstr "Event must be a string" -#: lib/pages/printermanagementpage.class.php:518 #, fuzzy -msgid "Printer name already exists" -msgstr "Printer already exists" +msgid "Nodes" +msgstr "Node" -#: lib/pages/printermanagementpage.class.php:545 #, fuzzy -msgid "Add printer failed!" -msgstr "Add snapin failed!" +msgid "Normal Snapin" +msgstr "Invalid Snapin" -#: lib/pages/printermanagementpage.class.php:551 -#, fuzzy -msgid "Printer added!" -msgstr "Printer Name" +msgid "Not Available" +msgstr "Not Available" -#: lib/pages/printermanagementpage.class.php:552 -#, fuzzy -msgid "Printer Create Success" -msgstr "Printer already exists" +msgid "Not Registered Hosts" +msgstr "Not Registered Hosts" -#: lib/pages/printermanagementpage.class.php:560 #, fuzzy -msgid "Printer Create Fail" -msgstr "Printer update failed!" +msgid "Not Valid" +msgstr "Invalid data" -#: lib/pages/printermanagementpage.class.php:869 -#, fuzzy -msgid "Printer General" -msgstr "Printer Model" +msgid "Not a number" +msgstr "Not a number" -#: lib/pages/printermanagementpage.class.php:936 -#, fuzzy -msgid "A printer name is required!" -msgstr "An image name is required!" +msgid "Not able to add" +msgstr "Not able to add" -#: lib/pages/printermanagementpage.class.php:957 -#, fuzzy -msgid "A printer already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Not all elements in filter or ports setting are integer" +msgstr "" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" -msgstr "Printer update failed!" +msgid "Not allowed here" +msgstr "Not allowed here" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" -msgstr "Printer updated!" +msgid "Not found" +msgstr "Not found" -#: lib/pages/printermanagementpage.class.php:996 #, fuzzy -msgid "Printer Update Success" -msgstr "Printer updated!" +msgid "Not protected" +msgstr "Not Protected" -#: lib/pages/printermanagementpage.class.php:1004 -#, fuzzy -msgid "Printer Update Fail" -msgstr "Printer update failed!" +msgid "Not set" +msgstr "Not set" -#: lib/pages/reportmanagementpage.class.php:158 -#, fuzzy -msgid "Import Reports" -msgstr "Import Hosts" +msgid "Not syncing" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:189 -#, fuzzy -msgid "Import FOG Reports" -msgstr "About FOG Reports" +msgid "Not syncing Image" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 #, fuzzy -msgid "Import Report?" -msgstr "Import Hosts" +msgid "Not syncing Snapin" +msgstr "No connection to get snapin" + +msgid "Notes" +msgstr "Notes" -#: lib/pages/reportmanagementpage.class.php:250 #, fuzzy -msgid "This section allows you to uploade user" -msgstr "" -"This section allows you to import known mac address makers into the FOG " -"Database for easier identification." +msgid "Nothing passed to search for" +msgstr "Enter a username to search for" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" +msgid "O/S" +msgstr "O/S" + +msgid "OS Name" +msgstr "OS Name" + +msgid "Object" +msgstr "Object" + +msgid "Old clients are the clients that came with FOG" msgstr "" -#: lib/pages/reportmanagementpage.class.php:254 #, fuzzy -msgid "the base FOG install" -msgstr "Reboot after install" +msgid "Old key must be a string" +msgstr "Event must be a string" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" -msgstr "About FOG Reports" +msgid "On Dashboard" +msgstr "On Dashboard" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" +msgid "On reboot we will try to find a new node" msgstr "" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" -msgstr "" +#, fuzzy +msgid "One or more macs are associated with a host" +msgstr "Error, Is an image associated with this host" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" +msgid "Only Assigned Printers" +msgstr "Only Assigned Printers" + +#, fuzzy +msgid "Only allowed to have" +msgstr "You are only allowed to assign" + +msgid "Open Source Computer Cloning Solution" +msgstr "Open Source Computer Cloning Solution" + +msgid "Open VNC connection to" +msgstr "Open VNC connection to" + +msgid "OpenLDAP" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" -msgstr "Database Schema Installer / Updater" +msgid "Operating System" +msgstr "Operating System" -#: lib/pages/schemaupdaterpage.class.php:63 #, fuzzy -msgid "Install/Update" -msgstr "Install / Update Failed!" +msgid "Operation field not set" +msgstr "Operation Field not set: %s" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" +msgid "Option below enforces a login system" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" +msgid "Option sets if there will even" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" +msgid "Option sets the ipxe keysequence to enter to gain menu" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" +msgid "Option sets the key sequence" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:75 #, fuzzy -msgid "window" -msgstr "Windows 7" +msgid "Option specifies the background file to use" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/pages/schemaupdaterpage.class.php:76 #, fuzzy -msgid "Applications" -msgstr "Actions" +msgid "Option specifies the color settings of the main menu items" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/pages/schemaupdaterpage.class.php:77 #, fuzzy -msgid "System Tools" -msgstr "System Type" +msgid "Option specifies the color text on the menu if the host" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/pages/schemaupdaterpage.class.php:78 #, fuzzy -msgid "Terminal" -msgstr "Serial" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "" +#, fuzzy +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/pages/schemaupdaterpage.class.php:80 #, fuzzy -msgid "directory" -msgstr "Directory" +msgid "Option specifies the menu timeout" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" +msgid "Option specifies the pairings after host checks" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" +msgid "Option specifies the pairings as a fallback" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" +msgid "Option specifies the pairings of colors to" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "Option specifies the timeout value for the hidden menu system" + +msgid "Or there was no number defined for joining session" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" +msgid "Organizational Unit" +msgstr "Organizational Unit" + +msgid "Other Tag #1" +msgstr "Other Tag #1" + +msgid "Other Tag #2" +msgstr "Other Tag #2" + +msgid "Other Tag 1" +msgstr "Other Tag 1" + +msgid "Other Tag 2" +msgstr "Other Tag 2" + +msgid "Otherwise it will just boot like normal" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" +msgid "PC Check-out Agreement" +msgstr "PC Check-out Agreement" + +#, fuzzy +msgid "Parameters" +msgstr "Parameters:" + +#, fuzzy +msgid "Parent" +msgstr "Percent" + +#, fuzzy +msgid "Parent Node" +msgstr "Printer Model" + +msgid "Partclone" +msgstr "Partclone" + +#, fuzzy +msgid "Partclone Compressed" +msgstr "Partclone" + +msgid "Partclone Compressed 200MiB split" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" +#, fuzzy +msgid "Partclone Gzip" +msgstr "Partclone" + +msgid "Partclone Gzip Split 200MiB" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" +msgid "Partclone Uncompressed" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" +msgid "Partclone Uncompressed 200MiB split" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:103 #, fuzzy -msgid "Are you sure you wish to" -msgstr "Are you sure you wish to remove these items" +msgid "Partclone Uncompressed Split 200MiB" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:104 #, fuzzy -msgid "install or update the FOG database" -msgstr "Are you sure you wish to install or update the FOG database?" +msgid "Partclone Zstd" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:115 #, fuzzy -msgid "Install/Update Now" -msgstr "Install/Upgrade Now" +msgid "Partclone Zstd Split 200MiB" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:125 -#, fuzzy -msgid "Database not available" -msgstr "Database update failed" +msgid "Partimage" +msgstr "Partimage" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" -msgstr "" +msgid "Partition" +msgstr "Partition" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" -msgstr "" +msgid "Password" +msgstr "Password" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" -msgstr "" +msgid "Password reset requires a user account to reset" +msgstr "Password reset requires a user account to reset" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" -msgstr "" +msgid "Path" +msgstr "Path" -#: lib/pages/schemaupdaterpage.class.php:138 #, fuzzy -msgid "Also confirm that the database is indeed running" -msgstr "Check that database is running" - -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" -msgstr "" +msgid "Path is unavailable" +msgstr "No hash available" -#: lib/pages/schemaupdaterpage.class.php:140 #, fuzzy -msgid "and if the Database service is running" -msgstr "Check that database is running" - -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" -msgstr "" - -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" -msgstr "No connection available" +msgid "Pause" +msgstr "User" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" -msgstr "Update not required!" +msgid "Pending Host List" +msgstr "Pending Host List" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 -#, fuzzy -msgid "Function" -msgstr "Action" +msgid "Pending Hosts" +msgstr "Pending Hosts" -#: lib/pages/schemaupdaterpage.class.php:230 #, fuzzy -msgid "Database" -msgstr "Date" +msgid "Pending MAC Actions" +msgstr "Pending MACs" -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" -msgstr "" +msgid "Pending MAC Export" +msgstr "Pending MAC Export" -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" -msgstr "" +msgid "Pending MACs" +msgstr "Pending MACs" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" -msgstr "Install / Update Failed!" +msgid "Pending Registered Hosts" +msgstr "Pending Registered Hosts" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" -msgstr "The following errors occurred" +msgid "Pending Registration created by FOG_CLIENT" +msgstr "Pending Registration created by FOG_CLIENT" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" -msgstr "Install / Update Successful!" +msgid "Pending hosts" +msgstr "Pending hosts" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" -msgstr "to login" +msgid "Pending macs" +msgstr "Pending macs" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" -msgstr "The following errors occured" +msgid "Pending..." +msgstr "Pending..." -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" -msgstr "Edit Node" +msgid "Percent" +msgstr "Percent" -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" -msgstr "Hostname / IP" +msgid "Perform Immediately?" +msgstr "" -#: lib/pages/serverinfo.class.php:75 -#, fuzzy -msgid "Server information" -msgstr "General Information" +msgid "Perform search" +msgstr "" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" -msgstr "Invalid Server Information!" +msgid "Personal Information" +msgstr "Personal Information" -#: lib/pages/serverinfo.class.php:94 #, fuzzy -msgid "Unable to get server infromation!" -msgstr "Unable to pull server information!" +msgid "Pick a template" +msgstr "Snapin Template" + +msgid "Ping Hosts" +msgstr "Ping Hosts" -#: lib/pages/serverinfo.class.php:145 #, fuzzy -msgid "Unable to find basic information!" -msgstr "Unable to find basic information" +msgid "Please Enter an admin or mobile lookup name" +msgstr "Please enter a name for this location." -#: lib/pages/serverinfo.class.php:158 -msgid "TX" -msgstr "TX" +msgid "Please Select an option" +msgstr "Please Select an option" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" -msgstr "RX" +msgid "Please be very careful changing any of the following settings" +msgstr "" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "Dropped" +msgid "Please check your credentials in" +msgstr "" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" -msgstr "General Information" +#, fuzzy +msgid "Please choose a different name" +msgstr "Please choose an image" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "Uptime" +#, fuzzy +msgid "Please choose a different path" +msgstr "Please choose an image" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" -msgstr "CPU Type" +msgid "Please choose an image" +msgstr "Please choose an image" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "CPU Count" +msgid "Please confirm you want to delete" +msgstr "Please confirm you want to delete" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" -msgstr "CPU Model" +#, fuzzy +msgid "Please enter a Group Member Attribute" +msgstr "Please enter a LDAP server address" -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "CPU Cache" +msgid "Please enter a LDAP server address" +msgstr "Please enter a LDAP server address" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "Total Memory" +#, fuzzy +msgid "Please enter a Search Base DN" +msgstr "Please enter a hostname" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" -msgstr "Used Memory" +#, fuzzy +msgid "Please enter a User Name Attribute" +msgstr "Please enter a hostname" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "Free Memory" +msgid "Please enter a hostname" +msgstr "Please enter a hostname" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" -msgstr "File System Information" +#, fuzzy +msgid "Please enter a mac address" +msgstr "Please enter a valid IP address" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "Total Disk Space" +msgid "Please enter a name for this LDAP server." +msgstr "Please enter a name for this LDAP server." -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "Used Disk Space" +msgid "Please enter a name for this location." +msgstr "Please enter a name for this location." -#: lib/pages/serverinfo.class.php:203 #, fuzzy -msgid "Free Disk Space" -msgstr "Used Disk Space" - -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" -msgstr "Network Information" - -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" -msgstr "Information" +msgid "Please enter a valid CIDR subnet." +msgstr "Please enter a valid hostname" -#: lib/pages/serviceconfigurationpage.class.php:133 #, fuzzy -msgid "Service general" -msgstr "Service Tag" +msgid "Please enter a valid CIDR subnets comma separated list" +msgstr "Please enter a valid IP address" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "" +msgid "Please enter a valid hostname" +msgstr "Please enter a valid hostname" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." -msgstr "" +msgid "Please enter a valid ip" +msgstr "Please enter a valid ip" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." -msgstr "" +#, fuzzy +msgid "Please enter a valid mac address" +msgstr "Please enter a valid IP address" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "" +msgid "Please enter an access token" +msgstr "Please enter an access token" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "" +msgid "Please input a session name" +msgstr "Please input a session name" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." +msgid "Please physically associate" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" -msgstr "FOG Client Download" - -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "" +#, fuzzy +msgid "Please select a valid ldap port" +msgstr "Please enter a valid ip" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "" +#, fuzzy +msgid "Please select an LDAP port to use" +msgstr "Please select an option" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" -msgstr "FOG Crypt" +msgid "Please select an option" +msgstr "Please select an option" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "" +#, fuzzy +msgid "Please select the snapin you want to install" +msgstr "Please select the snapin you want to deploy" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" -msgstr "Click Here" +msgid "Please select the storage group this location relates to." +msgstr "Please select the storage group this location relates to." -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" -msgstr "Enabled as default" +msgid "Please update your FOG Client, this is old and insecure" +msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" -msgstr "Service Status" +#, fuzzy +msgid "Please use another hostname" +msgstr "Please enter a hostname" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 #, fuzzy -msgid "Current settings" -msgstr "Update Current Listing" +msgid "Please wait until a slot is open" +msgstr "Please enter an access token" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "Default log out time (in minutes)" +msgid "Plugin" +msgstr "Plugin" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 #, fuzzy -msgid "This module is only used on the old client." -msgstr "This setting defines the username used for the ssh client." +msgid "Plugin Configuration" +msgstr "Service Configuration" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" -msgstr "" +msgid "Plugin Description" +msgstr "Plugin Description" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." -msgstr "" +msgid "Plugin Installation" +msgstr "Plugin Installation" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" -msgstr "" +msgid "Plugin Installed!" +msgstr "Plugin Installed!" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." -msgstr "" +msgid "Plugin Management" +msgstr "Plugin Management" -#: lib/pages/serviceconfigurationpage.class.php:463 -#, fuzzy -msgid "Directories" -msgstr "Directory" +msgid "Plugin Name" +msgstr "Plugin Name" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" -msgstr "Add Directory" +#, fuzzy +msgid "Plugins" +msgstr "Plugin" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" -msgstr "Default Width" +msgid "Port" +msgstr "Port" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "Default Height" +#, fuzzy +msgid "Port is not valid ldap/ldaps port" +msgstr "Port is not valid ldap/ldaps ports" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" -msgstr "Default Refresh Rate" +#, fuzzy +msgid "Postfix requires an action of login" +msgstr "Postfix requires an action of login, logout, or start to operate" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." -msgstr "" +msgid "Postfix requires an action of login, logout, or start to operate" +msgstr "Postfix requires an action of login, logout, or start to operate" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." -msgstr "" +#, fuzzy +msgid "Power Management" +msgstr "User Management" -#: lib/pages/serviceconfigurationpage.class.php:678 #, fuzzy -msgid "New Event" -msgstr "Add Event" +msgid "Power Management Task run time" +msgstr "User Management" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" -msgstr "Add Event" +msgid "Primary Group" +msgstr "Primary Group" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." -msgstr "" +msgid "Primary MAC" +msgstr "Primary MAC" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" -msgstr "Add User" +msgid "Primary Storage Group" +msgstr "Primary Storage Group" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." -msgstr "" +msgid "Primary User" +msgstr "Primary User" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "" +msgid "Printed" +msgstr "Printed" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." -msgstr "" +msgid "Printer" +msgstr "Printer" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" -msgstr "Service update failed" +msgid "Printer Alias" +msgstr "Printer Alias" -#: lib/pages/serviceconfigurationpage.class.php:986 #, fuzzy -msgid "Module updated!" -msgstr "Group added" +msgid "Printer Associations" +msgstr "Printer Description" -#: lib/pages/serviceconfigurationpage.class.php:987 #, fuzzy -msgid "Module Update Success" -msgstr "User created" +msgid "Printer Config File" +msgstr "Service Configuration" -#: lib/pages/serviceconfigurationpage.class.php:995 #, fuzzy -msgid "Module Update Fail" -msgstr "Group create failed" +msgid "Printer Configuration" +msgstr "Service Configuration" -#: lib/pages/snapinmanagementpage.class.php:134 #, fuzzy -msgid "Filesize" -msgstr "filesize" +msgid "Printer Create Fail" +msgstr "Printer update failed!" -#: lib/pages/snapinmanagementpage.class.php:167 #, fuzzy -msgid "Is Pack" -msgstr "Is a" +msgid "Printer Create Success" +msgstr "Printer already exists" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "No" +msgid "Printer Description" +msgstr "Printer Description" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "Yes" +#, fuzzy +msgid "Printer General" +msgstr "Printer Model" + +msgid "Printer INF File" +msgstr "Printer INF File" + +msgid "Printer IP" +msgstr "Printer IP" -#: lib/pages/snapinmanagementpage.class.php:397 #, fuzzy -msgid "New Snapin" -msgstr "Add New Snapin" +msgid "Printer IP/Hostname" +msgstr "Printer Name" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" -msgstr "Snapin Description" +msgid "Printer Management" +msgstr "Printer Management" + +msgid "Printer Model" +msgstr "Printer Model" + +msgid "Printer Name" +msgstr "Printer Name" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 #, fuzzy -msgid "Snapin Type" -msgstr "Snapin Template" +msgid "Printer Name/Alias" +msgstr "Printer Alias" + +msgid "Printer Port" +msgstr "Printer Port" + +msgid "Printer Type" +msgstr "Printer Type" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 #, fuzzy -msgid "Normal Snapin" -msgstr "Invalid Snapin" +msgid "Printer Update Fail" +msgstr "Printer update failed!" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 #, fuzzy -msgid "Snapin Pack" -msgstr "Snapin Path" +msgid "Printer Update Success" +msgstr "Printer updated!" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" -msgstr "Snapin Template" +#, fuzzy +msgid "Printer added!" +msgstr "Printer Name" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 #, fuzzy -msgid "Snapin Pack Template" -msgstr "Snapin Template" +msgid "Printer name already exists" +msgstr "Printer already exists" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" -msgstr "Snapin Run With" +msgid "Printer update failed!" +msgstr "Printer update failed!" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 -#, fuzzy -msgid "Snapin Pack File" -msgstr "Snapin File" +msgid "Printer updated!" +msgstr "Printer updated!" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" -msgstr "Snapin Run With Argument" +msgid "Printers" +msgstr "Printers" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 -#, fuzzy -msgid "Snapin Pack Arguments" -msgstr "Snapin Arguments" +msgid "Private key failed" +msgstr "Private key failed" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" -msgstr "Snapin File" +msgid "Private key not found" +msgstr "Private key not found" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" -msgstr "Snapin File (exists)" +msgid "Private key not readable" +msgstr "Private key not readable" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" -msgstr "Snapin Arguments" +msgid "Private key path not found" +msgstr "Private key path not found" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" -msgstr "Snapin Enabled" +msgid "Protected" +msgstr "Protected" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 -#, fuzzy -msgid "Snapin Arguments Hidden" -msgstr "Snapin Arguments" +msgid "Pushbullet Accounts" +msgstr "Pushbullet Accounts" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 #, fuzzy -msgid "Snapin Timeout (seconds)" -msgstr "Menu Timeout (in seconds)" +msgid "Pushbullet Management" +msgstr "Client Management" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" -msgstr "Reboot after install" +msgid "Quarantine" +msgstr "Quarantine" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" -msgstr "Shutdown after install" +msgid "Queued" +msgstr "Queued" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" -msgstr "Snapin Command" +#, fuzzy +msgid "Quick" +msgstr "Click" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" -msgstr "" +msgid "RX" +msgstr "RX" -#: lib/pages/snapinmanagementpage.class.php:668 -#, fuzzy -msgid "Create New Snapin" -msgstr "Create New %s" +msgid "Reboot" +msgstr "Reboot" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." -msgstr "Snapin file is too big, increase post_max_size in php.ini." +msgid "Reboot after deploy" +msgstr "Reboot after deploy" -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." -msgstr "$_POST variable is empty, check apache error log." +msgid "Reboot after install" +msgstr "Reboot after install" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 #, fuzzy -msgid "A snapin name is required!" -msgstr "An image name is required!" +msgid "Rebranding element has been successfully updated!" +msgstr "has been successfully updated" + +msgid "Receive" +msgstr "Receive" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 -#, fuzzy -msgid "A snapin already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Recommended" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 #, fuzzy -msgid "A file" -msgstr "File" +msgid "Record not found" +msgstr "Record not found, Error: %s" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" +msgid "Register must be managed from hooks or events" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -#, fuzzy -msgid "must be specified" -msgstr "No image specified" +msgid "Registered" +msgstr "Registered" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" -msgstr "FTP Connection has failed" +msgid "Registered Hosts" +msgstr "Registered Hosts" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -#, fuzzy -msgid "Failed to add snapin" -msgstr "Failed to add/update snapin file" +msgid "Releasing Staff Initials" +msgstr "Releasing Staff Initials" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" -msgstr "Failed to add/update snapin file" +msgid "Remit Hello Interval" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" -msgstr "Add snapin failed!" +msgid "Remote address attempting to login" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:867 -#, fuzzy -msgid "Snapin added!" -msgstr "Snapin Name" +msgid "Remove" +msgstr "Remove" -#: lib/pages/snapinmanagementpage.class.php:868 #, fuzzy -msgid "Snapin Create Success" -msgstr "Snapin updated" +msgid "Remove " +msgstr "Remove" -#: lib/pages/snapinmanagementpage.class.php:877 #, fuzzy -msgid "Snapin Create Fail" -msgstr "Snapin updated" +msgid "Remove Accesscontrol Rules" +msgstr "All Access Controls" -#: lib/pages/snapinmanagementpage.class.php:904 #, fuzzy -msgid "Snapin General" -msgstr "Snapin Enabled" +msgid "Remove Associations" +msgstr "Image Association" -#: lib/pages/snapinmanagementpage.class.php:1123 #, fuzzy -msgid "Snapin Protected" -msgstr "Snapin updated" +msgid "Remove Hosts" +msgstr "Remove" -#: lib/pages/snapinmanagementpage.class.php:1291 #, fuzzy -msgid "Snapin Storage Groups" -msgstr "Invalid Storage Group" +msgid "Remove Images" +msgstr "Remove" -#: lib/pages/snapinmanagementpage.class.php:1701 -#, fuzzy -msgid "Snapin update failed!" -msgstr "Snapin update failed" +msgid "Remove MAC" +msgstr "Remove MAC" -#: lib/pages/snapinmanagementpage.class.php:1706 #, fuzzy -msgid "Snapin updated!" -msgstr "Snapin updated" +msgid "Remove Selected?" +msgstr "Remove selected snapins" -#: lib/pages/snapinmanagementpage.class.php:1707 #, fuzzy -msgid "Snapin Update Success" -msgstr "Install / Update Successful!" +msgid "Remove Users" +msgstr "Remove" -#: lib/pages/snapinmanagementpage.class.php:1716 #, fuzzy -msgid "Snapin Update Fail" -msgstr "Snapin update failed" - -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" -msgstr "%s ID %s is not valid" - -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "Web root" +msgid "Remove failed" +msgstr "Removed" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "Bitrate" +#, fuzzy +msgid "Remove selected " +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" -msgstr "" +#, fuzzy +msgid "Remove selected groups" +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:462 #, fuzzy -msgid "Create Storage Node" -msgstr "Storage Node" +msgid "Remove selected hosts" +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:483 #, fuzzy -msgid "New Storage Node" -msgstr "Storage Node" +msgid "Remove selected images" +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" -msgstr "Bandwidth should be numeric and greater than 0" +msgid "Remove selected printers" +msgstr "Remove selected printers" -#: lib/pages/storagemanagementpage.class.php:578 #, fuzzy -msgid "Add storage node failed!" -msgstr "Add snapin failed!" +msgid "Remove selected rules" +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:603 -#, fuzzy -msgid "Storage Node added!" -msgstr "Storage Node Name" +msgid "Remove selected snapins" +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:604 #, fuzzy -msgid "Storage Node Create Success" -msgstr "Storage Node Created" +msgid "Remove selected users" +msgstr "Remove selected snapins" -#: lib/pages/storagemanagementpage.class.php:612 #, fuzzy -msgid "Storage Node Create Fail" -msgstr "Storage Node Created" +msgid "Remove snapins" +msgstr "Remove Snapin(s)" -#: lib/pages/storagemanagementpage.class.php:686 #, fuzzy -msgid "Storage Node General" -msgstr "Storage Node Interface" +msgid "Remove these items?" +msgstr "Remove selected printers" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" -msgstr "" +msgid "Removed" +msgstr "Removed" -#: lib/pages/storagemanagementpage.class.php:968 #, fuzzy -msgid "Storage Node update failed!" -msgstr "Storage Node Updated" +msgid "Removing Key" +msgstr "Setting Key" -#: lib/pages/storagemanagementpage.class.php:993 #, fuzzy -msgid "Storage Node updated!" -msgstr "Storage Node Updated" +msgid "Replay from journal" +msgstr "Replay from journal: real insert time" -#: lib/pages/storagemanagementpage.class.php:994 -#, fuzzy -msgid "Storage Node Update Success" -msgstr "Storage Node Updated" +msgid "Replicate?" +msgstr "Replicate?" -#: lib/pages/storagemanagementpage.class.php:1002 #, fuzzy -msgid "Storage Node Update Fail" -msgstr "Storage Node Updated" +msgid "Replicating" +msgstr "Replicate?" -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" -msgstr "" +msgid "Replication Bandwidth" +msgstr "Replication Bandwidth" -#: lib/pages/storagemanagementpage.class.php:1250 #, fuzzy -msgid "Create Storage Group" -msgstr "Storage Node" +msgid "Replication already running with PID" +msgstr "Replication Bandwidth" -#: lib/pages/storagemanagementpage.class.php:1271 -#, fuzzy -msgid "New Storage Group" -msgstr "Storage Group" +msgid "Report" +msgstr "Report" -#: lib/pages/storagemanagementpage.class.php:1311 -#, fuzzy -msgid "Storage Group Create Success" -msgstr "User created" +msgid "Report Management" +msgstr "Report Management" -#: lib/pages/storagemanagementpage.class.php:1319 -#, fuzzy -msgid "Storage Group Create Fail" -msgstr "Storage Group Created" +msgid "Reports" +msgstr "Reports" -#: lib/pages/storagemanagementpage.class.php:1346 -#, fuzzy -msgid "Storage Group General" -msgstr "Storage Group Name" +msgid "Required database field is empty" +msgstr "Required database field is empty" -#: lib/pages/storagemanagementpage.class.php:1444 -#, fuzzy -msgid "Storage Group update failed!" -msgstr "User update failed" +msgid "Requires templates to process" +msgstr "Requires templates to process" -#: lib/pages/storagemanagementpage.class.php:1449 -#, fuzzy -msgid "Storage Group updated!" -msgstr "Storage Group Updated" +msgid "Reset Encryption Data" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1450 #, fuzzy -msgid "Storage Group Update Success" -msgstr "User created" +msgid "Reset Token" +msgstr "Access Token" -#: lib/pages/storagemanagementpage.class.php:1457 #, fuzzy -msgid "Storage Group Update Fail" -msgstr "Storage Group Updated" +msgid "Result" +msgstr "Results" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" -msgstr "Started By:" +msgid "Results" +msgstr "Results" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" -msgstr "" +msgid "Return Code" +msgstr "Return Code" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" -msgstr "Task forced to start" +msgid "Return Desc" +msgstr "Return Desc" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" -msgstr "Force task to start" +#, fuzzy +msgid "Return code" +msgstr "Return Code" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" -msgstr "All Groups" +msgid "Returning array within key" +msgstr "Returning array within key" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" -msgstr "Invalid object type passed" +msgid "Returning value of key" +msgstr "Returning value of key" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" -msgstr "Invalid Task Type" +msgid "Reverse the file: (newest on top)" +msgstr "Reverse the file: (newest on top)" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" -msgstr "Invalid image assigned to host" +msgid "Rexmit Hello Interval" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" -msgstr "is protected" +#, fuzzy +msgid "Role" +msgstr "Remove" -#: lib/pages/taskmanagementpage.class.php:550 #, fuzzy -msgid "Quick" -msgstr "Click" +msgid "Role Create Fail" +msgstr "User created" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" -msgstr "Hosts do not have the same image assigned" +#, fuzzy +msgid "Role Create Success" +msgstr "User created" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" -msgstr "Multicast Quick Deploy" +#, fuzzy +msgid "Role Description" +msgstr "Description" + +#, fuzzy +msgid "Role Name" +msgstr "Module Name" + +#, fuzzy +msgid "Role Update Fail" +msgstr "Group create failed" + +#, fuzzy +msgid "Role Update Success" +msgstr "User created" -#: lib/pages/taskmanagementpage.class.php:564 #, fuzzy -msgid "Group Quick Deploy" -msgstr "Quick Deploy" - -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." -msgstr "" +msgid "Role added!" +msgstr "Printer Name" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" -msgstr "Invalid task" +#, fuzzy +msgid "Role update failed!" +msgstr "User update failed" -#: lib/pages/taskmanagementpage.class.php:801 #, fuzzy -msgid "Active Multi-cast Tasks" -msgstr "Active Multicast Tasks" +msgid "Role updated!" +msgstr "Client Updater" -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "MulticastTask" +msgid "Routes should be an array or an instance of Traversable" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" -msgstr "Cannot cancel tasks this way" +msgid "Row" +msgstr "Row" -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" -msgstr "Host/Group Name" +msgid "Row number not set properly" +msgstr "Row number not set properly" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" -msgstr "Is Group" +#, fuzzy +msgid "Rule Associate Fail" +msgstr "Image Association" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" -msgstr "Task Type" +#, fuzzy +msgid "Rule Associate Success" +msgstr "User created" -#: lib/pages/taskmanagementpage.class.php:1204 #, fuzzy -msgid "All snapins" -msgstr "All Snap-ins" +msgid "Rule Association" +msgstr "Image Association" -#: lib/pages/taskmanagementpage.class.php:1208 #, fuzzy -msgid "Invalid snapin" -msgstr "Invalid Snapin" +msgid "Rule Create Fail" +msgstr "User created" -#: lib/pages/taskmanagementpage.class.php:1210 #, fuzzy -msgid "Snapin to be installed" -msgstr "Snapin Enabled" +msgid "Rule Create Success" +msgstr "User created" -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" -msgstr "group" +#, fuzzy +msgid "Rule Delete Fail" +msgstr "Delete file data" -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" -msgstr "host" +msgid "Rule Delete Success" +msgstr "" -#: lib/pages/usermanagementpage.class.php:52 #, fuzzy -msgid "Change password" -msgstr "Management Password" +msgid "Rule Membership" +msgstr "Membership" -#: lib/pages/usermanagementpage.class.php:56 #, fuzzy -msgid "API Settings" -msgstr "Settings" +msgid "Rule Name" +msgstr "Module Name" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 #, fuzzy -msgid "Friendly Name" -msgstr "Kernel Name" - -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" -msgstr "" - -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" -msgstr "" +msgid "Rule Type" +msgstr "Module Type" -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" -msgstr "Edit User" +#, fuzzy +msgid "Rule Update Fail" +msgstr "Group create failed" -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" -msgstr "New User" +#, fuzzy +msgid "Rule Update Success" +msgstr "User created" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" -msgstr "User Name" +#, fuzzy +msgid "Rule Value" +msgstr "Value" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" -msgstr "User Password" +#, fuzzy +msgid "Rule added!" +msgstr "Printer Name" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" -msgstr "User Password (confirm)" +#, fuzzy +msgid "Rule associate success!" +msgstr "User created" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 #, fuzzy -msgid "User API Enabled" -msgstr "Is Enabled" +msgid "Rule deleted successfully!" +msgstr "Install / Update Successful!" -#: lib/pages/usermanagementpage.class.php:223 #, fuzzy -msgid "Create user?" -msgstr "Create User" +msgid "Rule type" +msgstr "Module Type" -#: lib/pages/usermanagementpage.class.php:283 #, fuzzy -msgid "A user name is required!" -msgstr "An image name is required!" +msgid "Rule updated!" +msgstr "Client Updater" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" +msgid "Rule value" msgstr "" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" -msgstr "" +#, fuzzy +msgid "Running Windows" +msgstr "Running Version" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" -msgstr "" +#, fuzzy +msgid "SQL Error" +msgstr "SQL Error:" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" -msgstr "" +msgid "SSL Path" +msgstr "SSL Path" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" +msgid "Save Changes" +msgstr "Save Changes" + +msgid "Save Initrd" msgstr "" -#: lib/pages/usermanagementpage.class.php:304 #, fuzzy -msgid "A username already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Save Kernel" +msgstr "Kernel" -#: lib/pages/usermanagementpage.class.php:309 #, fuzzy -msgid "A password is required!" -msgstr "%s is required" +msgid "Saving data for" +msgstr "Saving data for %s object" -#: lib/pages/usermanagementpage.class.php:321 -#, fuzzy -msgid "Add user failed!" -msgstr "Add snapin failed!" +msgid "Schedule" +msgstr "Schedule" -#: lib/pages/usermanagementpage.class.php:327 #, fuzzy -msgid "User added!" -msgstr "Printer Name" +msgid "Schedule Power" +msgstr "Scheduler" -#: lib/pages/usermanagementpage.class.php:328 #, fuzzy -msgid "User Create Success" -msgstr "User created" +msgid "Schedule as debug task" +msgstr "Schedule task as a debug task" -#: lib/pages/usermanagementpage.class.php:336 #, fuzzy -msgid "User Create Fail" -msgstr "User created" +msgid "Schedule cron-style" +msgstr "Scheduler" -#: lib/pages/usermanagementpage.class.php:363 #, fuzzy -msgid "User General" -msgstr "General" +msgid "Schedule delayed" +msgstr "Schedule" -#: lib/pages/usermanagementpage.class.php:392 #, fuzzy -msgid "Update General?" -msgstr "Update Printer" +msgid "Schedule instant" +msgstr "Schedule" -#: lib/pages/usermanagementpage.class.php:455 #, fuzzy -msgid "User Change Password" -msgstr "Management Password" +msgid "Schedule with shutdown" +msgstr "Scheduler" -#: lib/pages/usermanagementpage.class.php:481 #, fuzzy -msgid "Update Password?" -msgstr "User Password" +msgid "Scheduled Task run time" +msgstr "Scheduled Tasks" -#: lib/pages/usermanagementpage.class.php:535 -#, fuzzy -msgid "User API Settings" -msgstr "Settings" +msgid "Scheduled Tasks" +msgstr "Scheduled Tasks" + +msgid "Scheduled date is in the past" +msgstr "Scheduled date is in the past" -#: lib/pages/usermanagementpage.class.php:557 #, fuzzy -msgid "User API Token" -msgstr "Access Token" +msgid "Scheduled tasks successfully created" +msgstr "has been successfully updated" + +msgid "Scheduler" +msgstr "Scheduler" + +msgid "Screen Height (in pixels)" +msgstr "Screen Height (in pixels)" + +msgid "Screen Refresh Rate (in Hz)" +msgstr "Screen Refresh Rate (in Hz)" + +msgid "Screen Width (in pixels)" +msgstr "Screen Width (in pixels)" + +msgid "Search" +msgstr "Search" -#: lib/pages/usermanagementpage.class.php:573 #, fuzzy -msgid "Update API?" -msgstr "Update MACs" +msgid "Search Base DN" +msgstr "Search" -#: lib/pages/usermanagementpage.class.php:667 #, fuzzy -msgid "A user already exists with this name" -msgstr "An image already exists with this name!" +msgid "Search DN" +msgstr "Search" + +msgid "Search DN did not return any results" +msgstr "" -#: lib/pages/usermanagementpage.class.php:728 #, fuzzy -msgid "User update failed!" -msgstr "User update failed" +msgid "Search Method" +msgstr "Search" -#: lib/pages/usermanagementpage.class.php:733 #, fuzzy -msgid "User updated!" -msgstr "User updated" +msgid "Search Scope" +msgstr "Search" -#: lib/pages/usermanagementpage.class.php:734 #, fuzzy -msgid "User Update Success" -msgstr "Install / Update Successful!" +msgid "Search pattern" +msgstr "Search" + +msgid "Search results returned false" +msgstr "" -#: lib/pages/usermanagementpage.class.php:742 #, fuzzy -msgid "User Update Fail" -msgstr "User update failed" +msgid "Second paramater must be in array(class,function)" +msgstr "Second parameter must be in the form array(Hook class,Function to run)" + +msgid "Select Image" +msgstr "Select Image" + +msgid "Select User" +msgstr "Select User" + +msgid "Select a cron type" +msgstr "Select a cron type" + +msgid "Select a valid image" +msgstr "Select a valid image" -#: lib/pages/processlogin.class.php:161 #, fuzzy -msgid "Login failed" -msgstr "Load failed: %s" +msgid "Select management level for these hosts" +msgstr "Select Management Level for this Host" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 #, fuzzy -msgid "username" -msgstr "Username" +msgid "Select management level for this host" +msgstr "Select Management Level for this Host" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "failed to login" +msgid "Select/Deselect All" +msgstr "Select/Deselect All" -#: lib/pages/processlogin.class.php:185 #, fuzzy -msgid "Login accepted" -msgstr "Login" +msgid "Selected Logins" +msgstr "Remove selected snapins" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" +msgid "Selected groups's current activity" msgstr "" -#: lib/pages/processlogin.class.php:246 #, fuzzy -msgid "FOG Project" -msgstr "FOG Project on Github" +msgid "Selected hosts approved successfully" +msgstr "saved successfully" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 #, fuzzy -msgid "Access Controls" -msgstr "All Access Controls" +msgid "Selected hosts deleted successfully" +msgstr "Install / Update Successful!" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 #, fuzzy -msgid "Role" -msgstr "Remove" +msgid "Selected node's disk usage" +msgstr "The selected node's image storage disk usage" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -#, fuzzy -msgid "User Access Control" -msgstr "Access Control" +msgid "Serial" +msgstr "Serial" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -#, fuzzy -msgid "Export Accesscontrols" -msgstr "Access Control" +msgid "Serial Number" +msgstr "Serial Number" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 -#, fuzzy -msgid "Import Accesscontrols" -msgstr "Access Control" +msgid "Server Shell" +msgstr "Server Shell" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 #, fuzzy -msgid "Rule Association" -msgstr "Image Association" +msgid "Server information" +msgstr "General Information" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 #, fuzzy -msgid "Role Name" -msgstr "Module Name" +msgid "Server information at a glance." +msgstr "LDAP information updated!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -#, fuzzy -msgid "Rule type" -msgstr "Module Type" +msgid "Service" +msgstr "Service" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" -msgstr "" +msgid "Service Configuration" +msgstr "Service Configuration" + +msgid "Service Master" +msgstr "Service Master" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 #, fuzzy -msgid "Parent Node" -msgstr "Printer Model" +msgid "Service Setting Update Failed" +msgstr "Settings Updated" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, fuzzy, php-format -msgid "List all roles" -msgstr "List All %s" +#, fuzzy +msgid "Service Setting Update Success" +msgstr "Install / Update Successful!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, fuzzy, php-format -msgid "Add new role" -msgstr "Add new user account" +#, fuzzy +msgid "Service Start" +msgstr "Service Status" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, fuzzy, php-format -msgid "List all rules" -msgstr "List All %s" +msgid "Service Status" +msgstr "Service Status" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, fuzzy, php-format -msgid "Add new rule" -msgstr "Add new user account" +msgid "Service Tag" +msgstr "Service Tag" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 #, fuzzy -msgid "Role Description" -msgstr "Description" +msgid "Service general" +msgstr "Service Tag" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -#, fuzzy -msgid "New Role" -msgstr "New Menu" +msgid "Service update failed" +msgstr "Service update failed" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -#, fuzzy -msgid "Create New Access Control Role" -msgstr "All Access Controls" +msgid "Session Name" +msgstr "Session Name" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 -#, fuzzy -msgid "A name is required!" -msgstr "An image name is required!" +msgid "Session altered improperly" +msgstr "Session altered improperly" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -#, fuzzy -msgid "A role already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Session name cannot be the same as an existing hostname" +msgstr "Session name cannot be the same as an existing hostname" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -#, fuzzy -msgid "Add role failed!" -msgstr "Add snapin failed!" +msgid "Session timeout" +msgstr "Session timeout" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -#, fuzzy -msgid "Role added!" -msgstr "Printer Name" +msgid "Session with that name already exists" +msgstr "Session with that name already exists" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 #, fuzzy -msgid "Role Create Success" -msgstr "User created" +msgid "Set Failed" +msgstr "Failed" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 #, fuzzy -msgid "Role Create Fail" -msgstr "User created" +msgid "Set failed" +msgstr "Service update failed" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 -#, fuzzy -msgid "Access Control Role General" -msgstr "All Access Controls" +msgid "Setting Key" +msgstr "Setting Key" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -#, fuzzy -msgid "Role update failed!" -msgstr "User update failed" +msgid "Setting logout to one second prior to next login" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -#, fuzzy -msgid "Role updated!" -msgstr "Client Updater" +msgid "Settings" +msgstr "Settings" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 #, fuzzy -msgid "Role Update Success" -msgstr "User created" +msgid "Settings Update Fail" +msgstr "Settings Updated" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 #, fuzzy -msgid "Role Update Fail" -msgstr "Group create failed" +msgid "Settings Update Success" +msgstr "Install / Update Successful!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 #, fuzzy -msgid "Access Control Rules" -msgstr "All Access Controls" +msgid "Settings successfully stored!" +msgstr "has been successfully updated" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -#, fuzzy -msgid "Parent" -msgstr "Percent" +msgid "Should anything go wrong" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 -#, fuzzy -msgid "Access Control Rule" -msgstr "All Access Controls" +msgid "Shutdown" +msgstr "Shutdown" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 -#, fuzzy -msgid "New Rule" -msgstr "New Menu" +msgid "Shutdown after deploy" +msgstr "Shutdown after deploy" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 -#, fuzzy -msgid "Rule Type" -msgstr "Module Type" +msgid "Shutdown after install" +msgstr "Shutdown after install" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 -#, fuzzy -msgid "Node Parent" -msgstr "Percent" +msgid "Signed" +msgstr "Signed" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 #, fuzzy -msgid "Rule Value" -msgstr "Value" +msgid "Site" +msgstr "Max Size" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 #, fuzzy -msgid "Create Rule?" -msgstr "Create User" +msgid "Site Association" +msgstr "Image Association" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 #, fuzzy -msgid "A rule already exists with this name." -msgstr "An image already exists with this name!" +msgid "Site Control Management" +msgstr "Access Control Management" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 #, fuzzy -msgid "Add rule failed!" -msgstr "Add snapin failed!" +msgid "Site Create Fail" +msgstr "Printer update failed!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 #, fuzzy -msgid "Rule added!" -msgstr "Printer Name" +msgid "Site Create Success" +msgstr "Printer already exists" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 #, fuzzy -msgid "Rule Create Success" -msgstr "User created" +msgid "Site Description" +msgstr "Printer Description" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 #, fuzzy -msgid "Rule Create Fail" -msgstr "User created" +msgid "Site General" +msgstr "Printer Model" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 #, fuzzy -msgid "Access Control Rule General" -msgstr "All Access Controls" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "Failed to update" +msgid "Site Name" +msgstr "Printer Name" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 #, fuzzy -msgid "Rule updated!" -msgstr "Client Updater" +msgid "Site Update Fail" +msgstr "Printer update failed!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 #, fuzzy -msgid "Rule Update Success" -msgstr "User created" +msgid "Site Update Success" +msgstr "Printer updated!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 #, fuzzy -msgid "Rule Update Fail" -msgstr "Group create failed" +msgid "Site Updated!" +msgstr "Printer updated!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 #, fuzzy -msgid "Fail to destroy" -msgstr "Failed to destroy" +msgid "Site added!" +msgstr "Printer Name" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 #, fuzzy -msgid "Rule deleted successfully!" -msgstr "Install / Update Successful!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" -msgstr "" +msgid "Site update failed!" +msgstr "Printer update failed!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 #, fuzzy -msgid "Rule Delete Fail" -msgstr "Delete file data" +msgid "Sites" +msgstr "minutes" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 #, fuzzy -msgid "Rule Name" -msgstr "Module Name" +msgid "Size" +msgstr "Max Size" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 -#, fuzzy -msgid "Rule Membership" -msgstr "Membership" +msgid "Slack Accounts" +msgstr "Slack Accounts" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 #, fuzzy -msgid "Check here to see what rules can be added" -msgstr "Check here to see what printers can be added" +msgid "Slack Management" +msgstr "Task Management" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 #, fuzzy -msgid "Add Rules" -msgstr "Add User" +msgid "Smart Installer" +msgstr "Smart Installer (Recommended)" + +msgid "Snapin" +msgstr "Snapin" + +msgid "Snapin Args" +msgstr "Snapin Args" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 -#, fuzzy -msgid "Add selected rules" -msgstr "Remove selected printers" +msgid "Snapin Arguments" +msgstr "Snapin Arguments" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 #, fuzzy -msgid "Remove Accesscontrol Rules" -msgstr "All Access Controls" +msgid "Snapin Arguments Hidden" +msgstr "Snapin Arguments" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 -#, fuzzy -msgid "Remove selected rules" -msgstr "Remove selected snapins" +msgid "Snapin Client" +msgstr "Snapin Client" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 -#, fuzzy -msgid "No role selected" -msgstr "Delete Selected" +msgid "Snapin Command" +msgstr "Snapin Command" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 #, fuzzy -msgid "No rule selected" -msgstr "Delete Selected" +msgid "Snapin Create Fail" +msgstr "Snapin updated" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 #, fuzzy -msgid "Associate rule failed!" -msgstr "Add snapin failed!" +msgid "Snapin Create Success" +msgstr "Snapin updated" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 #, fuzzy -msgid "Rule associate success!" -msgstr "User created" +msgid "Snapin Created" +msgstr "Snapin updated" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 -#, fuzzy -msgid "Rule Associate Success" -msgstr "User created" +msgid "Snapin Creation Date" +msgstr "Snapin Creation Date" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 -#, fuzzy -msgid "Rule Associate Fail" -msgstr "Image Association" +msgid "Snapin Creation Time" +msgstr "Snapin Creation Time" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 -#, fuzzy -msgid "User name" -msgstr "Username" +msgid "Snapin Description" +msgstr "Snapin Description" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 -#, fuzzy -msgid "Check here to see what users can be added" -msgstr "Check here to see what printers can be added" +msgid "Snapin Enabled" +msgstr "Snapin Enabled" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -#, fuzzy -msgid "Add Users" -msgstr "Add User" +msgid "Snapin File" +msgstr "Snapin File" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -#, fuzzy -msgid "Add selected users" -msgstr "Remove selected printers" +msgid "Snapin File (exists)" +msgstr "Snapin File (exists)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 #, fuzzy -msgid "Remove Users" -msgstr "Remove" +msgid "Snapin General" +msgstr "Snapin Enabled" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 #, fuzzy -msgid "Remove selected users" -msgstr "Remove selected snapins" +msgid "Snapin Hash" +msgstr "Snapin Path" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" -msgstr "Capone Deploy" +msgid "Snapin History" +msgstr "Snapin History" -#: lib/plugins/ldap/class/ldap.class.php:107 -#, fuzzy -msgid "Function does not exist" -msgstr "Method does not exist" +msgid "Snapin ID" +msgstr "Snapin ID" -#: lib/plugins/ldap/class/ldap.class.php:147 #, fuzzy -msgid "Port is not valid ldap/ldaps port" -msgstr "Port is not valid ldap/ldaps ports" +msgid "Snapin Locations" +msgstr "Locations" -#: lib/plugins/ldap/class/ldap.class.php:295 -#, fuzzy -msgid "We cannot connect to LDAP server" -msgstr "Cannot connect to database" +msgid "Snapin Log" +msgstr "Snapin Log" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" -msgstr "" +msgid "Snapin Management" +msgstr "Snapin Management" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" -msgstr "" +msgid "Snapin Name" +msgstr "Snapin Name" -#: lib/plugins/ldap/class/ldap.class.php:398 #, fuzzy -msgid "Cannot bind to the LDAP server" -msgstr "Cannot connect to database" - -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" -msgstr "" +msgid "Snapin Pack" +msgstr "Snapin Path" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 #, fuzzy -msgid "Search DN" -msgstr "Search" +msgid "Snapin Pack Arguments" +msgstr "Snapin Arguments" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 #, fuzzy -msgid "Filter" -msgstr "File" +msgid "Snapin Pack File" +msgstr "Snapin File" -#: lib/plugins/ldap/class/ldap.class.php:460 #, fuzzy -msgid "User was not authorized by the LDAP server" -msgstr "Please enter a name for this LDAP server." +msgid "Snapin Pack Template" +msgstr "Snapin Template" + +msgid "Snapin Path" +msgstr "Snapin Path" -#: lib/plugins/ldap/class/ldap.class.php:461 #, fuzzy -msgid "User DN" -msgstr "User Name" +msgid "Snapin Protected" +msgstr "Snapin updated" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" -msgstr "" +msgid "Snapin Replicator" +msgstr "Snapin Replicator" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" -msgstr "" +msgid "Snapin Return Code" +msgstr "Snapin Return Code" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" -msgstr "" +msgid "Snapin Return Detail" +msgstr "Snapin Return Detail" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" -msgstr "" +msgid "Snapin Run With" +msgstr "Snapin Run With" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" -msgstr "" +msgid "Snapin Run With Args" +msgstr "Snapin Run With Args" + +msgid "Snapin Run With Argument" +msgstr "Snapin Run With Argument" + +msgid "Snapin State" +msgstr "Snapin State" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 #, fuzzy -msgid "Group Search DN" -msgstr "Host Search" +msgid "Snapin Storage Groups" +msgstr "Invalid Storage Group" -#: lib/plugins/ldap/class/ldap.class.php:848 #, fuzzy -msgid "Search Method" -msgstr "Search" +msgid "Snapin Task is invalid" +msgstr "Snapin is not valid" + +msgid "Snapin Template" +msgstr "Snapin Template" -#: lib/plugins/ldap/class/ldap.class.php:852 #, fuzzy -msgid "Result" -msgstr "Results" +msgid "Snapin Timeout (seconds)" +msgstr "Menu Timeout (in seconds)" + +msgid "Snapin Transfer Log" +msgstr "Snapin Transfer Log" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 #, fuzzy -msgid "LDAP Servers" -msgstr "LDAP Server" +msgid "Snapin Type" +msgstr "Snapin Template" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" -msgstr "LDAP Management" +#, fuzzy +msgid "Snapin Update Fail" +msgstr "Snapin update failed" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 #, fuzzy -msgid "Export LDAPs" -msgstr "Export PDF" +msgid "Snapin Update Success" +msgstr "Install / Update Successful!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 #, fuzzy -msgid "Import LDAPs" -msgstr "Import" +msgid "Snapin Used" +msgstr "Snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 #, fuzzy -msgid "Plugin Configuration" -msgstr "Service Configuration" +msgid "Snapin added!" +msgstr "Snapin Name" + +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "Snapin file is too big, increase post_max_size in php.ini." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 #, fuzzy -msgid "LDAP Connection Name" -msgstr "Location Name" +msgid "Snapin is invalid" +msgstr "Snapin is not valid" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" -msgstr "LDAP Server Address" +msgid "Snapin is protected and cannot be deleted" +msgstr "Snapin is protected and cannot be deleted" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 #, fuzzy -msgid "LDAP Connection Name" -msgstr "Location Name" +msgid "Snapin task not completed" +msgstr "Snapin is not valid" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" -msgstr "LDAP Server Description" +#, fuzzy +msgid "Snapin to be installed" +msgstr "Snapin Enabled" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" -msgstr "LDAP Server" +#, fuzzy +msgid "Snapin update failed!" +msgstr "Snapin update failed" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 #, fuzzy -msgid "Admin Group" -msgstr "Modify Group" +msgid "Snapin updated!" +msgstr "Snapin updated" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" -msgstr "New LDAP Server" +msgid "Snapins" +msgstr "Snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "" +msgid "Snapins Are already deployed to this host" +msgstr "Snapins Are already deployed to this host" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" +msgid "So if you are trying to transmit to remote node A" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" +msgid "Somebody will be able to help in some form" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 -#, fuzzy -msgid "LDAP Server Port" -msgstr "LDAP Server" +msgid "Space variable must be boolean" +msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" +msgid "Specified download URL not allowed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 -#, fuzzy -msgid "Search Base DN" -msgstr "Search" +msgid "Start" +msgstr "Start" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 -#, fuzzy -msgid "Mobile Group" -msgstr "Modify Group" +msgid "Start Date" +msgstr "Start Date" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -#, fuzzy -msgid "Initial Template" -msgstr "Snapin Template" +msgid "Start Multicast Session" +msgstr "Start Multicast Session" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 #, fuzzy -msgid "Pick a template" -msgstr "Snapin Template" +msgid "Start Session" +msgstr "Start Multicast Session" + +msgid "Start Time" +msgstr "Start Time" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "" +msgid "Started By:" +msgstr "Started By:" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" -msgstr "" +msgid "Started sync for" +msgstr "Started sync for" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" -msgstr "" +#, fuzzy +msgid "Starting Image Replication" +msgstr "Image Replicator" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 #, fuzzy -msgid "User Name Attribute" -msgstr "User Name" +msgid "Starting Image Size Service" +msgstr "Image Replicator" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" +msgid "Starting Snapin Hashing Service" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 #, fuzzy -msgid "Search Scope" -msgstr "Search" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "" +msgid "Starting Snapin Replication" +msgstr "Snapin Replicator" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 #, fuzzy -msgid "Bind Password" -msgstr "Domain Password" +msgid "Starting Sync Actions" +msgstr "Starting Sync Actions" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 #, fuzzy -msgid "Create New LDAP" -msgstr "Create New %s" +msgid "Starting process" +msgstr "Starting process..." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "Not able to add" +msgid "State" +msgstr "State" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "Please enter a name for this LDAP server." +msgid "Status" +msgstr "Status" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "Please enter a LDAP server address" +msgid "Stop Task" +msgstr "Stop Task" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -#, fuzzy -msgid "Please enter a Search Base DN" -msgstr "Please enter a hostname" +msgid "Storage" +msgstr "Storage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 -#, fuzzy -msgid "Please select an LDAP port to use" -msgstr "Please select an option" +msgid "Storage Group" +msgstr "Storage Group" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 -#, fuzzy -msgid "Please select a valid ldap port" -msgstr "Please enter a valid ip" +msgid "Storage Group Activity" +msgstr "Storage Group Activity" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -#, fuzzy -msgid "Please Enter an admin or mobile lookup name" -msgstr "Please enter a name for this location." +msgid "Storage Group Already Exists" +msgstr "Storage Group Already Exists" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 #, fuzzy -msgid "Please enter a User Name Attribute" -msgstr "Please enter a hostname" +msgid "Storage Group Create Fail" +msgstr "Storage Group Created" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 #, fuzzy -msgid "Please enter a Group Member Attribute" -msgstr "Please enter a LDAP server address" +msgid "Storage Group Create Success" +msgstr "User created" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 -#, fuzzy -msgid "A LDAP setup already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Storage Group Created" +msgstr "Storage Group Created" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 -#, fuzzy -msgid "Add LDAP server failed!" -msgstr "Add snapin failed!" +msgid "Storage Group Description" +msgstr "Storage Group Description" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 #, fuzzy -msgid "LDAP Server added!" -msgstr "LDAP Server Name" +msgid "Storage Group General" +msgstr "Storage Group Name" + +msgid "Storage Group Name" +msgstr "Storage Group Name" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 #, fuzzy -msgid "LDAP Create Success" -msgstr "User created" +msgid "Storage Group Update Fail" +msgstr "Storage Group Updated" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 #, fuzzy -msgid "LDAP Create Fail" +msgid "Storage Group Update Success" msgstr "User created" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 -#, fuzzy -msgid "LDAP General" -msgstr "General" +msgid "Storage Group Updated" +msgstr "Storage Group Updated" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 -#, fuzzy -msgid "Update LDAP server failed!" -msgstr "Add snapin failed!" +msgid "Storage Group deleted" +msgstr "Storage Group deleted" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 #, fuzzy -msgid "LDAP Server updated!" -msgstr "LDAP Server Name" +msgid "Storage Group update failed!" +msgstr "User update failed" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 #, fuzzy -msgid "LDAP Update Success" -msgstr "Install / Update Successful!" +msgid "Storage Group updated!" +msgstr "Storage Group Updated" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 -#, fuzzy -msgid "LDAP Update Fail" -msgstr "Snapin update failed" +msgid "Storage Management" +msgstr "Storage Management" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 -#, fuzzy -msgid "User Filter" -msgstr "File" +msgid "Storage Node" +msgstr "Storage Node" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 #, fuzzy -msgid "LDAP Ports" -msgstr "LDAP Server" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" - -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "" - -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" -msgstr "" +msgid "Storage Node Create Fail" +msgstr "Storage Node Created" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" -msgstr "" +#, fuzzy +msgid "Storage Node Create Success" +msgstr "Storage Node Created" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" -msgstr "" +msgid "Storage Node Created" +msgstr "Storage Node Created" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" -msgstr "" +msgid "Storage Node Description" +msgstr "Storage Node Description" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" -msgstr "" +msgid "Storage Node Disk Usage" +msgstr "Storage Node Disk Usage" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 #, fuzzy -msgid "Location Association" -msgstr "Image Association" +msgid "Storage Node General" +msgstr "Storage Node Interface" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" -msgstr "Location/Deployed" +msgid "Storage Node IP" +msgstr "Storage Node IP" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" -msgstr "Host Location" +msgid "Storage Node Interface" +msgstr "Storage Node Interface" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 -#, fuzzy -msgid "This setting defines sending the" -msgstr "This setting defines " +msgid "Storage Node Max Clients" +msgstr "Storage Node Max Clients" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "" +msgid "Storage Node Name" +msgstr "Storage Node Name" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "" +msgid "Storage Node Password" +msgstr "Storage Node Password" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "" +#, fuzzy +msgid "Storage Node Protocol" +msgstr "Storage Node IP" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 #, fuzzy -msgid "Default is disabled" -msgstr "Donations are disabled" +msgid "Storage Node Update Fail" +msgstr "Storage Node Updated" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 #, fuzzy -msgid "Snapin Locations" -msgstr "Locations" +msgid "Storage Node Update Success" +msgstr "Storage Node Updated" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "" +msgid "Storage Node Updated" +msgstr "Storage Node Updated" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 -#, fuzzy -msgid "where to download the snapin" -msgstr "Failed to find the snapin file" +msgid "Storage Node Username" +msgstr "Storage Node Username" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" -msgstr "" +#, fuzzy +msgid "Storage Node added!" +msgstr "Storage Node Name" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" -msgstr "" +msgid "Storage Node already exists" +msgstr "Storage Node already exists" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" -msgstr "" +msgid "Storage Node deleted" +msgstr "Storage Node deleted" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 #, fuzzy -msgid "Export Locations" -msgstr "Host Location" +msgid "Storage Node update failed!" +msgstr "Storage Node Updated" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 #, fuzzy -msgid "Import Locations" -msgstr "Host Location" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" -msgstr "Location Name" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "Kernels/Inits from location" +msgid "Storage Node updated!" +msgstr "Storage Node Updated" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" -msgstr "New Location" +#, fuzzy +msgid "String must be a string" +msgstr "Event must be a string" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "Use inits and kernels from this node" +#, fuzzy +msgid "Subnet Groups" +msgstr "Modify Group" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 #, fuzzy -msgid "Create New Location" -msgstr "Create New %s" +msgid "SubnetGroup General" +msgstr "Storage Group Name" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." -msgstr "Location already Exists, please try again." +#, fuzzy +msgid "Subnetgroup Create Fail" +msgstr "Group create failed" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." -msgstr "Please enter a name for this location." +#, fuzzy +msgid "Subnetgroup Create Success" +msgstr "User created" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." -msgstr "Please select the storage group this location relates to." +#, fuzzy +msgid "Subnetgroup Management" +msgstr "Group Management" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 #, fuzzy -msgid "Add location failed!" -msgstr "Add snapin failed!" +msgid "Subnetgroup Update Fail" +msgstr "Group create failed" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 #, fuzzy -msgid "Location added!" -msgstr "Location Name" +msgid "Subnetgroup Update Success" +msgstr "User created" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 #, fuzzy -msgid "Location Create Success" -msgstr "Snapin updated" +msgid "Subnetgroup added!" +msgstr "Group added" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 #, fuzzy -msgid "Location Create Fail" -msgstr "Snapin updated" +msgid "Subnetgroup update failed!" +msgstr "User update failed" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 #, fuzzy -msgid "Location General" -msgstr "Snapin Enabled" +msgid "Subnetgroup updated!" +msgstr "Group added" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "A location with that name already exists." +msgid "Subnets" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -#, fuzzy -msgid "A group is required for a location" -msgstr "A Storage Group is required!" +msgid "Subree and Below" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -#, fuzzy -msgid "Location update failed!" -msgstr "Snapin update failed" +msgid "Subtree Only" +msgstr "" + +msgid "Successful" +msgstr "Successful" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 #, fuzzy -msgid "Location updated!" -msgstr "Location Updated" +msgid "Successfully added selected hosts to the group!" +msgstr "Successfully associated Hosts with the Group " -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 #, fuzzy -msgid "Location Update Success" -msgstr "Install / Update Successful!" +msgid "Successfully created" +msgstr "successfully updated" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 #, fuzzy -msgid "Location Update Fail" -msgstr "Location Updated" +msgid "Successfully deleted" +msgstr "successfully updated" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" -msgstr "" +msgid "System Manufacturer" +msgstr "System Manufacturer" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" -msgstr "Pushbullet Accounts" +msgid "System Overview" +msgstr "System Overview" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" -msgstr "Link Pushbullet Account" +msgid "System Product" +msgstr "System Product" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" -msgstr "Email" +msgid "System Serial" +msgstr "System Serial" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" -msgstr "Link New Account" +msgid "System Serial Number" +msgstr "System Serial Number" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" -msgstr "Access Token" +#, fuzzy +msgid "System Tools" +msgstr "System Type" + +msgid "System Type" +msgstr "System Type" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 #, fuzzy -msgid "Add Pushbullet Account" -msgstr "Pushbullet Accounts" +msgid "System UUID" +msgstr "System Uptime" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" -msgstr "Account already linked" +msgid "System Uptime" +msgstr "System Uptime" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "Please enter an access token" +msgid "System Version" +msgstr "System Version" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "Failed to create" +msgid "TCP/IP" +msgstr "TCP/IP" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 -#, fuzzy -msgid "Account successfully added!" -msgstr "successfully updated" +msgid "TCP/IP Port Printer" +msgstr "TCP/IP Port Printer" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 -#, fuzzy -msgid "Link Pushbullet Account Success" -msgstr "Link Pushbullet Account" +msgid "TX" +msgstr "TX" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 #, fuzzy -msgid "Link Pushbullet Account Fail" -msgstr "Link Pushbullet Account" +msgid "Table not defined for this class" +msgstr "No database table defined for this class" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 -#, fuzzy -msgid "Site Association" -msgstr "Image Association" +msgid "Task" +msgstr "Task" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 -#, fuzzy -msgid "Site" -msgstr "Max Size" +msgid "Task Checkin Date" +msgstr "Task Checkin Date" + +msgid "Task Checkin Time" +msgstr "Task Checkin Time" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 #, fuzzy -msgid "Associated Sites" -msgstr "Estimated FOG Sites" +msgid "Task Complete Date" +msgstr "Task Checkin Date" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 #, fuzzy -msgid "Host Site" -msgstr "Host List" +msgid "Task Complete Time" +msgstr "Task Checkin Time" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 #, fuzzy -msgid "Sites" -msgstr "minutes" +msgid "Task ID" +msgstr "Task" + +msgid "Task Management" +msgstr "Task Management" + +msgid "Task Name" +msgstr "Task Name" + +msgid "Task Reboot" +msgstr "Task Reboot" + +msgid "Task State" +msgstr "Task State" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 #, fuzzy -msgid "Is restricted" -msgstr "Task Started" +msgid "Task State Create Fail" +msgstr "User created" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 #, fuzzy -msgid "No site" -msgstr "Not set" +msgid "Task State Create Success" +msgstr "User created" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " -msgstr "" +#, fuzzy +msgid "Task State General" +msgstr "Task State" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 #, fuzzy -msgid "No Site" -msgstr "Not Set" +msgid "Task State Management" +msgstr "Task Management" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 #, fuzzy -msgid "Export Sites" -msgstr "Export Printers" +msgid "Task State Update Fail" +msgstr "User created" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 #, fuzzy -msgid "Import Sites" -msgstr "Import Printers" +msgid "Task State Update Success" +msgstr "User created" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 #, fuzzy -msgid "Hosts Associated" -msgstr "No snapins associated" +msgid "Task State Updated!" +msgstr "Task State added, editing" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 #, fuzzy -msgid "Host Associated" -msgstr "No node associated" +msgid "Task State added!" +msgstr "Task State added, editing" + +msgid "Task States" +msgstr "Task States" + +msgid "Task Type" +msgstr "Task Type" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 #, fuzzy -msgid "Site Name" -msgstr "Printer Name" +msgid "Task Type Create Fail" +msgstr "User created" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 #, fuzzy -msgid "Site Description" -msgstr "Printer Description" +msgid "Task Type Create Success" +msgstr "User created" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 #, fuzzy -msgid "New Site" -msgstr "Add New Snapin" +msgid "Task Type General" +msgstr "Task State" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 #, fuzzy -msgid "Create Site" -msgstr "Create" +msgid "Task Type Management" +msgstr "Task Management" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 #, fuzzy -msgid "A site already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Task Type Update Fail" +msgstr "User update failed" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 #, fuzzy -msgid "Add site failed!" -msgstr "Add snapin failed!" +msgid "Task Type Update Success" +msgstr "Install / Update Successful!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 #, fuzzy -msgid "Site added!" -msgstr "Printer Name" +msgid "Task Type Updated!" +msgstr "Task Type" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 #, fuzzy -msgid "Site Create Success" -msgstr "Printer already exists" +msgid "Task Type added!" +msgstr "Task State added, editing" + +msgid "Task Type is not valid" +msgstr "Task Type is not valid" + +msgid "Task Types" +msgstr "Task Types" + +msgid "Task forced to start" +msgstr "Task forced to start" + +msgid "Task not created as there are no associated tasks" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 #, fuzzy -msgid "Site Create Fail" -msgstr "Printer update failed!" +msgid "Task sent to" +msgstr "Task State" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 #, fuzzy -msgid "Site General" -msgstr "Printer Model" +msgid "Task started" +msgstr "Task Started" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 #, fuzzy -msgid "A site alread exists with this name!" -msgstr "An image already exists with this name!" +msgid "Task started for" +msgstr "Tasks started for" + +msgid "Task type is not valid" +msgstr "Task type is not valid" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 #, fuzzy -msgid "Site update failed!" -msgstr "Printer update failed!" +msgid "Tasked Successfully" +msgstr "saved successfully" + +msgid "Tasked successfully, click active tasks to view in line." +msgstr "" + +msgid "Tasking" +msgstr "Tasking" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 #, fuzzy -msgid "Site Updated!" -msgstr "Printer updated!" +msgid "Tasking Failed" +msgstr "Tasking" + +msgid "Tasks" +msgstr "Tasks" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -#, fuzzy -msgid "Site Update Success" -msgstr "Printer updated!" +msgid "Team" +msgstr "Team" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 #, fuzzy -msgid "Site Update Fail" -msgstr "Printer update failed!" +msgid "Terminal" +msgstr "Serial" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -#, fuzzy -msgid "Host Membership" -msgstr "Membership" +msgid "Terms and Conditions" +msgstr "Terms and Conditions" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -#, fuzzy -msgid "Check here to see what hosts can be added" -msgstr "Check here to see what printers can be added" +msgid "Text" +msgstr "Text" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 #, fuzzy -msgid "Add Hosts" -msgstr "All Hosts" +msgid "The 'Is Master Node' setting defines which" +msgstr "This setting defines " -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 #, fuzzy -msgid "Add selected hosts" -msgstr "Remove selected printers" +msgid "The assigned image is protected" +msgstr "None selected or item is protected" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 #, fuzzy -msgid "Remove Hosts" -msgstr "Remove" +msgid "The below items are only used for the old client." +msgstr "This setting defines the username used for the ssh client." -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -#, fuzzy -msgid "Remove selected hosts" -msgstr "Remove selected snapins" +msgid "The clients will checkin with the server from time" +msgstr "" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" -msgstr "Channel call is invalid" +msgid "The following errors occured" +msgstr "The following errors occured" -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" -msgstr "User call is invalid" +msgid "The following errors occurred" +msgstr "The following errors occurred" -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" -msgstr "Invalid method called" +msgid "The image storage group assigned is not valid" +msgstr "The image storage group assigned is not valid" -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 #, fuzzy -msgid "Completed imaging" -msgstr "Completed" - -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" -msgstr "Slack Accounts" +msgid "The installers for the fog client" +msgstr "This setting defines the username used for the ssh client." -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" -msgstr "Account removed from FOG GUI at" +msgid "The key will be assigned to registered hosts when a" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" -msgstr "Link Slack Account" +msgid "The node trying to be used is currently" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" -msgstr "Team" +msgid "The old client is what was distributed with" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "Created By" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" -msgstr "User/Channel Name" +msgid "The old client iswhat was distributed with" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" -msgstr "User/Channel to post to" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -#, fuzzy -msgid "Add Slack Account" -msgstr "Slack Accounts" +msgid "The primary mac associated is" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" +msgid "The settings tend to be global which affects all hosts." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 +msgid "The storage groups associated storage node is not valid" +msgstr "The storage groups associated storage node is not valid" + #, fuzzy -msgid "to signify if this is a user or channel to send to" -msgstr "" -"Must use an @ or # to signify if this is a user or channel to send message " -"to!" +msgid "The uploaded file exceeds the max_file_size" +msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" -msgstr "Invalid token passed" +#, fuzzy +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "The uploaded file exceeds the upload_max_filesize directive in php.ini" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" -msgstr "Invalid user and/or channel passed" +msgid "The uploaded file was only partially uploaded" +msgstr "The uploaded file was only partially uploaded" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" -msgstr "Account linked to FOG GUI at" +msgid "There are" +msgstr "There are" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 #, fuzzy -msgid "Link Slack Account Success" -msgstr "Link Slack Account" +msgid "There are currently" +msgstr "There are" + +msgid "There are many reasons why this could be the case" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 #, fuzzy -msgid "Link Slack Account Fail" -msgstr "Link Slack Account" +msgid "There are no groups on this server" +msgstr "There are no groups on this server." -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 #, fuzzy -msgid "Subnet Groups" -msgstr "Modify Group" +msgid "There are no hosts to task in this group" +msgstr "There are no groups on this server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 #, fuzzy -msgid "Export Subnetgroups" -msgstr "Export Groups" +msgid "There are no images on this server" +msgstr "There are no images on this server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 #, fuzzy -msgid "Import Subnetgroups" -msgstr "Import Groups" +msgid "There are no locations on this server" +msgstr "There are no locations on this server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" +msgid "There are no other members to sync to" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -#, fuzzy -msgid "New Subnetgroup" -msgstr "Storage Group" +msgid "There are no snapins associated with this host" +msgstr "There are no snapins associated with this host" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 #, fuzzy -msgid "Create New SubnetGroup?" -msgstr "Create new group" +msgid "There are no snapins on this server" +msgstr "There are no snapins on this server." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 #, fuzzy -msgid "A subnetgroup already exists with this name!" -msgstr "An image already exists with this name!" +msgid "There are open slots" +msgstr "There are open slots, but" + +msgid "There is a host in a tasking" +msgstr "There is a host in a tasking" + +msgid "There is nothing to replicate" +msgstr "There is nothing to replicate" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 #, fuzzy -msgid "A group is required!" -msgstr "An image name is required!" +msgid "There were errors during import!" +msgstr "There were errors during import" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." +msgid "There you can download utilities such as FOG Prep" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -#, fuzzy -msgid "Please enter a valid CIDR subnets comma separated list" -msgstr "Please enter a valid IP address" +msgid "This MAC Belongs to another host" +msgstr "This MAC Belongs to another host" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -#, fuzzy -msgid "Add Subnetgroup failed!" -msgstr "Add snapin failed!" +msgid "This area will allow the host checking in to tell" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -#, fuzzy -msgid "Subnetgroup added!" -msgstr "Group added" +msgid "This file will only work on Windows" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 #, fuzzy -msgid "Subnetgroup Create Success" -msgstr "User created" +msgid "This host already exists" +msgstr "Printer already exists" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -#, fuzzy -msgid "Subnetgroup Create Fail" -msgstr "Group create failed" +msgid "This installation process may take a few minutes" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -#, fuzzy -msgid "SubnetGroup General" -msgstr "Storage Group Name" +msgid "This is a cron style task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -#, fuzzy -msgid "A subnet group already exists with this name!" -msgstr "An image already exists with this name!" +msgid "This is a cron style task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -#, fuzzy -msgid "A group must be selected." -msgstr "Event must be a string" +msgid "This is a single run task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -#, fuzzy -msgid "Please enter a valid CIDR subnet." -msgstr "Please enter a valid hostname" +msgid "This is a single run task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "This is especially useful if you have multiple" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -#, fuzzy -msgid "Subnetgroup update failed!" -msgstr "User update failed" +msgid "This is ipxe script commands to operate with" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 #, fuzzy -msgid "Subnetgroup updated!" -msgstr "Group added" +msgid "This is not the master for this group" +msgstr " | This is not the primary group" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 #, fuzzy -msgid "Subnetgroup Update Success" -msgstr "User created" +msgid "This is not the primary group" +msgstr " | This is not the primary group" + +msgid "This is only here to maintain old client operations" +msgstr "" + +msgid "This is set in seconds and causes the default option" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 #, fuzzy -msgid "Subnetgroup Update Fail" -msgstr "Group create failed" +msgid "This is the recommended installer to use now" +msgstr "" +"This is the recommended installer to use now. It can be used on Windows, " +"Linux, and Mac OS X." -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." +msgid "This is useful in the case of slow links between" +msgstr "" + +msgid "This item allows you to edit all of the iPXE Menu items as you" +msgstr "" + +msgid "This module did not work past Windows XP" +msgstr "" + +msgid "This module did not work past Windows XP due" +msgstr "" + +msgid "This module did not work past Windows XP due to" +msgstr "" + +msgid "This module did not work past Windows XP due to UAC." +msgstr "" + +msgid "This module has been replaced in the new client" +msgstr "" + +msgid "This module has since been replaced with Power Management." +msgstr "" + +msgid "This module is only used" msgstr "" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "Task States" - -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 #, fuzzy -msgid "Export Task States" -msgstr "Task States" +msgid "This module is only used on the old client" +msgstr "This setting defines the username used for the ssh client." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 #, fuzzy -msgid "Import Task States" -msgstr "Task States" - -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "Task State" - -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "Icon" +msgid "This module is only used on the old client." +msgstr "This setting defines the username used for the ssh client." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "New Task State" +msgid "This node does not appear to be online" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" -msgstr "Additional Icon elements" +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 #, fuzzy -msgid "Create Task state" -msgstr "New Task State" +msgid "This plugin is not installed" +msgstr "" +"This plugin is currently not installed, would you like to install it now?" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 #, fuzzy -msgid "A task state already exists with this name!" -msgstr "An image already exists with this name!" +msgid "This section allows you to customize or alter" +msgstr "" +"This section allows you to import known mac address makers into the FOG " +"Database for easier identification." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 #, fuzzy -msgid "Add task state failed!" -msgstr "Add snapin failed!" +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" +msgstr "" +"This section allows you to import known mac address makers into the FOG " +"Database for easier identification." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 -#, fuzzy -msgid "Task State added!" -msgstr "Task State added, editing" +msgid "This section allows you to update" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 #, fuzzy -msgid "Task State Create Success" -msgstr "User created" +msgid "This section allows you to update the modules and" +msgstr "" +"This section allows you to import known mac address makers into the FOG " +"Database for easier identification." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 #, fuzzy -msgid "Task State Create Fail" -msgstr "User created" +msgid "This section allows you to uploade user" +msgstr "" +"This section allows you to import known mac address makers into the FOG " +"Database for easier identification." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 -#, fuzzy -msgid "Task State General" -msgstr "Task State" +msgid "This servers ip(s)" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 #, fuzzy -msgid "Update task state failed!" -msgstr "Add snapin failed!" +msgid "This setting" +msgstr "This setting defines " -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 #, fuzzy -msgid "Task State Updated!" -msgstr "Task State added, editing" +msgid "This setting defines sending the" +msgstr "This setting defines " -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 -#, fuzzy -msgid "Task State Update Success" -msgstr "User created" +msgid "This setting limits the bandwidth for replication between nodes" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 #, fuzzy -msgid "Task State Update Fail" -msgstr "User created" - -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." msgstr "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" -msgstr "Task Types" +msgid "This setting turns off all FOG Printer Management" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 -#, fuzzy -msgid "Export Task Types" -msgstr "Task Types" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." +msgstr "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task Types" -msgstr "Task Types" +msgid "This will allow you to configure how services" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" -msgstr "Access" +msgid "Those images should be activated with the associated" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" -msgstr "Kernel Args" +msgid "Time" +msgstr "Time" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" -msgstr "New Task Type" +msgid "Time Already Exists" +msgstr "Time Already Exists" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" -msgstr "Kernel Arguments" +msgid "Timeout" +msgstr "Timeout" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 #, fuzzy -msgid "Init" -msgstr "In " +msgid "Title must be a string" +msgstr "Event must be a string" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" -msgstr "Is Advanced" +msgid "To be released only by" +msgstr "To be released only by" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" -msgstr "Accessed By" +msgid "To get started please select an item from the menu." +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -#, fuzzy -msgid "Create Task type" -msgstr "New Task State" +msgid "To perform an imaging task an image must be assigned" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -#, fuzzy -msgid "A task type already exists with this name!" -msgstr "An image already exists with this name!" +msgid "To view a report, select an item from the menu" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -#, fuzzy -msgid "Add task type failed!" -msgstr "Add snapin failed!" +msgid "Toggle Navigation" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 #, fuzzy -msgid "Task Type added!" -msgstr "Task State added, editing" +msgid "Too many MACs" +msgstr "Host Primary MAC" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -#, fuzzy -msgid "Task Type Create Success" -msgstr "User created" +msgid "Total Disk Space" +msgstr "Total Disk Space" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -#, fuzzy -msgid "Task Type Create Fail" -msgstr "User created" +msgid "Total Memory" +msgstr "Total Memory" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -#, fuzzy -msgid "Task Type General" -msgstr "Task State" +msgid "Total Rows" +msgstr "Total Rows" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -#, fuzzy -msgid "Task Type Updated!" -msgstr "Task Type" +msgid "Transmit" +msgstr "Transmit" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 #, fuzzy -msgid "Task Type Update Success" -msgstr "Install / Update Successful!" +msgid "Trying Snapin hash for" +msgstr "Snapin Path" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 #, fuzzy -msgid "Task Type Update Fail" -msgstr "User update failed" +msgid "Trying image size for" +msgstr "Snapin Path" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" -msgstr "" +#, fuzzy +msgid "Txt must be a string" +msgstr "Event must be a string" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" -msgstr "" +msgid "Type" +msgstr "Type" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" +msgid "UAC introduced in Vista and up" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:31 #, fuzzy -msgid "key" -msgstr "DMI Key" - -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" -msgstr "" - -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" -msgstr "" +msgid "Unable to Authenticate" +msgstr "Error contacting server" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "" +msgid "Unable to determine plugin details." +msgstr "Unable to determine plugin details." -#: lib/plugins/windowskey/config/plugin.config.php:36 #, fuzzy -msgid "with the host" -msgstr "not within this" +msgid "Unable to find basic information!" +msgstr "Unable to find basic information" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 #, fuzzy -msgid "Windows Key for Image" -msgstr "User Management" +msgid "Unable to find master Storage Node" +msgstr "Failed to destroy Storage Node" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 #, fuzzy -msgid "Windows Keys" -msgstr "Windows 8" +msgid "Unable to get server infromation!" +msgstr "Unable to pull server information!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 -#, fuzzy -msgid "Export Windows Keys" -msgstr "Windows 8" +msgid "Unable to open file for reading" +msgstr "Unable to open file for reading" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -#, fuzzy -msgid "Import Windows Keys" -msgstr "Windows 8" +msgid "Unauthorized" +msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 #, fuzzy -msgid "Key Name" -msgstr "Kernel Name" +msgid "Unavailable" +msgstr "Not Available" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 #, fuzzy -msgid "New Windows Key" -msgstr "Windows 8" +msgid "Unicaset" +msgstr "Unicast" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 #, fuzzy -msgid "Windows Key Name" -msgstr "User Management" +msgid "Unit of time must be a string" +msgstr "Event must be a string" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 -#, fuzzy -msgid "Windows Key Description" -msgstr "Host Description" +msgid "Unknown" +msgstr "Unknown" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 #, fuzzy -msgid "Windows Key" -msgstr "Windows 8" +msgid "Unknown upload error occurred" +msgstr "Unknown upload error occurred. Return code: " + +msgid "Update" +msgstr "Update" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 #, fuzzy -msgid "Create New Key" -msgstr "Create New %s" +msgid "Update API?" +msgstr "Update MACs" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 #, fuzzy -msgid "A Windows Key already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Update Default Printer" +msgstr "Update Printer" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 #, fuzzy -msgid "Add Windows Key failed!" -msgstr "Add snapin failed!" +msgid "Update General?" +msgstr "Update Printer" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 #, fuzzy -msgid "Windows Key added!" -msgstr "User Management" +msgid "Update LDAP server failed!" +msgstr "Add snapin failed!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 -#, fuzzy -msgid "Windows Key Create Success" -msgstr "User created" +msgid "Update MACs" +msgstr "Update MACs" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 #, fuzzy -msgid "Windows Key Create Fail" -msgstr "User created" +msgid "Update PM Values" +msgstr "Update Images" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 #, fuzzy -msgid "Windows Key General" -msgstr "User Management" +msgid "Update Password?" +msgstr "User Password" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 #, fuzzy msgid "Update Windows Key failed!" msgstr "Add snapin failed!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 #, fuzzy -msgid "Windows Key updated!" -msgstr "User Management" +msgid "Update auto-logout time" +msgstr "Update Images" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 #, fuzzy -msgid "Windows Key Update Success" -msgstr "User Management" +msgid "Update default printer" +msgstr "Update Printer" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 #, fuzzy -msgid "Windows Key Update Fail" -msgstr "User Management" +msgid "Update display resolution" +msgstr "Update Primary Group" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 #, fuzzy -msgid "Image Membership" -msgstr "Membership" +msgid "Update module configurations" +msgstr "Upload a new client module/configuration file" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -#, fuzzy -msgid "Check here to see what images can be added" -msgstr "Check here to see what printers can be added" +msgid "Update not required!" +msgstr "Update not required!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 #, fuzzy -msgid "Add selected images" -msgstr "Remove selected printers" +msgid "Update primary group" +msgstr "Update Primary Group" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 #, fuzzy -msgid "Remove Images" -msgstr "Remove" +msgid "Update printer configuration" +msgstr "Host Printer Configuration" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 #, fuzzy -msgid "Remove selected images" -msgstr "Remove selected snapins" +msgid "Update task state failed!" +msgstr "Add snapin failed!" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 #, fuzzy -msgid "WOL Broadcasts" -msgstr "All Broadcasts" +msgid "Update/Remove Storage Groups" +msgstr "Update Printer" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 #, fuzzy -msgid "Export WOLBroadcasts" -msgstr "Host Location" +msgid "Update/Remove printers" +msgstr "Update Printer" + +msgid "Upload Reports" +msgstr "Upload Reports" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 #, fuzzy -msgid "Import WOLBroadcasts" -msgstr "Host Location" +msgid "Upload file" +msgstr "Upload File" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" -msgstr "Broadcast Name" +msgid "Upload file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" -msgstr "Broadcast IP" +msgid "Uptime" +msgstr "Uptime" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" -msgstr "New Broadcast Address" +msgid "Use Group Matching (recommended)" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -#, fuzzy -msgid "Create WOL Broadcast?" -msgstr "All Broadcasts" +msgid "Use extreme caution with this setting" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -#, fuzzy -msgid "A broadcast already exists with this name!" -msgstr "An image already exists with this name!" +msgid "Use inits and kernels from this node" +msgstr "Use inits and kernels from this node" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 -#, fuzzy -msgid "A broadcast address is required" -msgstr "MAC Address is required" +msgid "Use the following link to go to the client page." +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" -msgstr "Please enter a valid ip" +msgid "Use the forums to post issues so others" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -#, fuzzy -msgid "Add broadcast failed!" -msgstr "Add snapin failed!" +msgid "Use the links below if you need assistance" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -#, fuzzy -msgid "Broadcast added!" -msgstr "Broadcast Name" +msgid "Use this for network installs" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -#, fuzzy -msgid "Broadcast Create Success" -msgstr "Host Created" +msgid "Used" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 -#, fuzzy -msgid "Broadcast Create Fail" -msgstr "Host create failed" +msgid "Used Disk Space" +msgstr "Used Disk Space" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -#, fuzzy -msgid "WOL Broadcast General" -msgstr "All Broadcasts" +msgid "Used Memory" +msgstr "Used Memory" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -#, fuzzy -msgid "A broadcast already exists with this name" -msgstr "An image already exists with this name!" +msgid "User" +msgstr "User" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 #, fuzzy -msgid "Broadcast update failed!" -msgstr "Broadcast Updated" +msgid "User API Enabled" +msgstr "Is Enabled" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 #, fuzzy -msgid "Broadcast updated!" -msgstr "Broadcast Updated" +msgid "User API Settings" +msgstr "Settings" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 #, fuzzy -msgid "Broadcast Update Success" -msgstr "Install / Update Successful!" +msgid "User API Token" +msgstr "Access Token" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 #, fuzzy -msgid "Broadcast Update Fail" -msgstr "Broadcast Updated" +msgid "User Access Control" +msgstr "Access Control" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." -msgstr "" +msgid "User Agent Changed" +msgstr "User Agent Changed" + +msgid "User Already Exists" +msgstr "User Already Exists" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 #, fuzzy -msgid "Host Ext" -msgstr "Host List" +msgid "User Change Password" +msgstr "Management Password" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " -msgstr "" +msgid "User Cleanup" +msgstr "User Cleanup" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 #, fuzzy -msgid "External Links" -msgstr "Extension" +msgid "User Create Fail" +msgstr "User created" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 #, fuzzy -msgid "Export Host Exts" -msgstr "Export Hosts" +msgid "User Create Success" +msgstr "User created" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 #, fuzzy -msgid "Import Host Exts" -msgstr "Import Hosts" +msgid "User DN" +msgstr "User Name" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 #, fuzzy -msgid "Host Ext Name" -msgstr "Host Name" +msgid "User Filter" +msgstr "File" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 #, fuzzy -msgid "Host Ext URL" -msgstr "Host ID" +msgid "User General" +msgstr "General" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 -#, fuzzy -msgid "Host Ext Variable" -msgstr "Host Update Failed" +msgid "User Management" +msgstr "User Management" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 -#, fuzzy -msgid "Create New Host Ext" -msgstr "Create New %s" +msgid "User Name" +msgstr "User Name" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 #, fuzzy -msgid "A hostext already exists with this name!" -msgstr "An image already exists with this name!" +msgid "User Name Attribute" +msgstr "User Name" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -#, fuzzy -msgid "Add ou failed!" -msgstr "Add snapin failed!" +msgid "User Password" +msgstr "User Password" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 -#, fuzzy -msgid "Hostext added!" -msgstr "Host added" +msgid "User Password (confirm)" +msgstr "User Password (confirm)" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 -#, fuzzy -msgid "Hostext Create Success" -msgstr "Host Created" +msgid "User Tracker" +msgstr "User Tracker" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 #, fuzzy -msgid "Hostext Create Fail" -msgstr "Host create failed" +msgid "User Update Fail" +msgstr "User update failed" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 #, fuzzy -msgid "Hostext update failed!" -msgstr "Printer update failed!" +msgid "User Update Success" +msgstr "Install / Update Successful!" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 #, fuzzy -msgid "Hostext updated!" -msgstr "User updated" +msgid "User added!" +msgstr "Printer Name" + +msgid "User call is invalid" +msgstr "User call is invalid" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 #, fuzzy -msgid "Hostext Update Success" -msgstr "Install / Update Successful!" +msgid "User name" +msgstr "Username" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 #, fuzzy -msgid "Hostext Update Fail" -msgstr "Host Update Failed" +msgid "User update failed!" +msgstr "User update failed" -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" -msgstr "" +#, fuzzy +msgid "User updated!" +msgstr "User updated" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" -msgstr "Unable to determine plugin details" +#, fuzzy +msgid "User was not authorized by the LDAP server" +msgstr "Please enter a name for this LDAP server." -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" -msgstr "" +msgid "User/Channel Name" +msgstr "User/Channel Name" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" -msgstr "" +msgid "User/Channel to post to" +msgstr "User/Channel to post to" -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" -msgstr "" +msgid "Username" +msgstr "Username" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" +msgid "Username cannot contain contiguous special characters" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" +msgid "Username does not meet requirements" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" +msgid "Username must be at least 3 characters" msgstr "" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 -#, fuzzy -msgid "Integrity Settings" -msgstr "Settings" - -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 -#, fuzzy -msgid "Export Checksums" -msgstr "Export Hosts" - -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" +msgid "Username must be less than 41 characters" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" +msgid "Username must start with a word character" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 -#, fuzzy -msgid "Last Updated Time" -msgstr "Host Update Failed" +msgid "Users" +msgstr "Users" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" +msgid "Using the group match function" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" +msgid "VNC" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" -msgstr "" +#, fuzzy +msgid "Valid Host Colors" +msgstr "Invalid Host" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" -msgstr "" +msgid "Value" +msgstr "Value" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" +msgid "Variable contains" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:19 -#, fuzzy -msgid "

Version 1.5.5" +msgid "Version" msgstr "Version" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 -#, fuzzy -msgid "Host Status" -msgstr "Status" +msgid "Version 1.2.0 and earlier" +msgstr "" -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" -msgstr "Created by FOG Reg on" +#, fuzzy +msgid "View History For" +msgstr "View History for" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" -msgstr "Already registered as" +msgid "View advanced tasks for this" +msgstr "View advanced tasks for this" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" -msgstr "Failed to create Host" +msgid "Virus History" +msgstr "Virus History" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" -msgstr "Done, without imaging!" +msgid "Virus Name" +msgstr "Virus Name" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" -msgstr "Done, No image assigned!" +#, fuzzy +msgid "Virus Report" +msgstr "Report" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" -msgstr "Done, Failed to create tasking" +#, fuzzy +msgid "Virus items removed!" +msgstr "Virus cleared" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "Done, with imaging!" +#, fuzzy +msgid "WOL Broadcast General" +msgstr "All Broadcasts" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "Done" +#, fuzzy +msgid "WOL Broadcast Management" +msgstr "Location Management" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "No Active Task found for Host" +#, fuzzy +msgid "WOL Broadcasts" +msgstr "All Broadcasts" -#: lib/reg-task/taskingelement.class.php:205 #, fuzzy -msgid "Could not find a Storage Node in this group" -msgstr "Could not find a Storage Node, is there one enabled within this group?" +msgid "Wait time has changed to" +msgstr "Printer type changed to" + +msgid "Waiting for mysql to be available" +msgstr "Waiting for mysql to be available" -#: lib/reg-task/taskingelement.class.php:206 #, fuzzy -msgid "is there one enabled" -msgstr "Image is not enabled" +msgid "Wake On Lan" +msgstr "Wake on lan?" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" +msgid "Wake on lan?" +msgstr "Wake on lan?" + +msgid "We are group ID" msgstr "" -#: lib/reg-task/taskingelement.class.php:233 #, fuzzy -msgid "but has recently failed for this host" -msgstr "is open, but has recently failed for this Host" +msgid "We are group name" +msgstr "Storage Group Name" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" -msgstr "Failed to update task" +msgid "We are node ID" +msgstr "" -#: lib/reg-task/taskqueue.class.php:57 #, fuzzy -msgid "Invalid Multicast Session" -msgstr "Start Multicast Session" +msgid "We are node name" +msgstr "Storage Node Name" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" -msgstr "Failed to update Session" +#, fuzzy +msgid "We cannot connect to LDAP server" +msgstr "Cannot connect to database" -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" -msgstr "No open slots" +msgid "Web Server" +msgstr "Web Server" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" -msgstr "There are" +msgid "Web root" +msgstr "Web root" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" -msgstr "before me" +msgid "Weekly" +msgstr "Weekly" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" +msgid "When the plugin is removed, the assigned key will remain" msgstr "" -#: lib/reg-task/taskqueue.class.php:133 -#, fuzzy -msgid "unavailable" -msgstr "Not Available" +msgid "Where to get help" +msgstr "" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" +msgid "Width must be 650 pixels." msgstr "" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" +msgid "Window size must be greater than 1" msgstr "" -#: lib/reg-task/taskqueue.class.php:156 #, fuzzy -msgid "There are open slots" -msgstr "There are open slots, but" - -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" -msgstr "" +msgid "Windows Key" +msgstr "Windows 8" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" -msgstr "" +#, fuzzy +msgid "Windows Key Create Fail" +msgstr "User created" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" -msgstr "Failed to update/create image log" +#, fuzzy +msgid "Windows Key Create Success" +msgstr "User created" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" -msgstr "Failed to update Task" +#, fuzzy +msgid "Windows Key Description" +msgstr "Host Description" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" -msgstr "Failed to update/create task log" +#, fuzzy +msgid "Windows Key General" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:301 #, fuzzy -msgid "Machine Details" -msgstr "Snapin Return Detail" +msgid "Windows Key Management" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:303 #, fuzzy -msgid "Computer Model" -msgstr "Printer Model" +msgid "Windows Key Name" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "Serial Number" +#, fuzzy +msgid "Windows Key Update Fail" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:305 #, fuzzy -msgid "MAC Address" -msgstr "MAC Address List" +msgid "Windows Key Update Success" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:307 #, fuzzy -msgid "Image Used" -msgstr "Imaged" +msgid "Windows Key added!" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:308 #, fuzzy -msgid "Snapin Used" -msgstr "Snapins" +msgid "Windows Key for Image" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:310 #, fuzzy -msgid "Imaged By" -msgstr "Imaged" +msgid "Windows Key updated!" +msgstr "User Management" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 #, fuzzy -msgid "Imaged For" -msgstr "Imaged" +msgid "Windows Keys" +msgstr "Windows 8" + +msgid "Windows keys is a plugin that associates product keys" +msgstr "" + +msgid "Working with node" +msgstr "" -#: lib/reg-task/taskqueue.class.php:312 #, fuzzy -msgid "Imaging Started" -msgstr "Snapin State" +msgid "Wrong file name!" +msgstr "No file uploaded" + +msgid "Yearly" +msgstr "Yearly" + +msgid "Yes" +msgstr "Yes" + +msgid "You are only allowed to assign" +msgstr "You are only allowed to assign" -#: lib/reg-task/taskqueue.class.php:313 #, fuzzy -msgid "Imaging Completed" -msgstr "after task completion" +msgid "You have version" +msgstr "Latest Version" + +msgid "You must have at least one Storage Group" +msgstr "You must have at least one Storage Group" -#: lib/reg-task/taskqueue.class.php:314 #, fuzzy -msgid "Imaging Duration" -msgstr "Imaging Log" +msgid "You must have at least one group associated" +msgstr "You must have at least one Storage Group" -#: lib/reg-task/taskqueue.class.php:332 #, fuzzy -msgid "Image Task Completed" -msgstr "after task completion" +msgid "You must select an action to perform" +msgstr "You must specify the alias and port" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" +msgid "Your FOG database schema is not up to date" +msgstr "" + +msgid "Your Location Here" +msgstr "Your Location Here" + +msgid "Your database connection appears to be invalid" msgstr "" -#: lib/reg-task/taskqueue.class.php:461 #, fuzzy -msgid "Failed to update Host" -msgstr "Failed to update" +msgid "Your form is ready" +msgstr "Your form is ready." -#: lib/reg-task/taskqueue.class.php:475 #, fuzzy -msgid "Failed to update task log" -msgstr "Failed to update task" +msgid "Your server only allows" +msgstr "You are only allowed to assign" -#: lib/reg-task/taskqueue.class.php:479 #, fuzzy -msgid "Failed to update imaging log" -msgstr "Failed to update/create image log" +msgid "Your system PHP Version is not sufficient" +msgstr "" +"Your systems PHP version is not sufficient. You have version %s, version %s " +"is required." -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" -msgstr "FOG Equipment Loan Form" +#, fuzzy +msgid "ZSTD Compressed" +msgstr "Partclone" + +msgid "ZSTD Compressed 200MiB split" +msgstr "" + +#, fuzzy +msgid "access to the hidden menu system" +msgstr "Option specifies the timeout value for the hidden menu system" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" -msgstr "Select User" +#, fuzzy +msgid "additional macs" +msgstr "Additional MACs" -#: lib/reports/equipment_loan.report.php:66 #, fuzzy -msgid "Create Report?" -msgstr "Create Report" +msgid "ago" +msgstr " ago" -#: lib/reports/equipment_loan.report.php:69 #, fuzzy -msgid "Generate" -msgstr "General" +msgid "all current storage nodes" +msgstr "Invalid storage node" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" -msgstr "of" +msgid "and Mac OS X" +msgstr "" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" -msgstr "Printed" +msgid "and agree to all the" +msgstr "" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" -msgstr "PC Check-out Agreement" +msgid "and both the legacy and new FOG clients." +msgstr "" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" -msgstr "Personal Information" +msgid "and cannot be captured" +msgstr "" -#: lib/reports/equipment_loan.report.php:162 -msgid "Your Location Here" -msgstr "Your Location Here" +#, fuzzy +msgid "and if the Database service is running" +msgstr "Check that database is running" -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" -msgstr "Home Address" +msgid "and much easier on the server" +msgstr "" -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" -msgstr "City/State/Zip" +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" -msgstr "Extension" +msgid "and set it to master" +msgstr "" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" -msgstr "Home Phone" +msgid "and stores their respective checksums" +msgstr "" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" -msgstr "Computer Information" +msgid "and the equivalent module for what Green" +msgstr "" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" -msgstr "Service Tag" +msgid "and the location of the file on that" +msgstr "" -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "Barcode Numbers" +msgid "as FOG will attempt to go out to the internet" +msgstr "" -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" -msgstr "Date of checkout" +#, fuzzy +msgid "as its primary group" +msgstr "Update Primary Group" -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" -msgstr "Notes" +msgid "as they can cause issues that are difficult to troubleshoot" +msgstr "" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "Miscellaneous" +msgid "automatically" +msgstr "" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "Included Items" +#, fuzzy +msgid "based task." +msgstr "based task" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" -msgstr "Releasing Staff Initials" +msgid "be the presence of a menu" +msgstr "" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" -msgstr "To be released only by" +msgid "before me" +msgstr "before me" -#: lib/reports/equipment_loan.report.php:219 -#, fuzzy -msgid "I have read" -msgstr "Image created" +msgid "before me on this node" +msgstr "" -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" +msgid "between" msgstr "" -#: lib/reports/equipment_loan.report.php:221 -msgid "and agree to all the" +msgid "between different sites" msgstr "" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" -msgstr "Terms and Conditions" +msgid "between host and global settings" +msgstr "" -#: lib/reports/equipment_loan.report.php:223 -#, fuzzy -msgid "on the following pages of this document" -msgstr "The following errors occured" +msgid "boot the client computers" +msgstr "" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "Signed" +msgid "but" +msgstr "" -#: lib/reports/equipment_loan.report.php:262 -#, fuzzy -msgid "Your form is ready" -msgstr "Your form is ready." +msgid "but bind password is not set" +msgstr "" -#: lib/reports/equipment_loan.report.php:266 #, fuzzy -msgid "Form" -msgstr "Format" +msgid "but has recently failed for this host" +msgstr "is open, but has recently failed for this Host" -#: lib/reports/history_report.report.php:26 -#, fuzzy -msgid "FOG History - Search" -msgstr "FOG User Login History Summary - Search" +msgid "check to ensure your filesystem has enough space" +msgstr "" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 #, fuzzy -msgid "Enter an user name to search for" -msgstr "Enter a username to search for" +msgid "client" +msgstr "Client" -#: lib/reports/history_report.report.php:68 #, fuzzy -msgid "Enter a term to search for" -msgstr "Enter a username to search for" +msgid "clients" +msgstr "Client" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" +msgid "config files that run on the client computers." msgstr "" -#: lib/reports/history_report.report.php:111 #, fuzzy -msgid "Full History Export" -msgstr "Full Inventory Export" +msgid "could not be cancelled" +msgstr "has been successfully updated" -#: lib/reports/history_report.report.php:166 #, fuzzy -msgid "History ID" -msgstr "Host ID" +msgid "could not be completed" +msgstr "Could not read temp file" -#: lib/reports/history_report.report.php:167 #, fuzzy -msgid "History Info" -msgstr "View History for" +msgid "could not be killed" +msgstr "Could not read temp file" -#: lib/reports/history_report.report.php:168 -#, fuzzy -msgid "History User" -msgstr "View History for" +msgid "day" +msgstr "" -#: lib/reports/history_report.report.php:169 -#, fuzzy -msgid "History Time" -msgstr "View History for" +msgid "day of month" +msgstr "" -#: lib/reports/history_report.report.php:170 -#, fuzzy -msgid "History IP" -msgstr "View History for" +msgid "day of week" +msgstr "" -#: lib/reports/host_list.report.php:33 -#, fuzzy -msgid "FOG Host - Search" -msgstr "FOG User Login History Summary - Search" +msgid "defined reports that may not be a part of" +msgstr "" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -#, fuzzy -msgid "Enter a group name to search for" -msgstr "Enter a username to search for" +msgid "deleted" +msgstr "deleted" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -#, fuzzy -msgid "Enter a location name to search for" -msgstr "Enter a hostname to search for" +msgid "deploy task occurs for it" +msgstr "" + +msgid "directive in php.ini" +msgstr "" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 #, fuzzy -msgid "Enter a site name to search for" -msgstr "Enter a username to search for" +msgid "directive specified in the HTML form" +msgstr "" +"The uploaded file exceeds the max_file_size directive specified in the HTML " +"form" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 #, fuzzy -msgid "Search pattern" -msgstr "Search" +msgid "directory" +msgstr "Directory" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" -msgstr "Host Listing Export" +msgid "download the module and use it on the next" +msgstr "" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" -msgstr "Host Created" +msgid "due to UAC introduced in Vista and up." +msgstr "" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -#, fuzzy -msgid "Host AD Join" -msgstr "AD Join" +msgid "e.g." +msgstr "" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -#, fuzzy -msgid "Host AD OU" -msgstr "Host ID" +msgid "either already selected or uploaded" +msgstr "" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -#, fuzzy -msgid "Host AD Domain" -msgstr "AD Domain" +msgid "either because you have updated" +msgstr "" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 #, fuzzy -msgid "Host HD Device" -msgstr "HD Device" +msgid "failed to execute, image file: " +msgstr "Failed to delete image files" -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" -msgstr "Image ID" +msgid "failed to execute, port must be even and numeric" +msgstr "" -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" -msgstr "Image Desc" +msgid "failed to execute, there are no clients included" +msgstr "" -#: lib/reports/hosts_and_users.report.php:24 -#, fuzzy -msgid "FOG Host and Users - Search" -msgstr "FOG Hosts and Users Login" +msgid "failed to login" +msgstr "failed to login" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" -msgstr "FOG Hosts and Users Login" +#, fuzzy +msgid "failed to start" +msgstr "Failed to destroy" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" -msgstr "AD Join" +#, fuzzy +msgid "faster" +msgstr "Date" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" -msgstr "AD OU" +msgid "filesize" +msgstr "filesize" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" -msgstr "AD Domain" +msgid "for Microsoft Windows to images" +msgstr "" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" -msgstr "HD Device" +msgid "for the advanced menu parameters" +msgstr "" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -#, fuzzy -msgid "Login Users" -msgstr "Login" +msgid "for the menu background" +msgstr "" -#: lib/reports/imaging_log.report.php:24 #, fuzzy -msgid "FOG Imaging - Search" -msgstr "FOG User Login History Summary - Search" +msgid "found" +msgstr "Not found" -#: lib/reports/imaging_log.report.php:105 #, fuzzy -msgid "Enter an image name to search for" -msgstr "Enter a username to search for" - -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" -msgstr "Enter a hostname to search for" +msgid "from" +msgstr "From" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" -msgstr "FOG Imaging Log" +msgid "function on client computers." +msgstr "" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" -msgstr "Start Date" +msgid "group" +msgstr "group" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" -msgstr "End Date" +#, fuzzy +msgid "has been cancelled" +msgstr "has been successfully updated" -#: lib/reports/imaging_log.report.php:214 #, fuzzy -msgid "Deploy/Capture" -msgstr "Deploy" +msgid "has been completed" +msgstr "has been destroyed" -#: lib/reports/imaging_log.report.php:268 #, fuzzy -msgid "Not Valid" -msgstr "Invalid data" +msgid "has been killed" +msgstr "has been successfully updated" + +msgid "has been started on port" +msgstr "has been started on port" -#: lib/reports/inventory_report.report.php:24 #, fuzzy -msgid "FOG Host Inventory - Search" -msgstr "FOG User Login History Summary - Search" +msgid "has been successfully destroyed" +msgstr "has been successfully updated" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." -msgstr "" +msgid "has been successfully updated" +msgstr "has been successfully updated" -#: lib/reports/inventory_report.report.php:129 #, fuzzy -msgid "Enter a model name to search for" -msgstr "Enter a username to search for" +msgid "has failed to destroy" +msgstr "has failed to be destroyed" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" -msgstr "Full Inventory Export" +msgid "has failed to save" +msgstr "has failed to save" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." -msgstr "All Pending MACs approved." +#, fuzzy +msgid "has started" +msgstr "Task Started" -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" -msgstr "Pending MAC Export" +msgid "help with any aspect of FOG" +msgstr "" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" -msgstr "Host Primary MAC" +msgid "here" +msgstr "here" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" -msgstr "Host Pending MAC" +msgid "host" +msgstr "host" -#: lib/reports/pending_mac_list.report.php:130 #, fuzzy -msgid "Approve All Pending MACs for All Hosts" -msgstr "Approve All Pending MACs for all hosts" +msgid "hosts" +msgstr "host" -#: lib/reports/pending_mac_list.report.php:154 #, fuzzy -msgid "Pending MAC Actions" -msgstr "Pending MACs" +msgid "hour" +msgstr "1 hour" -#: lib/reports/pending_mac_list.report.php:160 #, fuzzy -msgid "Approve Selected MACs" -msgstr "Approve selected Hosts" +msgid "hr" +msgstr "here" -#: lib/reports/pending_mac_list.report.php:165 #, fuzzy -msgid "Approve" -msgstr "Host approved" +msgid "iPXE General Configuration" +msgstr "iPXE Menu Configuration" -#: lib/reports/pending_mac_list.report.php:171 #, fuzzy -msgid "Delete Selected MACs" -msgstr "Delete Selected" +msgid "iPXE Item Create Fail" +msgstr "Printer update failed!" -#: lib/reports/product_keys.report.php:31 #, fuzzy -msgid "Host Product Keys" -msgstr "Host Product Key" +msgid "iPXE Item Create Success" +msgstr "Printer already exists" -#: lib/reports/snapin_log.report.php:18 #, fuzzy -msgid "FOG Snapin - Search" -msgstr "FOG User Login History Summary - Search" +msgid "iPXE Item Remove Success" +msgstr "Install / Update Successful!" -#: lib/reports/snapin_log.report.php:82 #, fuzzy -msgid "Enter a snapin name to search for" -msgstr "Enter a username to search for" +msgid "iPXE Item Update Success" +msgstr "Install / Update Successful!" -#: lib/reports/snapin_log.report.php:120 #, fuzzy -msgid "Found snapin information" -msgstr "FOG Version Information" - -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" -msgstr "Return Desc" +msgid "iPXE Item added!" +msgstr "Printer Name" -#: lib/reports/snapin_log.report.php:153 #, fuzzy -msgid "Checkin Time" -msgstr "Task Checkin Time" +msgid "iPXE Item create failed!" +msgstr "Menu create failed" -#: lib/reports/snapin_log.report.php:154 -#, fuzzy -msgid "Complete Time" -msgstr "Task Checkin Time" +msgid "iPXE Menu Customization" +msgstr "iPXE Menu Customization" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" -msgstr "Snapin ID" +#, fuzzy +msgid "iPXE Menu Item Settings" +msgstr "Settings" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" -msgstr "Snapin Args" +#, fuzzy +msgid "iPXE Menu Settings" +msgstr "Settings" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" -msgstr "Snapin Run With Args" +msgid "iPXE New Menu Entry" +msgstr "iPXE New Menu Entry" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" -msgstr "Snapin State" +#, fuzzy +msgid "iPXE Settings updated successfully!" +msgstr "Install / Update Successful!" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" -msgstr "Snapin Return Code" +#, fuzzy +msgid "iPXE Update Fail" +msgstr "Snapin update failed" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" -msgstr "Snapin Return Detail" +#, fuzzy +msgid "iPXE Update Success" +msgstr "Install / Update Successful!" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" -msgstr "Snapin Creation Date" +msgid "iPXE syntax is very finicky when it comes to editing" +msgstr "" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" -msgstr "Snapin Creation Time" +msgid "iPrint Printer" +msgstr "iPrint Printer" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" -msgstr "Job Create Date" +#, fuzzy +msgid "if there is a task" +msgstr "There is a host in a tasking" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" -msgstr "Job Create Time" +msgid "if used incorrectly could potentially" +msgstr "" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" -msgstr "Task Checkin Date" +#, fuzzy +msgid "image" +msgstr "Image" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" -msgstr "Task Checkin Time" +msgid "image file found, file: " +msgstr "" -#: lib/reports/snapin_log.report.php:194 #, fuzzy -msgid "Task Complete Date" -msgstr "Task Checkin Date" +msgid "image replication" +msgstr "Image Replicator" -#: lib/reports/snapin_log.report.php:195 #, fuzzy -msgid "Task Complete Time" -msgstr "Task Checkin Time" +msgid "images" +msgstr "Images" -#: lib/reports/user_tracking.report.php:31 #, fuzzy -msgid "FOG User tracking - Search" -msgstr "FOG User Login History Summary - Search" - -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" -msgstr "Enter a username to search for" +msgid "images to a storage group" +msgstr "Primary Storage Group" -#: lib/reports/user_tracking.report.php:132 -#, fuzzy -msgid "Found login information" -msgstr "FOG Version Information" +msgid "in seconds" +msgstr "" -#: lib/reports/user_tracking.report.php:233 #, fuzzy -msgid "FOG User tracking history" -msgstr "FOG User Login History Summary" +msgid "install or update the FOG database" +msgstr "Are you sure you wish to install or update the FOG database?" -#: lib/reports/user_tracking.report.php:290 #, fuzzy -msgid "Service Start" -msgstr "Service Status" - -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" -msgstr "FOG Virus Summary" - -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" -msgstr "" +msgid "is already running with pid: " +msgstr "Replication Bandwidth" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" +msgid "is going on with your FOG System" msgstr "" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 #, fuzzy -msgid "Already created" -msgstr "Already registered as" +msgid "is invalid" +msgstr "Data is invalid" -#: lib/router/route.class.php:857 #, fuzzy -msgid "Invalid tasking type passed" -msgstr "Invalid object type passed" +msgid "is new" +msgstr "Line" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" -msgstr "" +#, fuzzy +msgid "is no longer running" +msgstr " no longer exists" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 #, fuzzy -msgid "I am the group manager" -msgstr " | I am the only member" +msgid "is now cancelled" +msgstr "has been successfully updated" -#: lib/service/imagereplicator.class.php:119 #, fuzzy -msgid "Starting Image Replication" -msgstr "Image Replicator" +msgid "is now completed" +msgstr "has been destroyed" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" +msgid "is open" msgstr "" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 -#, fuzzy -msgid "We are group name" -msgstr "Storage Group Name" +msgid "is protected" +msgstr "is protected" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" -msgstr "" +msgid "is protected, removal not allowed" +msgstr "is protected, removal not allowed" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 #, fuzzy -msgid "We are node name" -msgstr "Storage Node Name" +msgid "is required" +msgstr "%s is required" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 #, fuzzy -msgid "Attempting to perform" -msgstr "Attempting to ping" +msgid "is there one enabled" +msgstr "Image is not enabled" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 #, fuzzy -msgid "image replication" -msgstr "Image Replicator" +msgid "is valid" +msgstr "Data is invalid" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "There is nothing to replicate" +msgid "it boots to the first device" +msgstr "" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" +msgid "it performs that task" msgstr "" -#: lib/service/imagereplicator.class.php:207 -#, fuzzy -msgid "images to a storage group" -msgstr "Primary Storage Group" +msgid "it will distribute its store" +msgstr "" -#: lib/service/imagereplicator.class.php:241 -#, fuzzy -msgid "Replicating" -msgstr "Replicate?" +msgid "it will enforce login to gain access to the advanced" +msgstr "" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" +msgid "it's transmitting to" msgstr "" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -#, fuzzy -msgid "This is not the primary group" -msgstr " | This is not the primary group" +msgid "kernel to boot the client computers" +msgstr "" -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 #, fuzzy -msgid "Nodes" -msgstr "Node" +msgid "key" +msgstr "DMI Key" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" +msgid "limited to 1Mbps on that node" msgstr "" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" +msgid "location url based on the host that checks in" msgstr "" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" +msgid "logged in" msgstr "" -#: lib/service/multicasttask.class.php:104 #, fuzzy -msgid " | Unable to find image path" -msgstr "Failed to destroy Storage Node" +msgid "logout" +msgstr "Logout" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" +msgid "may see the issue and help and/or use the solutions" msgstr "" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "I am not the fog web server" - -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" +msgid "meaning a node that has no images on it" msgstr "" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" -msgstr "Attempting to ping" - -#: lib/service/pinghosts.class.php:147 -#, fuzzy -msgid "hosts" -msgstr "host" - -#: lib/service/snapinhash.class.php:102 #, fuzzy -msgid " * Snapin hash is globally disabled" -msgstr "Snapin with that name already exists" +msgid "menu system" +msgstr "Menu Item:" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" +msgid "migration or mass import new items" msgstr "" -#: lib/service/snapinhash.class.php:135 #, fuzzy -msgid "Finding any snapins associated" -msgstr "No snapins associated" +msgid "min" +msgstr "minutes" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 #, fuzzy -msgid "with this group" -msgstr "not within this" +msgid "minute" +msgstr "minutes" + +msgid "minutes" +msgstr "minutes" + +msgid "mod dates" +msgstr "" -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 #, fuzzy -msgid "as its primary group" -msgstr "Update Primary Group" +msgid "month" +msgstr "Monthly" -#: lib/service/snapinhash.class.php:158 #, fuzzy -msgid "No snapins associated with this group as master" -msgstr "There are no snapins associated with this host" +msgid "more secure" +msgstr "Import Users" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" +msgid "multiple places to get your image" msgstr "" -#: lib/service/snapinhash.class.php:170 #, fuzzy -msgid "snapins" -msgstr "Snapins" +msgid "must be specified" +msgstr "No image specified" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" -msgstr "" +msgid "n/a" +msgstr "n/a" -#: lib/service/snapinhash.class.php:187 #, fuzzy -msgid "Trying Snapin hash for" -msgstr "Snapin Path" - -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "" +msgid "no database to" +msgstr "No database to work off" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" +msgid "no login will appear" msgstr "" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" -msgstr "Completed" - -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" +msgid "node is the distributor of the images" msgstr "" -#: lib/service/snapinreplicator.class.php:118 #, fuzzy -msgid "Starting Snapin Replication" -msgstr "Snapin Replicator" +msgid "nodes containing this image" +msgstr "Could not find any nodes containing this image" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 #, fuzzy -msgid "snapin replication" -msgstr "Snapin Replicator" +msgid "not found on this node" +msgstr "Image not found on node" -#: lib/service/snapinreplicator.class.php:206 #, fuzzy -msgid "snapins to a storage group" -msgstr "Snapin Storage Group" +msgid "object" +msgstr "Object" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "" +msgid "of" +msgstr "of" -#: lib/service/snapinreplicator.class.php:249 #, fuzzy -msgid "Not syncing Snapin" -msgstr "No connection to get snapin" +msgid "on the following pages of this document" +msgstr "The following errors occured" -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" -msgstr " | This is not the master node" +msgid "on the old client" +msgstr "" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" +msgid "open" msgstr "" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" -msgstr "Waiting for mysql to be available" +msgid "or" +msgstr "or" -#: lib/service/fogservice.class.php:356 #, fuzzy -msgid "This is not the master for this group" -msgstr " | This is not the primary group" +msgid "or no valid images specified" +msgstr "No image specified" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" +msgid "or start to operate" msgstr "" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" +msgid "or this is a new FOG installation" msgstr "" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" +msgid "particular node" msgstr "" -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" +#, fuzzy +msgid "per host" +msgstr "snapin per host" + +msgid "please see the hosts service settings section." msgstr "" -#: lib/service/fogservice.class.php:411 #, fuzzy -msgid "to transfer to" -msgstr "Image Transfer Log" +msgid "power management task(s) to run" +msgstr "User Management" -#: lib/service/fogservice.class.php:482 -#, fuzzy -msgid "Replication already running with PID" -msgstr "Replication Bandwidth" +msgid "present and where/how they need to display" +msgstr "" -#: lib/service/fogservice.class.php:514 -#, fuzzy -msgid "File or path cannot be reached" -msgstr "File or path cannot be reached" +msgid "previous install if needed" +msgstr "" -#: lib/service/fogservice.class.php:530 -#, fuzzy -msgid "Cannot connect to" -msgstr "Cannot connect to" +msgid "read-only" +msgstr "" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 #, fuzzy -msgid "File does not exist" -msgstr "File does not exist" - -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" -msgstr "File hash mismatch" +msgid "real insert time" +msgstr "Replay from journal: real insert time" -#: lib/service/fogservice.class.php:735 #, fuzzy -msgid "File size mismatch" -msgstr "File size mismatch" +msgid "require all hosts have the same image" +msgstr "Hosts do not have the same image assigned" -#: lib/service/fogservice.class.php:743 #, fuzzy -msgid "Deleting remote file" -msgstr "Deleting remote file" +msgid "scheduled task(s) to run" +msgstr "Scheduled Tasks" -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" -msgstr "No need to sync" +#, fuzzy +msgid "second" +msgstr "Icon" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." -msgstr "All files synced for this item." +msgid "seconds" +msgstr "" -#: lib/service/fogservice.class.php:780 -#, fuzzy -msgid "Starting Sync Actions" -msgstr "Starting Sync Actions" +msgid "see fit" +msgstr "" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" -msgstr "Started sync for" +msgid "see the forums or lookup the commands and scripts available" +msgstr "" -#: lib/service/fogservice.class.php:868 #, fuzzy -msgid "Task started" -msgstr "Task Started" +msgid "sending on base port " +msgstr "Pending MAC Export" -#: lib/service/imagesize.class.php:102 -#, fuzzy -msgid " * Image size is globally disabled" -msgstr "Snapin with that name already exists" +msgid "sites with clients moving back and forth" +msgstr "" -#: lib/service/imagesize.class.php:111 #, fuzzy -msgid "Starting Image Size Service" -msgstr "Image Replicator" +msgid "snapin" +msgstr "Snapin" -#: lib/service/imagesize.class.php:135 #, fuzzy -msgid "Finding any images associated" -msgstr "No snapins associated" +msgid "snapin replication" +msgstr "Snapin Replicator" -#: lib/service/imagesize.class.php:158 #, fuzzy -msgid "No images associated with this group as master" -msgstr "There are no snapins associated with this host" +msgid "snapins" +msgstr "Snapins" -#: lib/service/imagesize.class.php:170 #, fuzzy -msgid "images" -msgstr "Images" +msgid "snapins to a storage group" +msgstr "Snapin Storage Group" -#: lib/service/imagesize.class.php:171 -#, fuzzy -msgid "image" -msgstr "Image" +msgid "so if it seems like the process is hanging please be patient" +msgstr "" -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" +msgid "so if you are unable to boot a client you may wish to" msgstr "" -#: lib/service/imagesize.class.php:187 #, fuzzy -msgid "Trying image size for" -msgstr "Snapin Path" +msgid "successfully removed!" +msgstr "successfully removed" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -#, fuzzy -msgid "Path is unavailable" -msgstr "No hash available" +msgid "task found" +msgstr "task found" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" +msgid "tasks in queue" msgstr "" -#: lib/service/imagesize.class.php:225 -#, fuzzy -msgid "Size" -msgstr "Max Size" - -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" msgstr "" -#: lib/service/multicastmanager.class.php:222 -#, fuzzy -msgid "Task ID" -msgstr "Task" - -#: lib/service/multicastmanager.class.php:234 -#, fuzzy -msgid "No new tasks found" -msgstr "No valid class sent" - -#: lib/service/multicastmanager.class.php:264 -#, fuzzy -msgid " No open slots " -msgstr "No open slots" +msgid "the Initrd (initial ramdisk) which is used alongside the" +msgstr "" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" +msgid "the Linux kernel which is used to" msgstr "" -#: lib/service/multicastmanager.class.php:289 #, fuzzy -msgid "failed to execute, image file: " -msgstr "Failed to delete image files" +msgid "the advanced menu to use" +msgstr "Advanced Menu Login" -#: lib/service/multicastmanager.class.php:291 #, fuzzy -msgid "not found on this node" -msgstr "Image not found on node" +msgid "the base FOG install" +msgstr "Reboot after install" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" +msgid "the following command in a terminal" msgstr "" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" +msgid "the host defined location where available" msgstr "" -#: lib/service/multicastmanager.class.php:327 -#, fuzzy -msgid "failed to start" -msgstr "Failed to destroy" +msgid "the main and the host" +msgstr "" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 -#, fuzzy -msgid "could not be killed" -msgstr "Could not read temp file" +msgid "the way in which FOG operates" +msgstr "" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 #, fuzzy -msgid "has been killed" -msgstr "has been successfully updated" +msgid "there one enabled within this Storage Group" +msgstr "" +"Could not find a Storage Node Is there one enabled within this Storage Group" -#: lib/service/multicastmanager.class.php:363 -#, fuzzy -msgid "is new" -msgstr "Line" +msgid "there will be a database backup stored on your" +msgstr "" -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -#, fuzzy -msgid "unable to be updated" -msgstr "Failed to update" +msgid "this backup will enable you to return to the" +msgstr "" -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " +msgid "this is just another to ensure safety" msgstr "" -#: lib/service/multicastmanager.class.php:397 -#, fuzzy -msgid "client" -msgstr "Client" +msgid "this kernel holds all the drivers for the client computer" +msgstr "" -#: lib/service/multicastmanager.class.php:398 -#, fuzzy -msgid "clients" -msgstr "Client" +msgid "this one is already in use by another image" +msgstr "" -#: lib/service/multicastmanager.class.php:401 #, fuzzy -msgid "found" -msgstr "Not found" +msgid "this one is reserved for FOG" +msgstr "Please choose a different name, this one is reserved for FOG." -#: lib/service/multicastmanager.class.php:409 -#, fuzzy -msgid "sending on base port " -msgstr "Pending MAC Export" +msgid "this will save the backup in your home" +msgstr "" -#: lib/service/multicastmanager.class.php:416 -#, fuzzy -msgid "Command" -msgstr "Snapin Command" +msgid "time the service is started." +msgstr "" -#: lib/service/multicastmanager.class.php:425 -#, fuzzy -msgid "has started" -msgstr "Task Started" +msgid "to UAC introduced in Vista and up" +msgstr "" -#: lib/service/multicastmanager.class.php:490 #, fuzzy -msgid "is already running with pid: " -msgstr "Replication Bandwidth" +msgid "to all nodes in the group" +msgstr "Delete all hosts within group" -#: lib/service/multicastmanager.class.php:502 -#, fuzzy -msgid "is no longer running" -msgstr " no longer exists" +msgid "to be booted if no keys are pressed when the menu is" +msgstr "" -#: lib/service/multicastmanager.class.php:528 #, fuzzy -msgid "has been completed" -msgstr "has been destroyed" +msgid "to get the requested Initrd" +msgstr "No key being requested" -#: lib/service/multicastmanager.class.php:539 #, fuzzy -msgid "has been cancelled" -msgstr "has been successfully updated" +msgid "to get the requested Kernel" +msgstr "No key being requested" -#: lib/service/multicastmanager.class.php:584 -#, fuzzy -msgid "is now cancelled" -msgstr "has been successfully updated" +msgid "to login" +msgstr "to login" -#: lib/service/multicastmanager.class.php:585 -#, fuzzy -msgid "could not be cancelled" -msgstr "has been successfully updated" +msgid "to operate in an environment where there may be" +msgstr "" -#: lib/service/multicastmanager.class.php:600 -#, fuzzy -msgid "is now completed" -msgstr "has been destroyed" +msgid "to review." +msgstr "to review." -#: lib/service/multicastmanager.class.php:601 #, fuzzy -msgid "could not be completed" -msgstr "Could not read temp file" +msgid "to signify if this is a user or channel to send to" +msgstr "" +"Must use an @ or # to signify if this is a user or channel to send message " +"to!" -#: lib/service/multicastmanager.class.php:619 -#, fuzzy -msgid "Wait time has changed to" -msgstr "Printer type changed to" +msgid "to the client systems" +msgstr "" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" +msgid "to time to see if a new module is published." msgstr "" -#: lib/service/multicastmanager.class.php:624 #, fuzzy -msgid "second" -msgstr "Icon" +msgid "to transfer to" +msgstr "Image Transfer Log" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" +msgid "to update hash values as needed" msgstr "" -#: lib/service/taskscheduler.class.php:172 -#, fuzzy -msgid "scheduled task(s) to run" -msgstr "Scheduled Tasks" +msgid "to update size values as needed" +msgstr "" -#: lib/service/taskscheduler.class.php:179 #, fuzzy -msgid "power management task(s) to run" -msgstr "User Management" +msgid "unable to be updated" +msgstr "Failed to update" -#: lib/service/taskscheduler.class.php:187 #, fuzzy -msgid "Scheduled Task run time" -msgstr "Scheduled Tasks" +msgid "unavailable" +msgstr "Not Available" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." +msgid "understood" msgstr "" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" -msgstr "Is a" +msgid "update to a newer kernel which may have more drivers built in" +msgstr "" -#: lib/service/taskscheduler.class.php:216 -#, fuzzy -msgid "based task." -msgstr "based task" +msgid "used" +msgstr "" + +msgid "user failed to login" +msgstr "user failed to login" + +msgid "user successfully logged in" +msgstr "user successfully logged in" -#: lib/service/taskscheduler.class.php:224 #, fuzzy -msgid "Unicaset" -msgstr "Unicast" +msgid "username" +msgstr "Username" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" -msgstr "task found" +#, fuzzy +msgid "version" +msgstr "Version" -#: lib/service/taskscheduler.class.php:252 #, fuzzy -msgid "Task started for" -msgstr "Tasks started for" +msgid "we need a file name in the request" +msgstr "If action of ask or get, we need a file name in the request" -#: lib/service/taskscheduler.class.php:275 #, fuzzy -msgid "Power Management Task run time" -msgstr "User Management" +msgid "where to download the snapin" +msgstr "Failed to find the snapin file" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." +msgid "which is empty" msgstr "" -#: lib/service/taskscheduler.class.php:294 #, fuzzy -msgid "Task sent to" -msgstr "Task State" +msgid "window" +msgstr "Windows 7" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" +msgid "wipe out all of your images stored on" +msgstr "" + +msgid "with modules and config" msgstr "" -#: management/other/index.php:167 #, fuzzy -msgid "Credits" -msgstr "Create" +msgid "with the host" +msgstr "not within this" -#: management/other/index.php:170 #, fuzzy -msgid "FOG Client" -msgstr "FOG Client Wiki" +msgid "with this group" +msgstr "not within this" -#: service/hostnameloop.php:36 #, fuzzy -msgid "A host with that name already exists" -msgstr "A hostname with that name already exists." +msgid "would you like to install it now" +msgstr "" +"This plugin is currently not installed, would you like to install it now?" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" +msgid "you set the bandwidth field on that node to 1000" msgstr "" -#: service/inventory.php:90 #, fuzzy -msgid "Failed to create inventory for this host" -msgstr "Failed to create inventory for this host!" +#~ msgid "A hostext already exists with this name!" +#~ msgstr "An image already exists with this name!" -#: service/grouplisting.php:28 #, fuzzy -msgid "There are no groups on this server" -msgstr "There are no groups on this server." +#~ msgid "Add ou failed!" +#~ msgstr "Add snapin failed!" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" -msgstr "" +#~ msgid "Could not read temp file" +#~ msgstr "Could not read temp file" -#: service/hostinfo.php:31 #, fuzzy -msgid "Invalid tasking!" -msgstr "Invalid task" +#~ msgid "Create New Host Ext" +#~ msgstr "Create New %s" -#: service/imagelisting.php:28 #, fuzzy -msgid "There are no images on this server" -msgstr "There are no images on this server." +#~ msgid "Export Host Exts" +#~ msgstr "Export Hosts" -#: service/locationlisting.php:28 #, fuzzy -msgid "There are no locations on this server" -msgstr "There are no locations on this server." +#~ msgid "External Links" +#~ msgstr "Extension" -#: service/progress.php:39 -msgid "Invalid image" -msgstr "Invalid image" +#~ msgid "FOG Snapin Log" +#~ msgstr "FOG Snapin Log" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "Invalid unit passed" +#~ msgid "Files do not match on server: " +#~ msgstr "Files do not match on server: " + +#~ msgid "Hello FOG Client" +#~ msgstr "Hello FOG Client" -#: service/Test.php:217 #, fuzzy -msgid "Invalid Unit" -msgstr "Invalid URL" +#~ msgid "Host Ext" +#~ msgstr "Host List" -#: service/av.php:25 -msgid "Invalid operational mode" -msgstr "Invalid operational mode" +#, fuzzy +#~ msgid "Host Ext Name" +#~ msgstr "Host Name" -#: service/av.php:38 -msgid "Accepted" -msgstr "Accepted" +#, fuzzy +#~ msgid "Host Ext URL" +#~ msgstr "Host ID" -#: service/snapinlisting.php:28 #, fuzzy -msgid "There are no snapins on this server" -msgstr "There are no snapins on this server." +#~ msgid "Host Ext Variable" +#~ msgstr "Host Update Failed" -#: status/bandwidth.php:40 #, fuzzy -msgid "Device must be a string" -msgstr "Device must be a string" +#~ msgid "Hostext Create Fail" +#~ msgstr "Host create failed" -#: status/getfiles.php:27 #, fuzzy -msgid "Invalid" -msgstr "Invalid ID" +#~ msgid "Hostext Create Success" +#~ msgstr "Host Created" -#: status/logtoview.php:31 status/logtoview.php:130 #, fuzzy -msgid "Invalid IP" -msgstr "Invalid IP" +#~ msgid "Hostext Update Fail" +#~ msgstr "Host Update Failed" -#: status/logtoview.php:37 status/logtoview.php:136 #, fuzzy -msgid "Invalid File" -msgstr "Invalid File" +#~ msgid "Hostext Update Success" +#~ msgstr "Install / Update Successful!" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "Invalid Folder" +#, fuzzy +#~ msgid "Hostext added!" +#~ msgstr "Host added" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "Unable to open file for reading" +#, fuzzy +#~ msgid "Hostext update failed!" +#~ msgstr "Printer update failed!" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "IP Passed is incorrect" +#, fuzzy +#~ msgid "Hostext updated!" +#~ msgstr "User updated" -#~ msgid "Hello FOG Client" -#~ msgstr "Hello FOG Client" +#, fuzzy +#~ msgid "Import Host Exts" +#~ msgstr "Import Hosts" -#~ msgid "FOG Snapin Log" -#~ msgstr "FOG Snapin Log" +#, fuzzy +#~ msgid "Invalid Unit" +#~ msgstr "Invalid URL" + +#~ msgid "Invalid unit passed" +#~ msgstr "Invalid unit passed" + +#~ msgid "Inventory Desc" +#~ msgstr "Inventory Desc" #~ msgid "Legacy Client and Utilities" #~ msgstr "Legacy Client and Utilities" @@ -11143,11 +7924,8 @@ msgstr "IP Passed is incorrect" #~ "This file is used to encrypt the AD Password. DO NOT USE THIS IF USING " #~ "THE NEW CLIENT." -#~ msgid "Could not read temp file" -#~ msgstr "Could not read temp file" - -#~ msgid "Files do not match on server: " -#~ msgstr "Files do not match on server: " +#~ msgid "Unable to determine plugin details" +#~ msgstr "Unable to determine plugin details" #, fuzzy #~ msgid "file to" diff --git a/packages/web/management/languages/es_ES.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/es_ES.UTF-8/LC_MESSAGES/messages.po index b689701502..e06ebe9056 100755 --- a/packages/web/management/languages/es_ES.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/es_ES.UTF-8/LC_MESSAGES/messages.po @@ -18,11062 +18,7815 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: commons/text.php:22 -msgid "Display" -msgstr "Pantalla" +msgid " * Image replication is globally disabled" +msgstr "" -#: commons/text.php:23 -msgid "Auto" -msgstr "Auto" +msgid " * Image size is globally disabled" +msgstr "" -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "Modelo" +msgid " * Multicast service is globally disabled" +msgstr "" -#: commons/text.php:25 -msgid "Inventory" -msgstr "Inventario" +msgid " * Ping hosts is globally disabled" +msgstr "" -#: commons/text.php:26 -msgid "O/S" -msgstr "S.O" +msgid " * Snapin hash is globally disabled" +msgstr "" -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "Editar" +msgid " * Snapin replication is globally disabled" +msgstr "" -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "Borrar" +msgid " * Task Scheduler is globally disabled" +msgstr "" -#: commons/text.php:29 -msgid "Deleted" -msgstr "Eliminado" +#, fuzzy +msgid " Name" +msgstr "Nombre" -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "Todos" +msgid " No open slots " +msgstr "" -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "Añadir" +msgid " Task state has been updated, now the task is queued!" +msgstr "" -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "Búsqueda" +#, fuzzy +msgid " | This is not the master node" +msgstr "Es Nodo Maestro" -#: commons/text.php:33 -msgid "Storage" -msgstr "Almacenamiento" +#, fuzzy +msgid " | Unable to find image path" +msgstr "No se puede encontrar el nodo de almacenamiento:" -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "Snapin" +msgid "$_POST variable is empty, check apache error log." +msgstr "" +"La variable $_POST está vacía, verifique el registro de errores de apache." -#: commons/text.php:35 -msgid "Snapins" -msgstr "Snapins" +#, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %d no es válido" -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "Eliminar" +#, fuzzy, php-format +msgid "%s ID %s is not valid" +msgstr "% ID %d no es válido" -#: commons/text.php:37 -msgid "Removed" -msgstr "Eliminado" +#, php-format +msgid "%s Manager" +msgstr "Gestor %s" -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "Habilitado" +#, php-format +msgid "%s Menu" +msgstr "Menú %s" -#: commons/text.php:39 -msgid "Management" -msgstr "Gestión" +#, php-format +msgid "%s is required" +msgstr "%s es obligatorio" -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "Actualizar" +#, fuzzy +msgid "1 Hour" +msgstr "El campo hora no es válido" -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "Imagen" +msgid "10 Minutes" +msgstr "" -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "Imágenes" +msgid "2 Minutes" +msgstr "" -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "Nodo" +msgid "30 Minutes" +msgstr "" -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "Grupo" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "" -#: commons/text.php:45 -msgid "Groups" -msgstr "Grupos" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "" -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "Cerrar sesión" +#, fuzzy +msgid "

Version 1.5.5" +msgstr "Versión" -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "Equipo" +#, fuzzy +msgid "A LDAP setup already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "Equipos" +#, fuzzy +msgid "A Windows Key already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "Ancho de banda" +#, fuzzy +msgid "A broadcast address is required" +msgstr "Campo obligatorio está vacio" -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "Ancho de banda de Replicación" +msgid "A broadcast already exists with this name" +msgstr "" -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" -msgstr "Esta configuración limita el ancho de banda de replicación entre nodos" +#, fuzzy +msgid "A broadcast already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" +#, fuzzy +msgid "A description needs to be set" +msgstr "Descripción" + +#, fuzzy +msgid "A file" +msgstr "Archivo" + +#, fuzzy +msgid "A group already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +#, fuzzy +msgid "A group is required for a location" +msgstr "Campo obligatorio está vacio" + +#, fuzzy +msgid "A group is required!" +msgstr "Nombre" + +#, fuzzy +msgid "A group must be selected." +msgstr "Nombre de imagen" + +#, fuzzy +msgid "A group name is required!" +msgstr "Nombre" + +#, fuzzy +msgid "A host already exists with this name!" +msgstr "Ya existe un host con este nombre" + +#, fuzzy +msgid "A host name is required!" +msgstr "Ya existe un host con este nombre" + +msgid "A host with that name already exists" +msgstr "Ya existe un host con este nombre" + +#, fuzzy +msgid "A host with this mac already exists with name" +msgstr "Ya existe un host con este nombre" + +msgid "A location with that name already exists." msgstr "" -#: commons/text.php:55 -msgid "it's transmitting to" -msgstr "transmitiendo a" +#, fuzzy +msgid "A mac address is required!" +msgstr "Equipo no encontrado con esa MAC" -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" -msgstr "Si estás intentando transmitir a un nodo remoto A" +msgid "A name is required!" +msgstr "" -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "y el nodo A sólo tiene 5 Mbps y tú quieres la velicidad de" +msgid "A name must be defined if using the \"name\" property" +msgstr "" + +#, fuzzy +msgid "A name must be set" +msgstr "Nombre de imagen" + +#, fuzzy +msgid "A password is required!" +msgstr "Campo obligatorio está vacio" + +#, fuzzy +msgid "A printer already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +#, fuzzy +msgid "A printer name is required!" +msgstr "Impresora" + +msgid "A role already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +msgid "A rule already exists with this name." +msgstr "Ya existe una regla con este nombre." + +msgid "A site alread exists with this name!" +msgstr "" + +#, fuzzy +msgid "A site already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +#, fuzzy +msgid "A snapin already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +#, fuzzy +msgid "A snapin name is required!" +msgstr "Nombre" + +#, fuzzy +msgid "A subnet group already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +msgid "A subnet group is already using this group." +msgstr "" + +#, fuzzy +msgid "A subnetgroup already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +msgid "A task already exists for this host at the scheduled tasking" +msgstr "Ya existe una tarea para este host en una tarea programada" + +msgid "A task state already exists with this name!" +msgstr "" + +#, fuzzy +msgid "A task type already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +#, fuzzy +msgid "A user already exists with this name" +msgstr "Ya existe un host con este nombre" + +#, fuzzy +msgid "A user name is required!" +msgstr "%s es obligatorio" + +#, fuzzy +msgid "A username already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" + +msgid "A valid database connection could not be made" +msgstr "" + +msgid "AD Domain" +msgstr "" + +msgid "AD Join" +msgstr "" + +msgid "AD OU" +msgstr "" + +#, fuzzy +msgid "API Settings" +msgstr "Configuración de FOG" + +msgid "API?" +msgstr "" + +#, fuzzy +msgid "About FOG Reports" +msgstr "Informes" + +msgid "Accepted" +msgstr "Aceptado" + +#, fuzzy +msgid "Access" +msgstr "Crear un nuevo rol de acceso" + +msgid "Access Control Management" +msgstr "Gestión de control de acceso" + +#, fuzzy +msgid "Access Control Role General" +msgstr "Crear un nuevo rol de acceso" -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" -msgstr "limitado a 1Mbps en este nodo" +msgid "Access Control Rule" +msgstr "Reglas de acceso" -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" -msgstr "has configurado el campo de ancho de banda en ese nodo a 1000" +#, fuzzy +msgid "Access Control Rule General" +msgstr "Reglas de acceso" -#: commons/text.php:61 -msgid "Transmit" -msgstr "Transmitir" +msgid "Access Control Rules" +msgstr "Reglas de acceso" -#: commons/text.php:62 -msgid "Receive" -msgstr "Recibir" +msgid "Access Controls" +msgstr "" -#: commons/text.php:63 -msgid "New" -msgstr "Nuevo" +#, fuzzy +msgid "Access Token" +msgstr "Reglas de acceso" -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "Usuario" +msgid "Access level is still 0 or false" +msgstr "" -#: commons/text.php:65 -msgid "Users" -msgstr "Usuarios" +msgid "Accessed By" +msgstr "" -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" -msgstr "Nombre" +#, fuzzy +msgid "Account already linked" +msgstr "El directorio ya existe" -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "Miembros" +msgid "Account linked to FOG GUI at" +msgstr "" -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "Avanzadas" +msgid "Account name to reset" +msgstr "" -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" +msgid "Account removed from FOG GUI at" msgstr "" -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" +#, fuzzy +msgid "Account successfully added!" +msgstr "¡Rol añadido!" -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "MAC" +msgid "Action" +msgstr "Acción" -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" -msgstr "Versión" +msgid "Actions" +msgstr "Acciones" -#: commons/text.php:73 -msgid "Text" -msgstr "Texto" +msgid "Activate Plugins" +msgstr "Activar plugins" -#: commons/text.php:74 -msgid "Graphical" -msgstr "Gráfico" +msgid "Active" +msgstr "Activa" -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "Archivo" +msgid "Active Directory" +msgstr "Directorio Activo" -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "" +#, fuzzy +msgid "Active Multi-cast Tasks" +msgstr "Tareas multicast activas" -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "" +msgid "Active Multicast Tasks" +msgstr "Tareas multicast activas" -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "" +msgid "Active Snapin Tasks" +msgstr "Tareas de Snapin activas" -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "Fecha" +msgid "Active Tasks" +msgstr "Tareas activas" -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "Acción" +msgid "Add" +msgstr "Añadir" -#: commons/text.php:81 -msgid "Printer" -msgstr "Impresora" +#, fuzzy +msgid "Add Directory" +msgstr "Directorio" -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 -msgid "Power Management" -msgstr "Gestión de energía" +#, fuzzy +msgid "Add Event" +msgstr "Añadir" -#: commons/text.php:83 -msgid "Client" -msgstr "Cliente" +msgid "Add Hosts" +msgstr "Añadir equipos" -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "Tarea" +#, fuzzy +msgid "Add LDAP server failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "Usuario" +#, fuzzy +msgid "Add MAC" +msgstr "Lista de MAC Address" -#: commons/text.php:86 -msgid "Service" -msgstr "Servicio" +#, fuzzy +msgid "Add New Printer" +msgstr "Impresora" -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "" +#, fuzzy +msgid "Add Printers" +msgstr "Impresoras" -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "Modo" +#, fuzzy +msgid "Add Pushbullet Account" +msgstr "Imposible de añadir" -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "Fecha" +#, fuzzy +msgid "Add Rules" +msgstr "Listar todas las reglas" -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "Limpiar" +#, fuzzy +msgid "Add Slack Account" +msgstr "Imposible de añadir" -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "Descripción" +#, fuzzy +msgid "Add Snapins" +msgstr "Exportar snapin" -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "aquí" +msgid "Add Storage Group" +msgstr "Añadir grupo de almacenamiento" -#: commons/text.php:93 -msgid "NOT" -msgstr "NO" +#, fuzzy +msgid "Add Storage Groups" +msgstr "Todos los grupos de almacenamiento" -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "o" +msgid "Add Storage Node" +msgstr "Añadir nodo de almacenamiento" -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "Fila" +#, fuzzy +msgid "Add Subnetgroup failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "Errores" +#, fuzzy +msgid "Add User" +msgstr "Usuario" -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "Error" +msgid "Add Users" +msgstr "Añadir usuarios" -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "Exportar" +#, fuzzy +msgid "Add Windows Key failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:99 -msgid "Schedule" +msgid "Add any custom text you would like" msgstr "" -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "Despliegue" +#, fuzzy +msgid "Add broadcast failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 -msgid "Capture" -msgstr "Capturar" +#, fuzzy +msgid "Add failed" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "Multicast" +#, fuzzy +msgid "Add group failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "Estado" +#, fuzzy +msgid "Add host failed!" +msgstr "Error al crear el inventario de este equipo" -#: commons/text.php:104 -msgid "Actions" -msgstr "Acciones" +#, fuzzy +msgid "Add image failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "Estado" +#, fuzzy +msgid "Add location failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:107 -msgid "Kill" -msgstr "Matar" +#, php-format +msgid "Add new role" +msgstr "Añadir nuevo rol" -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "" +#, php-format +msgid "Add new rule" +msgstr "Añadir nueva regla" -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "" +#, fuzzy +msgid "Add printer failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "" +msgid "Add role failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:111 -msgid "Home" -msgstr "" +msgid "Add rule failed!" +msgstr "Fallo al añadir una regla!" -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "Informe" +msgid "Add selected hosts" +msgstr "Añadir equipos seleccionados" -#: commons/text.php:113 -msgid "Reports" -msgstr "Informes" +#, fuzzy +msgid "Add selected images" +msgstr "Borrar las imágenes elegidas" -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "Login" +#, fuzzy +msgid "Add selected printers" +msgstr "Añadir equipos seleccionados" -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "Encolada" +#, fuzzy +msgid "Add selected rules" +msgstr "Añadir equipos seleccionados" -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "Completada" +#, fuzzy +msgid "Add selected snapins" +msgstr "Añadir equipos seleccionados" -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "Desconocida" +#, fuzzy +msgid "Add selected storage groups" +msgstr "Todos los grupos de almacenamiento" -#: commons/text.php:118 -msgid "Force" -msgstr "Forzar" +msgid "Add selected users" +msgstr "Añadir usuarios seleccionados" -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "Tipo" +#, fuzzy +msgid "Add site failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:120 -msgid "Settings" -msgstr "Configuración" +#, fuzzy +msgid "Add snapin failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:121 -msgid "FOG" -msgstr "FOG" +#, fuzzy +msgid "Add storage node failed!" +msgstr "Error al eliminar el nodo de almacenamiento" -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 -msgid "Active" -msgstr "Activa" +msgid "Add task state failed!" +msgstr "Error al crear tarea!" -#: commons/text.php:123 -msgid "Printers" -msgstr "Impresoras" +msgid "Add task type failed!" +msgstr "" -#: commons/text.php:124 -msgid "Directory" -msgstr "Directorio" +msgid "Add to group" +msgstr "Añadir al grupo" -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 -msgid "Active Directory" -msgstr "Directorio Activo" +#, fuzzy +msgid "Add user failed!" +msgstr "¡Error al añadir un rol!" -#: commons/text.php:126 -msgid "Virus History" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" msgstr "" -#: commons/text.php:127 -msgid "Login History" +msgid "Adding Key" msgstr "" -#: commons/text.php:128 -msgid "Image History" +msgid "Additional Icon elements" msgstr "" -#: commons/text.php:129 -msgid "Snapin History" +msgid "Additional MACs" msgstr "" -#: commons/text.php:130 -msgid "Configuration" -msgstr "Configuración" - -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "Plugin" +#, fuzzy +msgid "Admin Group" +msgstr "Grupo" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "" +msgid "Advanced" +msgstr "Avanzadas" -#: commons/text.php:134 -msgid "License" -msgstr "Licencia" +msgid "Advanced Actions" +msgstr "Acciones avanzadas" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "Actualizar Kernel" +#, fuzzy +msgid "Advanced Login Required" +msgstr "Avanzadas" -#: commons/text.php:136 -msgid "iPXE General Configuration" -msgstr "" +#, fuzzy +msgid "Advanced Menu Login" +msgstr "Avanzadas" -#: commons/text.php:137 -msgid "Client Updater" -msgstr "Actualizador de cliente" +#, fuzzy +msgid "Advanced Menu settings" +msgstr "Avanzadas" -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "" +msgid "Advanced Options" +msgstr "Opciones avanzadas" -#: commons/text.php:139 -msgid "Host Registration" -msgstr "Registro de equipos" +msgid "Advanced Settings" +msgstr "Configuración avanzada" -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "" +#, fuzzy +msgid "Advanced menu command" +msgstr "Avanzadas" -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "Tarea de reinicio" +#, fuzzy +msgid "After image Action" +msgstr "Acción" -#: commons/text.php:142 -msgid "User Cleanup" +msgid "Ago must be boolean" msgstr "" -#: commons/text.php:143 -msgid "User Tracker" -msgstr "" +msgid "All" +msgstr "Todos" -#: commons/text.php:144 -#, php-format -msgid "%s Manager" -msgstr "Gestor %s" +#, fuzzy +msgid "All Groups" +msgstr "Todos los grupos de almacenamiento" -#: commons/text.php:145 -msgid "Green FOG" +msgid "All Hosts" +msgstr "Todos los equipos" + +msgid "All Pending MACs approved" msgstr "" -#: commons/text.php:146 -msgid "Directory Cleaner" +msgid "All Pending MACs approved." msgstr "" -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "Lista de MAC Address" +msgid "All Storage Groups" +msgstr "Todos los grupos de almacenamiento" -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "Configuración de FOG" +msgid "All Storage Nodes" +msgstr "Todos los Nodos de Almacenamiento" -#: commons/text.php:149 -msgid "Server Shell" +msgid "All files synced for this item." msgstr "" -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "Visor de logs" +msgid "All methods of binding have failed" +msgstr "" -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "Guardar Configuración" +#, fuzzy +msgid "All snapins" +msgstr "Exportar snapin" -#: commons/text.php:152 -msgid "FOG Sourceforge Page" +msgid "Allows editing/creating of Task States fog currently has." msgstr "" -#: commons/text.php:153 -msgid "FOG Home Page" +msgid "Allows editing/creating of Task Types fog currently has." msgstr "" -#: commons/text.php:154 -msgid "New Search" -msgstr "Nueva Búsqueda" - -#: commons/text.php:155 -#, php-format -msgid "List All %s" -msgstr "Listar todos %s" +#, fuzzy +msgid "Already created" +msgstr "Creado por" -#: commons/text.php:156 -#, php-format -msgid "Create New %s" -msgstr "Crear Nuevo %s" +#, fuzzy +msgid "Already registered as" +msgstr "Fecha ya existe" -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "Tareas" +msgid "Also confirm that the database is indeed running" +msgstr "" -#: commons/text.php:158 -msgid "Client Settings" -msgstr "Configuración del cliente" +msgid "Although there are multiple levels already" +msgstr "" -#: commons/text.php:159 -msgid "Plugins" -msgstr "Plugins" +#, fuzzy +msgid "An image already exists with this name!" +msgstr "¡Ya existe un rol con este nombre!" -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "Tareas básicas" +msgid "Annually" +msgstr "" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "Miembros" +msgid "Applications" +msgstr "" -#: commons/text.php:162 -msgid "Image Association" -msgstr "Asociación de imagen" +msgid "Approve" +msgstr "" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" -msgstr "Menú %s" +msgid "Approve All Pending MACs for All Hosts" +msgstr "" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "Grupo principal" +#, fuzzy +msgid "Approve Host" +msgstr "Equipo" -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "Todos los Nodos de Almacenamiento" +#, fuzzy +msgid "Approve MAC" +msgstr "Lista de MAC Address" -#: commons/text.php:166 -msgid "Add Storage Node" -msgstr "Añadir nodo de almacenamiento" +#, fuzzy +msgid "Approve Selected MACs" +msgstr "Borrar equipos seleccionados" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "Todos los grupos de almacenamiento" +#, fuzzy +msgid "Approve Success" +msgstr "Borrado con éxito" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "Añadir grupo de almacenamiento" +msgid "Approve all pending macs" +msgstr "" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "Tareas activas" +#, fuzzy +msgid "Approve all pending? " +msgstr "Todos" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "Tareas multicast activas" +#, fuzzy +msgid "Approve selected hosts" +msgstr "Borrar equipos seleccionados" -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "Tareas de Snapin activas" +#, fuzzy +msgid "Approve this host?" +msgstr "Gestión de equipos" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "Tareas programadas" +msgid "Approved" +msgstr "" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "Plugins instalados" +#, fuzzy +msgid "Are you sure you wish to" +msgstr "Si estás intentando transmitir a un nodo remoto A" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "Instalar plugins" +msgid "Array" +msgstr "" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "Activar plugins" +msgid "Assigned Image" +msgstr "" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "Exportar configuración" +#, fuzzy +msgid "Assignment saved successfully" +msgstr "Borrado con éxito" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "Importar configuración" +msgid "Associate rule failed!" +msgstr "Fallo al añadir una regla!" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "" +#, fuzzy +msgid "Associated Sites" +msgstr "No hay snapin asociados a este equipo" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "MAC Address inválida!" +#, fuzzy +msgid "Associates the files on nodes" +msgstr "Error al borrar los ficheros de imagen" -#: commons/text.php:180 -msgid "iPXE Menu Item Settings" +msgid "Attempting to perform" msgstr "" -#: commons/text.php:181 -msgid "iPXE Menu Customization" +msgid "Attempting to ping" msgstr "" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" +msgid "Auto" +msgstr "Auto" + +msgid "Auto Log Out Time (in minutes)" msgstr "" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "Guardar Cambios" +#, fuzzy +msgid "Available Snapins" +msgstr "No disponible" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "Campo obligatorio está vacio" +#, fuzzy +msgid "BIOS Date" +msgstr "Fecha" -#: commons/text.php:185 -msgid "No results found" -msgstr "No se han encontrado resultados" +msgid "BIOS Vendor" +msgstr "" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s es obligatorio" +#, fuzzy +msgid "BIOS Version" +msgstr "Versión" -#: commons/text.php:188 -msgid "Host Management" -msgstr "Gestión de equipos" +msgid "Bandwidth" +msgstr "Ancho de banda" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "Gestión de almacenamiento" +msgid "Bandwidth should be numeric and greater than 0" +msgstr "" -#: commons/text.php:190 -msgid "Task Management" -msgstr "Gestión de tareas" +msgid "Barcode Numbers" +msgstr "" -#: commons/text.php:191 -msgid "Client Management" -msgstr "Gestión del cliente" +msgid "Base Only" +msgstr "" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "Panel de control" +#, fuzzy +msgid "Basic Settings" +msgstr "Tareas básicas" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "Configuración de servicios" +msgid "Basic Tasks" +msgstr "Tareas básicas" -#: commons/text.php:194 -msgid "Report Management" -msgstr "Gestión de informes" +msgid "Bind DN" +msgstr "" -#: commons/text.php:195 -msgid "Printer Management" -msgstr "Gestión de impresoras" +msgid "Bind Password" +msgstr "" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "Configuración de FOG" +msgid "Bitrate" +msgstr "" -#: commons/text.php:197 -msgid "Group Management" -msgstr "Gestión de grupos" +msgid "Blank for default" +msgstr "" -#: commons/text.php:198 -msgid "Image Management" -msgstr "Gestión de imágenes" +#, fuzzy +msgid "Boot Exit settings" +msgstr "Configuración del cliente" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "Gestión de usuarios" +msgid "Boot Key Sequence" +msgstr "" -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "Información de hardware" +#, fuzzy +msgid "Boot Options" +msgstr "Opciones de debug" -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "Gestión de snapin" +#, fuzzy +msgid "Broadcast Create Fail" +msgstr "Error al crear el rol" -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "Gestión de plugins" +#, fuzzy +msgid "Broadcast Create Success" +msgstr "Rol creado con éxito" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "Administración Location" +#, fuzzy +msgid "Broadcast IP" +msgstr "IP Nodo Almacenamiento" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "Gestión de control de acceso" +#, fuzzy +msgid "Broadcast Name" +msgstr "Nombre" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "FOG Ayuda General" +#, fuzzy +msgid "Broadcast Update Fail" +msgstr "Error al actualizar el rol" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "Equipos pendientes" +#, fuzzy +msgid "Broadcast Update Success" +msgstr "Rol actualizado con éxito" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "Último despliegue" +#, fuzzy +msgid "Broadcast added!" +msgstr "¡Rol añadido!" -#: commons/text.php:210 -msgid "Last Captured" -msgstr "Última captura" +msgid "Broadcast update failed!" +msgstr "" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "Método de despliegue" +msgid "Broadcast updated!" +msgstr "" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "Tipo de imagen" +msgid "Browse" +msgstr "" -#: commons/text.php:213 -msgid "Not Available" -msgstr "No disponible" +msgid "CPU Cache" +msgstr "" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "Exportar equipos" +msgid "CPU Count" +msgstr "" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "Importar equipos" +msgid "CPU Manufacturer" +msgstr "" -#: commons/text.php:216 -msgid "Export Users" -msgstr "Exportar usuarios" +#, fuzzy +msgid "CPU Max Speed" +msgstr "Clientes Max" -#: commons/text.php:217 -msgid "Import Users" -msgstr "Importar usuarios" +#, fuzzy +msgid "CPU Model" +msgstr "Modelo\t" -#: commons/text.php:218 -msgid "Export Images" -msgstr "Exporatr imágenes" +msgid "CPU Normal Speed" +msgstr "" -#: commons/text.php:219 -msgid "Import Images" -msgstr "Importar imágenes" +msgid "CPU Speed" +msgstr "" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "Exportar grupos" +#, fuzzy +msgid "CPU Type" +msgstr "Tipo" -#: commons/text.php:221 -msgid "Import Groups" -msgstr "Importar grupos" +#, fuzzy +msgid "CPU Version" +msgstr "Versión" -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "Exportar snapin" +#, fuzzy +msgid "CUPS Printer" +msgstr "Impresora" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "Importar snapin" +msgid "Call" +msgstr "" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "Exportar impresoras" +msgid "Can be a comma seperated list." +msgstr "" -#: commons/text.php:225 -msgid "Import Printers" -msgstr "Importar impresoras" +msgid "Can not redeclare route" +msgstr "" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" +msgid "Cancelled due to new tasking." msgstr "" -#: commons/text.php:227 -msgid "Host List" -msgstr "Lista de equipos" +#, fuzzy +msgid "Cancelled task" +msgstr "Tarea" -#: commons/text.php:228 -msgid "Imaging Log" +msgid "Cannot add Primary mac as additional mac" msgstr "" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" +msgid "Cannot add a pre-existing primary mac" msgstr "" -#: commons/text.php:230 -msgid "Snapin Log" +msgid "Cannot bind to the LDAP server" msgstr "" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "Actualizar informes" - -#: commons/text.php:233 -msgid "Main Menu" -msgstr "Menú principal" +msgid "Cannot cancel tasks this way" +msgstr "" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "Login incorrecto" +msgid "Cannot change image when in tasking" +msgstr "" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "No permitido aquí" +#, fuzzy +msgid "Cannot connect to" +msgstr "Imagen protegida y no puede ser borrada" -#: commons/text.php:237 -msgid "Management Login" -msgstr "Gestión de login" +#, fuzzy +msgid "Cannot connect to database" +msgstr "Fallo al actualziar la base de datos" -#: commons/text.php:238 -msgid "Password" +msgid "Cannot connect to ftp server" msgstr "" -#: commons/text.php:239 -msgid "Estimated FOG Sites" +msgid "Cannot create tasking as image is not enabled" msgstr "" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "Última versión" - -#: commons/text.php:241 -msgid "Latest Development Version" -msgstr "Última versión desarrollada" +msgid "Cannot set tasking as image is not enabled" +msgstr "" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "Imagen protegida y no puede ser borrada" +msgid "Cannot set tasking to invalid hosts" +msgstr "" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "Snapin protegido y no puede ser borrado" +msgid "Cannot set tasking to pending hosts" +msgstr "" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "No hay nodos maestros disponible para borrar esta imagen" +msgid "Cannot view from browser" +msgstr "" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "Error al borrar los ficheros de imagen" +#, fuzzy +msgid "Capone Deploy" +msgstr "Despliegue" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "Error al borrar fichero" +msgid "Capture" +msgstr "Capturar" -#: commons/text.php:249 #, fuzzy -msgid "Not Registered Hosts" -msgstr "Equipos pendientes" +msgid "Captured" +msgstr "Última captura" -#: commons/text.php:250 -#, fuzzy -msgid "Registered Hosts" -msgstr "Equipos" +msgid "Change password" +msgstr "" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "Todos los equipos" +msgid "Channel call is invalid" +msgstr "" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "Opciones de debug" +msgid "Chassis Asset" +msgstr "" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "Opciones avanzadas" +msgid "Chassis Manufacturer" +msgstr "" -#: commons/text.php:254 -#, fuzzy -msgid "Advanced Login Required" -msgstr "Avanzadas" +msgid "Chassis Serial" +msgstr "" -#: commons/text.php:255 #, fuzzy -msgid "Pending Registered Hosts" -msgstr "Equipos pendientes" +msgid "Chassis Version" +msgstr "Versión" -#: commons/text.php:257 -msgid "n/a" +msgid "Chat is also available on the forums for more realtime help" msgstr "" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "El directorio ya existe" - -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "Fecha ya existe" - -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "Usuario ya creado" +msgid "Check here to see what hosts can be added" +msgstr "" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "No se han encontrado tareas activas de snapin para el equipo" +msgid "Check here to see what images can be added" +msgstr "" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "Error al crear tarea" +msgid "Check here to see what printers can be added" +msgstr "" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "El equipo ya es miembro de una tarea activa" +msgid "Check here to see what rules can be added" +msgstr "" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "Equipo no válido" +msgid "Check here to see what snapins can be added" +msgstr "" -#: commons/text.php:267 -msgid "Group is not valid" -msgstr "Grupo no válido" +msgid "Check here to see what storage groups can be added" +msgstr "" -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "Tipo de tarea no válida" +msgid "Check here to see what users can be added" +msgstr "" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "Imagen no válida" +#, fuzzy +msgid "Check that database is running" +msgstr "Campo obligatorio está vacio" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "El grupo de almacenamiento asignado no es válido" +#, fuzzy +msgid "Checkin Time" +msgstr "Fecha ya existe" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "No hay snapin asociados a este equipo" +msgid "Checking if I am the group manager" +msgstr "" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Los spanin ya han sido desplegados a este equipo" +msgid "Checksum" +msgstr "" -#: commons/text.php:275 -msgid "Could not find a Storage Node is" -msgstr "No se puede encontrar el nodo de almacenamiento" +msgid "Checksums" +msgstr "" -#: commons/text.php:276 -msgid "there one enabled within this Storage Group" -msgstr "debe de haber por lo menos un grupo de almacenamiento" +#, fuzzy +msgid "City/State/Zip" +msgstr "Estado" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" +msgid "Class" msgstr "" -"El nodo de almacenamiento asociado al grupo de almacenamiento no es válido" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "La fecha de programación ha pasado" - -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "Ya existe una tarea para este host en una tarea programada" +msgid "Class is not extended from FOGPage" +msgstr "" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "El valor minuto no es válido" +msgid "Class must extend event" +msgstr "" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "El campo hora no es válido" +msgid "Class must extend hook" +msgstr "" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "El campo de día del mes no es válido" +msgid "Class name must be a string" +msgstr "" -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "El campo mes no es válido" +msgid "Clear" +msgstr "Limpiar" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "El campo día de la semana no es válido" +msgid "Clear Fields" +msgstr "Limpiar campos" -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "Equipo no encontrado con esa MAC" +#, fuzzy +msgid "Clear all fields?" +msgstr "Limpiar" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "Por favor, elija una opción" +#, fuzzy +msgid "Clear all history" +msgstr "Limpiar" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" +msgid "Click" msgstr "" -#: commons/text.php:302 -msgid "Session timeout" -msgstr "" +#, fuzzy +msgid "Click Here" +msgstr "aquí" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "Nodo de almacenamiento" +msgid "Client" +msgstr "Cliente" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "Grupo de almacenamiento" +#, fuzzy +msgid "Client Count" +msgstr "Cliente" -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "Gráfico habilitado" +msgid "Client Management" +msgstr "Gestión del cliente" -#: commons/text.php:307 -#, fuzzy -msgid "Master Node" -msgstr "Es Nodo Maestro" +msgid "Client Modules Change Fail" +msgstr "" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "Es Nodo Maestro" +msgid "Client Modules Change Success" +msgstr "" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "Nombre del nodeo de almacenamiento" +msgid "Client Settings" +msgstr "Configuración del cliente" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "Descripción del nodo de almacenamiento" +msgid "Client Updater" +msgstr "Actualizador de cliente" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 #, fuzzy -msgid "IP Address" -msgstr "IP Nodo Almacenamiento" - -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "Clientes Max" +msgid "Client Version" +msgstr "Versión" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 #, fuzzy -msgid "Image Path" -msgstr "Imagen" +msgid "Clients" +msgstr "Nodo Almacenamiento Clientes Max" -#: commons/text.php:314 -msgid "FTP Path" +msgid "Command" msgstr "" -#: commons/text.php:315 +msgid "Complete" +msgstr "Completada" + #, fuzzy -msgid "Snapin Path" -msgstr "Tareas de Snapin activas" +msgid "Complete Time" +msgstr "Completada" -#: commons/text.php:316 -msgid "SSL Path" +msgid "Completed" msgstr "" -#: commons/text.php:317 -msgid "Interface" +msgid "Completed imaging" msgstr "" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "Habilitado" - -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "Gráfico habilitado" +msgid "Compression" +msgstr "" -#: commons/text.php:320 #, fuzzy -msgid "On Dashboard" -msgstr "Panel de control" +msgid "Computer Information" +msgstr "Información de hardware" -#: commons/text.php:321 -#, fuzzy -msgid "Management Username" -msgstr "Usuario" +msgid "Computer Model" +msgstr "Modelo de equipo" -#: commons/text.php:322 #, fuzzy -msgid "Management Password" -msgstr "Gestión" +msgid "Config File" +msgstr "Archivo" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "Extreme la precaución con esta configuración" +msgid "Configuration" +msgstr "Configuración" -#: commons/text.php:326 -msgid "This setting" -msgstr "Este parametro" +#, fuzzy +msgid "Configuration Import/Export" +msgstr "Exportar configuración" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "" +msgid "Configuration Save" +msgstr "Guardar Configuración" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" +msgid "Confirm tasking" msgstr "" -#: commons/text.php:329 -msgid "all current storage nodes" -msgstr "todos los Nodos de Almacenamiento" +#, fuzzy +msgid "Conflicting path/file" +msgstr "Archivo" -#: commons/text.php:330 -msgid "The 'Is Master Node' setting defines which" +msgid "Copy from existing" msgstr "" -#: commons/text.php:331 -msgid "node is the distributor of the images" -msgstr "exportar imágenes" +msgid "Could not find a Storage Node in this group" +msgstr "" + +msgid "Could not find a Storage Node is" +msgstr "No se puede encontrar el nodo de almacenamiento" -#: commons/text.php:332 #, fuzzy -msgid "If you add a blank node" -msgstr "Si estás intentando transmitir a un nodo remoto A" +msgid "Could not find any" +msgstr "No se puede encontrar el nodo de almacenamiento:" + +#, fuzzy +msgid "Could not find temp filename" +msgstr "No se puede encontrar el nodo de almacenamiento:" + +#, fuzzy +msgid "Could not notify" +msgstr "No se puede encontrar el nodo de almacenamiento:" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" +msgid "Could not read snapin file" msgstr "" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "es Nodo Maestro" - -#: commons/text.php:335 -msgid "it will distribute its store" +msgid "Could not read tmp file." msgstr "" -#: commons/text.php:336 -msgid "which is empty" -msgstr "campo obligatorio está vacio" +#, fuzzy +msgid "Could not register" +msgstr "No se puede encontrar el nodo de almacenamiento:" -#: commons/text.php:337 -msgid "to all nodes in the group" -msgstr "todos los Nodos de Almacenamiento" +msgid "Create" +msgstr "Crear" -#: commons/text.php:343 #, fuzzy -msgid "Storage Node already exists" -msgstr "El grupo de almacenamiento ya existe" +msgid "Create Image" +msgstr "Crear" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "IP Nodo Almacenamiento" +#, php-format +msgid "Create New %s" +msgstr "Crear Nuevo %s" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "Nodo Almacenamiento Clientes Max" +msgid "Create New Access Control Role" +msgstr "Crear un nuevo rol de acceso" -#: commons/text.php:354 #, fuzzy -msgid "Storage Node Interface" -msgstr "Añadir nodo de almacenamiento" +msgid "Create New Key" +msgstr "Crear Nuevo %s" -#: commons/text.php:358 #, fuzzy -msgid "Storage Node Username" -msgstr "Nodo de almacenamiento" +msgid "Create New LDAP" +msgstr "Crear Nuevo %s" -#: commons/text.php:362 #, fuzzy -msgid "Storage Node Password" -msgstr "Añadir nodo de almacenamiento" +msgid "Create New Location" +msgstr "Crear un nuevo rol de acceso" -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "Nodo de almacenamiento creado" +#, fuzzy +msgid "Create New Printer" +msgstr "Impresora" -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "Nodo de almacenamiento actualizado" +#, fuzzy +msgid "Create New Snapin" +msgstr "Crear un nuevo rol de acceso" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "Fallo al actualziar la base de datos" +#, fuzzy +msgid "Create New SubnetGroup?" +msgstr "Crear un nuevo grupo" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "Por favor, confirme que desea borrar" +msgid "Create New iPXE Menu Entry" +msgstr "" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "Error al eliminar el nodo de almacenamiento" +msgid "Create Report?" +msgstr "Crear Informe?" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "Nodo de almacenamiento borrado" +msgid "Create Rule?" +msgstr "¿Crear una regla?" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 #, fuzzy -msgid "Storage Group Name" -msgstr "Nombre del nodeo de almacenamiento" +msgid "Create Site" +msgstr "Crear" -#: commons/text.php:371 #, fuzzy -msgid "Storage Group Description" -msgstr "Descripción del nodo de almacenamiento" +msgid "Create Storage Group" +msgstr "Añadir grupo de almacenamiento" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "El grupo de almacenamiento ya existe" +#, fuzzy +msgid "Create Storage Node" +msgstr "Añadir nodo de almacenamiento" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "Grupo de almacenamiento creado" +msgid "Create Task state" +msgstr "" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "Grupo de almacenamiento actualizado" +#, fuzzy +msgid "Create Task type" +msgstr "Error al crear tarea" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "Debe de haber por lo menos un grupo de almacenamiento" +msgid "Create WOL Broadcast?" +msgstr "" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "Grupo de almaenamiento borrado" +msgid "Create new PM Schedule" +msgstr "" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "Error al eliminar el grupo de almacenamiento" +msgid "Create new group" +msgstr "Crear un nuevo grupo" -#: commons/text.php:382 #, fuzzy -msgid "Invalid Class" -msgstr "Login incorrecto" +msgid "Create user?" +msgstr "Usuario" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" +msgid "Created By" +msgstr "Creado por" + +msgid "Created Tasks For" msgstr "" -#: commons/text.php:384 #, fuzzy -msgid "Do not list on menu" -msgstr "Lista de equipos" - -#: commons/text.php:386 -msgid "Language" -msgstr "Idioma" +msgid "Created by FOG Reg on" +msgstr "Creado por" -#: commons/init.php:433 -msgid "Missing one or more extensions." +msgid "Created file extension must be, jpg, jpeg, or png" msgstr "" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 -msgid "No valid tasks found" -msgstr "" +msgid "Credits" +msgstr "Créditos" -#: lib/client/snapinclient.class.php:306 -msgid "Snapin is invalid" +msgid "Cron" msgstr "" -#: lib/client/snapinclient.class.php:328 -msgid "Snapin Task is invalid" +msgid "Cron Schedule" msgstr "" -#: lib/client/snapinclient.class.php:411 -msgid "Invalid task id sent" +msgid "Cross platform" msgstr "" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" +msgid "Current Associations" msgstr "" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "Snapin incorrecto" +#, fuzzy +msgid "Current Power Management settings" +msgstr "Gestión de energía" -#: lib/client/snapinclient.class.php:500 -msgid "Invalid task id" -msgstr "Identificador de tarea incorrecto" +msgid "Current Records" +msgstr "" -#: lib/client/snapinclient.class.php:510 -msgid "Invalid Snapin Tasking object" +msgid "Current Sessions" msgstr "" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 #, fuzzy -msgid "Invalid Storage Group" -msgstr "Añadir grupo de almacenamiento" - -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "Nodo de almacenamiento incorrecto" +msgid "Current files" +msgstr "Error al borrar los ficheros de imagen" -#: lib/client/snapinclient.class.php:587 -msgid "Cannot connect to ftp server" -msgstr "" +#, fuzzy +msgid "Current settings" +msgstr "Configuración del cliente" -#: lib/client/snapinclient.class.php:611 #, fuzzy -msgid "Pending..." -msgstr "Equipos pendientes" +msgid "DMI Field" +msgstr "Campo obligatorio está vacio" -#: lib/client/snapinclient.class.php:628 -msgid "Could not read snapin file" +msgid "DMI Key" msgstr "" -#: lib/client/usertrack.class.php:67 -msgid "Postfix requires an action of login" +msgid "DMI Result" msgstr "" -#: lib/client/usertrack.class.php:68 -msgid "logout" +msgid "Daily" msgstr "" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" -msgstr "" +msgid "Dashboard" +msgstr "Panel de control" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" +msgid "Data is blank" msgstr "" -#: lib/client/usertrack.class.php:139 -msgid "Replay from journal" +msgid "Data must be an array or a callable item." msgstr "" -#: lib/client/usertrack.class.php:140 #, fuzzy -msgid "real insert time" -msgstr "Fecha ya existe" +msgid "Database" +msgstr "Fallo al actualziar la base de datos" -#: lib/client/usertrack.class.php:142 -msgid "Login time" -msgstr "Fecha de login" +#, fuzzy +msgid "Database Failure" +msgstr "Fallo al actualziar la base de datos" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "" +#, fuzzy +msgid "Database Reverted" +msgstr "Fallo al actualziar la base de datos" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "" +#, fuzzy +msgid "Database SQL" +msgstr "Fallo al actualziar la base de datos" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 -msgid "Too many MACs" +msgid "Database Schema Installer / Updater" msgstr "" -#: lib/client/registerclient.class.php:110 -msgid "Only allowed to have" -msgstr "" +msgid "Database Update Failed" +msgstr "Fallo al actualziar la base de datos" -#: lib/client/registerclient.class.php:112 -msgid "additional macs" -msgstr "" +#, fuzzy +msgid "Database changes reverted!" +msgstr "Guardar Cambios" -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "" +#, fuzzy +msgid "Database connection unavailable" +msgstr "Campo obligatorio está vacio" -#: lib/client/updateclient.class.php:70 -msgid "If action of ask or get" +msgid "Database imported and added successfully!" msgstr "" -#: lib/client/updateclient.class.php:71 -msgid "we need a file name in the request" -msgstr "" +#, fuzzy +msgid "Database not available" +msgstr "No disponible" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 -msgid "Invalid data found" -msgstr "" +msgid "Database save failed" +msgstr "Fallo al actualizar la base de datos" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" -msgstr "" +msgid "Date" +msgstr "Fecha" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -#, fuzzy -msgid "Failed to connect" -msgstr "Error" +msgid "Date and Time" +msgstr "Fecha y hora" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 #, fuzzy -msgid "Failed to" -msgstr "Error" +msgid "Date of checkout" +msgstr "Fecha" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "" +msgid "Day of month value is not valid" +msgstr "El campo de día del mes no es válido" + +msgid "Day of week value is not valid" +msgstr "El campo día de la semana no es válido" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 #, fuzzy -msgid "No database to work off" -msgstr "Fallo al actualziar la base de datos" +msgid "Debug" +msgstr "Opciones de debug" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "" +msgid "Debug Options" +msgstr "Opciones de debug" -#: lib/db/mysql.class.php:119 -#, fuzzy -msgid "No valid class sent" -msgstr "Grupo no válido" +msgid "Default" +msgstr "" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" +msgid "Default Height" msgstr "" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" +msgid "Default Item" msgstr "" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" +msgid "Default Refresh Rate" msgstr "" -#: lib/db/mysql.class.php:190 -#, fuzzy -msgid "Check that database is running" -msgstr "Campo obligatorio está vacio" +msgid "Default Width" +msgstr "" -#: lib/db/pdodb.class.php:114 -#, fuzzy -msgid "SQL Error" -msgstr "Error" +msgid "Default is disabled" +msgstr "" -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -#, fuzzy -msgid "Error Message" -msgstr "Error" +msgid "Default log out time (in minutes)" +msgstr "" -#: lib/db/pdodb.class.php:208 -#, fuzzy -msgid "No link established to the database" -msgstr "Campo obligatorio está vacio" +msgid "Delayed" +msgstr "" -#: lib/db/pdodb.class.php:264 -msgid "No query passed" +msgid "Delayed Start" msgstr "" -#: lib/db/pdodb.class.php:290 -#, fuzzy -msgid "no database to" -msgstr "Fallo al actualziar la base de datos" +msgid "Delete" +msgstr "Borrar" -#: lib/db/pdodb.class.php:366 -#, fuzzy -msgid "No connection to the database" -msgstr "Campo obligatorio está vacio" +msgid "Delete Fail" +msgstr "Error al borrar" -#: lib/db/pdodb.class.php:426 #, fuzzy -msgid "Error Code" -msgstr "Error" +msgid "Delete MACs" +msgstr "Borrar" -#: lib/db/pdodb.class.php:430 #, fuzzy -msgid "Debug" -msgstr "Opciones de debug" +msgid "Delete Menu Item" +msgstr "Menú %s" -#: lib/db/pdodb.class.php:435 -#, fuzzy -msgid "Cannot connect to database" -msgstr "Fallo al actualziar la base de datos" +msgid "Delete Selected" +msgstr "Borrar seleccionados" -#: lib/db/pdodb.class.php:449 #, fuzzy -msgid "Database connection unavailable" -msgstr "Campo obligatorio está vacio" - -#: lib/fog/bootmenu.class.php:1498 -msgid "No valid storage nodes found" -msgstr "nodos de almacenamiento válidos no encontrados" +msgid "Delete Selected Items" +msgstr "Borrar" -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "" +#, fuzzy +msgid "Delete Selected MACs" +msgstr "Borrado con éxito" -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "" +msgid "Delete Success" +msgstr "Borrado con éxito" -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" +msgid "Delete all PM tasks?" msgstr "" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "" +msgid "Delete files" +msgstr "Borrar ficheros" -#: lib/fog/eventmanager.class.php:76 -msgid "Second paramater must be in array(class,function)" +msgid "Delete hosts within" msgstr "" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "" +#, fuzzy +msgid "Delete selected" +msgstr "Borrar" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "Método no existe" +#, fuzzy +msgid "Delete selected hosts" +msgstr "Borrar equipos seleccionados" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" -msgstr "" +msgid "Deleted" +msgstr "Eliminado" -#: lib/fog/eventmanager.class.php:102 #, fuzzy -msgid "Could not register" -msgstr "No se puede encontrar el nodo de almacenamiento:" - -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 -msgid "Event" -msgstr "" +msgid "Deleted Success" +msgstr "Eliminado" -#: lib/fog/eventmanager.class.php:107 -msgid "Class" -msgstr "" +#, fuzzy +msgid "Deleting remote file" +msgstr "Archivo" -#: lib/fog/eventmanager.class.php:147 -msgid "Event Data must be an array" -msgstr "" +msgid "Deploy" +msgstr "Despliegue" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "" +msgid "Deploy Method" +msgstr "Método de despliegue" -#: lib/fog/eventmanager.class.php:165 #, fuzzy -msgid "Could not notify" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "Deploy/Capture" +msgstr "Despliegue" -#: lib/fog/fogbase.class.php:443 -msgid "Class name must be a string" -msgstr "" +msgid "Description" +msgstr "Descripción" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "Equipo incorrecto" +msgid "Destroy failed" +msgstr "Error al eliminar" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 -msgid "Key must be a string or index" +msgid "Destroyed assignment" msgstr "" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." +msgid "Destroyed assignments" msgstr "" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" +msgid "Detailed documentation" msgstr "" -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" +msgid "Device must be a string" msgstr "" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" +msgid "Diff parameter must be numeric" msgstr "" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" +msgid "Directories" msgstr "" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" -msgstr "" +msgid "Directory" +msgstr "Directorio" -#: lib/fog/fogbase.class.php:1347 -msgid "Unit of time must be a string" -msgstr "" +msgid "Directory Already Exists" +msgstr "El directorio ya existe" -#: lib/fog/fogbase.class.php:1351 -msgid "In" +msgid "Directory Cleaner" msgstr "" -#: lib/fog/fogbase.class.php:1354 -msgid "ago" +msgid "Disabled" msgstr "" -#: lib/fog/fogbase.class.php:1382 -msgid "Old key must be a string" -msgstr "" +msgid "Display" +msgstr "Pantalla" -#: lib/fog/fogbase.class.php:1385 -msgid "New key must be a string" -msgstr "" +#, fuzzy +msgid "Do not list on menu" +msgstr "Lista de equipos" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" +msgid "Domain Password" msgstr "" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" +msgid "Domain Password Legacy" msgstr "" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "" +msgid "Domain Username" +msgstr "Usuario de dominio" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "Clave privada no encontrada" +msgid "Domain name" +msgstr "Nombre de dominio" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" +msgid "Donate to FOG" msgstr "" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "" +msgid "Done" +msgstr "Hecho" -#: lib/fog/fogbase.class.php:1677 #, fuzzy -msgid "Failed to decrypt data on server" -msgstr "Error al desencriptar los datos" - -#: lib/fog/fogbase.class.php:1910 -msgid "Txt must be a string" -msgstr "" +msgid "Done, Failed to create tasking" +msgstr "Error al crear tarea" -#: lib/fog/fogbase.class.php:1913 -msgid "Level must be an integer" +msgid "Done, with imaging!" msgstr "" -#: lib/fog/fogbase.class.php:1941 -msgid "String must be a string" +msgid "Done, without imaging!" msgstr "" -#: lib/fog/fogbase.class.php:2067 -msgid "Key must be a string" +msgid "Done, without imaging! Invalid Login!" msgstr "" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" +msgid "Done, without imaging! No image assigned!" msgstr "" -#: lib/fog/fogcontroller.class.php:129 -msgid "Table not defined for this class" +msgid "Dot in Filename not allowed!" msgstr "" -#: lib/fog/fogcontroller.class.php:132 -msgid "Fields not defined for this class" -msgstr "" +msgid "Download Failed" +msgstr "Error al descargar" -#: lib/fog/fogcontroller.class.php:145 -msgid "Record not found" -msgstr "No se han encontrado registro" +#, fuzzy +msgid "Downloading Initrd" +msgstr "Error al descargar" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" +msgid "Downloading Kernel" msgstr "" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "Valor" - -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" +msgid "Dropped" msgstr "" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" +msgid "Duration" msgstr "" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" +msgid "ESC is defaulted" msgstr "" -#: lib/fog/fogcontroller.class.php:267 -msgid "Set failed" -msgstr "" +msgid "Edit" +msgstr "Editar" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 -msgid "Key" -msgstr "" +#, fuzzy +msgid "Edit Host" +msgstr "Editar" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "" +#, fuzzy +msgid "Edit Image" +msgstr "Editar" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "" +#, fuzzy +msgid "Edit Node" +msgstr "Editar" -#: lib/fog/fogcontroller.class.php:317 #, fuzzy -msgid "Add failed" -msgstr "¡Error al añadir un rol!" +msgid "Edit User" +msgstr "Usuario" -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" +msgid "Either reboot or shutdown action must be used." msgstr "" -#: lib/fog/fogcontroller.class.php:359 -msgid "Removing Key" +msgid "Email" msgstr "" -#: lib/fog/fogcontroller.class.php:371 -msgid "Remove failed" -msgstr "Error al eliminar" - -#: lib/fog/fogcontroller.class.php:456 -msgid "Saving data for" +msgid "Enable location Sending" msgstr "" -#: lib/fog/fogcontroller.class.php:458 -msgid "object" -msgstr "" +msgid "Enabled" +msgstr "Habilitado" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 #, fuzzy -msgid "ID" -msgstr "% ID %d no es válido" - -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "Nombre" +msgid "Enabled as default" +msgstr "Habilitado" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" +msgid "End" msgstr "" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 #, fuzzy -msgid "has failed to save" -msgstr "Guardar Configuración" +msgid "End Date" +msgstr "Fecha" -#: lib/fog/fogcontroller.class.php:516 -msgid "Database save failed" -msgstr "Fallo al actualizar la base de datos" +#, fuzzy +msgid "End Time" +msgstr "Fecha ya existe" -#: lib/fog/fogcontroller.class.php:542 -msgid "Key field must be a string" +msgid "Engineer" msgstr "" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 -msgid "Operation field not set" -msgstr "" +#, fuzzy +msgid "Enter a group name to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:588 -msgid "Loading data to field" -msgstr "" +#, fuzzy +msgid "Enter a hostname to search for" +msgstr "Nueva Búsqueda" -#: lib/fog/fogcontroller.class.php:606 -msgid "Load failed" -msgstr "Error al cargar" +#, fuzzy +msgid "Enter a location name to search for" +msgstr "Nueva Búsqueda" -#: lib/fog/fogcontroller.class.php:668 -msgid "Invalid key being destroyed" -msgstr "" +#, fuzzy +msgid "Enter a model name to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 -msgid "has been successfully destroyed" -msgstr "" +#, fuzzy +msgid "Enter a site name to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 #, fuzzy -msgid "has failed to destroy" -msgstr "Error al eliminar el nodo de almacenamiento" +msgid "Enter a snapin name to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:750 -msgid "Destroy failed" -msgstr "Error al eliminar" +#, fuzzy +msgid "Enter a term to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:831 -msgid "Invalid key being requested" -msgstr "" +#, fuzzy +msgid "Enter a username to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" -msgstr "" +#, fuzzy +msgid "Enter an image name to search for" +msgstr "Búsqueda" -#: lib/fog/fogcontroller.class.php:877 -msgid "Invalid ID passed" +#, fuzzy +msgid "Enter an user name to search for" +msgstr "Búsqueda" + +msgid "Equipment Loan" msgstr "" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" +msgid "Error" msgstr "Error" -#: lib/fog/fogcore.class.php:40 #, fuzzy -msgid "day" -msgstr "El campo día de la semana no es válido" +msgid "Error Code" +msgstr "Error" -#: lib/fog/fogcore.class.php:49 -msgid "hr" -msgstr "" +#, fuzzy +msgid "Error Message" +msgstr "Error" -#: lib/fog/fogcore.class.php:58 -msgid "min" +msgid "Error Opening DB File" msgstr "" -#: lib/fog/fogcore.class.php:76 -msgid "Running Windows" +msgid "Error multiple hosts returned for list of mac addresses" msgstr "" -#: lib/fog/fogcore.class.php:88 -msgid "Unavailable" +msgid "Error performing query" msgstr "" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" +msgid "Error: Failed to download initrd" msgstr "" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" +msgid "Error: Failed to download kernel" msgstr "" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" +msgid "Error: Failed to open temp file" msgstr "" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "" +msgid "Errors" +msgstr "Errores" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "" +#, fuzzy +msgid "Errors on revert detected!" +msgstr "Errores" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" +msgid "Especially when your organization has many hosts" msgstr "" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" +msgid "Estimated FOG Sites" msgstr "" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" +msgid "Event" msgstr "" -#: lib/fog/fogftp.class.php:219 -#, fuzzy -msgid "FTP connection failed" -msgstr "No disponible" - -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" +msgid "Event Data must be an array" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" +msgid "Event and data are not set" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:603 -msgid "No data to insert" +msgid "Event must be a string" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:909 -#, fuzzy -msgid "No items found" -msgstr "¿Eliminar estos elementos?" - -#: lib/fog/fogmanagercontroller.class.php:987 -msgid "Nothing passed to search for" +msgid "Exists item must be boolean" msgstr "" -#: lib/fog/fogpage.class.php:236 -msgid "ID Must be set to edit" +msgid "Exit to Hard Drive Type" msgstr "" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %d no es válido" +msgid "Exit to Hard Drive Type(EFI)" +msgstr "" -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 #, fuzzy -msgid "Host ID" -msgstr "Equipo" +msgid "Expand All" +msgstr "Todos" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -#, fuzzy -msgid "Host name" -msgstr "Ya existe un host con este nombre" +msgid "Export" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -#, fuzzy -msgid "Host MAC" -msgstr "Equipo no encontrado con esa MAC" +msgid "Export Accesscontrols" +msgstr "" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 #, fuzzy -msgid "Host Desc" -msgstr "Equipo" - -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "Inventario ID" - -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "Descripción de inventario" +msgid "Export CSV" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 #, fuzzy -msgid "Primary User" -msgstr "Grupo principal" +msgid "Export Checksums" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" +msgid "Export Complete" msgstr "" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "" +msgid "Export Configuration" +msgstr "Exportar configuración" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 #, fuzzy -msgid "System Manufacturer" -msgstr "Sistema operativo" +msgid "Export Database" +msgstr "Campo obligatorio está vacio" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 #, fuzzy -msgid "System Product" -msgstr "Sistema operativo" +msgid "Export Database?" +msgstr "Campo obligatorio está vacio" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -#, fuzzy -msgid "System Version" -msgstr "Sistema operativo" +msgid "Export Groups" +msgstr "Exportar grupos" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -#, fuzzy -msgid "System Serial" -msgstr "Sistema operativo" +msgid "Export Hosts" +msgstr "Exportar equipos" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -#, fuzzy -msgid "System Type" -msgstr "Tipo" +msgid "Export Images" +msgstr "Exporatr imágenes" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 #, fuzzy -msgid "BIOS Version" -msgstr "Versión" - -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "" +msgid "Export LDAPs" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 #, fuzzy -msgid "BIOS Date" -msgstr "Fecha" +msgid "Export Locations" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "" +#, fuzzy +msgid "Export PDF" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "" +msgid "Export Printers" +msgstr "Exportar impresoras" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "" +#, fuzzy +msgid "Export Sites" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "" +msgid "Export Snapins" +msgstr "Exportar snapin" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "" +#, fuzzy +msgid "Export Subnetgroups" +msgstr "Exportar grupos" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" +msgid "Export Task States" msgstr "" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 #, fuzzy -msgid "CPU Version" -msgstr "Versión" +msgid "Export Task Types" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "" +msgid "Export Users" +msgstr "Exportar usuarios" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 #, fuzzy -msgid "CPU Max Speed" -msgstr "Clientes Max" - -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "" +msgid "Export WOLBroadcasts" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:378 #, fuzzy -msgid "HD Model" -msgstr "Modelo\t" +msgid "Export Windows Keys" +msgstr "Exportar configuración" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" +msgid "Extension" msgstr "" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "" +msgid "FOG" +msgstr "FOG" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "" +#, fuzzy +msgid "FOG 1.2.0 and earlier" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 #, fuzzy -msgid "Chassis Version" -msgstr "Versión" +msgid "FOG 1.2.0 and earlier." +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "" +#, fuzzy +msgid "FOG Client" +msgstr "Cliente" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "" +#, fuzzy +msgid "FOG Client Download" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:643 -msgid "Group Associations" -msgstr "" +#, fuzzy +msgid "FOG Client Installer" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "Crear un nuevo grupo" +msgid "FOG Client Service Updater" +msgstr "" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "Añadir al grupo" +#, fuzzy +msgid "FOG Client Wiki" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 #, fuzzy -msgid "Make changes?" -msgstr "Guardar Cambios" +msgid "FOG Client on Github" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 -msgid "Delete Selected" -msgstr "Borrar seleccionados" +msgid "FOG Configuration" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 #, fuzzy -msgid "Delete selected" -msgstr "Borrar" +msgid "FOG Crypt" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" +msgid "FOG Equipment Loan Form" msgstr "" -#: lib/fog/fogpage.class.php:1019 -msgid "Cannot set tasking to invalid hosts" -msgstr "" +#, fuzzy +msgid "FOG Forums" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 -msgid "Cannot set tasking to pending hosts" +msgid "FOG General Help" +msgstr "FOG Ayuda General" + +#, fuzzy +msgid "FOG History - Search" +msgstr "Usuario" + +msgid "FOG Home Page" msgstr "" -#: lib/fog/fogpage.class.php:1034 -msgid "Invalid object to try tasking" +msgid "FOG Host - Search" msgstr "" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" +msgid "FOG Host Inventory - Search" msgstr "" -#: lib/fog/fogpage.class.php:1092 -msgid "Host Associated Snapins" +msgid "FOG Host and Users - Search" msgstr "" -#: lib/fog/fogpage.class.php:1119 -msgid "Host Unassociated Snapins" +msgid "FOG Hosts and Users Login" msgstr "" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 #, fuzzy -msgid "Edit Host" -msgstr "Editar" +msgid "FOG Imaging - Search" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 #, fuzzy -msgid "Edit Image" -msgstr "Editar" - -#: lib/fog/fogpage.class.php:1218 -msgid "Confirm tasking" -msgstr "" +msgid "FOG Imaging Log" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1223 #, fuzzy -msgid "Image Associated: " -msgstr "No hay snapin asociados a este equipo" - -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "Configuración avanzada" +msgid "FOG License Information" +msgstr "Licencia" -#: lib/fog/fogpage.class.php:1243 -msgid "Please select the snapin you want to install" -msgstr "" +#, fuzzy +msgid "FOG Log Viewer" +msgstr "Visor de logs" -#: lib/fog/fogpage.class.php:1253 -msgid "Account name to reset" -msgstr "" +#, fuzzy +msgid "FOG Managed Printers" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1274 -msgid "Schedule with shutdown" +msgid "FOG PXE Boot Menu Configuration" msgstr "" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "" +#, fuzzy +msgid "FOG Project" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1313 -msgid "Schedule as debug task" -msgstr "" +#, fuzzy +msgid "FOG Project on Github" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1323 -msgid "Schedule instant" +msgid "FOG Reports exist to give you information about what" msgstr "" -#: lib/fog/fogpage.class.php:1335 -msgid "Schedule delayed" -msgstr "" +msgid "FOG Settings" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1340 -msgid "Date and Time" -msgstr "Fecha y hora" +#, fuzzy +msgid "FOG Snapin - Search" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1373 -msgid "Schedule cron-style" +msgid "FOG Sourceforge Page" msgstr "" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "Crear" - -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 #, fuzzy -msgid "Tasking" -msgstr "Ya existe una tarea para este host en una tarea programada" +msgid "FOG System Settings" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1445 -msgid "Hosts in task" +msgid "FOG User tracking - Search" msgstr "" -#: lib/fog/fogpage.class.php:1556 -msgid "Invalid scheduling type" +msgid "FOG User tracking history" msgstr "" -#: lib/fog/fogpage.class.php:1595 -#, fuzzy -msgid "minute" -msgstr "El valor minuto no es válido" - -#: lib/fog/fogpage.class.php:1604 #, fuzzy -msgid "hour" -msgstr "El campo hora no es válido" +msgid "FOG Version" +msgstr "Versión" -#: lib/fog/fogpage.class.php:1613 #, fuzzy -msgid "day of month" -msgstr "El campo de día del mes no es válido" +msgid "FOG Version Information" +msgstr "Información de hardware" -#: lib/fog/fogpage.class.php:1622 #, fuzzy -msgid "month" -msgstr "El campo mes no es válido" +msgid "FOG Virus Summary" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1631 #, fuzzy -msgid "day of week" -msgstr "El campo día de la semana no es válido" - -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "Tipo de tarea no válida" - -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "" - -#: lib/fog/fogpage.class.php:1663 -msgid "There are no hosts to task in this group" -msgstr "" +msgid "FOG Wiki" +msgstr "Configuración de FOG" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" +msgid "FOG database you can do so using" msgstr "" -#: lib/fog/fogpage.class.php:1678 -msgid "Cannot create tasking as image is not enabled" +msgid "FOG did is now called Power Management" msgstr "" -#: lib/fog/fogpage.class.php:1685 -msgid "The assigned image is protected" -msgstr "La imagen asignada está protegida" - -#: lib/fog/fogpage.class.php:1687 -#, fuzzy -msgid "and cannot be captured" -msgstr "Última captura" - -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" +msgid "FOG is unable to communicate with the database" msgstr "" -#: lib/fog/fogpage.class.php:1700 -msgid "Multicast tasks from groups" +msgid "FOG server defaulting under the folder" msgstr "" -#: lib/fog/fogpage.class.php:1702 -msgid "require all hosts have the same image" +msgid "FTP Connection has failed" msgstr "" -#: lib/fog/fogpage.class.php:1722 -msgid "No valid hosts found and" +msgid "FTP Path" msgstr "" -#: lib/fog/fogpage.class.php:1723 #, fuzzy -msgid "or no valid images specified" -msgstr "Exporatr imágenes" - -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 -msgid "Tasking Failed" -msgstr "" - -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 -msgid "Failed to create tasking" -msgstr "Error al crear la tarea" - -#: lib/fog/fogpage.class.php:1803 -msgid "Failed to create scheduled tasking" -msgstr "Error al crear una tarea programada" +msgid "FTP connection failed" +msgstr "No disponible" -#: lib/fog/fogpage.class.php:1806 -msgid "Scheduled tasks successfully created" -msgstr "Tarea programada creada con éxito" +#, fuzzy +msgid "Fail to destroy" +msgstr "Error al crear el rol" -#: lib/fog/fogpage.class.php:1812 -msgid "Failed to start tasking type" -msgstr "" +msgid "Failed" +msgstr "Error" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "" +#, fuzzy +msgid "Failed to" +msgstr "Error" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" msgstr "" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 #, fuzzy -msgid "Tasked Successfully" -msgstr "Borrado con éxito" - -#: lib/fog/fogpage.class.php:1882 -msgid "Successfully created" -msgstr "Creado con éxito" +msgid "Failed to add snapin" +msgstr "¡Error al añadir un rol!" -#: lib/fog/fogpage.class.php:1889 -msgid "Created Tasks For" +msgid "Failed to add/update snapin file" msgstr "" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -msgid "Remove these items?" -msgstr "¿Eliminar estos elementos?" +#, fuzzy +msgid "Failed to connect" +msgstr "Error" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 -msgid "Unable to Authenticate" -msgstr "Imposible de autenticar" +msgid "Failed to create" +msgstr "Error al crear" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 -msgid "Successfully deleted" -msgstr "Borrado con éxito" +#, fuzzy +msgid "Failed to create Host" +msgstr "Error al crear el inventario de este equipo" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 -msgid "Delete Success" -msgstr "Borrado con éxito" +#, fuzzy +msgid "Failed to create Session" +msgstr "Error al crear" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "" +msgid "Failed to create Snapin Job" +msgstr "Error al crear tarea de snapin" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "Acciones avanzadas" +msgid "Failed to create inventory for this host" +msgstr "Error al crear el inventario de este equipo" -#: lib/fog/fogpage.class.php:2314 #, fuzzy -msgid "Clear all fields?" -msgstr "Limpiar" - -#: lib/fog/fogpage.class.php:2317 -msgid "Clear Fields" -msgstr "Limpiar campos" +msgid "Failed to create new Group" +msgstr "Crear Nuevo %s" -#: lib/fog/fogpage.class.php:2321 -msgid "Join Domain after deploy" -msgstr "" +msgid "Failed to create scheduled tasking" +msgstr "Error al crear una tarea programada" -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "Nombre de dominio" +msgid "Failed to create task" +msgstr "Error al crear tarea" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "" +msgid "Failed to create tasking" +msgstr "Error al crear la tarea" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "" +#, fuzzy +msgid "Failed to decrypt data on server" +msgstr "Error al desencriptar los datos" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "Usuario de dominio" +msgid "Failed to delete file" +msgstr "Error al borrar fichero" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "" +msgid "Failed to delete image files" +msgstr "Error al borrar los ficheros de imagen" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "" +msgid "Failed to destroy" +msgstr "Error al eliminar" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "" +msgid "Failed to destroy Storage Group" +msgstr "Error al eliminar el grupo de almacenamiento" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" -msgstr "" +msgid "Failed to destroy Storage Node" +msgstr "Error al eliminar el nodo de almacenamiento" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" -msgstr "" +#, fuzzy +msgid "Failed to install plugin" +msgstr "Gestión de plugins" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" -msgstr "" +#, fuzzy +msgid "Failed to save assignment" +msgstr "Guardar Configuración" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" -msgstr "" +#, fuzzy +msgid "Failed to save plugin" +msgstr "Gestión de plugins" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" +msgid "Failed to start tasking type" msgstr "" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "Error al descargar" +msgid "Failed to update" +msgstr "Fallo al actualizar" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "Tamaño de archivo" +#, fuzzy +msgid "Failed to update Host" +msgstr "Fallo al actualizar" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "Cargar MAC Vendors" +#, fuzzy +msgid "Failed to update Session" +msgstr "Fallo al actualizar" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "No encontrado" +#, fuzzy +msgid "Failed to update Task" +msgstr "Fallo al actualizar" -#: lib/fog/fogpage.class.php:2779 -msgid "Delete hosts within" -msgstr "" +#, fuzzy +msgid "Failed to update imaging log" +msgstr "Fallo al actualziar la base de datos" -#: lib/fog/fogpage.class.php:2788 -msgid "Delete files" -msgstr "Borrar ficheros" +#, fuzzy +msgid "Failed to update task" +msgstr "Fallo al actualizar" -#: lib/fog/fogpage.class.php:3272 #, fuzzy -msgid "is protected, removal not allowed" -msgstr "No permitido aquí" +msgid "Failed to update task log" +msgstr "Fallo al actualziar la base de datos" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" -msgstr "Error al eliminar" +msgid "Failed to update/create image log" +msgstr "" -#: lib/fog/fogpage.class.php:3305 #, fuzzy -msgid "deleted" -msgstr "Eliminado" +msgid "Failed to update/create task log" +msgstr "Error al crear tarea" -#: lib/fog/fogpage.class.php:3323 -msgid "Delete Fail" -msgstr "Error al borrar" +msgid "Failed to write file to disk" +msgstr "Error al escribir fichero en el disco" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 -#, fuzzy -msgid " Name" -msgstr "Nombre" +msgid "Fields and types must have equal count" +msgstr "" + +msgid "Fields not defined for this class" +msgstr "" + +msgid "File" +msgstr "Archivo" -#: lib/fog/fogpage.class.php:3600 #, fuzzy -msgid "Remove " -msgstr "Eliminar" +msgid "File Integrity Management" +msgstr "Gestión de impresoras" -#: lib/fog/fogpage.class.php:3607 #, fuzzy -msgid "Remove selected " -msgstr "Borrar equipos seleccionados" +msgid "File System Information" +msgstr "Información de hardware" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 #, fuzzy -msgid "Export CSV" -msgstr "Exportar" +msgid "File does not exist" +msgstr "Método no existe" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 #, fuzzy -msgid "Import" -msgstr "Importar equipos" +msgid "File hash mismatch" +msgstr "Error al borrar los ficheros de imagen" -#: lib/fog/fogpage.class.php:3788 -msgid "List" -msgstr "Lista" +msgid "File must be a csv" +msgstr "Debe de ser un archivo CSV" -#: lib/fog/fogpage.class.php:3806 -msgid "Import CSV" -msgstr "Importar CSV" +msgid "File or path cannot be reached" +msgstr "" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 #, fuzzy -msgid "Max Size" -msgstr "Clientes Max" +msgid "File size mismatch" +msgstr "Error al borrar los ficheros de imagen" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" +msgid "File upload stopped by an extension" msgstr "" -#: lib/fog/fogpage.class.php:3824 -#, fuzzy -msgid "Import CSV?" -msgstr "Importar equipos" +msgid "Filesize" +msgstr "" -#: lib/fog/fogpage.class.php:3852 -msgid "This page allows you to upload a CSV file into FOG to ease" +msgid "Filter" msgstr "" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" +msgid "Finding any images associated" msgstr "" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" +msgid "Finding any snapins associated" msgstr "" -#: lib/fog/fogpage.class.php:3888 -msgid "File must be a csv" -msgstr "Debe de ser un archivo CSV" +msgid "For example, a GPO policy to push" +msgstr "" + +msgid "Force" +msgstr "Forzar" -#: lib/fog/fogpage.class.php:3903 #, fuzzy -msgid "Could not find temp filename" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "Force task to start" +msgstr "Forzar" -#: lib/fog/fogpage.class.php:3929 -msgid "Invalid data being parsed" +msgid "Form" msgstr "" -#: lib/fog/fogpage.class.php:3941 -msgid "One or more macs are associated with a host" +msgid "Forums are the most common and fastest method of getting" msgstr "" -#: lib/fog/fogpage.class.php:3966 -msgid "This host already exists" -msgstr "Ya existe este equipo" +#, fuzzy +msgid "Found" +msgstr "Equipo no encontrado con esa MAC" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" +msgid "Found a scheduled task that should run." msgstr "" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" +msgid "Found a wake on lan task that should run." msgstr "" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "" +#, fuzzy +msgid "Found login information" +msgstr "Información de hardware" -#: lib/fog/fogpage.class.php:4154 #, fuzzy -msgid "Schedule Power" -msgstr "Gestión de energía" +msgid "Found snapin information" +msgstr "Información de hardware" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" +msgid "Free" msgstr "" -#: lib/fog/fogpage.class.php:4217 -msgid "Create new PM Schedule" +msgid "Free Disk Space" msgstr "" -#: lib/fog/fogpage.class.php:4227 -msgid "New power management task" +msgid "Free Memory" msgstr "" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "" +msgid "Friendly Name" +msgstr "Alias" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "" +#, fuzzy +msgid "Full History Export" +msgstr "Exportar configuración" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" +#, fuzzy +msgid "Full Inventory Export" +msgstr "Inventario" + +msgid "Function" msgstr "" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" +msgid "Function does not exist" msgstr "" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" +msgid "GNU Gneral Public License" msgstr "" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" +msgid "General" msgstr "" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "Seleccione una image válida" +#, fuzzy +msgid "General Information" +msgstr "Información de hardware" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" +msgid "Generate" msgstr "" -#: lib/fog/group.class.php:452 -msgid "No hosts to task" +msgid "Generic LDAP" msgstr "" -#: lib/fog/group.class.php:475 -msgid "No hosts available to task" -msgstr "" +msgid "Getting image size for" +msgstr "Obteniendo tamaño de imagen para" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "Imagen inhabilitada" +msgid "Getting snapin hash and size for" +msgstr "" -#: lib/fog/group.class.php:502 #, fuzzy -msgid "Unable to find master Storage Node" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "Goto task list" +msgstr "Lista de equipos" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "Esta MAC pertenece a otro equipo" +msgid "Graph Enabled" +msgstr "Gráfico habilitado" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" +msgid "Graphical" +msgstr "Gráfico" + +msgid "Green FOG" msgstr "" -#: lib/fog/host.class.php:498 -msgid "Cannot add a pre-existing primary mac" +msgid "Group" +msgstr "Grupo" + +msgid "Group Associations" msgstr "" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." +#, fuzzy +msgid "Group Auto Logout" +msgstr "Auto" + +msgid "Group Bios Exit Type" msgstr "" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "Error al crear tarea de snapin" +#, fuzzy +msgid "Group Create Fail" +msgstr "Error al crear el rol" -#: lib/fog/host.class.php:1371 #, fuzzy -msgid "Could not find any" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "Group Create Success" +msgstr "Rol creado con éxito" -#: lib/fog/host.class.php:1372 #, fuzzy -msgid "nodes containing this image" -msgstr "No hay nodos maestros disponible para borrar esta imagen" +msgid "Group Description" +msgstr "Descripción" -#: lib/fog/host.class.php:1538 -msgid "No valid Image defined for this host" +msgid "Group EFI Exit Type" msgstr "" -#: lib/fog/host.class.php:1689 -msgid "No viable macs to use" +msgid "Group FOG Client Module configuration" msgstr "" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "La dirección MAC ya está en uso por otro host" +#, fuzzy +msgid "Group Kernel" +msgstr "Grupo" + +#, fuzzy +msgid "Group Kernel Arguments" +msgstr "Grupo principal" + +msgid "Group Management" +msgstr "Gestión de grupos" + +#, fuzzy +msgid "Group Member Attribute" +msgstr "Grupo" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 #, fuzzy -msgid "snapin" -msgstr "Tareas de Snapin activas" +msgid "Group Name" +msgstr "Grupo" -#: lib/fog/host.class.php:1768 #, fuzzy -msgid "per host" -msgstr "Equipo" +msgid "Group Power Management Remove" +msgstr "Gestión de energía" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "" +#, fuzzy +msgid "Group Primary Disk" +msgstr "Grupo principal" -#: lib/fog/system.class.php:38 -msgid "Your system PHP Version is not sufficient" -msgstr "" +#, fuzzy +msgid "Group Printers" +msgstr "Impresoras" -#: lib/fog/system.class.php:39 -msgid "You have version" -msgstr "" +#, fuzzy +msgid "Group Product Key" +msgstr "Grupo principal" -#: lib/fog/system.class.php:41 #, fuzzy -msgid "version" -msgstr "Versión" +msgid "Group Quick Deploy" +msgstr "Despliegue" -#: lib/fog/system.class.php:43 -msgid "is required" -msgstr "es obligatorio" +#, fuzzy +msgid "Group Screen Resolution" +msgstr "Grupo principal" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "" +#, fuzzy +msgid "Group Search DN" +msgstr "Búsqueda" -#: lib/fog/powermanagementmanager.class.php:112 -msgid "Wake On Lan" +msgid "Group Search DN did not return any results" msgstr "" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "" +#, fuzzy +msgid "Group Snapins" +msgstr "Exportar snapin" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 #, fuzzy -msgid "iPrint Printer" -msgstr "Impresora" +msgid "Group Update Fail" +msgstr "Error al actualizar el rol" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 #, fuzzy -msgid "Network Printer" -msgstr "Impresora" +msgid "Group Update Success" +msgstr "Rol actualizado con éxito" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 #, fuzzy -msgid "CUPS Printer" -msgstr "Impresora" +msgid "Group added!" +msgstr "¡Rol añadido!" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "" +#, fuzzy +msgid "Group general" +msgstr "Grupo" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "" +#, fuzzy +msgid "Group image" +msgstr "Imagen" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "" +#, fuzzy +msgid "Group image association" +msgstr "Asociación de imagen" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "" +msgid "Group is not valid" +msgstr "Grupo no válido" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "" +#, fuzzy +msgid "Group module settings" +msgstr "Configuración del cliente" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "" +#, fuzzy +msgid "Group update failed!" +msgstr "Fallo al actualizar" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" +#, fuzzy +msgid "Group updated!" +msgstr "Grupo de almacenamiento actualizado" + +msgid "Groups" +msgstr "Grupos" + +msgid "Groups are not allowed to schedule upload tasks" msgstr "" -#: lib/fog/schema.class.php:325 -msgid "Fields and types must have equal count" +msgid "HD Device" msgstr "" -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" +msgid "HD Firmware" msgstr "" -#: lib/fog/service.class.php:221 #, fuzzy -msgid "Please Select an option" -msgstr "Por favor, elija una opción" +msgid "HD Model" +msgstr "Modelo\t" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." +msgid "HD Serial" msgstr "" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." +msgid "Hard Disk Firmware" msgstr "" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." -msgstr "" +#, fuzzy +msgid "Hard Disk Model" +msgstr "Modelo\t" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." +msgid "Hard Disk Serial Number" msgstr "" -#: lib/fog/foggetset.class.php:58 -#, fuzzy -msgid "Invalid numeric entry" -msgstr "MAC Address inválida!" +msgid "Hardware Information" +msgstr "Información de hardware" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" +msgid "Hash" msgstr "" -#: lib/fog/foggetset.class.php:73 -msgid "Array" +msgid "Have not locked the host for access" msgstr "" -#: lib/fog/foggetset.class.php:89 -msgid "Set Failed" +msgid "Height must be 120 pixels." msgstr "" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" +msgid "Help and Guide" msgstr "" -#: lib/fog/reportmaker.class.php:157 -msgid "Invalid Type" -msgstr "tipo incorrecto" +#, fuzzy +msgid "Hide Menu" +msgstr "Menú principal" -#: lib/fog/reportmaker.class.php:333 -msgid "Export Complete" -msgstr "" +#, fuzzy +msgid "Hide Menu Timeout" +msgstr "Menú principal" -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "Archivo de icono no encontrado" +#, fuzzy +msgid "History Graph" +msgstr "Gráfico habilitado" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "No se han encontrado iconos" +#, fuzzy +msgid "History ID" +msgstr "% ID %d no es válido" -#: lib/fog/uploadexception.class.php:50 -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "" +#, fuzzy +msgid "History IP" +msgstr "IP Nodo Almacenamiento" -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" +msgid "History Info" msgstr "" -#: lib/fog/uploadexception.class.php:57 -msgid "The uploaded file exceeds the max_file_size" -msgstr "" +#, fuzzy +msgid "History Time" +msgstr "Fecha ya existe" -#: lib/fog/uploadexception.class.php:58 -msgid "directive specified in the HTML form" -msgstr "" +#, fuzzy +msgid "History User" +msgstr "Usuario" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" +msgid "Home" msgstr "" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "Archivo no fue subido" +#, fuzzy +msgid "Home Address" +msgstr "Lista de MAC Address" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" +msgid "Home Phone" msgstr "" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" -msgstr "Error al escribir fichero en el disco" +msgid "Host" +msgstr "Equipo" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" -msgstr "" +#, fuzzy +msgid "Host AD Domain" +msgstr "Gestión de equipos" -#: lib/fog/uploadexception.class.php:79 -msgid "Unknown upload error occurred" -msgstr "" +#, fuzzy +msgid "Host AD Join" +msgstr "Gestión de equipos" -#: lib/fog/uploadexception.class.php:80 -msgid "Return code" -msgstr "" +#, fuzzy +msgid "Host AD OU" +msgstr "Equipo" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 #, fuzzy -msgid "user successfully logged in" -msgstr "Borrado con éxito" +msgid "Host Add to Group Fail" +msgstr "Añadir grupo de almacenamiento" -#: lib/fog/user.class.php:312 #, fuzzy -msgid "user failed to login" -msgstr "Error al loguearse" +msgid "Host Add to Group Success" +msgstr "Añadir grupo de almacenamiento" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "Dirección IP cambiada" +#, fuzzy +msgid "Host Associated" +msgstr "No hay snapin asociados a este equipo" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" +msgid "Host Associated Snapins" msgstr "" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" +#, fuzzy +msgid "Host Auto Logout" +msgstr "Auto" + +msgid "Host Bios Exit Type" msgstr "" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 -msgid "Node must be a string" -msgstr "el valor Node debe ser una cadena de texto" +#, fuzzy +msgid "Host Create Fail" +msgstr "Error al crear el rol" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 #, fuzzy -msgid "Items must be an array" -msgstr "¿Eliminar estos elementos?" +msgid "Host Create Success" +msgstr "Rol creado con éxito" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." -msgstr "" +#, fuzzy +msgid "Host Created" +msgstr "Creado por" -#: lib/fog/fogsubmenu.class.php:313 -msgid "Info" -msgstr "" +#, fuzzy +msgid "Host Desc" +msgstr "Equipo" -#: lib/fog/fogsubmenu.class.php:563 -msgid "Title must be a string" -msgstr "" +#, fuzzy +msgid "Host Description" +msgstr "Descripción" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 -msgid "Link must be a string" +msgid "Host EFI Exit Type" msgstr "" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" +msgid "Host FOG Client Module configuration" msgstr "" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "" +#, fuzzy +msgid "Host HD Device" +msgstr "Gestión de equipos" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" -msgstr "" +#, fuzzy +msgid "Host Hardware Inventory" +msgstr "Error al crear el inventario de este equipo" -#: lib/pages/clientmanagementpage.class.php:57 #, fuzzy -msgid "FOG Client Installer" -msgstr "Configuración de FOG" +msgid "Host ID" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:84 #, fuzzy -msgid "New Client and Utilities" -msgstr "Nuevo" +msgid "Host Image" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:87 #, fuzzy -msgid "The installers for the fog client" -msgstr "Configuración de FOG" +msgid "Host Imaging History" +msgstr "Gestión de equipos" -#: lib/pages/clientmanagementpage.class.php:89 #, fuzzy -msgid "Client Version" -msgstr "Versión" - -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" -msgstr "" +msgid "Host Init" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:98 -msgid "more secure" -msgstr "" +#, fuzzy +msgid "Host Invalid" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:99 -msgid "faster" -msgstr "" +#, fuzzy +msgid "Host Kernel" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" -msgstr "" +#, fuzzy +msgid "Host Kernel Arguments" +msgstr "Gestión de equipos" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" -msgstr "" +msgid "Host List" +msgstr "Lista de equipos" -#: lib/pages/clientmanagementpage.class.php:112 #, fuzzy -msgid "Use this for network installs" -msgstr "Extreme la precaución con esta configuración" +msgid "Host Listing Export" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" -msgstr "" +#, fuzzy +msgid "Host Location" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "" +#, fuzzy +msgid "Host Login History" +msgstr "Gestión de login" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" -msgstr "" +#, fuzzy +msgid "Host MAC" +msgstr "Equipo no encontrado con esa MAC" -#: lib/pages/clientmanagementpage.class.php:119 -msgid "Network Installer" -msgstr "" +msgid "Host Management" +msgstr "Gestión de equipos" -#: lib/pages/clientmanagementpage.class.php:126 -msgid "This is the recommended installer to use now" -msgstr "" +#, fuzzy +msgid "Host Membership" +msgstr "Miembros" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" -msgstr "" +#, fuzzy +msgid "Host Memory" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "" +#, fuzzy +msgid "Host Name" +msgstr "Ya existe un host con este nombre" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" -msgstr "" +#, fuzzy +msgid "Host Pending MAC" +msgstr "Equipo no encontrado con esa MAC" -#: lib/pages/clientmanagementpage.class.php:130 -msgid "Smart Installer" -msgstr "" +#, fuzzy +msgid "Host Primary Disk" +msgstr "Grupo principal" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" -msgstr "" +#, fuzzy +msgid "Host Primary MAC" +msgstr "Equipo no encontrado con esa MAC" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "" +#, fuzzy +msgid "Host Printers" +msgstr "Impresoras" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" -msgstr "" +#, fuzzy +msgid "Host Product Key" +msgstr "Gestión de equipos" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" -msgstr "" +#, fuzzy +msgid "Host Product Keys" +msgstr "Gestión de equipos" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 -msgid "NOTE" -msgstr "NOTA" +msgid "Host Registration" +msgstr "Registro de equipos" -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" -msgstr "" +#, fuzzy +msgid "Host Screen Resolution" +msgstr "Gestión de equipos" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" -msgstr "" +#, fuzzy +msgid "Host Site" +msgstr "Equipo" -#: lib/pages/clientmanagementpage.class.php:161 -msgid "Detailed documentation" -msgstr "" +#, fuzzy +msgid "Host Snapin History" +msgstr "No se han encontrado tareas activas de snapin para el equipo" -#: lib/pages/clientmanagementpage.class.php:162 -msgid "It is primarily geared for the smart installer methodology now" -msgstr "" +#, fuzzy +msgid "Host Snapins" +msgstr "Los spanin ya han sido desplegados a este equipo" -#: lib/pages/clientmanagementpage.class.php:163 #, fuzzy -msgid "FOG Client Wiki" -msgstr "Configuración de FOG" +msgid "Host Status" +msgstr "Estado" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" msgstr "" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" +msgid "Host Unassociated Snapins" msgstr "" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "" +#, fuzzy +msgid "Host Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "" +#, fuzzy +msgid "Host Update Failed" +msgstr "Fallo al actualizar" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" -msgstr "" +#, fuzzy +msgid "Host Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 #, fuzzy -msgid "FOG Forums" -msgstr "Configuración de FOG" +msgid "Host Virus History" +msgstr "Gestión de equipos" -#: lib/pages/dashboardpage.class.php:186 #, fuzzy -msgid "Pending hosts" -msgstr "Equipos pendientes" +msgid "Host added!" +msgstr "¡Rol añadido!" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "" +#, fuzzy +msgid "Host approval failed." +msgstr "Error al crear el inventario de este equipo" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "" +#, fuzzy +msgid "Host approved" +msgstr "Equipo" -#: lib/pages/dashboardpage.class.php:195 #, fuzzy -msgid "Pending macs" -msgstr "Equipos pendientes" +msgid "Host description" +msgstr "Descripción" -#: lib/pages/dashboardpage.class.php:219 #, fuzzy -msgid "Web Server" -msgstr "No hay imágenes en este servidor" +msgid "Host general" +msgstr "Equipo" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "" +msgid "Host is already a member of an active task" +msgstr "El equipo ya es miembro de una tarea activa" + +msgid "Host is not valid" +msgstr "Equipo no válido" -#: lib/pages/dashboardpage.class.php:224 #, fuzzy -msgid "System Uptime" -msgstr "Sistema operativo" +msgid "Host module settings" +msgstr "Configuración del cliente" -#: lib/pages/dashboardpage.class.php:251 #, fuzzy -msgid "System Overview" -msgstr "Sistema operativo" +msgid "Host name" +msgstr "Ya existe un host con este nombre" -#: lib/pages/dashboardpage.class.php:254 #, fuzzy -msgid "Server information at a glance." -msgstr "Información de hardware" +msgid "Host pairings" +msgstr "Equipo" -#: lib/pages/dashboardpage.class.php:275 #, fuzzy -msgid "Storage Group Activity" -msgstr "Añadir grupo de almacenamiento" +msgid "Host printer configuration" +msgstr "Configuración" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" +msgid "Host token is currently in use" msgstr "" -#: lib/pages/dashboardpage.class.php:300 #, fuzzy -msgid "Storage Node Disk Usage" -msgstr "Añadir nodo de almacenamiento" +msgid "Host updated!" +msgstr "Equipo" -#: lib/pages/dashboardpage.class.php:303 -msgid "Selected node's disk usage" -msgstr "" +#, fuzzy +msgid "Host/Group Name" +msgstr "Ya existe un host con este nombre" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" +msgid "Hostname" msgstr "" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "" +#, fuzzy +msgid "Hostname / IP" +msgstr "IP Nodo Almacenamiento" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" +msgid "Hostname Changer" msgstr "" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "" +msgid "Hosts" +msgstr "Equipos" -#: lib/pages/dashboardpage.class.php:407 #, fuzzy -msgid "1 Hour" -msgstr "El campo hora no es válido" +msgid "Hosts Associated" +msgstr "No hay snapin asociados a este equipo" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" +msgid "Hosts do not have the same image assigned" msgstr "" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" +msgid "Hosts in task" msgstr "" -#: lib/pages/dashboardpage.class.php:447 #, fuzzy -msgid "No Data Available" -msgstr "No disponible" - -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "" +msgid "Hot Key Enabled" +msgstr "Habilitado" -#: lib/pages/dashboardpage.class.php:481 #, fuzzy -msgid "Node is unavailable" -msgstr "Nodo de almacenamiento" +msgid "Hot Key to use" +msgstr "Extreme la precaución con esta configuración" -#: lib/pages/dashboardpage.class.php:482 -#, fuzzy -msgid "Node Offline" -msgstr "Nodo" +msgid "Hour value is not valid" +msgstr "El campo hora no es válido" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" +msgid "Hourly" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:56 -#, fuzzy -msgid "FOG Project on Github" -msgstr "Configuración de FOG" +msgid "I am not the fog web server" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:59 -#, fuzzy -msgid "FOG Client on Github" -msgstr "Configuración de FOG" +msgid "I am the group manager" +msgstr "" + +msgid "I have read" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:61 -#, fuzzy -msgid "FOG Wiki" -msgstr "Configuración de FOG" +msgid "I.M.C." +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" +msgid "I.M.I." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:96 #, fuzzy -msgid "FOG Version Information" -msgstr "Información de hardware" +msgid "ID" +msgstr "% ID %d no es válido" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" +msgid "ID Must be set to edit" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:145 -#, fuzzy -msgid "FOG Version" -msgstr "Versión" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:170 #, fuzzy -msgid "FOG License Information" -msgstr "Licencia" +msgid "IP Address" +msgstr "IP Nodo Almacenamiento" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" -msgstr "" +msgid "IP Address Changed" +msgstr "Dirección IP cambiada" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" -msgstr "" +msgid "IP Passed is incorrect" +msgstr "IP incorrecta" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" -msgstr "" +msgid "Icon" +msgstr "Icono" -#: lib/pages/fogconfigurationpage.class.php:219 -#, fuzzy -msgid "boot the client computers" -msgstr "Configuración del cliente" +msgid "Icon File not found" +msgstr "Archivo de icono no encontrado" -#: lib/pages/fogconfigurationpage.class.php:220 -#, fuzzy -msgid "In FOG" -msgstr "Configuración de FOG" +msgid "If a new module is published the client will" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" +msgid "If action of ask or get" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" +msgid "If credentials are correct" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" +msgid "If none is specified" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" +msgid "If off" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" +msgid "If on" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:226 -msgid "to get the requested Kernel" +#, fuzzy +msgid "If there is not a task set" +msgstr "Gestión de tareas" + +msgid "If this is an upgrade" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" +#, fuzzy +msgid "If you add a blank node" +msgstr "Si estás intentando transmitir a un nodo remoto A" + +msgid "If you are looking to configure settings for a specific host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:279 -msgid "Downloading Kernel" +msgid "If you need help understanding what items are needed please" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:285 -msgid "Starting process" +msgid "If you would like to backup your" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:307 #, fuzzy -msgid "Save Kernel" -msgstr "Guardar Cambios" +msgid "Ignore MAC on Client" +msgstr "Cliente" -#: lib/pages/fogconfigurationpage.class.php:319 #, fuzzy -msgid "Kernel Name" -msgstr "Nombre" +msgid "Ignore MAC on Image" +msgstr "Lista de MAC Address" -#: lib/pages/fogconfigurationpage.class.php:332 -#, fuzzy -msgid "Install Kernel" -msgstr "Instalar plugins" +msgid "Image" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 #, fuzzy -msgid "Install" -msgstr "Instalar plugins" +msgid "Image Associated: " +msgstr "No hay snapin asociados a este equipo" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "" +msgid "Image Association" +msgstr "Asociación de imagen" -#: lib/pages/fogconfigurationpage.class.php:457 #, fuzzy -msgid "Main Colors" -msgstr "Menú principal" - -#: lib/pages/fogconfigurationpage.class.php:465 -msgid "Option specifies the color settings of the main menu items" -msgstr "" +msgid "Image Associations" +msgstr "Asociación de imagen" -#: lib/pages/fogconfigurationpage.class.php:469 #, fuzzy -msgid "Valid Host Colors" -msgstr "Equipo no válido" - -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 -msgid "Option specifies the color text on the menu if the host" -msgstr "" +msgid "Image Create Fail" +msgstr "Error al crear el rol" -#: lib/pages/fogconfigurationpage.class.php:479 #, fuzzy -msgid "is valid" -msgstr "Tipo de tarea no válida" +msgid "Image Create Success" +msgstr "Rol creado con éxito" -#: lib/pages/fogconfigurationpage.class.php:483 #, fuzzy -msgid "Invalid Host Colors" -msgstr "Equipo" +msgid "Image Definition" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:494 #, fuzzy -msgid "is invalid" -msgstr "Login incorrecto" +msgid "Image Desc" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:498 #, fuzzy -msgid "Main pairings" -msgstr "Menú principal" - -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" -msgstr "" +msgid "Image Description" +msgstr "Descripción" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" -msgstr "" +#, fuzzy +msgid "Image Enabled" +msgstr "Habilitado" -#: lib/pages/fogconfigurationpage.class.php:513 #, fuzzy -msgid "Main fallback pairings" -msgstr "Menú principal" +msgid "Image General" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" +msgid "Image History" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:526 #, fuzzy -msgid "Host pairings" -msgstr "Equipo" +msgid "Image ID" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "" +msgid "Image Management" +msgstr "Gestión de imágenes" -#: lib/pages/fogconfigurationpage.class.php:538 #, fuzzy -msgid "Menu Timeout" -msgstr "Menú principal" +msgid "Image Manager" +msgstr "Gestor %s" -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" -msgstr "" +#, fuzzy +msgid "Image Membership" +msgstr "Miembros" -#: lib/pages/fogconfigurationpage.class.php:549 -msgid "Option specifies the menu timeout" -msgstr "" +msgid "Image Name" +msgstr "Nombre de imagen" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "" +#, fuzzy +msgid "Image Path" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "" +#, fuzzy +msgid "Image Replicator" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "" +#, fuzzy +msgid "Image Size" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:559 #, fuzzy -msgid "Menu Background File" -msgstr "Menú %s" +msgid "Image Size: ON CLIENT" +msgstr "Cliente" -#: lib/pages/fogconfigurationpage.class.php:567 -msgid "Option specifies the background file to use" -msgstr "" +#, fuzzy +msgid "Image Size: ON SERVER" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:569 #, fuzzy -msgid "for the menu background" -msgstr "Menú principal" +msgid "Image Storage Groups" +msgstr "Todos los grupos de almacenamiento" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 -msgid "Make Changes?" -msgstr "¿Guardar Cambios?" +#, fuzzy +msgid "Image Task Completed" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:598 #, fuzzy -msgid "iPXE Menu Settings" -msgstr "Configuración del cliente" +msgid "Image Transfer Log" +msgstr "Visor de logs" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "" +msgid "Image Type" +msgstr "Tipo de imagen" -#: lib/pages/fogconfigurationpage.class.php:619 #, fuzzy -msgid "No Menu" -msgstr "Menú %s" +msgid "Image Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/fogconfigurationpage.class.php:625 #, fuzzy -msgid "Option sets if there will even" -msgstr "Por favor, elija una opción" +msgid "Image Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/fogconfigurationpage.class.php:627 #, fuzzy -msgid "be the presence of a menu" -msgstr "Menú principal" +msgid "Image Used" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:629 #, fuzzy -msgid "to the client systems" -msgstr "Cliente" +msgid "Image added!" +msgstr "¡Rol añadido!" -#: lib/pages/fogconfigurationpage.class.php:631 -#, fuzzy -msgid "If there is not a task set" -msgstr "Gestión de tareas" +msgid "Image is not enabled" +msgstr "Imagen inhabilitada" -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" -msgstr "" +msgid "Image is not valid" +msgstr "Imagen no válida" + +msgid "Image is protected and cannot be deleted" +msgstr "Imagen protegida y no puede ser borrada" -#: lib/pages/fogconfigurationpage.class.php:635 #, fuzzy -msgid "if there is a task" -msgstr "Tarea" +msgid "Image to DMI Mappings" +msgstr "Asociación de imagen" -#: lib/pages/fogconfigurationpage.class.php:637 #, fuzzy -msgid "it performs that task" -msgstr "Gestión de tareas" +msgid "Image update failed!" +msgstr "Fallo al actualizar" -#: lib/pages/fogconfigurationpage.class.php:641 #, fuzzy -msgid "Hide Menu" -msgstr "Menú principal" +msgid "Image updated!" +msgstr "Rol Actualizado" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" +msgid "Imaged" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:649 -msgid "If none is specified" +msgid "Imaged By" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:651 -msgid "ESC is defaulted" +msgid "Imaged For" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" +msgid "Imaged From" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" -msgstr "" +msgid "Images" +msgstr "Imágenes" -#: lib/pages/fogconfigurationpage.class.php:659 #, fuzzy -msgid "Hide Menu Timeout" -msgstr "Menú principal" +msgid "Imaging Completed" +msgstr "Imagen" -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "" +#, fuzzy +msgid "Imaging Duration" +msgstr "Descripción" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" +msgid "Imaging Log" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" +msgid "Imaging Over the last 30 days" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:678 -msgid "access to the hidden menu system" -msgstr "" +#, fuzzy +msgid "Imaging Started" +msgstr "Estado" -#: lib/pages/fogconfigurationpage.class.php:707 #, fuzzy -msgid "Menu Hide/No Menu settings" -msgstr "Menú principal" +msgid "Import" +msgstr "Importar equipos" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" +msgid "Import Accesscontrols" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:721 -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "" +msgid "Import CSV" +msgstr "Importar CSV" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "" +#, fuzzy +msgid "Import CSV?" +msgstr "Importar equipos" -#: lib/pages/fogconfigurationpage.class.php:729 -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "" +msgid "Import Configuration" +msgstr "Importar configuración" -#: lib/pages/fogconfigurationpage.class.php:758 #, fuzzy -msgid "Boot Exit settings" -msgstr "Configuración del cliente" +msgid "Import Database" +msgstr "Importar configuración" -#: lib/pages/fogconfigurationpage.class.php:768 #, fuzzy -msgid "Advanced Menu Login" -msgstr "Avanzadas" - -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "" +msgid "Import Database?" +msgstr "Fallo al actualziar la base de datos" -#: lib/pages/fogconfigurationpage.class.php:776 #, fuzzy -msgid "for the advanced menu parameters" -msgstr "Menú %s" - -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "" +msgid "Import FOG Reports" +msgstr "Informes" -#: lib/pages/fogconfigurationpage.class.php:780 #, fuzzy -msgid "no login will appear" -msgstr "Gestión de login" +msgid "Import Failed" +msgstr "Importar configuración" -#: lib/pages/fogconfigurationpage.class.php:782 -msgid "If on" -msgstr "" +msgid "Import Groups" +msgstr "Importar grupos" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" -msgstr "" +msgid "Import Hosts" +msgstr "Importar equipos" + +msgid "Import Images" +msgstr "Importar imágenes" -#: lib/pages/fogconfigurationpage.class.php:786 #, fuzzy -msgid "menu system" -msgstr "Menú %s" +msgid "Import LDAPs" +msgstr "Importar equipos" -#: lib/pages/fogconfigurationpage.class.php:790 #, fuzzy -msgid "Advanced menu command" -msgstr "Avanzadas" +msgid "Import Locations" +msgstr "Importar impresoras" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" -msgstr "" +msgid "Import Printers" +msgstr "Importar impresoras" -#: lib/pages/fogconfigurationpage.class.php:800 #, fuzzy -msgid "the advanced menu to use" -msgstr "Avanzadas" - -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" -msgstr "" +msgid "Import Report?" +msgstr "Informe" -#: lib/pages/fogconfigurationpage.class.php:831 #, fuzzy -msgid "Advanced Menu settings" -msgstr "Avanzadas" +msgid "Import Reports" +msgstr "Informes" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 #, fuzzy -msgid "Invalid Timeout Value" -msgstr "Login incorrecto" +msgid "Import Sites" +msgstr "Importar equipos" -#: lib/pages/fogconfigurationpage.class.php:974 -msgid "iPXE Settings updated successfully!" -msgstr "" +msgid "Import Snapins" +msgstr "Importar snapin" -#: lib/pages/fogconfigurationpage.class.php:975 #, fuzzy -msgid "iPXE Update Success" -msgstr "Rol actualizado con éxito" +msgid "Import Subnetgroups" +msgstr "Importar grupos" -#: lib/pages/fogconfigurationpage.class.php:982 #, fuzzy -msgid "iPXE Update Fail" -msgstr "Error al actualizar el rol" - -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "" +msgid "Import Successful" +msgstr "Importar impresoras" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" +msgid "Import Task States" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" -msgstr "" +#, fuzzy +msgid "Import Task Types" +msgstr "Importar configuración" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" -msgstr "" +msgid "Import Users" +msgstr "Importar usuarios" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" -msgstr "" +#, fuzzy +msgid "Import WOLBroadcasts" +msgstr "Importar configuración" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" -msgstr "" +#, fuzzy +msgid "Import Windows Keys" +msgstr "Importar configuración" -#: lib/pages/fogconfigurationpage.class.php:1026 -msgid "from" +msgid "In" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 #, fuzzy -msgid "Menu Item" -msgstr "Menú principal" +msgid "In FOG" +msgstr "Configuración de FOG" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 -msgid "Parameters" +msgid "Included Items" +msgstr "Elementos incluidos" + +msgid "Info" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 #, fuzzy -msgid "Boot Options" -msgstr "Opciones de debug" +msgid "Information" +msgstr "Información de hardware" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 -msgid "Default Item" +msgid "Init" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 -#, fuzzy -msgid "Hot Key Enabled" -msgstr "Habilitado" +msgid "Initial Template" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 #, fuzzy -msgid "Hot Key to use" -msgstr "Extreme la precaución con esta configuración" +msgid "Initrd Name" +msgstr "Nombre" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 #, fuzzy -msgid "Menu Show with" -msgstr "Menú principal" +msgid "Initrd Update" +msgstr "Fecha" -#: lib/pages/fogconfigurationpage.class.php:1161 #, fuzzy -msgid "Delete Menu Item" -msgstr "Menú %s" +msgid "Install" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1310 #, fuzzy -msgid "iPXE Item Update Success" -msgstr "Rol actualizado con éxito" +msgid "Install / Update Failed!" +msgstr "Fallo al actualizar" -#: lib/pages/fogconfigurationpage.class.php:1328 #, fuzzy -msgid "successfully removed!" -msgstr "Eliminado" - -#: lib/pages/fogconfigurationpage.class.php:1329 -msgid "iPXE Item Remove Success" -msgstr "" - -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "" +msgid "Install / Update Successful!" +msgstr "Actualizar" -#: lib/pages/fogconfigurationpage.class.php:1488 #, fuzzy -msgid "New iPXE Menu" -msgstr "Nuevo" - -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "" +msgid "Install Initrd" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1539 #, fuzzy -msgid "A description needs to be set" -msgstr "Descripción" +msgid "Install Kernel" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1559 #, fuzzy -msgid "iPXE Item create failed!" -msgstr "Error al crear tarea" +msgid "Install Plugin" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1575 -#, fuzzy -msgid "iPXE Item added!" -msgstr "¡Rol añadido!" +msgid "Install Plugins" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1576 #, fuzzy -msgid "iPXE Item Create Success" -msgstr "Rol creado con éxito" +msgid "Install/Update" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1584 #, fuzzy -msgid "iPXE Item Create Fail" -msgstr "Error al crear el rol" +msgid "Install/Update Now" +msgstr "Instalar plugins" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "" +msgid "Installed Plugins" +msgstr "Plugins instalados" -#: lib/pages/fogconfigurationpage.class.php:1611 #, fuzzy -msgid "Module Name" -msgstr "Nombre" +msgid "Integrity Settings" +msgstr "Configuración del cliente" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" +msgid "Interface" +msgstr "" + +msgid "Interface not ready, waiting for it to come up" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1613 #, fuzzy -msgid "Module Type" -msgstr "Tipo" +msgid "Invalid" +msgstr "MAC Address inválida!" -#: lib/pages/fogconfigurationpage.class.php:1666 #, fuzzy -msgid "Current files" -msgstr "Error al borrar los ficheros de imagen" +msgid "Invalid Class" +msgstr "Login incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 -msgid "NOTICE" -msgstr "" +msgid "Invalid File" +msgstr "Archivo incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1672 -msgid "The below items are only used for the old client." -msgstr "" +msgid "Invalid Folder" +msgstr "Directorio incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" -msgstr "" +msgid "Invalid Host" +msgstr "Equipo incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1676 #, fuzzy -msgid "Version 1.2.0 and earlier" -msgstr "Última versión" +msgid "Invalid Host Colors" +msgstr "Equipo" -#: lib/pages/fogconfigurationpage.class.php:1678 -msgid "This section allows you to update the modules and" +msgid "Invalid ID passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." -msgstr "" +msgid "Invalid IP" +msgstr "IP incorrecta" + +msgid "Invalid Login" +msgstr "Login incorrecto" + +msgid "Invalid MAC Address!" +msgstr "MAC Address inválida!" + +#, fuzzy +msgid "Invalid Multicast Session" +msgstr "Multicast" + +#, fuzzy +msgid "Invalid Plugin Passed" +msgstr "Gestión de plugins" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" -msgstr "" +#, fuzzy +msgid "Invalid Server Information!" +msgstr "Información de hardware" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." -msgstr "" +msgid "Invalid Snapin" +msgstr "Snapin incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1686 -msgid "If a new module is published the client will" +msgid "Invalid Snapin Tasking" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" +msgid "Invalid Snapin Tasking object" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1690 #, fuzzy -msgid "time the service is started." -msgstr "Configuración de servicios" +msgid "Invalid Storage Group" +msgstr "Añadir grupo de almacenamiento" -#: lib/pages/fogconfigurationpage.class.php:1710 -#, fuzzy -msgid "Upload file" -msgstr "Actualizar informes" +msgid "Invalid Storage Node" +msgstr "Nodo de almacenamiento incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 #, fuzzy -msgid "Delete Selected Items" -msgstr "Borrar" +msgid "Invalid Task Type" +msgstr "Tipo de tarea no válida" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 #, fuzzy -msgid "Make Changes" -msgstr "Guardar Cambios" +msgid "Invalid Tasking" +msgstr "Login incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1795 #, fuzzy -msgid "Item removed successfully!" -msgstr "Eliminado" +msgid "Invalid Timeout Value" +msgstr "Login incorrecto" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 -msgid "Client Modules Change Success" +msgid "Invalid Type" +msgstr "tipo incorrecto" + +msgid "Invalid data being parsed" +msgstr "" + +msgid "Invalid data found" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1803 #, fuzzy -msgid "No file uploaded!" -msgstr "Archivo" +msgid "Invalid date" +msgstr "Fecha" -#: lib/pages/fogconfigurationpage.class.php:1849 -msgid "Modules added/updated successfully!" -msgstr "" +msgid "Invalid image" +msgstr "Imagen inválida" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" +#, fuzzy +msgid "Invalid image assigned to host" +msgstr "El grupo de almacenamiento asignado no es válido" + +msgid "Invalid key being added" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1871 -#, fuzzy -msgid "MAC Address Manufacturer Listing" -msgstr "Equipo no encontrado con esa MAC" +msgid "Invalid key being destroyed" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1881 -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" +msgid "Invalid key being removed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" +msgid "Invalid key being requested" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1903 -#, fuzzy -msgid "Delete MACs" -msgstr "Borrar" +msgid "Invalid key being set" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1909 #, fuzzy -msgid "Update MACs" -msgstr "Actualizar" +msgid "Invalid method called" +msgstr "Método de despliegue" -#: lib/pages/fogconfigurationpage.class.php:2054 #, fuzzy -msgid "FOG System Settings" -msgstr "Configuración de FOG" +msgid "Invalid numeric entry" +msgstr "MAC Address inválida!" -#: lib/pages/fogconfigurationpage.class.php:2073 -msgid "This section allows you to customize or alter" +msgid "Invalid object to try tasking" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" +msgid "Invalid object type passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "" +#, fuzzy +msgid "Invalid operational mode" +msgstr "Modo" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" +msgid "Invalid scheduling type" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2096 #, fuzzy -msgid "Expand All" -msgstr "Todos" +msgid "Invalid snapin" +msgstr "Login incorrecto" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 -msgid "Partclone Gzip" -msgstr "" +#, fuzzy +msgid "Invalid task" +msgstr "Login incorrecto" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "" +msgid "Invalid task id" +msgstr "Identificador de tarea incorrecto" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" +msgid "Invalid task id sent" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 -msgid "Partclone Uncompressed Split 200MiB" +msgid "Invalid tasking type passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 -msgid "Partclone Zstd" +msgid "Invalid tasking!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 -msgid "Partclone Zstd Split 200MiB" +msgid "Invalid token passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2355 #, fuzzy -msgid "No image specified" -msgstr "Asociación de imagen" +msgid "Invalid token passed for host" +msgstr "El grupo de almacenamiento asignado no es válido" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 -msgid "Reset Token" +msgid "Invalid type, merge to add, diff to remove" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2587 -#, fuzzy -msgid "No Image specified" -msgstr "Asociación de imagen" - -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." +msgid "Invalid user and/or channel passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "" +msgid "Inventory" +msgstr "Inventario" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 -#, fuzzy -msgid "Settings successfully stored!" -msgstr "Configuración de FOG" +msgid "Inventory ID" +msgstr "Inventario ID" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 #, fuzzy -msgid "Settings Update Success" -msgstr "Rol actualizado con éxito" +msgid "Is Advanced" +msgstr "Avanzadas" + +msgid "Is Enabled" +msgstr "Habilitado" + +msgid "Is Graph Enabled" +msgstr "Gráfico habilitado" -#: lib/pages/fogconfigurationpage.class.php:2874 #, fuzzy -msgid "Service Setting Update Success" -msgstr "Rol actualizado con éxito" +msgid "Is Group" +msgstr "Grupo" -#: lib/pages/fogconfigurationpage.class.php:2878 -msgid "Rebranding element has been successfully updated!" +msgid "Is Master Node" +msgstr "Es Nodo Maestro" + +msgid "Is Pack" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 -#, fuzzy -msgid "Settings Update Fail" -msgstr "Error al actualizar el rol" +msgid "Is Restricted User " +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2896 -#, fuzzy -msgid "Service Setting Update Failed" -msgstr "Fallo al actualziar la base de datos" +msgid "Is a" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3016 -#, fuzzy -msgid "Service Master" -msgstr "Servicio" +msgid "Is restricted" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" +msgid "It can be used on Windows" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3043 -#, fuzzy -msgid "Image Replicator" -msgstr "Imagen" +msgid "It is primarily geared for the smart installer methodology now" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3052 -#, fuzzy -msgid "Image Size" -msgstr "Imagen" +msgid "It operates by getting the max bandwidth setting of the node" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3061 -#, fuzzy -msgid "Snapin Replicator" -msgstr "Gestión de snapin" +msgid "It tells the client to download snapins from" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3070 -#, fuzzy -msgid "Snapin Hash" -msgstr "Tareas de Snapin activas" +msgid "It will operate based on the fields the area typically requires" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3079 #, fuzzy -msgid "Ping Hosts" -msgstr "Equipos" +msgid "Item removed successfully!" +msgstr "Eliminado" -#: lib/pages/fogconfigurationpage.class.php:3121 #, fuzzy -msgid "Image Transfer Log" -msgstr "Visor de logs" +msgid "Items must be an array" +msgstr "¿Eliminar estos elementos?" -#: lib/pages/fogconfigurationpage.class.php:3135 #, fuzzy -msgid "Snapin Transfer Log" -msgstr "Visor de logs" +msgid "Job Create Date" +msgstr "Fecha" -#: lib/pages/fogconfigurationpage.class.php:3213 #, fuzzy -msgid "FOG Log Viewer" -msgstr "Visor de logs" +msgid "Job Create Time" +msgstr "Crear" -#: lib/pages/fogconfigurationpage.class.php:3235 -msgid "Lines" +msgid "Join Domain after deploy" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" +msgid "Kernel" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3251 -msgid "Pause" +msgid "Kernel Args" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3270 -#, fuzzy -msgid "Configuration Import/Export" -msgstr "Exportar configuración" - -#: lib/pages/fogconfigurationpage.class.php:3290 -#, fuzzy -msgid "Export Database?" -msgstr "Campo obligatorio está vacio" - -#: lib/pages/fogconfigurationpage.class.php:3309 -#, fuzzy -msgid "Export Database" -msgstr "Campo obligatorio está vacio" - -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 -#, fuzzy -msgid "Import Database?" -msgstr "Fallo al actualziar la base de datos" +msgid "Kernel Arguments" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3351 #, fuzzy -msgid "Import Database" -msgstr "Importar configuración" +msgid "Kernel Name" +msgstr "Nombre" -#: lib/pages/fogconfigurationpage.class.php:3399 -#, fuzzy -msgid "Import Successful" -msgstr "Importar impresoras" +msgid "Kernel Update" +msgstr "Actualizar Kernel" -#: lib/pages/fogconfigurationpage.class.php:3403 -msgid "Database imported and added successfully!" +msgid "Kernel Versions" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3414 -#, fuzzy -msgid "Import Failed" -msgstr "Importar configuración" +msgid "Kernels/Inits from location" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3418 -msgid "There were errors during import!" +msgid "Key" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3427 #, fuzzy -msgid "Database Reverted" -msgstr "Fallo al actualziar la base de datos" +msgid "Key Name" +msgstr "Nombre" -#: lib/pages/fogconfigurationpage.class.php:3430 -#, fuzzy -msgid "Database changes reverted!" -msgstr "Guardar Cambios" +msgid "Key field must be a string" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3437 -#, fuzzy -msgid "Database Failure" -msgstr "Fallo al actualziar la base de datos" +msgid "Key must be a string" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3441 -#, fuzzy -msgid "Errors on revert detected!" -msgstr "Errores" +msgid "Key must be a string or index" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:170 -#, fuzzy -msgid "New Group" -msgstr "Grupo" +msgid "Key must be an array of keys or a string." +msgstr "" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -#, fuzzy -msgid "Group Name" -msgstr "Grupo" +msgid "Kill" +msgstr "Matar" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 #, fuzzy -msgid "Group Description" -msgstr "Descripción" +msgid "LDAP Connection Name" +msgstr "Nombre de imagen" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 #, fuzzy -msgid "Group Kernel" -msgstr "Grupo" +msgid "LDAP Connection Name" +msgstr "Nombre de imagen" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 #, fuzzy -msgid "Group Kernel Arguments" -msgstr "Grupo principal" +msgid "LDAP Create Fail" +msgstr "Error al crear el rol" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 #, fuzzy -msgid "Group Primary Disk" -msgstr "Grupo principal" +msgid "LDAP Create Success" +msgstr "Rol creado con éxito" -#: lib/pages/groupmanagementpage.class.php:298 -#, fuzzy -msgid "A group name is required!" -msgstr "Nombre" +msgid "LDAP General" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 #, fuzzy -msgid "A group already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "LDAP Management" +msgstr "Gestión" -#: lib/pages/groupmanagementpage.class.php:313 #, fuzzy -msgid "Add group failed!" -msgstr "¡Error al añadir un rol!" +msgid "LDAP Ports" +msgstr "No hay imágenes en este servidor" -#: lib/pages/groupmanagementpage.class.php:318 #, fuzzy -msgid "Group added!" -msgstr "¡Rol añadido!" +msgid "LDAP Server" +msgstr "No hay imágenes en este servidor" -#: lib/pages/groupmanagementpage.class.php:319 #, fuzzy -msgid "Group Create Success" -msgstr "Rol creado con éxito" +msgid "LDAP Server Address" +msgstr "Lista de MAC Address" -#: lib/pages/groupmanagementpage.class.php:327 #, fuzzy -msgid "Group Create Fail" -msgstr "Error al crear el rol" +msgid "LDAP Server Description" +msgstr "Descripción" -#: lib/pages/groupmanagementpage.class.php:486 #, fuzzy -msgid "Group Product Key" -msgstr "Grupo principal" +msgid "LDAP Server Port" +msgstr "No hay imágenes en este servidor" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "" +msgid "LDAP Server added!" +msgstr "Servidor LDAP añadido!" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "" +msgid "LDAP Server updated!" +msgstr "Servidor LDAP actualziado!" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" +msgid "LDAP Servers" msgstr "" -#: lib/pages/groupmanagementpage.class.php:562 #, fuzzy -msgid "Group general" -msgstr "Grupo" +msgid "LDAP Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/groupmanagementpage.class.php:611 #, fuzzy -msgid "Group image" -msgstr "Imagen" +msgid "LDAP Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/groupmanagementpage.class.php:644 -#, fuzzy -msgid "Group image association" -msgstr "Asociación de imagen" +msgid "Language" +msgstr "Idioma" -#: lib/pages/groupmanagementpage.class.php:698 -#, fuzzy -msgid "Group Power Management Remove" -msgstr "Gestión de energía" +msgid "Last Captured" +msgstr "Última captura" -#: lib/pages/groupmanagementpage.class.php:703 -msgid "Delete all PM tasks?" -msgstr "" +msgid "Last Deployed" +msgstr "Último despliegue" -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 #, fuzzy -msgid "Printer Alias" -msgstr "Impresora" +msgid "Last Updated Time" +msgstr "Fecha ya existe" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 #, fuzzy -msgid "Printer Type" -msgstr "Impresora" +msgid "Last captured" +msgstr "Última captura" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -#, fuzzy -msgid "TCP/IP" -msgstr "IP Nodo Almacenamiento" +msgid "Latest Development Version" +msgstr "Última versión desarrollada" -#: lib/pages/groupmanagementpage.class.php:817 -#, fuzzy -msgid "Group Printers" -msgstr "Impresoras" +msgid "Latest Version" +msgstr "Última versión" -#: lib/pages/groupmanagementpage.class.php:827 -#, fuzzy -msgid "Printer Configuration" -msgstr "Configuración" +msgid "Level must be an integer" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:832 -msgid "Select management level for these hosts" +msgid "License" +msgstr "Licencia" + +msgid "Line" msgstr "" -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" +msgid "Lines" msgstr "" -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" +#, fuzzy +msgid "Link New Account" +msgstr "Nueva Búsqueda" + +msgid "Link Pushbullet Account" msgstr "" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" +msgid "Link Pushbullet Account Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" +msgid "Link Pushbullet Account Success" msgstr "" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -#, fuzzy -msgid "No Printer Management" -msgstr "Gestión de impresoras" +msgid "Link Slack Account" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." +msgid "Link Slack Account Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -#, fuzzy -msgid "FOG Managed Printers" -msgstr "Configuración de FOG" +msgid "Link Slack Account Success" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." +msgid "Link must be a string" msgstr "" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -#, fuzzy -msgid "Only Assigned Printers" -msgstr "Impresoras" +msgid "Linux" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 -#, fuzzy -msgid "Update printer configuration" -msgstr "Configuración" +msgid "List" +msgstr "Lista" -#: lib/pages/groupmanagementpage.class.php:918 -#, fuzzy -msgid "Printer Associations" -msgstr "Impresora" +#, php-format +msgid "List All %s" +msgstr "Listar todos %s" -#: lib/pages/groupmanagementpage.class.php:928 -#, fuzzy -msgid "Make Printer Changes" -msgstr "Guardar Cambios" +#, php-format +msgid "List all roles" +msgstr "Listar todos los roles" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 -#, fuzzy -msgid "Add Printers" -msgstr "Impresoras" +#, php-format +msgid "List all rules" +msgstr "Listar todas las reglas" -#: lib/pages/groupmanagementpage.class.php:945 -#, fuzzy -msgid "Update Default Printer" -msgstr "Impresora" +msgid "Listener must be an array or an object" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 -#, fuzzy -msgid "Remove selected printers" -msgstr "Borrar las imágenes elegidas" +msgid "Load Average" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -#, fuzzy -msgid "Snapin Name" -msgstr "Gestión de snapin" +msgid "Load MAC Vendors" +msgstr "Cargar MAC Vendors" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 -#, fuzzy -msgid "Snapin Created" -msgstr "Creado por" +msgid "Load failed" +msgstr "Error al cargar" -#: lib/pages/groupmanagementpage.class.php:1044 -#, fuzzy -msgid "Group Snapins" -msgstr "Exportar snapin" +msgid "Loading data to field" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:1054 -#, fuzzy -msgid "Available Snapins" -msgstr "No disponible" +msgid "Location" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:1064 #, fuzzy -msgid "Make Snapin Changes" -msgstr "Guardar Cambios" +msgid "Location Association" +msgstr "Asociación de imagen" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 #, fuzzy -msgid "Add selected snapins" -msgstr "Añadir equipos seleccionados" +msgid "Location Create Fail" +msgstr "Error al crear el rol" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 #, fuzzy -msgid "Remove selected snapins" -msgstr "Borrar las imágenes elegidas" - -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 -msgid "This module is only used on the old client" -msgstr "" - -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" -msgstr "" +msgid "Location Create Success" +msgstr "Rol creado con éxito" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" +msgid "Location General" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "" +msgid "Location Management" +msgstr "Administración Location" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "" +#, fuzzy +msgid "Location Name" +msgstr "Nombre" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 #, fuzzy -msgid "FOG 1.2.0 and earlier" -msgstr "Configuración de FOG" +msgid "Location Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "" +#, fuzzy +msgid "Location Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "" +#, fuzzy +msgid "Location added!" +msgstr "¡Rol añadido!" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" +msgid "Location already Exists, please try again." msgstr "" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" +msgid "Location is a plugin that allows your FOG Server" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" +msgid "Location update failed!" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" +msgid "Location updated!" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" -msgstr "" +#, fuzzy +msgid "Location/Deployed" +msgstr "Último despliegue" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" +msgid "Locations" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -#, fuzzy -msgid "on the old client" -msgstr "Cliente" +msgid "Log Viewer" +msgstr "Visor de logs" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -#, fuzzy -msgid "Select/Deselect All" -msgstr "Por favor, elija una opción" +msgid "Login" +msgstr "Login" -#: lib/pages/groupmanagementpage.class.php:1300 -msgid "Group FOG Client Module configuration" +msgid "Login History" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1310 #, fuzzy -msgid "Group module settings" -msgstr "Configuración del cliente" +msgid "Login Users" +msgstr "Login incorrecto" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 #, fuzzy -msgid "Update module configurations" -msgstr "Fallo al actualizar" +msgid "Login accepted" +msgstr "Fecha de login" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "" +#, fuzzy +msgid "Login failed" +msgstr "Error al cargar" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "" +msgid "Login time" +msgstr "Fecha de login" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" +msgid "Login with the FOG credentials and you will see the menu" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1457 -#, fuzzy -msgid "Group Screen Resolution" -msgstr "Grupo principal" +msgid "Logout" +msgstr "Cerrar sesión" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 #, fuzzy -msgid "Update display resolution" -msgstr "Pantalla" +msgid "Logout not found" +msgstr "No se han encontrado resultados" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "" +msgid "MAC" +msgstr "MAC" -#: lib/pages/groupmanagementpage.class.php:1532 #, fuzzy -msgid "Group Auto Logout" -msgstr "Auto" +msgid "MAC Address" +msgstr "Lista de MAC Address" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 -msgid "Update auto-logout time" -msgstr "" +msgid "MAC Address List" +msgstr "Lista de MAC Address" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 #, fuzzy -msgid "Export PDF" -msgstr "Exportar" +msgid "MAC Address Manufacturer Listing" +msgstr "Equipo no encontrado con esa MAC" -#: lib/pages/groupmanagementpage.class.php:1794 #, fuzzy -msgid "Host Memory" -msgstr "Equipo" +msgid "MAC Format is invalid" +msgstr "MAC Address inválida!" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 -msgid "You must select an action to perform" +msgid "MAC address is already in use by another host" +msgstr "La dirección MAC ya está en uso por otro host" + +msgid "MB Asset" msgstr "" -#: lib/pages/groupmanagementpage.class.php:2099 -#, fuzzy -msgid "Group update failed!" -msgstr "Fallo al actualizar" +msgid "MB Manufacturer" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:2104 -#, fuzzy -msgid "Group updated!" -msgstr "Grupo de almacenamiento actualizado" +msgid "MB Name" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:2105 -#, fuzzy -msgid "Group Update Success" -msgstr "Rol actualizado con éxito" +msgid "MB Serial" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:2113 -#, fuzzy -msgid "Group Update Fail" -msgstr "Error al actualizar el rol" +msgid "MB Version" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" +msgid "MSI" msgstr "" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" +msgid "Machine Details" msgstr "" -#: lib/pages/hostmanagementpage.class.php:223 #, fuzzy -msgid "Goto task list" -msgstr "Lista de equipos" +msgid "Main Colors" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:295 -#, fuzzy -msgid "Pending Host List" -msgstr "Lista de equipos" +msgid "Main Menu" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:333 #, fuzzy -msgid "Approve selected hosts" -msgstr "Borrar equipos seleccionados" +msgid "Main fallback pairings" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:338 #, fuzzy -msgid "Delete selected hosts" -msgstr "Borrar equipos seleccionados" +msgid "Main pairings" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:367 #, fuzzy -msgid "Approve Success" -msgstr "Borrado con éxito" +msgid "Make Changes" +msgstr "Guardar Cambios" -#: lib/pages/hostmanagementpage.class.php:368 -#, fuzzy -msgid "Selected hosts approved successfully" -msgstr "Borrar equipos seleccionados" +msgid "Make Changes?" +msgstr "¿Guardar Cambios?" -#: lib/pages/hostmanagementpage.class.php:376 #, fuzzy -msgid "Deleted Success" -msgstr "Eliminado" +msgid "Make Printer Changes" +msgstr "Guardar Cambios" -#: lib/pages/hostmanagementpage.class.php:377 #, fuzzy -msgid "Selected hosts deleted successfully" -msgstr "Borrado con éxito" +msgid "Make Snapin Changes" +msgstr "Guardar Cambios" -#: lib/pages/hostmanagementpage.class.php:395 #, fuzzy -msgid "New Host" -msgstr "Equipo" +msgid "Make changes?" +msgstr "Guardar Cambios" -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -#, fuzzy -msgid "Host Name" -msgstr "Ya existe un host con este nombre" +msgid "Management" +msgstr "Gestión" -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -#, fuzzy -msgid "Primary MAC" -msgstr "Grupo principal" +msgid "Management Login" +msgstr "Gestión de login" -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 #, fuzzy -msgid "Host Description" -msgstr "Descripción" +msgid "Management Password" +msgstr "Gestión" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 #, fuzzy -msgid "Host Product Key" -msgstr "Gestión de equipos" +msgid "Management Username" +msgstr "Usuario" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 #, fuzzy -msgid "Host Image" -msgstr "Equipo" +msgid "Master Node" +msgstr "Es Nodo Maestro" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 #, fuzzy -msgid "Host Kernel" -msgstr "Equipo" +msgid "Max" +msgstr "Nodo Almacenamiento Clientes Max" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -#, fuzzy -msgid "Host Kernel Arguments" -msgstr "Gestión de equipos" +msgid "Max Clients" +msgstr "Clientes Max" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 #, fuzzy -msgid "Host Init" -msgstr "Equipo" +msgid "Max Size" +msgstr "Clientes Max" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -#, fuzzy -msgid "Host Primary Disk" -msgstr "Grupo principal" +msgid "Members" +msgstr "Miembros" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "" +msgid "Membership" +msgstr "Miembros" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" +msgid "Memory" msgstr "" -#: lib/pages/hostmanagementpage.class.php:616 #, fuzzy -msgid "A host name is required!" -msgstr "Ya existe un host con este nombre" +msgid "Menu Background File" +msgstr "Menú %s" -#: lib/pages/hostmanagementpage.class.php:621 #, fuzzy -msgid "A mac address is required!" -msgstr "Equipo no encontrado con esa MAC" +msgid "Menu Hide/No Menu settings" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:626 #, fuzzy -msgid "A host already exists with this name!" -msgstr "Ya existe un host con este nombre" +msgid "Menu Item" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:631 -#, fuzzy -msgid "MAC Format is invalid" -msgstr "MAC Address inválida!" +msgid "Menu Item or title cannot be blank" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:638 #, fuzzy -msgid "A host with this mac already exists with name" -msgstr "Ya existe un host con este nombre" +msgid "Menu Show with" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:673 #, fuzzy -msgid "Add host failed!" -msgstr "Error al crear el inventario de este equipo" +msgid "Menu Timeout" +msgstr "Menú principal" -#: lib/pages/hostmanagementpage.class.php:678 -#, fuzzy -msgid "Host added!" -msgstr "¡Rol añadido!" +msgid "Menu colors, pairings, settings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:679 -#, fuzzy -msgid "Host Create Success" -msgstr "Rol creado con éxito" +msgid "Message" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:687 -#, fuzzy -msgid "Host Create Fail" -msgstr "Error al crear el rol" +msgid "Method does not exist" +msgstr "Método no existe" -#: lib/pages/hostmanagementpage.class.php:830 -#, fuzzy -msgid "Current Power Management settings" -msgstr "Gestión de energía" +msgid "Microsoft AD" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:841 -#, fuzzy -msgid "Update PM Values" -msgstr "Actualizar" +msgid "Midnight" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -#, fuzzy -msgid "Remove MAC" -msgstr "Eliminar" +msgid "Mind you" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -#, fuzzy -msgid "Ignore MAC on Client" -msgstr "Cliente" +msgid "Minute value is not valid" +msgstr "El valor minuto no es válido" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." +msgid "Miscellaneous" msgstr "" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -#, fuzzy -msgid "Ignore MAC on Image" -msgstr "Lista de MAC Address" +msgid "Missing a temporary folder" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." +msgid "Missing one or more extensions." msgstr "" -#: lib/pages/hostmanagementpage.class.php:968 #, fuzzy -msgid "Approve MAC" -msgstr "Lista de MAC Address" +msgid "Mobile Group" +msgstr "Grupo" -#: lib/pages/hostmanagementpage.class.php:981 -#, fuzzy -msgid "Approve all pending? " -msgstr "Todos" +msgid "Mode" +msgstr "Modo" -#: lib/pages/hostmanagementpage.class.php:987 -msgid "Approve all pending macs" +msgid "Model" +msgstr "Modelo" + +msgid "Module MD5" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1055 #, fuzzy -msgid "Add MAC" -msgstr "Lista de MAC Address" - -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "" +msgid "Module Name" +msgstr "Nombre" -#: lib/pages/hostmanagementpage.class.php:1113 #, fuzzy -msgid "Host description" -msgstr "Descripción" +msgid "Module Type" +msgstr "Tipo" -#: lib/pages/hostmanagementpage.class.php:1263 #, fuzzy -msgid "Host general" -msgstr "Equipo" +msgid "Module Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/hostmanagementpage.class.php:1337 #, fuzzy -msgid "Please enter a hostname" -msgstr "Por favor, elija una opción" +msgid "Module Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "" +#, fuzzy +msgid "Module updated!" +msgstr "Rol Actualizado" -#: lib/pages/hostmanagementpage.class.php:1345 -msgid "Please use another hostname" +msgid "Modules added/updated successfully!" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1349 -#, fuzzy -msgid "Please enter a mac address" -msgstr "Equipo no encontrado con esa MAC" +msgid "Month value is not valid" +msgstr "El campo mes no es válido" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 -msgid "Please enter a valid mac address" +msgid "Monthly" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" +msgid "Motherboard Asset Tag" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1485 -#, fuzzy -msgid "Host Printers" -msgstr "Impresoras" - -#: lib/pages/hostmanagementpage.class.php:1495 -#, fuzzy -msgid "Host printer configuration" -msgstr "Configuración" +msgid "Motherboard Manufacturer" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:1500 #, fuzzy -msgid "Select management level for this host" -msgstr "Gestión de equipos" +msgid "Motherboard Product Name" +msgstr "Nombre de imagen" -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" +msgid "Motherboard Serial Number" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1617 #, fuzzy -msgid "Add selected printers" -msgstr "Añadir equipos seleccionados" +msgid "Motherboard Version" +msgstr "Versión" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "" +msgid "Multicast" +msgstr "Multicast" -#: lib/pages/hostmanagementpage.class.php:1702 #, fuzzy -msgid "Update/Remove printers" -msgstr "Actualizar" +msgid "Multicast Image" +msgstr "Multicast" -#: lib/pages/hostmanagementpage.class.php:1709 #, fuzzy -msgid "Update default printer" -msgstr "Impresora" +msgid "Multicast Quick Deploy" +msgstr "Multicast" -#: lib/pages/hostmanagementpage.class.php:1804 #, fuzzy -msgid "Host Snapins" -msgstr "Los spanin ya han sido desplegados a este equipo" +msgid "Multicast session created" +msgstr "Creado por" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" +msgid "Multicast tasks from groups" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1835 -#, fuzzy -msgid "Add Snapins" -msgstr "Exportar snapin" - -#: lib/pages/hostmanagementpage.class.php:1911 -#, fuzzy -msgid "Remove snapins" -msgstr "Exportar snapin" - -#: lib/pages/hostmanagementpage.class.php:2127 -msgid "Host FOG Client Module configuration" +msgid "MulticastTask" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2137 -#, fuzzy -msgid "Host module settings" -msgstr "Configuración del cliente" +msgid "Must be 0 through 23 for hours in a day." +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2258 -#, fuzzy -msgid "Host Screen Resolution" -msgstr "Gestión de equipos" +msgid "Must be 0 through 59 for minutes in an hour." +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2329 -#, fuzzy -msgid "Host Auto Logout" -msgstr "Auto" +msgid "Must be encrypted" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" +msgid "Must have a name to create the table" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" +msgid "Must have an image associated" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2453 #, fuzzy -msgid "System Serial Number" -msgstr "Sistema operativo" +msgid "Must use an" +msgstr "Extreme la precaución con esta configuración" -#: lib/pages/hostmanagementpage.class.php:2454 -#, fuzzy -msgid "System UUID" -msgstr "Sistema operativo" +msgid "MySQL Administrator or by running" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2459 -msgid "Motherboard Manufacturer" +msgid "N/A" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2460 -#, fuzzy -msgid "Motherboard Product Name" -msgstr "Nombre de imagen" +msgid "NAME" +msgstr "Nombre" -#: lib/pages/hostmanagementpage.class.php:2461 -#, fuzzy -msgid "Motherboard Version" -msgstr "Versión" +msgid "NOT" +msgstr "NO" -#: lib/pages/hostmanagementpage.class.php:2462 -msgid "Motherboard Serial Number" -msgstr "" +msgid "NOTE" +msgstr "NOTA" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" +msgid "NOTICE" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" +msgid "Name" +msgstr "Nombre" + +msgid "Name Change/AD Join Forced reboot" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2469 -#, fuzzy -msgid "Hard Disk Model" -msgstr "Modelo\t" +msgid "Need more support" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" +msgid "Need the table name to drop" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" +msgid "Needs a 256-bit key" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2483 -#, fuzzy -msgid "Host Hardware Inventory" -msgstr "Error al crear el inventario de este equipo" +msgid "Needs action string of ask, get, or list" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 #, fuzzy -msgid "Virus Name" -msgstr "Nombre" +msgid "Network Information" +msgstr "Información de hardware" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" +msgid "Network Installer" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2619 #, fuzzy -msgid "Host Virus History" -msgstr "Gestión de equipos" +msgid "Network Printer" +msgstr "Impresora" -#: lib/pages/hostmanagementpage.class.php:2632 -#, fuzzy -msgid "Clear all history" -msgstr "Limpiar" +msgid "New" +msgstr "Nuevo" -#: lib/pages/hostmanagementpage.class.php:2642 #, fuzzy -msgid "Virus Report" -msgstr "Informe" +msgid "New Broadcast Address" +msgstr "Lista de MAC Address" -#: lib/pages/hostmanagementpage.class.php:2746 #, fuzzy -msgid "Logout not found" -msgstr "No se han encontrado resultados" - -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" -msgstr "" +msgid "New Client and Utilities" +msgstr "Nuevo" -#: lib/pages/hostmanagementpage.class.php:2795 #, fuzzy -msgid "Host Login History" -msgstr "Gestión de login" +msgid "New Event" +msgstr "Nuevo" -#: lib/pages/hostmanagementpage.class.php:2805 -msgid "View History For" -msgstr "" +#, fuzzy +msgid "New Group" +msgstr "Grupo" -#: lib/pages/hostmanagementpage.class.php:2815 #, fuzzy -msgid "Selected Logins" -msgstr "Añadir equipos seleccionados" +msgid "New Host" +msgstr "Equipo" -#: lib/pages/hostmanagementpage.class.php:2825 #, fuzzy -msgid "History Graph" -msgstr "Gráfico habilitado" +msgid "New Image" +msgstr "Imagen" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "" +#, fuzzy +msgid "New LDAP Server" +msgstr "No hay imágenes en este servidor" -#: lib/pages/hostmanagementpage.class.php:2859 -msgid "Imaged From" -msgstr "" +#, fuzzy +msgid "New Location" +msgstr "Nueva Búsqueda" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "" +msgid "New Role" +msgstr "Nuevo rol" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "" +msgid "New Rule" +msgstr "Nueva regla" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "" +msgid "New Search" +msgstr "Nueva Búsqueda" -#: lib/pages/hostmanagementpage.class.php:2988 #, fuzzy -msgid "Host Imaging History" -msgstr "Gestión de equipos" +msgid "New Site" +msgstr "Nuevo" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 #, fuzzy -msgid "Start Time" -msgstr "Fecha ya existe" +msgid "New Snapin" +msgstr "Gestión de snapin" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 #, fuzzy -msgid "End Time" -msgstr "Fecha ya existe" - -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "" +msgid "New Storage Group" +msgstr "Grupo de almacenamiento" -#: lib/pages/hostmanagementpage.class.php:3076 #, fuzzy -msgid "Snapin task not completed" -msgstr "Gestión de snapin" +msgid "New Storage Node" +msgstr "Nodo de almacenamiento" -#: lib/pages/hostmanagementpage.class.php:3078 #, fuzzy -msgid "No complete time recorded" -msgstr "Completada" +msgid "New Subnetgroup" +msgstr "Grupo de almacenamiento" + +msgid "New Task State" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3106 #, fuzzy -msgid "Host Snapin History" -msgstr "No se han encontrado tareas activas de snapin para el equipo" +msgid "New Task Type" +msgstr "Tipo de tarea no válida" -#: lib/pages/hostmanagementpage.class.php:3143 #, fuzzy -msgid "Host approved" -msgstr "Equipo" +msgid "New User" +msgstr "Usuario" -#: lib/pages/hostmanagementpage.class.php:3145 #, fuzzy -msgid "Host approval failed." -msgstr "Error al crear el inventario de este equipo" +msgid "New Windows Key" +msgstr "Nueva Búsqueda" -#: lib/pages/hostmanagementpage.class.php:3158 #, fuzzy -msgid "Approve Host" -msgstr "Equipo" +msgid "New iPXE Menu" +msgstr "Nuevo" -#: lib/pages/hostmanagementpage.class.php:3165 -#, fuzzy -msgid "Approve this host?" -msgstr "Gestión de equipos" +msgid "New key must be a string" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3186 -msgid "Approved" +msgid "New power management task" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3213 -msgid "All Pending MACs approved" +msgid "No" +msgstr "No" + +msgid "No Active Snapin Jobs Found For Host" +msgstr "No se han encontrado tareas activas de snapin para el equipo" + +msgid "No Active Task found for Host" +msgstr "No hay tareas activas para este equipo" + +msgid "No Data" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3665 #, fuzzy -msgid "Virus items removed!" -msgstr "Eliminado" +msgid "No Data Available" +msgstr "No disponible" -#: lib/pages/hostmanagementpage.class.php:3671 -#, fuzzy -msgid "Host Update Failed" -msgstr "Fallo al actualizar" +msgid "No FOGPage Class found for this node" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3693 -#, fuzzy -msgid "Host updated!" -msgstr "Equipo" +msgid "No Host found for MAC Address" +msgstr "Equipo no encontrado con esa MAC" -#: lib/pages/hostmanagementpage.class.php:3694 #, fuzzy -msgid "Host Update Success" -msgstr "Rol actualizado con éxito" +msgid "No Image specified" +msgstr "Asociación de imagen" -#: lib/pages/hostmanagementpage.class.php:3702 #, fuzzy -msgid "Host Update Fail" -msgstr "Error al actualizar el rol" +msgid "No Menu" +msgstr "Menú %s" -#: lib/pages/hostmanagementpage.class.php:3743 #, fuzzy -msgid "Failed to create new Group" -msgstr "Crear Nuevo %s" +msgid "No Printer Management" +msgstr "Gestión de impresoras" -#: lib/pages/hostmanagementpage.class.php:3747 -msgid "Successfully added selected hosts to the group!" +msgid "No Site" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3748 -#, fuzzy -msgid "Host Add to Group Success" -msgstr "Añadir grupo de almacenamiento" - -#: lib/pages/hostmanagementpage.class.php:3755 #, fuzzy -msgid "Host Add to Group Fail" -msgstr "Añadir grupo de almacenamiento" +msgid "No access is allowed" +msgstr "No permitido aquí" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" +msgid "No activity information available for this group" msgstr "" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" +msgid "No class value sent" msgstr "" -#: lib/pages/imagemanagementpage.class.php:97 #, fuzzy -msgid "Primary Storage Group" -msgstr "Grupo principal" - -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "Nombre de imagen" +msgid "No complete time recorded" +msgstr "Completada" -#: lib/pages/imagemanagementpage.class.php:134 #, fuzzy -msgid "Image Size: ON CLIENT" -msgstr "Cliente" +msgid "No connection available" +msgstr "No disponible" -#: lib/pages/imagemanagementpage.class.php:143 #, fuzzy -msgid "Image Size: ON SERVER" -msgstr "Imagen" +msgid "No connection to the database" +msgstr "Campo obligatorio está vacio" -#: lib/pages/imagemanagementpage.class.php:151 -#, fuzzy -msgid "Captured" -msgstr "Última captura" +msgid "No data returned" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:170 -#, fuzzy -msgid "Last captured" -msgstr "Última captura" +msgid "No data to insert" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:285 #, fuzzy -msgid "Not set" -msgstr "has configurado el campo de ancho de banda en ese nodo a 1000" +msgid "No database to work off" +msgstr "Fallo al actualziar la base de datos" -#: lib/pages/imagemanagementpage.class.php:298 -#, fuzzy -msgid "Invalid date" -msgstr "Fecha" +msgid "No directories defined to be cleaned up" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -#, fuzzy -msgid "Not protected" -msgstr "Imagen protegida y no puede ser borrada" +msgid "No fields passed" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 #, fuzzy -msgid "Protected" -msgstr "Imagen protegida y no puede ser borrada" +msgid "No file uploaded!" +msgstr "Archivo" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 -msgid "Disabled" -msgstr "" +msgid "No file was uploaded" +msgstr "Archivo no fue subido" -#: lib/pages/imagemanagementpage.class.php:362 -msgid "Partclone Compressed" -msgstr "" +#, fuzzy +msgid "No friendly name defined" +msgstr "Alias" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" +msgid "No groups defined, search will return all hosts." msgstr "" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" -msgstr "" +#, fuzzy +msgid "No groups selected to be removed" +msgstr "Eliminado" -#: lib/pages/imagemanagementpage.class.php:377 -msgid "ZSTD Compressed" +msgid "No hosts available to task" msgstr "" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" +msgid "No hosts to task" msgstr "" -#: lib/pages/imagemanagementpage.class.php:445 -#, fuzzy -msgid "New Image" -msgstr "Imagen" +msgid "No icons found" +msgstr "No se han encontrado iconos" -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 #, fuzzy -msgid "Image Description" -msgstr "Descripción" - -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "Sistema operativo" +msgid "No image specified" +msgstr "Asociación de imagen" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" +msgid "No images associated with this group as master" msgstr "" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 #, fuzzy -msgid "Image Enabled" -msgstr "Habilitado" +msgid "No items found" +msgstr "¿Eliminar estos elementos?" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" +msgid "No key being requested" msgstr "" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" +#, fuzzy +msgid "No link established to the database" +msgstr "Campo obligatorio está vacio" + +msgid "No master nodes are enabled to delete this image" +msgstr "No hay nodos maestros disponible para borrar esta imagen" + +msgid "No need to sync" msgstr "" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 #, fuzzy -msgid "Image Manager" -msgstr "Gestor %s" +msgid "No new tasks found" +msgstr "No se han encontrado tareas" -#: lib/pages/imagemanagementpage.class.php:639 -#, fuzzy -msgid "Create Image" -msgstr "Crear" +msgid "No node associated" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -#, fuzzy -msgid "An image already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "No node associated with any addresses of this system" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -msgid "Please choose a different name" +msgid "No open slots" msgstr "" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -#, fuzzy -msgid "this one is reserved for FOG" -msgstr "Configuración de FOG" +msgid "No query passed" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -msgid "Please choose a different path" +msgid "No query result, use query() first" msgstr "" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" +msgid "No query sent" msgstr "" -#: lib/pages/imagemanagementpage.class.php:744 -#, fuzzy -msgid "Add image failed!" -msgstr "¡Error al añadir un rol!" +msgid "No results found" +msgstr "No se han encontrado resultados" -#: lib/pages/imagemanagementpage.class.php:754 #, fuzzy -msgid "Image added!" -msgstr "¡Rol añadido!" +msgid "No role selected" +msgstr "Añadir equipos seleccionados" -#: lib/pages/imagemanagementpage.class.php:755 #, fuzzy -msgid "Image Create Success" -msgstr "Rol creado con éxito" +msgid "No rule selected" +msgstr "Añadir equipos seleccionados" -#: lib/pages/imagemanagementpage.class.php:763 -#, fuzzy -msgid "Image Create Fail" -msgstr "Error al crear el rol" +msgid "No site" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1041 -#, fuzzy -msgid "Image General" -msgstr "Imagen" +msgid "No snapins associated with this group as master" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1132 -#, fuzzy -msgid "Image Storage Groups" -msgstr "Todos los grupos de almacenamiento" +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -msgid "Check here to see what storage groups can be added" +msgid "No valid Image defined for this host" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 #, fuzzy -msgid "Add Storage Groups" -msgstr "Todos los grupos de almacenamiento" +msgid "No valid class sent" +msgstr "Grupo no válido" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -#, fuzzy -msgid "Add selected storage groups" -msgstr "Todos los grupos de almacenamiento" +msgid "No valid hosts found and" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -#, fuzzy -msgid "Update/Remove Storage Groups" +msgid "No valid storage nodes found" +msgstr "nodos de almacenamiento válidos no encontrados" + +msgid "No valid tasks found" msgstr "" -"El nodo de almacenamiento asociado al grupo de almacenamiento no es válido" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 -#, fuzzy -msgid "Update primary group" -msgstr "Grupo principal" +msgid "No values passed" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 -#, fuzzy -msgid "Remove selected groups" -msgstr "Borrar las imágenes elegidas" +msgid "No viable macs to use" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 -#, fuzzy -msgid "No groups selected to be removed" -msgstr "Eliminado" +msgid "No viable storage groups found" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 -#, fuzzy -msgid "You must have at least one group associated" -msgstr "Debe de haber por lo menos un grupo de almacenamiento" +msgid "Node" +msgstr "Nodo" -#: lib/pages/imagemanagementpage.class.php:1433 #, fuzzy -msgid "Image update failed!" -msgstr "Fallo al actualizar" +msgid "Node Offline" +msgstr "Nodo" -#: lib/pages/imagemanagementpage.class.php:1439 #, fuzzy -msgid "Image updated!" -msgstr "Rol Actualizado" +msgid "Node Parent" +msgstr "Nodo" -#: lib/pages/imagemanagementpage.class.php:1440 #, fuzzy -msgid "Image Update Success" -msgstr "Rol actualizado con éxito" +msgid "Node is unavailable" +msgstr "Nodo de almacenamiento" -#: lib/pages/imagemanagementpage.class.php:1448 -#, fuzzy -msgid "Image Update Fail" -msgstr "Error al actualizar el rol" +msgid "Node must be a string" +msgstr "el valor Node debe ser una cadena de texto" + +msgid "Nodes" +msgstr "Nodos" -#: lib/pages/imagemanagementpage.class.php:1490 #, fuzzy -msgid "Session Name" -msgstr "Nombre" +msgid "Normal Snapin" +msgstr "Gestión de snapin" + +msgid "Not Available" +msgstr "No disponible" -#: lib/pages/imagemanagementpage.class.php:1498 #, fuzzy -msgid "Client Count" -msgstr "Cliente" +msgid "Not Registered Hosts" +msgstr "Equipos pendientes" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "" +#, fuzzy +msgid "Not Valid" +msgstr "Tipo de tarea no válida" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" +msgid "Not a number" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1517 -#, fuzzy -msgid "Select Image" -msgstr "Imagen" +msgid "Not able to add" +msgstr "Imposible de añadir" -#: lib/pages/imagemanagementpage.class.php:1524 -msgid "Start Session" +msgid "Not all elements in filter or ports setting are integer" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1548 -#, fuzzy -msgid "Multicast Image" -msgstr "Multicast" +msgid "Not allowed here" +msgstr "No permitido aquí" -#: lib/pages/imagemanagementpage.class.php:1558 -#, fuzzy -msgid "Start Multicast Session" -msgstr "Multicast" +msgid "Not found" +msgstr "No encontrado" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 #, fuzzy -msgid "Task Name" -msgstr "Nombre" +msgid "Not protected" +msgstr "Imagen protegida y no puede ser borrada" -#: lib/pages/imagemanagementpage.class.php:1574 #, fuzzy -msgid "Clients" -msgstr "Nodo Almacenamiento Clientes Max" +msgid "Not set" +msgstr "has configurado el campo de ancho de banda en ese nodo a 1000" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" +msgid "Not syncing" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1578 -#, fuzzy -msgid "Stop Task" -msgstr "Tarea" +msgid "Not syncing Image" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1647 -msgid "Current Sessions" +msgid "Not syncing Snapin" +msgstr "No sincronización de snapin" + +msgid "Notes" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" +msgid "Nothing passed to search for" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1680 -#, fuzzy -msgid "Please choose an image" -msgstr "Por favor, elija una opción" +msgid "O/S" +msgstr "S.O" -#: lib/pages/imagemanagementpage.class.php:1683 #, fuzzy -msgid "Session with that name already exists" -msgstr "¡Ya existe un rol con este nombre!" +msgid "OS Name" +msgstr "Nombre" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" +msgid "Object" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1710 -msgid "Please wait until a slot is open" +msgid "Old clients are the clients that came with FOG" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1711 -msgid "There are currently" +msgid "Old key must be a string" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1713 #, fuzzy -msgid "tasks in queue" -msgstr "Tareas" +msgid "On Dashboard" +msgstr "Panel de control" -#: lib/pages/imagemanagementpage.class.php:1714 -msgid "Your server only allows" +msgid "On reboot we will try to find a new node" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1732 -#, fuzzy -msgid "Failed to create Session" -msgstr "Error al crear" +msgid "One or more macs are associated with a host" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1742 #, fuzzy -msgid "Multicast session created" -msgstr "Creado por" +msgid "Only Assigned Printers" +msgstr "Impresoras" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" +msgid "Only allowed to have" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1775 -#, fuzzy -msgid "Cancelled task" -msgstr "Tarea" +msgid "Open Source Computer Cloning Solution" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:74 -#, fuzzy -msgid "Plugin Name" -msgstr "Nombre" +msgid "Open VNC connection to" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." +msgid "OpenLDAP" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -#, fuzzy -msgid "Plugin Description" -msgstr "Gestión de plugins" +msgid "Operating System" +msgstr "Sistema operativo" -#: lib/pages/pluginmanagementpage.class.php:326 -#, fuzzy -msgid "Plugin Installation" -msgstr "Gestión de plugins" +msgid "Operation field not set" +msgstr "" + +msgid "Option below enforces a login system" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:326 #, fuzzy -msgid "This plugin is not installed" -msgstr "Plugins instalados" +msgid "Option sets if there will even" +msgstr "Por favor, elija una opción" -#: lib/pages/pluginmanagementpage.class.php:328 -msgid "would you like to install it now" +msgid "Option sets the ipxe keysequence to enter to gain menu" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:333 -#, fuzzy -msgid "Install Plugin" -msgstr "Instalar plugins" +msgid "Option sets the key sequence" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:383 -#, fuzzy -msgid "Reboot after deploy" -msgstr "Despliegue" +msgid "Option specifies the background file to use" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:384 -#, fuzzy -msgid "Shutdown after deploy" -msgstr "Despliegue" +msgid "Option specifies the color settings of the main menu items" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:393 -#, fuzzy -msgid "Basic Settings" -msgstr "Tareas básicas" +msgid "Option specifies the color text on the menu if the host" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:428 -#, fuzzy -msgid "DMI Field" -msgstr "Campo obligatorio está vacio" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:431 -#, fuzzy -msgid "After image Action" -msgstr "Acción" +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:449 -#, fuzzy -msgid "Image Associations" -msgstr "Asociación de imagen" +msgid "Option specifies the menu timeout" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:452 -#, fuzzy -msgid "Image Definition" -msgstr "Imagen" +msgid "Option specifies the pairings after host checks" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" +msgid "Option specifies the pairings as a fallback" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:476 -#, fuzzy -msgid "Image to DMI Mappings" -msgstr "Asociación de imagen" +msgid "Option specifies the pairings of colors to" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -#, fuzzy -msgid "OS Name" -msgstr "Nombre" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" +msgid "Or there was no number defined for joining session" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:531 -msgid "Current Associations" +msgid "Organizational Unit" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:555 -#, fuzzy -msgid "Remove Selected?" -msgstr "Borrar equipos seleccionados" +msgid "Other Tag #1" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:565 -#, fuzzy -msgid "Remove Associations" -msgstr "Eliminar" +msgid "Other Tag #2" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:619 -#, fuzzy -msgid "Invalid Plugin Passed" -msgstr "Gestión de plugins" +msgid "Other Tag 1" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:625 -#, fuzzy -msgid "Failed to install plugin" -msgstr "Gestión de plugins" +msgid "Other Tag 2" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:636 -#, fuzzy -msgid "Failed to save plugin" -msgstr "Gestión de plugins" +msgid "Otherwise it will just boot like normal" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:645 -#, fuzzy -msgid "Plugin Installed!" -msgstr "Plugins instalados" +msgid "PC Check-out Agreement" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:666 -msgid "Must have an image associated" +msgid "Parameters" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:674 -#, fuzzy -msgid "Failed to save assignment" -msgstr "Guardar Configuración" +msgid "Parent" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:676 #, fuzzy -msgid "Assignment saved successfully" -msgstr "Borrado con éxito" +msgid "Parent Node" +msgstr "Nodo" -#: lib/pages/pluginmanagementpage.class.php:691 -msgid "Destroyed assignments" +msgid "Partclone" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" +msgid "Partclone Compressed" msgstr "" -#: lib/pages/printermanagementpage.class.php:83 -#, fuzzy -msgid "Printer Name" -msgstr "Impresora" - -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" +msgid "Partclone Compressed 200MiB split" msgstr "" -#: lib/pages/printermanagementpage.class.php:89 -#, fuzzy -msgid "Config File" -msgstr "Archivo" +msgid "Partclone Gzip" +msgstr "" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 -msgid "Copy from existing" +msgid "Partclone Gzip Split 200MiB" msgstr "" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 -#, fuzzy -msgid "Printer Name/Alias" -msgstr "Impresora" +msgid "Partclone Uncompressed" +msgstr "" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." +msgid "Partclone Uncompressed 200MiB split" msgstr "" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -#, fuzzy -msgid "Printer Description" -msgstr "Descripción" +msgid "Partclone Uncompressed Split 200MiB" +msgstr "" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -#, fuzzy -msgid "Printer Port" -msgstr "Impresora" +msgid "Partclone Zstd" +msgstr "" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -#, fuzzy -msgid "Printer INF File" -msgstr "Impresora" +msgid "Partclone Zstd Split 200MiB" +msgstr "" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -#, fuzzy -msgid "Printer IP" -msgstr "Impresora" +msgid "Partimage" +msgstr "" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -#, fuzzy -msgid "Printer Model" -msgstr "Impresora" +msgid "Partition" +msgstr "" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -#, fuzzy -msgid "Printer Config File" -msgstr "Configuración" +msgid "Password" +msgstr "" -#: lib/pages/printermanagementpage.class.php:459 -#, fuzzy -msgid "Create New Printer" -msgstr "Impresora" +msgid "Password reset requires a user account to reset" +msgstr "" -#: lib/pages/printermanagementpage.class.php:473 -#, fuzzy -msgid "Add New Printer" -msgstr "Impresora" +msgid "Path" +msgstr "" -#: lib/pages/printermanagementpage.class.php:515 -#, fuzzy -msgid "A name must be set" -msgstr "Nombre de imagen" +msgid "Path is unavailable" +msgstr "" -#: lib/pages/printermanagementpage.class.php:518 -#, fuzzy -msgid "Printer name already exists" -msgstr "Ya existe un host con este nombre" +msgid "Pause" +msgstr "" -#: lib/pages/printermanagementpage.class.php:545 #, fuzzy -msgid "Add printer failed!" -msgstr "¡Error al añadir un rol!" +msgid "Pending Host List" +msgstr "Lista de equipos" -#: lib/pages/printermanagementpage.class.php:551 -#, fuzzy -msgid "Printer added!" -msgstr "Impresora" +msgid "Pending Hosts" +msgstr "Equipos pendientes" -#: lib/pages/printermanagementpage.class.php:552 #, fuzzy -msgid "Printer Create Success" -msgstr "Rol creado con éxito" +msgid "Pending MAC Actions" +msgstr "Acciones" -#: lib/pages/printermanagementpage.class.php:560 #, fuzzy -msgid "Printer Create Fail" -msgstr "Error al crear el rol" +msgid "Pending MAC Export" +msgstr "Equipos pendientes" -#: lib/pages/printermanagementpage.class.php:869 -#, fuzzy -msgid "Printer General" -msgstr "Impresora" +msgid "Pending MACs" +msgstr "" -#: lib/pages/printermanagementpage.class.php:936 #, fuzzy -msgid "A printer name is required!" -msgstr "Impresora" +msgid "Pending Registered Hosts" +msgstr "Equipos pendientes" -#: lib/pages/printermanagementpage.class.php:957 -#, fuzzy -msgid "A printer already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Pending Registration created by FOG_CLIENT" +msgstr "" -#: lib/pages/printermanagementpage.class.php:990 #, fuzzy -msgid "Printer update failed!" -msgstr "Fallo al actualizar" +msgid "Pending hosts" +msgstr "Equipos pendientes" -#: lib/pages/printermanagementpage.class.php:995 #, fuzzy -msgid "Printer updated!" -msgstr "Impresora" +msgid "Pending macs" +msgstr "Equipos pendientes" -#: lib/pages/printermanagementpage.class.php:996 #, fuzzy -msgid "Printer Update Success" -msgstr "Rol actualizado con éxito" +msgid "Pending..." +msgstr "Equipos pendientes" -#: lib/pages/printermanagementpage.class.php:1004 -#, fuzzy -msgid "Printer Update Fail" -msgstr "Error al actualizar el rol" +msgid "Percent" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:158 -#, fuzzy -msgid "Import Reports" -msgstr "Informes" +msgid "Perform Immediately?" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:189 #, fuzzy -msgid "Import FOG Reports" -msgstr "Informes" +msgid "Perform search" +msgstr "Búsqueda" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 #, fuzzy -msgid "Import Report?" -msgstr "Informe" - -#: lib/pages/reportmanagementpage.class.php:250 -msgid "This section allows you to uploade user" -msgstr "" +msgid "Personal Information" +msgstr "Información de hardware" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" +msgid "Pick a template" msgstr "" -#: lib/pages/reportmanagementpage.class.php:254 #, fuzzy -msgid "the base FOG install" -msgstr "Instalar plugins" +msgid "Ping Hosts" +msgstr "Equipos" + +msgid "Please Enter an admin or mobile lookup name" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:273 #, fuzzy -msgid "About FOG Reports" -msgstr "Informes" +msgid "Please Select an option" +msgstr "Por favor, elija una opción" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" +msgid "Please be very careful changing any of the following settings" msgstr "" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" +msgid "Please check your credentials in" msgstr "" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" +msgid "Please choose a different name" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" +msgid "Please choose a different path" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:63 #, fuzzy -msgid "Install/Update" -msgstr "Instalar plugins" - -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" -msgstr "" +msgid "Please choose an image" +msgstr "Por favor, elija una opción" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" -msgstr "" +msgid "Please confirm you want to delete" +msgstr "Por favor, confirme que desea borrar" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" +msgid "Please enter a Group Member Attribute" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" +msgid "Please enter a LDAP server address" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:75 -msgid "window" +msgid "Please enter a Search Base DN" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:76 -msgid "Applications" +msgid "Please enter a User Name Attribute" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:77 #, fuzzy -msgid "System Tools" -msgstr "Sistema operativo" - -#: lib/pages/schemaupdaterpage.class.php:78 -msgid "Terminal" -msgstr "" - -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "" +msgid "Please enter a hostname" +msgstr "Por favor, elija una opción" -#: lib/pages/schemaupdaterpage.class.php:80 #, fuzzy -msgid "directory" -msgstr "Directorio" +msgid "Please enter a mac address" +msgstr "Equipo no encontrado con esa MAC" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" +msgid "Please enter a name for this LDAP server." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" +msgid "Please enter a name for this location." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:90 #, fuzzy -msgid "or this is a new FOG installation" -msgstr "Nuevo" +msgid "Please enter a valid CIDR subnet." +msgstr "Por favor, elija una opción" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" +msgid "Please enter a valid CIDR subnets comma separated list" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" +msgid "Please enter a valid hostname" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" +msgid "Please enter a valid ip" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" +msgid "Please enter a valid mac address" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" +msgid "Please enter an access token" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:97 -#, fuzzy -msgid "previous install if needed" -msgstr "Instalar plugins" - -#: lib/pages/schemaupdaterpage.class.php:103 -#, fuzzy -msgid "Are you sure you wish to" -msgstr "Si estás intentando transmitir a un nodo remoto A" - -#: lib/pages/schemaupdaterpage.class.php:104 -#, fuzzy -msgid "install or update the FOG database" -msgstr "Fallo al actualziar la base de datos" - -#: lib/pages/schemaupdaterpage.class.php:115 -#, fuzzy -msgid "Install/Update Now" -msgstr "Instalar plugins" - -#: lib/pages/schemaupdaterpage.class.php:125 -#, fuzzy -msgid "Database not available" -msgstr "No disponible" - -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" +msgid "Please input a session name" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" +msgid "Please physically associate" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" +msgid "Please select a valid ldap port" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" +msgid "Please select an LDAP port to use" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:138 -msgid "Also confirm that the database is indeed running" -msgstr "" +msgid "Please select an option" +msgstr "Por favor, elija una opción" -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" +msgid "Please select the snapin you want to install" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:140 -#, fuzzy -msgid "and if the Database service is running" -msgstr "Configuración de servicios" - -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" +msgid "Please select the storage group this location relates to." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:168 -#, fuzzy -msgid "No connection available" -msgstr "No disponible" - -#: lib/pages/schemaupdaterpage.class.php:171 -#, fuzzy -msgid "Update not required!" -msgstr "%s es obligatorio" - -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 -msgid "Function" +msgid "Please update your FOG Client, this is old and insecure" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:230 -#, fuzzy -msgid "Database" -msgstr "Fallo al actualziar la base de datos" - -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" +msgid "Please use another hostname" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:235 -#, fuzzy -msgid "Database SQL" -msgstr "Fallo al actualziar la base de datos" - -#: lib/pages/schemaupdaterpage.class.php:252 -#, fuzzy -msgid "Install / Update Failed!" -msgstr "Fallo al actualizar" +msgid "Please wait until a slot is open" +msgstr "" -#: lib/pages/schemaupdaterpage.class.php:257 -#, fuzzy -msgid "The following errors occurred" -msgstr "Errores" +msgid "Plugin" +msgstr "Plugin" -#: lib/pages/schemaupdaterpage.class.php:267 #, fuzzy -msgid "Install / Update Successful!" -msgstr "Actualizar" +msgid "Plugin Configuration" +msgstr "Configuración" -#: lib/pages/schemaupdaterpage.class.php:270 #, fuzzy -msgid "to login" -msgstr "Login incorrecto" +msgid "Plugin Description" +msgstr "Gestión de plugins" -#: lib/pages/schemaupdaterpage.class.php:275 #, fuzzy -msgid "The following errors occured" -msgstr "Errores" +msgid "Plugin Installation" +msgstr "Gestión de plugins" -#: lib/pages/serverinfo.class.php:44 #, fuzzy -msgid "Edit Node" -msgstr "Editar" +msgid "Plugin Installed!" +msgstr "Plugins instalados" -#: lib/pages/serverinfo.class.php:52 -#, fuzzy -msgid "Hostname / IP" -msgstr "IP Nodo Almacenamiento" +msgid "Plugin Management" +msgstr "Gestión de plugins" -#: lib/pages/serverinfo.class.php:75 #, fuzzy -msgid "Server information" -msgstr "Información de hardware" +msgid "Plugin Name" +msgstr "Nombre" -#: lib/pages/serverinfo.class.php:80 -#, fuzzy -msgid "Invalid Server Information!" -msgstr "Información de hardware" +msgid "Plugins" +msgstr "Plugins" -#: lib/pages/serverinfo.class.php:94 -msgid "Unable to get server infromation!" +msgid "Port" msgstr "" -#: lib/pages/serverinfo.class.php:145 -msgid "Unable to find basic information!" +msgid "Port is not valid ldap/ldaps port" msgstr "" -#: lib/pages/serverinfo.class.php:158 -msgid "TX" +msgid "Postfix requires an action of login" msgstr "" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" +msgid "Postfix requires an action of login, logout, or start to operate" msgstr "" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "" +msgid "Power Management" +msgstr "Gestión de energía" -#: lib/pages/serverinfo.class.php:165 #, fuzzy -msgid "General Information" -msgstr "Información de hardware" +msgid "Power Management Task run time" +msgstr "Gestión de energía" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "" +msgid "Primary Group" +msgstr "Grupo principal" -#: lib/pages/serverinfo.class.php:174 #, fuzzy -msgid "CPU Type" -msgstr "Tipo" - -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "" +msgid "Primary MAC" +msgstr "Grupo principal" -#: lib/pages/serverinfo.class.php:176 #, fuzzy -msgid "CPU Model" -msgstr "Modelo\t" - -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "" +msgid "Primary Storage Group" +msgstr "Grupo principal" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "" +#, fuzzy +msgid "Primary User" +msgstr "Grupo principal" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" +msgid "Printed" msgstr "" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "" +msgid "Printer" +msgstr "Impresora" -#: lib/pages/serverinfo.class.php:199 #, fuzzy -msgid "File System Information" -msgstr "Información de hardware" +msgid "Printer Alias" +msgstr "Impresora" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "" +#, fuzzy +msgid "Printer Associations" +msgstr "Impresora" -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "" +#, fuzzy +msgid "Printer Config File" +msgstr "Configuración" -#: lib/pages/serverinfo.class.php:203 -msgid "Free Disk Space" -msgstr "" +#, fuzzy +msgid "Printer Configuration" +msgstr "Configuración" -#: lib/pages/serverinfo.class.php:220 #, fuzzy -msgid "Network Information" -msgstr "Información de hardware" +msgid "Printer Create Fail" +msgstr "Error al crear el rol" -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 #, fuzzy -msgid "Information" -msgstr "Información de hardware" +msgid "Printer Create Success" +msgstr "Rol creado con éxito" -#: lib/pages/serviceconfigurationpage.class.php:133 #, fuzzy -msgid "Service general" -msgstr "Servicio" +msgid "Printer Description" +msgstr "Descripción" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "" +#, fuzzy +msgid "Printer General" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:139 #, fuzzy -msgid "function on client computers." -msgstr "Configuración del cliente" +msgid "Printer INF File" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." -msgstr "" +#, fuzzy +msgid "Printer IP" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "" +#, fuzzy +msgid "Printer IP/Hostname" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "" +msgid "Printer Management" +msgstr "Gestión de impresoras" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." -msgstr "" +#, fuzzy +msgid "Printer Model" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:150 #, fuzzy -msgid "FOG Client Download" -msgstr "Configuración de FOG" +msgid "Printer Name" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "" +#, fuzzy +msgid "Printer Name/Alias" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "" +#, fuzzy +msgid "Printer Port" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:158 #, fuzzy -msgid "FOG Crypt" -msgstr "Configuración de FOG" +msgid "Printer Type" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "" +#, fuzzy +msgid "Printer Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/serviceconfigurationpage.class.php:163 #, fuzzy -msgid "Click Here" -msgstr "aquí" +msgid "Printer Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/serviceconfigurationpage.class.php:236 #, fuzzy -msgid "Enabled as default" -msgstr "Habilitado" +msgid "Printer added!" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:307 #, fuzzy -msgid "Service Status" -msgstr "Servicio" +msgid "Printer name already exists" +msgstr "Ya existe un host con este nombre" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 #, fuzzy -msgid "Current settings" -msgstr "Configuración del cliente" +msgid "Printer update failed!" +msgstr "Fallo al actualizar" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "" +#, fuzzy +msgid "Printer updated!" +msgstr "Impresora" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 -msgid "This module is only used on the old client." -msgstr "" +msgid "Printers" +msgstr "Impresoras" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" +msgid "Private key failed" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:454 -#, fuzzy -msgid "FOG 1.2.0 and earlier." -msgstr "Configuración de FOG" +msgid "Private key not found" +msgstr "Clave privada no encontrada" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" +msgid "Private key not readable" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." +msgid "Private key path not found" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:463 -msgid "Directories" +#, fuzzy +msgid "Protected" +msgstr "Imagen protegida y no puede ser borrada" + +msgid "Pushbullet Accounts" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:470 #, fuzzy -msgid "Add Directory" -msgstr "Directorio" +msgid "Pushbullet Management" +msgstr "Gestión del cliente" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" +msgid "Quarantine" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "" +msgid "Queued" +msgstr "Encolada" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" +msgid "Quick" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgid "RX" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." +msgid "Reboot" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:678 #, fuzzy -msgid "New Event" -msgstr "Nuevo" +msgid "Reboot after deploy" +msgstr "Despliegue" -#: lib/pages/serviceconfigurationpage.class.php:712 #, fuzzy -msgid "Add Event" -msgstr "Añadir" +msgid "Reboot after install" +msgstr "Instalar plugins" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." +msgid "Rebranding element has been successfully updated!" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:792 -#, fuzzy -msgid "Add User" -msgstr "Usuario" +msgid "Receive" +msgstr "Recibir" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." +msgid "Recommended" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "" +msgid "Record not found" +msgstr "No se han encontrado registro" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." +msgid "Register must be managed from hooks or events" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:981 -#, fuzzy -msgid "Service update failed" -msgstr "Fallo al actualizar" - -#: lib/pages/serviceconfigurationpage.class.php:986 -#, fuzzy -msgid "Module updated!" -msgstr "Rol Actualizado" - -#: lib/pages/serviceconfigurationpage.class.php:987 -#, fuzzy -msgid "Module Update Success" -msgstr "Rol actualizado con éxito" +msgid "Registered" +msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:995 #, fuzzy -msgid "Module Update Fail" -msgstr "Error al actualizar el rol" +msgid "Registered Hosts" +msgstr "Equipos" -#: lib/pages/snapinmanagementpage.class.php:134 -msgid "Filesize" +msgid "Releasing Staff Initials" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:167 -msgid "Is Pack" +msgid "Remit Hello Interval" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "No" +msgid "Remote address attempting to login" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "Si" +msgid "Remove" +msgstr "Eliminar" -#: lib/pages/snapinmanagementpage.class.php:397 #, fuzzy -msgid "New Snapin" -msgstr "Gestión de snapin" +msgid "Remove " +msgstr "Eliminar" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 #, fuzzy -msgid "Snapin Description" -msgstr "Descripción" +msgid "Remove Accesscontrol Rules" +msgstr "Listar todas las reglas" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 #, fuzzy -msgid "Snapin Type" -msgstr "Gestión de snapin" +msgid "Remove Associations" +msgstr "Eliminar" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 -#, fuzzy -msgid "Normal Snapin" -msgstr "Gestión de snapin" +msgid "Remove Hosts" +msgstr "Borrar equipos" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 -#, fuzzy -msgid "Snapin Pack" -msgstr "Tareas de Snapin activas" +msgid "Remove Images" +msgstr "Borrar imágenes" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 #, fuzzy -msgid "Snapin Template" -msgstr "Gestión de snapin" +msgid "Remove MAC" +msgstr "Eliminar" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 #, fuzzy -msgid "Snapin Pack Template" -msgstr "Gestión de snapin" +msgid "Remove Selected?" +msgstr "Borrar equipos seleccionados" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -#, fuzzy -msgid "Snapin Run With" -msgstr "Gestión de snapin" +msgid "Remove Users" +msgstr "Eliminar usuarios" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 -#, fuzzy -msgid "Snapin Pack File" -msgstr "Archivo" +msgid "Remove failed" +msgstr "Error al eliminar" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 #, fuzzy -msgid "Snapin Run With Argument" -msgstr "Tareas de Snapin activas" +msgid "Remove selected " +msgstr "Borrar equipos seleccionados" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 #, fuzzy -msgid "Snapin Pack Arguments" -msgstr "Gestión de snapin" +msgid "Remove selected groups" +msgstr "Borrar las imágenes elegidas" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -#, fuzzy -msgid "Snapin File" -msgstr "Archivo" +msgid "Remove selected hosts" +msgstr "Borrar equipos seleccionados" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -#, fuzzy -msgid "Snapin File (exists)" -msgstr "Archivo" +msgid "Remove selected images" +msgstr "Borrar las imágenes elegidas" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 #, fuzzy -msgid "Snapin Arguments" -msgstr "Gestión de snapin" +msgid "Remove selected printers" +msgstr "Borrar las imágenes elegidas" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 #, fuzzy -msgid "Snapin Enabled" -msgstr "Habilitado" +msgid "Remove selected rules" +msgstr "Borrar equipos seleccionados" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 #, fuzzy -msgid "Snapin Arguments Hidden" -msgstr "Gestión de snapin" +msgid "Remove selected snapins" +msgstr "Borrar las imágenes elegidas" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 -#, fuzzy -msgid "Snapin Timeout (seconds)" -msgstr "Tareas de Snapin activas" +msgid "Remove selected users" +msgstr "Borrar usuarios seleccionados" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 #, fuzzy -msgid "Reboot after install" -msgstr "Instalar plugins" +msgid "Remove snapins" +msgstr "Exportar snapin" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -#, fuzzy -msgid "Shutdown after install" -msgstr "Instalar plugins" +msgid "Remove these items?" +msgstr "¿Eliminar estos elementos?" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -#, fuzzy -msgid "Snapin Command" -msgstr "Gestión de snapin" +msgid "Removed" +msgstr "Eliminado" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" +msgid "Removing Key" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:668 -#, fuzzy -msgid "Create New Snapin" -msgstr "Crear un nuevo rol de acceso" +msgid "Replay from journal" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." +msgid "Replicate?" msgstr "" -"El archivo Snapin es demasiado grande, aumente post_max_size en php.ini." -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." +msgid "Replicating" msgstr "" -"La variable $_POST está vacía, verifique el registro de errores de apache." -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 -#, fuzzy -msgid "A snapin name is required!" -msgstr "Nombre" +msgid "Replication Bandwidth" +msgstr "Ancho de banda de Replicación" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 -#, fuzzy -msgid "A snapin already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Replication already running with PID" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 -#, fuzzy -msgid "A file" -msgstr "Archivo" +msgid "Report" +msgstr "Informe" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" +msgid "Report Management" +msgstr "Gestión de informes" + +msgid "Reports" +msgstr "Informes" + +msgid "Required database field is empty" +msgstr "Campo obligatorio está vacio" + +msgid "Requires templates to process" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -msgid "must be specified" +msgid "Reset Encryption Data" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" +msgid "Reset Token" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -#, fuzzy -msgid "Failed to add snapin" -msgstr "¡Error al añadir un rol!" +msgid "Result" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" +msgid "Results" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:857 -#, fuzzy -msgid "Add snapin failed!" -msgstr "¡Error al añadir un rol!" +msgid "Return Code" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:867 -#, fuzzy -msgid "Snapin added!" -msgstr "¡Rol añadido!" +msgid "Return Desc" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:868 -#, fuzzy -msgid "Snapin Create Success" -msgstr "Rol creado con éxito" +msgid "Return code" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:877 -#, fuzzy -msgid "Snapin Create Fail" +msgid "Returning array within key" +msgstr "" + +msgid "Returning value of key" +msgstr "" + +msgid "Reverse the file: (newest on top)" +msgstr "" + +msgid "Rexmit Hello Interval" +msgstr "" + +msgid "Role" +msgstr "Rol" + +msgid "Role Create Fail" msgstr "Error al crear el rol" -#: lib/pages/snapinmanagementpage.class.php:904 +msgid "Role Create Success" +msgstr "Rol creado con éxito" + +msgid "Role Description" +msgstr "Descripción del rol" + +msgid "Role Name" +msgstr "Nombre del rol" + +msgid "Role Update Fail" +msgstr "Error al actualizar el rol" + +msgid "Role Update Success" +msgstr "Rol actualizado con éxito" + +msgid "Role added!" +msgstr "¡Rol añadido!" + +msgid "Role update failed!" +msgstr "Error al actualizar el rol!" + +msgid "Role updated!" +msgstr "Rol Actualizado!" + +msgid "Routes should be an array or an instance of Traversable" +msgstr "" + +msgid "Row" +msgstr "Fila" + +msgid "Row number not set properly" +msgstr "" + #, fuzzy -msgid "Snapin General" -msgstr "Gestión de snapin" +msgid "Rule Associate Fail" +msgstr "Fallo al crear la regla" -#: lib/pages/snapinmanagementpage.class.php:1123 #, fuzzy -msgid "Snapin Protected" -msgstr "Snapin protegido y no puede ser borrado" +msgid "Rule Associate Success" +msgstr "Regla creada con éxito" + +msgid "Rule Association" +msgstr "Asociar Regla" + +msgid "Rule Create Fail" +msgstr "Fallo al crear la regla" + +msgid "Rule Create Success" +msgstr "Regla creada con éxito" -#: lib/pages/snapinmanagementpage.class.php:1291 #, fuzzy -msgid "Snapin Storage Groups" -msgstr "Todos los grupos de almacenamiento" +msgid "Rule Delete Fail" +msgstr "Fallo al crear la regla" -#: lib/pages/snapinmanagementpage.class.php:1701 #, fuzzy -msgid "Snapin update failed!" -msgstr "Fallo al actualizar" +msgid "Rule Delete Success" +msgstr "Borrado con éxito" -#: lib/pages/snapinmanagementpage.class.php:1706 #, fuzzy -msgid "Snapin updated!" -msgstr "Gestión de snapin" +msgid "Rule Membership" +msgstr "Miembros" -#: lib/pages/snapinmanagementpage.class.php:1707 #, fuzzy -msgid "Snapin Update Success" -msgstr "Rol actualizado con éxito" +msgid "Rule Name" +msgstr "Ya existe una regla con este nombre" + +msgid "Rule Type" +msgstr "Tipo de regla" -#: lib/pages/snapinmanagementpage.class.php:1716 #, fuzzy -msgid "Snapin Update Fail" +msgid "Rule Update Fail" msgstr "Error al actualizar el rol" -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, fuzzy, php-format -msgid "%s ID %s is not valid" -msgstr "% ID %d no es válido" +msgid "Rule Update Success" +msgstr "Regla actualizada con éxito" + +msgid "Rule Value" +msgstr "Valor" -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "" +msgid "Rule added!" +msgstr "¡Regla añadida!" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "" +msgid "Rule associate success!" +msgstr "Regla creada con éxito!" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" -msgstr "" +msgid "Rule deleted successfully!" +msgstr "Borrado con éxito!" -#: lib/pages/storagemanagementpage.class.php:462 -#, fuzzy -msgid "Create Storage Node" -msgstr "Añadir nodo de almacenamiento" +msgid "Rule type" +msgstr "Tipo de regla" -#: lib/pages/storagemanagementpage.class.php:483 -#, fuzzy -msgid "New Storage Node" -msgstr "Nodo de almacenamiento" +msgid "Rule updated!" +msgstr "¡Regla actualizada!" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" +msgid "Rule value" +msgstr "Valor de la regla" + +msgid "Running Windows" msgstr "" -#: lib/pages/storagemanagementpage.class.php:578 #, fuzzy -msgid "Add storage node failed!" -msgstr "Error al eliminar el nodo de almacenamiento" +msgid "SQL Error" +msgstr "Error" -#: lib/pages/storagemanagementpage.class.php:603 -#, fuzzy -msgid "Storage Node added!" -msgstr "Añadir nodo de almacenamiento" +msgid "SSL Path" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:604 -#, fuzzy -msgid "Storage Node Create Success" -msgstr "Rol creado con éxito" +msgid "Save Changes" +msgstr "Guardar Cambios" -#: lib/pages/storagemanagementpage.class.php:612 -#, fuzzy -msgid "Storage Node Create Fail" -msgstr "Error al crear el rol" +msgid "Save Initrd" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:686 #, fuzzy -msgid "Storage Node General" -msgstr "Añadir nodo de almacenamiento" +msgid "Save Kernel" +msgstr "Guardar Cambios" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" +msgid "Saving data for" msgstr "" -#: lib/pages/storagemanagementpage.class.php:968 -#, fuzzy -msgid "Storage Node update failed!" -msgstr "Error al eliminar el nodo de almacenamiento" - -#: lib/pages/storagemanagementpage.class.php:993 -#, fuzzy -msgid "Storage Node updated!" -msgstr "Nodo de almacenamiento actualizado" +msgid "Schedule" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:994 #, fuzzy -msgid "Storage Node Update Success" -msgstr "Rol actualizado con éxito" +msgid "Schedule Power" +msgstr "Gestión de energía" -#: lib/pages/storagemanagementpage.class.php:1002 -#, fuzzy -msgid "Storage Node Update Fail" -msgstr "Error al actualizar el rol" +msgid "Schedule as debug task" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1169 -#, fuzzy -msgid "Max" -msgstr "Nodo Almacenamiento Clientes Max" +msgid "Schedule cron-style" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1250 -#, fuzzy -msgid "Create Storage Group" -msgstr "Añadir grupo de almacenamiento" +msgid "Schedule delayed" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1271 -#, fuzzy -msgid "New Storage Group" -msgstr "Grupo de almacenamiento" +msgid "Schedule instant" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1311 -#, fuzzy -msgid "Storage Group Create Success" -msgstr "Grupo de almacenamiento" +msgid "Schedule with shutdown" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1319 #, fuzzy -msgid "Storage Group Create Fail" -msgstr "Error al crear el rol" +msgid "Scheduled Task run time" +msgstr "Tareas programadas" -#: lib/pages/storagemanagementpage.class.php:1346 -#, fuzzy -msgid "Storage Group General" -msgstr "Añadir grupo de almacenamiento" +msgid "Scheduled Tasks" +msgstr "Tareas programadas" -#: lib/pages/storagemanagementpage.class.php:1444 -#, fuzzy -msgid "Storage Group update failed!" -msgstr "Error al eliminar el grupo de almacenamiento" +msgid "Scheduled date is in the past" +msgstr "La fecha de programación ha pasado" -#: lib/pages/storagemanagementpage.class.php:1449 -#, fuzzy -msgid "Storage Group updated!" -msgstr "Grupo de almacenamiento actualizado" +msgid "Scheduled tasks successfully created" +msgstr "Tarea programada creada con éxito" -#: lib/pages/storagemanagementpage.class.php:1450 -#, fuzzy -msgid "Storage Group Update Success" -msgstr "Rol actualizado con éxito" +msgid "Scheduler" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1457 -#, fuzzy -msgid "Storage Group Update Fail" -msgstr "Error al actualizar el rol" +msgid "Screen Height (in pixels)" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" +msgid "Screen Refresh Rate (in Hz)" msgstr "" -#: lib/pages/taskmanagementpage.class.php:76 -#, fuzzy -msgid "Working with node" -msgstr "Nodo de almacenamiento" +msgid "Screen Width (in pixels)" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:167 -#, fuzzy -msgid "Task forced to start" -msgstr "Gestión de tareas" +msgid "Search" +msgstr "Búsqueda" -#: lib/pages/taskmanagementpage.class.php:172 #, fuzzy -msgid "Force task to start" -msgstr "Forzar" +msgid "Search Base DN" +msgstr "Búsqueda" -#: lib/pages/taskmanagementpage.class.php:426 #, fuzzy -msgid "All Groups" -msgstr "Todos los grupos de almacenamiento" +msgid "Search DN" +msgstr "Búsqueda" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" +msgid "Search DN did not return any results" msgstr "" -#: lib/pages/taskmanagementpage.class.php:529 #, fuzzy -msgid "Invalid Task Type" -msgstr "Tipo de tarea no válida" +msgid "Search Method" +msgstr "Método de despliegue" -#: lib/pages/taskmanagementpage.class.php:534 #, fuzzy -msgid "Invalid image assigned to host" -msgstr "El grupo de almacenamiento asignado no es válido" +msgid "Search Scope" +msgstr "Búsqueda" -#: lib/pages/taskmanagementpage.class.php:544 #, fuzzy -msgid "is protected" -msgstr "Imagen protegida y no puede ser borrada" +msgid "Search pattern" +msgstr "Búsqueda" -#: lib/pages/taskmanagementpage.class.php:550 -msgid "Quick" +msgid "Search results returned false" msgstr "" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" +msgid "Second paramater must be in array(class,function)" msgstr "" -#: lib/pages/taskmanagementpage.class.php:563 #, fuzzy -msgid "Multicast Quick Deploy" -msgstr "Multicast" +msgid "Select Image" +msgstr "Imagen" -#: lib/pages/taskmanagementpage.class.php:564 #, fuzzy -msgid "Group Quick Deploy" -msgstr "Despliegue" +msgid "Select User" +msgstr "Por favor, elija una opción" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." +msgid "Select a cron type" msgstr "" -#: lib/pages/taskmanagementpage.class.php:758 -#, fuzzy -msgid "Invalid task" -msgstr "Login incorrecto" - -#: lib/pages/taskmanagementpage.class.php:801 -#, fuzzy -msgid "Active Multi-cast Tasks" -msgstr "Tareas multicast activas" - -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "" +msgid "Select a valid image" +msgstr "Seleccione una image válida" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" +msgid "Select management level for these hosts" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1132 #, fuzzy -msgid "Host/Group Name" -msgstr "Ya existe un host con este nombre" +msgid "Select management level for this host" +msgstr "Gestión de equipos" -#: lib/pages/taskmanagementpage.class.php:1133 #, fuzzy -msgid "Is Group" -msgstr "Grupo" +msgid "Select/Deselect All" +msgstr "Por favor, elija una opción" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 #, fuzzy -msgid "Task Type" -msgstr "Tipo de tarea no válida" +msgid "Selected Logins" +msgstr "Añadir equipos seleccionados" -#: lib/pages/taskmanagementpage.class.php:1204 -#, fuzzy -msgid "All snapins" -msgstr "Exportar snapin" +msgid "Selected groups's current activity" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:1208 #, fuzzy -msgid "Invalid snapin" -msgstr "Login incorrecto" +msgid "Selected hosts approved successfully" +msgstr "Borrar equipos seleccionados" -#: lib/pages/taskmanagementpage.class.php:1210 #, fuzzy -msgid "Snapin to be installed" -msgstr "Plugins instalados" +msgid "Selected hosts deleted successfully" +msgstr "Borrado con éxito" -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -#, fuzzy -msgid "group" -msgstr "Grupo" +msgid "Selected node's disk usage" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -#, fuzzy -msgid "host" -msgstr "Equipo" +msgid "Serial" +msgstr "" -#: lib/pages/usermanagementpage.class.php:52 -msgid "Change password" +msgid "Serial Number" msgstr "" -#: lib/pages/usermanagementpage.class.php:56 -#, fuzzy -msgid "API Settings" -msgstr "Configuración de FOG" +msgid "Server Shell" +msgstr "" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 -msgid "Friendly Name" -msgstr "Alias" +#, fuzzy +msgid "Server information" +msgstr "Información de hardware" -#: lib/pages/usermanagementpage.class.php:63 #, fuzzy -msgid "No friendly name defined" -msgstr "Alias" +msgid "Server information at a glance." +msgstr "Información de hardware" -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" -msgstr "" +msgid "Service" +msgstr "Servicio" + +msgid "Service Configuration" +msgstr "Configuración de servicios" -#: lib/pages/usermanagementpage.class.php:100 #, fuzzy -msgid "Edit User" -msgstr "Usuario" +msgid "Service Master" +msgstr "Servicio" -#: lib/pages/usermanagementpage.class.php:159 #, fuzzy -msgid "New User" -msgstr "Usuario" +msgid "Service Setting Update Failed" +msgstr "Fallo al actualziar la base de datos" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 #, fuzzy -msgid "User Name" -msgstr "Usuario" +msgid "Service Setting Update Success" +msgstr "Rol actualizado con éxito" + +#, fuzzy +msgid "Service Start" +msgstr "Servicio" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 #, fuzzy -msgid "User Password" -msgstr "Usuario" +msgid "Service Status" +msgstr "Servicio" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 #, fuzzy -msgid "User Password (confirm)" -msgstr "Gestión de usuarios" +msgid "Service Tag" +msgstr "Servicio" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 #, fuzzy -msgid "User API Enabled" -msgstr "Habilitado" +msgid "Service general" +msgstr "Servicio" -#: lib/pages/usermanagementpage.class.php:223 #, fuzzy -msgid "Create user?" -msgstr "Usuario" +msgid "Service update failed" +msgstr "Fallo al actualizar" -#: lib/pages/usermanagementpage.class.php:283 #, fuzzy -msgid "A user name is required!" -msgstr "%s es obligatorio" +msgid "Session Name" +msgstr "Nombre" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" +msgid "Session altered improperly" msgstr "" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" +msgid "Session name cannot be the same as an existing hostname" msgstr "" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" +msgid "Session timeout" msgstr "" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" +#, fuzzy +msgid "Session with that name already exists" +msgstr "¡Ya existe un rol con este nombre!" + +msgid "Set Failed" msgstr "" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" +msgid "Set failed" msgstr "" -#: lib/pages/usermanagementpage.class.php:304 -#, fuzzy -msgid "A username already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Setting Key" +msgstr "" -#: lib/pages/usermanagementpage.class.php:309 -#, fuzzy -msgid "A password is required!" -msgstr "Campo obligatorio está vacio" +msgid "Setting logout to one second prior to next login" +msgstr "" -#: lib/pages/usermanagementpage.class.php:321 -#, fuzzy -msgid "Add user failed!" -msgstr "¡Error al añadir un rol!" +msgid "Settings" +msgstr "Configuración" -#: lib/pages/usermanagementpage.class.php:327 #, fuzzy -msgid "User added!" -msgstr "¡Rol añadido!" +msgid "Settings Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/usermanagementpage.class.php:328 #, fuzzy -msgid "User Create Success" -msgstr "Rol creado con éxito" +msgid "Settings Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/usermanagementpage.class.php:336 #, fuzzy -msgid "User Create Fail" -msgstr "Error al crear el rol" +msgid "Settings successfully stored!" +msgstr "Configuración de FOG" -#: lib/pages/usermanagementpage.class.php:363 -#, fuzzy -msgid "User General" -msgstr "Usuario" +msgid "Should anything go wrong" +msgstr "" -#: lib/pages/usermanagementpage.class.php:392 -#, fuzzy -msgid "Update General?" -msgstr "Actualizar" +msgid "Shutdown" +msgstr "" -#: lib/pages/usermanagementpage.class.php:455 #, fuzzy -msgid "User Change Password" -msgstr "Gestión de usuarios" +msgid "Shutdown after deploy" +msgstr "Despliegue" -#: lib/pages/usermanagementpage.class.php:481 #, fuzzy -msgid "Update Password?" -msgstr "Actualizar" +msgid "Shutdown after install" +msgstr "Instalar plugins" -#: lib/pages/usermanagementpage.class.php:535 -#, fuzzy -msgid "User API Settings" -msgstr "Configuración de FOG" +msgid "Signed" +msgstr "" -#: lib/pages/usermanagementpage.class.php:557 -#, fuzzy -msgid "User API Token" -msgstr "Usuario" +msgid "Site" +msgstr "" -#: lib/pages/usermanagementpage.class.php:573 #, fuzzy -msgid "Update API?" -msgstr "Actualizar" +msgid "Site Association" +msgstr "Asociar Regla" -#: lib/pages/usermanagementpage.class.php:667 #, fuzzy -msgid "A user already exists with this name" -msgstr "Ya existe un host con este nombre" +msgid "Site Control Management" +msgstr "Gestión de control de acceso" -#: lib/pages/usermanagementpage.class.php:728 #, fuzzy -msgid "User update failed!" -msgstr "Fallo al actualizar" +msgid "Site Create Fail" +msgstr "Error al crear el rol" -#: lib/pages/usermanagementpage.class.php:733 #, fuzzy -msgid "User updated!" -msgstr "Usuario" +msgid "Site Create Success" +msgstr "Rol creado con éxito" -#: lib/pages/usermanagementpage.class.php:734 #, fuzzy -msgid "User Update Success" -msgstr "Rol actualizado con éxito" +msgid "Site Description" +msgstr "Descripción" -#: lib/pages/usermanagementpage.class.php:742 -#, fuzzy -msgid "User Update Fail" -msgstr "Error al actualizar el rol" +msgid "Site General" +msgstr "" -#: lib/pages/processlogin.class.php:161 #, fuzzy -msgid "Login failed" -msgstr "Error al cargar" +msgid "Site Name" +msgstr "Nombre" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 #, fuzzy -msgid "username" -msgstr "Usuario" - -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "error al loguearse" +msgid "Site Update Fail" +msgstr "Error al actualizar el rol" -#: lib/pages/processlogin.class.php:185 #, fuzzy -msgid "Login accepted" -msgstr "Fecha de login" +msgid "Site Update Success" +msgstr "Rol actualizado con éxito" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" +msgid "Site Updated!" msgstr "" -#: lib/pages/processlogin.class.php:246 #, fuzzy -msgid "FOG Project" -msgstr "Configuración de FOG" +msgid "Site added!" +msgstr "¡Rol añadido!" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 -msgid "Access Controls" +msgid "Site update failed!" msgstr "" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 -msgid "Role" -msgstr "Rol" - -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -msgid "User Access Control" +msgid "Sites" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -msgid "Export Accesscontrols" +msgid "Size" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 -msgid "Import Accesscontrols" +msgid "Slack Accounts" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 -msgid "Rule Association" -msgstr "Asociar Regla" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 -msgid "Role Name" -msgstr "Nombre del rol" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -msgid "Rule type" -msgstr "Tipo de regla" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" -msgstr "Valor de la regla" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 #, fuzzy -msgid "Parent Node" -msgstr "Nodo" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, php-format -msgid "List all roles" -msgstr "Listar todos los roles" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, php-format -msgid "Add new role" -msgstr "Añadir nuevo rol" +msgid "Slack Management" +msgstr "Gestión de tareas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, php-format -msgid "List all rules" -msgstr "Listar todas las reglas" +msgid "Smart Installer" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, php-format -msgid "Add new rule" -msgstr "Añadir nueva regla" +msgid "Snapin" +msgstr "Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 -msgid "Role Description" -msgstr "Descripción del rol" +#, fuzzy +msgid "Snapin Args" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -msgid "New Role" -msgstr "Nuevo rol" +#, fuzzy +msgid "Snapin Arguments" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -msgid "Create New Access Control Role" -msgstr "Crear un nuevo rol de acceso" +#, fuzzy +msgid "Snapin Arguments Hidden" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 -msgid "A name is required!" +msgid "Snapin Client" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -msgid "A role already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -msgid "Add role failed!" -msgstr "¡Error al añadir un rol!" +#, fuzzy +msgid "Snapin Command" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -msgid "Role added!" -msgstr "¡Rol añadido!" +#, fuzzy +msgid "Snapin Create Fail" +msgstr "Error al crear el rol" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 -msgid "Role Create Success" +#, fuzzy +msgid "Snapin Create Success" msgstr "Rol creado con éxito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 -msgid "Role Create Fail" -msgstr "Error al crear el rol" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 #, fuzzy -msgid "Access Control Role General" -msgstr "Crear un nuevo rol de acceso" +msgid "Snapin Created" +msgstr "Creado por" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -msgid "Role update failed!" -msgstr "Error al actualizar el rol!" +#, fuzzy +msgid "Snapin Creation Date" +msgstr "Fecha" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -msgid "Role updated!" -msgstr "Rol Actualizado!" +#, fuzzy +msgid "Snapin Creation Time" +msgstr "Fecha ya existe" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 -msgid "Role Update Success" -msgstr "Rol actualizado con éxito" +#, fuzzy +msgid "Snapin Description" +msgstr "Descripción" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 -msgid "Role Update Fail" -msgstr "Error al actualizar el rol" +#, fuzzy +msgid "Snapin Enabled" +msgstr "Habilitado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 -msgid "Access Control Rules" -msgstr "Reglas de acceso" +#, fuzzy +msgid "Snapin File" +msgstr "Archivo" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -msgid "Parent" -msgstr "" +#, fuzzy +msgid "Snapin File (exists)" +msgstr "Archivo" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 -msgid "Access Control Rule" -msgstr "Reglas de acceso" +#, fuzzy +msgid "Snapin General" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 -msgid "New Rule" -msgstr "Nueva regla" +#, fuzzy +msgid "Snapin Hash" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 -msgid "Rule Type" -msgstr "Tipo de regla" +msgid "Snapin History" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 #, fuzzy -msgid "Node Parent" -msgstr "Nodo" +msgid "Snapin ID" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 -msgid "Rule Value" -msgstr "Valor" +#, fuzzy +msgid "Snapin Locations" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 -msgid "Create Rule?" -msgstr "¿Crear una regla?" +msgid "Snapin Log" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 -msgid "A rule already exists with this name." -msgstr "Ya existe una regla con este nombre." +msgid "Snapin Management" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 -msgid "Add rule failed!" -msgstr "Fallo al añadir una regla!" +#, fuzzy +msgid "Snapin Name" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 -msgid "Rule added!" -msgstr "¡Regla añadida!" +#, fuzzy +msgid "Snapin Pack" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 -msgid "Rule Create Success" -msgstr "Regla creada con éxito" +#, fuzzy +msgid "Snapin Pack Arguments" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 -msgid "Rule Create Fail" -msgstr "Fallo al crear la regla" +#, fuzzy +msgid "Snapin Pack File" +msgstr "Archivo" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 #, fuzzy -msgid "Access Control Rule General" -msgstr "Reglas de acceso" +msgid "Snapin Pack Template" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "Fallo al actualizar" +#, fuzzy +msgid "Snapin Path" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 -msgid "Rule updated!" -msgstr "¡Regla actualizada!" +#, fuzzy +msgid "Snapin Protected" +msgstr "Snapin protegido y no puede ser borrado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 -msgid "Rule Update Success" -msgstr "Regla actualizada con éxito" +#, fuzzy +msgid "Snapin Replicator" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 #, fuzzy -msgid "Rule Update Fail" -msgstr "Error al actualizar el rol" +msgid "Snapin Return Code" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 #, fuzzy -msgid "Fail to destroy" -msgstr "Error al crear el rol" +msgid "Snapin Return Detail" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 -msgid "Rule deleted successfully!" -msgstr "Borrado con éxito!" +#, fuzzy +msgid "Snapin Run With" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 #, fuzzy -msgid "Rule Delete Success" -msgstr "Borrado con éxito" +msgid "Snapin Run With Args" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 #, fuzzy -msgid "Rule Delete Fail" -msgstr "Fallo al crear la regla" +msgid "Snapin Run With Argument" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 #, fuzzy -msgid "Rule Name" -msgstr "Ya existe una regla con este nombre" +msgid "Snapin State" +msgstr "Estado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 #, fuzzy -msgid "Rule Membership" -msgstr "Miembros" +msgid "Snapin Storage Groups" +msgstr "Todos los grupos de almacenamiento" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 -msgid "Check here to see what rules can be added" +msgid "Snapin Task is invalid" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 #, fuzzy -msgid "Add Rules" -msgstr "Listar todas las reglas" +msgid "Snapin Template" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 #, fuzzy -msgid "Add selected rules" -msgstr "Añadir equipos seleccionados" +msgid "Snapin Timeout (seconds)" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 #, fuzzy -msgid "Remove Accesscontrol Rules" -msgstr "Listar todas las reglas" +msgid "Snapin Transfer Log" +msgstr "Visor de logs" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 #, fuzzy -msgid "Remove selected rules" -msgstr "Borrar equipos seleccionados" +msgid "Snapin Type" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 #, fuzzy -msgid "No role selected" -msgstr "Añadir equipos seleccionados" +msgid "Snapin Update Fail" +msgstr "Error al actualizar el rol" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 #, fuzzy -msgid "No rule selected" -msgstr "Añadir equipos seleccionados" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 -msgid "Associate rule failed!" -msgstr "Fallo al añadir una regla!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 -msgid "Rule associate success!" -msgstr "Regla creada con éxito!" +msgid "Snapin Update Success" +msgstr "Rol actualizado con éxito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 #, fuzzy -msgid "Rule Associate Success" -msgstr "Regla creada con éxito" +msgid "Snapin Used" +msgstr "Tareas de Snapin activas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 #, fuzzy -msgid "Rule Associate Fail" -msgstr "Fallo al crear la regla" +msgid "Snapin added!" +msgstr "¡Rol añadido!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 -#, fuzzy -msgid "User name" -msgstr "Usuario" +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "" +"El archivo Snapin es demasiado grande, aumente post_max_size en php.ini." -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 -msgid "Check here to see what users can be added" +msgid "Snapin is invalid" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -msgid "Add Users" -msgstr "Añadir usuarios" +msgid "Snapin is protected and cannot be deleted" +msgstr "Snapin protegido y no puede ser borrado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -msgid "Add selected users" -msgstr "Añadir usuarios seleccionados" +#, fuzzy +msgid "Snapin task not completed" +msgstr "Gestión de snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 -msgid "Remove Users" -msgstr "Eliminar usuarios" +#, fuzzy +msgid "Snapin to be installed" +msgstr "Plugins instalados" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 -msgid "Remove selected users" -msgstr "Borrar usuarios seleccionados" +#, fuzzy +msgid "Snapin update failed!" +msgstr "Fallo al actualizar" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 #, fuzzy -msgid "Capone Deploy" -msgstr "Despliegue" +msgid "Snapin updated!" +msgstr "Gestión de snapin" -#: lib/plugins/ldap/class/ldap.class.php:107 -msgid "Function does not exist" -msgstr "" +msgid "Snapins" +msgstr "Snapins" -#: lib/plugins/ldap/class/ldap.class.php:147 -msgid "Port is not valid ldap/ldaps port" -msgstr "" +msgid "Snapins Are already deployed to this host" +msgstr "Los spanin ya han sido desplegados a este equipo" -#: lib/plugins/ldap/class/ldap.class.php:295 -msgid "We cannot connect to LDAP server" +msgid "So if you are trying to transmit to remote node A" +msgstr "Si estás intentando transmitir a un nodo remoto A" + +msgid "Somebody will be able to help in some form" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" +msgid "Space variable must be boolean" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" +msgid "Specified download URL not allowed!" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:398 -msgid "Cannot bind to the LDAP server" +msgid "Start" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" +#, fuzzy +msgid "Start Date" +msgstr "Fecha" + +#, fuzzy +msgid "Start Multicast Session" +msgstr "Multicast" + +msgid "Start Session" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 #, fuzzy -msgid "Search DN" -msgstr "Búsqueda" +msgid "Start Time" +msgstr "Fecha ya existe" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 -msgid "Filter" +msgid "Started By:" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:460 -msgid "User was not authorized by the LDAP server" +msgid "Started sync for" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:461 -#, fuzzy -msgid "User DN" -msgstr "Usuario" +msgid "Starting Image Replication" +msgstr "Iniciando replicación de imagen" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" +msgid "Starting Image Size Service" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" +msgid "Starting Snapin Hashing Service" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" +msgid "Starting Snapin Replication" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:574 -#, fuzzy -msgid "No access is allowed" -msgstr "No permitido aquí" +msgid "Starting Sync Actions" +msgstr "Iniciando tareas de sincronización" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" +msgid "Starting process" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 -#, fuzzy -msgid "Group Search DN" -msgstr "Búsqueda" +msgid "State" +msgstr "Estado" + +msgid "Status" +msgstr "Estado" -#: lib/plugins/ldap/class/ldap.class.php:848 #, fuzzy -msgid "Search Method" -msgstr "Método de despliegue" +msgid "Stop Task" +msgstr "Tarea" -#: lib/plugins/ldap/class/ldap.class.php:852 -msgid "Result" -msgstr "" +msgid "Storage" +msgstr "Almacenamiento" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 -msgid "LDAP Servers" -msgstr "" +msgid "Storage Group" +msgstr "Grupo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 #, fuzzy -msgid "LDAP Management" -msgstr "Gestión" +msgid "Storage Group Activity" +msgstr "Añadir grupo de almacenamiento" + +msgid "Storage Group Already Exists" +msgstr "El grupo de almacenamiento ya existe" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 #, fuzzy -msgid "Export LDAPs" -msgstr "Exportar" +msgid "Storage Group Create Fail" +msgstr "Error al crear el rol" + +#, fuzzy +msgid "Storage Group Create Success" +msgstr "Grupo de almacenamiento" + +msgid "Storage Group Created" +msgstr "Grupo de almacenamiento creado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 #, fuzzy -msgid "Import LDAPs" -msgstr "Importar equipos" +msgid "Storage Group Description" +msgstr "Descripción del nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 #, fuzzy -msgid "Plugin Configuration" -msgstr "Configuración" +msgid "Storage Group General" +msgstr "Añadir grupo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 #, fuzzy -msgid "LDAP Connection Name" -msgstr "Nombre de imagen" +msgid "Storage Group Name" +msgstr "Nombre del nodeo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 #, fuzzy -msgid "LDAP Server Address" -msgstr "Lista de MAC Address" +msgid "Storage Group Update Fail" +msgstr "Error al actualizar el rol" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 #, fuzzy -msgid "LDAP Connection Name" -msgstr "Nombre de imagen" +msgid "Storage Group Update Success" +msgstr "Rol actualizado con éxito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -#, fuzzy -msgid "LDAP Server Description" -msgstr "Descripción" +msgid "Storage Group Updated" +msgstr "Grupo de almacenamiento actualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -#, fuzzy -msgid "LDAP Server" -msgstr "No hay imágenes en este servidor" +msgid "Storage Group deleted" +msgstr "Grupo de almaenamiento borrado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 #, fuzzy -msgid "Admin Group" -msgstr "Grupo" +msgid "Storage Group update failed!" +msgstr "Error al eliminar el grupo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 #, fuzzy -msgid "New LDAP Server" -msgstr "No hay imágenes en este servidor" +msgid "Storage Group updated!" +msgstr "Grupo de almacenamiento actualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "" +msgid "Storage Management" +msgstr "Gestión de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" -msgstr "" +msgid "Storage Node" +msgstr "Nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" -msgstr "" +#, fuzzy +msgid "Storage Node Create Fail" +msgstr "Error al crear el rol" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 #, fuzzy -msgid "LDAP Server Port" -msgstr "No hay imágenes en este servidor" +msgid "Storage Node Create Success" +msgstr "Rol creado con éxito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" -msgstr "" +msgid "Storage Node Created" +msgstr "Nodo de almacenamiento creado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 -#, fuzzy -msgid "Search Base DN" -msgstr "Búsqueda" +msgid "Storage Node Description" +msgstr "Descripción del nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 #, fuzzy -msgid "Mobile Group" -msgstr "Grupo" +msgid "Storage Node Disk Usage" +msgstr "Añadir nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -msgid "Initial Template" -msgstr "" +#, fuzzy +msgid "Storage Node General" +msgstr "Añadir nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 -msgid "Pick a template" -msgstr "" +msgid "Storage Node IP" +msgstr "IP Nodo Almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "" +#, fuzzy +msgid "Storage Node Interface" +msgstr "Añadir nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" -msgstr "" +msgid "Storage Node Max Clients" +msgstr "Nodo Almacenamiento Clientes Max" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" -msgstr "" +msgid "Storage Node Name" +msgstr "Nombre del nodeo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 #, fuzzy -msgid "User Name Attribute" -msgstr "Nombre" +msgid "Storage Node Password" +msgstr "Añadir nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 #, fuzzy -msgid "Group Member Attribute" -msgstr "Grupo" +msgid "Storage Node Protocol" +msgstr "IP Nodo Almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 #, fuzzy -msgid "Search Scope" -msgstr "Búsqueda" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 -msgid "Bind Password" -msgstr "" +msgid "Storage Node Update Fail" +msgstr "Error al actualizar el rol" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 #, fuzzy -msgid "Create New LDAP" -msgstr "Crear Nuevo %s" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "Imposible de añadir" +msgid "Storage Node Update Success" +msgstr "Rol actualizado con éxito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "" +msgid "Storage Node Updated" +msgstr "Nodo de almacenamiento actualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "" +#, fuzzy +msgid "Storage Node Username" +msgstr "Nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -msgid "Please enter a Search Base DN" -msgstr "" +#, fuzzy +msgid "Storage Node added!" +msgstr "Añadir nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 -msgid "Please select an LDAP port to use" -msgstr "" +#, fuzzy +msgid "Storage Node already exists" +msgstr "El grupo de almacenamiento ya existe" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 -msgid "Please select a valid ldap port" -msgstr "" +msgid "Storage Node deleted" +msgstr "Nodo de almacenamiento borrado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -msgid "Please Enter an admin or mobile lookup name" -msgstr "" +#, fuzzy +msgid "Storage Node update failed!" +msgstr "Error al eliminar el nodo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 -msgid "Please enter a User Name Attribute" -msgstr "" +#, fuzzy +msgid "Storage Node updated!" +msgstr "Nodo de almacenamiento actualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 -msgid "Please enter a Group Member Attribute" +msgid "String must be a string" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 #, fuzzy -msgid "A LDAP setup already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Subnet Groups" +msgstr "Grupo" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 #, fuzzy -msgid "Add LDAP server failed!" -msgstr "¡Error al añadir un rol!" +msgid "SubnetGroup General" +msgstr "Añadir grupo de almacenamiento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 -msgid "LDAP Server added!" -msgstr "Servidor LDAP añadido!" +#, fuzzy +msgid "Subnetgroup Create Fail" +msgstr "Error al crear el rol" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 #, fuzzy -msgid "LDAP Create Success" +msgid "Subnetgroup Create Success" msgstr "Rol creado con éxito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 #, fuzzy -msgid "LDAP Create Fail" -msgstr "Error al crear el rol" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 -msgid "LDAP General" -msgstr "" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 -msgid "Update LDAP server failed!" -msgstr "Fallo al actualizar el servidor LDAP!" +msgid "Subnetgroup Management" +msgstr "Gestión de grupos" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 -msgid "LDAP Server updated!" -msgstr "Servidor LDAP actualziado!" +#, fuzzy +msgid "Subnetgroup Update Fail" +msgstr "Error al actualizar el rol" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 #, fuzzy -msgid "LDAP Update Success" +msgid "Subnetgroup Update Success" msgstr "Rol actualizado con éxito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 #, fuzzy -msgid "LDAP Update Fail" -msgstr "Error al actualizar el rol" +msgid "Subnetgroup added!" +msgstr "¡Rol añadido!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 #, fuzzy -msgid "User Filter" -msgstr "Usuario" +msgid "Subnetgroup update failed!" +msgstr "Fallo al actualizar" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 #, fuzzy -msgid "LDAP Ports" -msgstr "No hay imágenes en este servidor" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" - -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "" +msgid "Subnetgroup updated!" +msgstr "Grupo de almacenamiento actualizado" -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" +msgid "Subnets" msgstr "" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" +msgid "Subree and Below" msgstr "" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" +msgid "Subtree Only" msgstr "" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" +msgid "Successful" msgstr "" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" +msgid "Successfully added selected hosts to the group!" msgstr "" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 -#, fuzzy -msgid "Location Association" -msgstr "Asociación de imagen" +msgid "Successfully created" +msgstr "Creado con éxito" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -#, fuzzy -msgid "Location/Deployed" -msgstr "Último despliegue" +msgid "Successfully deleted" +msgstr "Borrado con éxito" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 #, fuzzy -msgid "Host Location" -msgstr "Equipo" +msgid "System Manufacturer" +msgstr "Sistema operativo" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 #, fuzzy -msgid "This setting defines sending the" -msgstr "Este parametro" - -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "" - -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "" - -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "" - -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 -msgid "Default is disabled" -msgstr "" +msgid "System Overview" +msgstr "Sistema operativo" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 #, fuzzy -msgid "Snapin Locations" -msgstr "Gestión de snapin" - -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "" - -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 -msgid "where to download the snapin" -msgstr "" - -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" -msgstr "" - -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" -msgstr "" +msgid "System Product" +msgstr "Sistema operativo" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" -msgstr "" +#, fuzzy +msgid "System Serial" +msgstr "Sistema operativo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 #, fuzzy -msgid "Export Locations" -msgstr "Exportar" +msgid "System Serial Number" +msgstr "Sistema operativo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 #, fuzzy -msgid "Import Locations" -msgstr "Importar impresoras" +msgid "System Tools" +msgstr "Sistema operativo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 #, fuzzy -msgid "Location Name" -msgstr "Nombre" +msgid "System Type" +msgstr "Tipo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "" +#, fuzzy +msgid "System UUID" +msgstr "Sistema operativo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 #, fuzzy -msgid "New Location" -msgstr "Nueva Búsqueda" +msgid "System Uptime" +msgstr "Sistema operativo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "" +#, fuzzy +msgid "System Version" +msgstr "Sistema operativo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 #, fuzzy -msgid "Create New Location" -msgstr "Crear un nuevo rol de acceso" +msgid "TCP/IP" +msgstr "IP Nodo Almacenamiento" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." +msgid "TCP/IP Port Printer" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." +msgid "TX" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." +msgid "Table not defined for this class" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 +msgid "Task" +msgstr "Tarea" + #, fuzzy -msgid "Add location failed!" -msgstr "¡Error al añadir un rol!" +msgid "Task Checkin Date" +msgstr "Tarea" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 #, fuzzy -msgid "Location added!" -msgstr "¡Rol añadido!" +msgid "Task Checkin Time" +msgstr "Fecha ya existe" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 #, fuzzy -msgid "Location Create Success" -msgstr "Rol creado con éxito" +msgid "Task Complete Date" +msgstr "Fecha" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 #, fuzzy -msgid "Location Create Fail" -msgstr "Error al crear el rol" +msgid "Task Complete Time" +msgstr "Completada" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 -msgid "Location General" -msgstr "" +#, fuzzy +msgid "Task ID" +msgstr "Tarea" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "" +msgid "Task Management" +msgstr "Gestión de tareas" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 #, fuzzy -msgid "A group is required for a location" -msgstr "Campo obligatorio está vacio" +msgid "Task Name" +msgstr "Nombre" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -msgid "Location update failed!" +msgid "Task Reboot" +msgstr "Tarea de reinicio" + +msgid "Task State" +msgstr "Estado de la tarea" + +msgid "Task State Create Fail" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 -msgid "Location updated!" +msgid "Task State Create Success" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 -#, fuzzy -msgid "Location Update Success" -msgstr "Rol actualizado con éxito" +msgid "Task State General" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 #, fuzzy -msgid "Location Update Fail" -msgstr "Error al actualizar el rol" +msgid "Task State Management" +msgstr "Gestión de tareas" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" +msgid "Task State Update Fail" msgstr "" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" +msgid "Task State Update Success" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" +msgid "Task State Updated!" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" +msgid "Task State added!" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 +msgid "Task States" +msgstr "Estados de las tareas" + #, fuzzy -msgid "Link New Account" -msgstr "Nueva Búsqueda" +msgid "Task Type" +msgstr "Tipo de tarea no válida" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 #, fuzzy -msgid "Access Token" -msgstr "Reglas de acceso" +msgid "Task Type Create Fail" +msgstr "Tipo de tarea no válida" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 #, fuzzy -msgid "Add Pushbullet Account" -msgstr "Imposible de añadir" +msgid "Task Type Create Success" +msgstr "Rol creado con éxito" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 #, fuzzy -msgid "Account already linked" -msgstr "El directorio ya existe" +msgid "Task Type General" +msgstr "Tipo de tarea no válida" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "" +#, fuzzy +msgid "Task Type Management" +msgstr "Gestión de tareas" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "Error al crear" +#, fuzzy +msgid "Task Type Update Fail" +msgstr "Tipo de tarea no válida" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 #, fuzzy -msgid "Account successfully added!" -msgstr "¡Rol añadido!" +msgid "Task Type Update Success" +msgstr "Tipo de tarea no válida" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 -msgid "Link Pushbullet Account Success" +msgid "Task Type Updated!" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 -msgid "Link Pushbullet Account Fail" +msgid "Task Type added!" msgstr "" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 +msgid "Task Type is not valid" +msgstr "Tipo de tarea no válida" + #, fuzzy -msgid "Site Association" -msgstr "Asociar Regla" +msgid "Task Types" +msgstr "Tarea" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 -msgid "Site" +#, fuzzy +msgid "Task forced to start" +msgstr "Gestión de tareas" + +msgid "Task not created as there are no associated tasks" msgstr "" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 +msgid "Task sent to" +msgstr "" + +msgid "Task started" +msgstr "Tarea iniciada" + #, fuzzy -msgid "Associated Sites" -msgstr "No hay snapin asociados a este equipo" +msgid "Task started for" +msgstr "Tarea iniciada" + +msgid "Task type is not valid" +msgstr "Tipo de tarea no válida" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 #, fuzzy -msgid "Host Site" -msgstr "Equipo" +msgid "Tasked Successfully" +msgstr "Borrado con éxito" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 -msgid "Sites" +msgid "Tasked successfully, click active tasks to view in line." msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 -msgid "Is restricted" -msgstr "" +#, fuzzy +msgid "Tasking" +msgstr "Ya existe una tarea para este host en una tarea programada" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 -msgid "No site" +msgid "Tasking Failed" msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " +msgid "Tasks" +msgstr "Tareas" + +msgid "Team" +msgstr "Equipo" + +msgid "Terminal" msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 -msgid "No Site" +msgid "Terms and Conditions" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 -#, fuzzy -msgid "Export Sites" -msgstr "Exportar" +msgid "Text" +msgstr "Texto" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 -#, fuzzy -msgid "Import Sites" -msgstr "Importar equipos" +msgid "The 'Is Master Node' setting defines which" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 -#, fuzzy -msgid "Hosts Associated" -msgstr "No hay snapin asociados a este equipo" +msgid "The assigned image is protected" +msgstr "La imagen asignada está protegida" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 -#, fuzzy -msgid "Host Associated" -msgstr "No hay snapin asociados a este equipo" +msgid "The below items are only used for the old client." +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 -#, fuzzy -msgid "Site Name" -msgstr "Nombre" +msgid "The clients will checkin with the server from time" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 #, fuzzy -msgid "Site Description" -msgstr "Descripción" +msgid "The following errors occured" +msgstr "Errores" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 #, fuzzy -msgid "New Site" -msgstr "Nuevo" +msgid "The following errors occurred" +msgstr "Errores" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 -#, fuzzy -msgid "Create Site" -msgstr "Crear" +msgid "The image storage group assigned is not valid" +msgstr "El grupo de almacenamiento asignado no es válido" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 #, fuzzy -msgid "A site already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "The installers for the fog client" +msgstr "Configuración de FOG" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 -#, fuzzy -msgid "Add site failed!" -msgstr "¡Error al añadir un rol!" +msgid "The key will be assigned to registered hosts when a" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 #, fuzzy -msgid "Site added!" -msgstr "¡Rol añadido!" +msgid "The node trying to be used is currently" +msgstr "Si estás intentando transmitir a un nodo remoto A" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 -#, fuzzy -msgid "Site Create Success" -msgstr "Rol creado con éxito" +msgid "The old client is what was distributed with" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 -#, fuzzy -msgid "Site Create Fail" -msgstr "Error al crear el rol" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 -msgid "Site General" +msgid "The old client iswhat was distributed with" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 -msgid "A site alread exists with this name!" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "" + +#, fuzzy +msgid "The primary mac associated is" +msgstr "Grupo principal" + +msgid "The settings tend to be global which affects all hosts." msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 -msgid "Site update failed!" +msgid "The storage groups associated storage node is not valid" msgstr "" +"El nodo de almacenamiento asociado al grupo de almacenamiento no es válido" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 -msgid "Site Updated!" +msgid "The uploaded file exceeds the max_file_size" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -#, fuzzy -msgid "Site Update Success" -msgstr "Rol actualizado con éxito" - -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 -#, fuzzy -msgid "Site Update Fail" -msgstr "Error al actualizar el rol" - -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -#, fuzzy -msgid "Host Membership" -msgstr "Miembros" +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -msgid "Check here to see what hosts can be added" +msgid "The uploaded file was only partially uploaded" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 -msgid "Add Hosts" -msgstr "Añadir equipos" +msgid "There are" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 -msgid "Add selected hosts" -msgstr "Añadir equipos seleccionados" +msgid "There are currently" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 -msgid "Remove Hosts" -msgstr "Borrar equipos" +msgid "There are many reasons why this could be the case" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -msgid "Remove selected hosts" -msgstr "Borrar equipos seleccionados" +msgid "There are no groups on this server" +msgstr "No hay grupo en este servidor" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" +msgid "There are no hosts to task in this group" msgstr "" -#: lib/plugins/slack/class/slack.class.php:35 +msgid "There are no images on this server" +msgstr "No hay imágenes en este servidor" + #, fuzzy -msgid "User call is invalid" -msgstr "Gestión de usuarios" +msgid "There are no locations on this server" +msgstr "No hay snapin en este servidor" -#: lib/plugins/slack/class/slackhandler.class.php:128 #, fuzzy -msgid "Invalid method called" -msgstr "Método de despliegue" +msgid "There are no other members to sync to" +msgstr "Miembros" -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 -msgid "Completed imaging" -msgstr "" +msgid "There are no snapins associated with this host" +msgstr "No hay snapin asociados a este equipo" -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" +msgid "There are no snapins on this server" +msgstr "No hay snapin en este servidor" + +msgid "There are open slots" msgstr "" -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" +msgid "There is a host in a tasking" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" +msgid "There is nothing to replicate" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" -msgstr "Equipo" +msgid "There were errors during import!" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "Creado por" +msgid "There you can download utilities such as FOG Prep" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -#, fuzzy -msgid "User/Channel Name" -msgstr "Nombre" +msgid "This MAC Belongs to another host" +msgstr "Esta MAC pertenece a otro equipo" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -#, fuzzy -msgid "User/Channel to post to" -msgstr "Gestión de usuarios" +msgid "This area will allow the host checking in to tell" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -#, fuzzy -msgid "Add Slack Account" -msgstr "Imposible de añadir" +msgid "This file will only work on Windows" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -#, fuzzy -msgid "Must use an" -msgstr "Extreme la precaución con esta configuración" +msgid "This host already exists" +msgstr "Ya existe este equipo" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 -msgid "to signify if this is a user or channel to send to" +msgid "This installation process may take a few minutes" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" +msgid "This is a cron style task that should not run now." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" +msgid "This is a cron style task that should run now." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" +msgid "This is a single run task that should not run now." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 -msgid "Link Slack Account Success" +msgid "This is a single run task that should run now." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 -msgid "Link Slack Account Fail" +msgid "This is especially useful if you have multiple" msgstr "" -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 -#, fuzzy -msgid "Subnet Groups" -msgstr "Grupo" +msgid "This is ipxe script commands to operate with" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 #, fuzzy -msgid "Export Subnetgroups" -msgstr "Exportar grupos" +msgid "This is not the master for this group" +msgstr "Este no es el grupo principal" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 -#, fuzzy -msgid "Import Subnetgroups" -msgstr "Importar grupos" +msgid "This is not the primary group" +msgstr "Este no es el grupo principal" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" +msgid "This is only here to maintain old client operations" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -#, fuzzy -msgid "New Subnetgroup" -msgstr "Grupo de almacenamiento" - -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 -#, fuzzy -msgid "Create New SubnetGroup?" -msgstr "Crear un nuevo grupo" +msgid "This is set in seconds and causes the default option" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 -#, fuzzy -msgid "A subnetgroup already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "This is the recommended installer to use now" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 -#, fuzzy -msgid "A group is required!" -msgstr "Nombre" +msgid "This is useful in the case of slow links between" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." +msgid "This item allows you to edit all of the iPXE Menu items as you" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -msgid "Please enter a valid CIDR subnets comma separated list" +msgid "This module did not work past Windows XP" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -#, fuzzy -msgid "Add Subnetgroup failed!" -msgstr "¡Error al añadir un rol!" +msgid "This module did not work past Windows XP due" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -#, fuzzy -msgid "Subnetgroup added!" -msgstr "¡Rol añadido!" +msgid "This module did not work past Windows XP due to" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 -#, fuzzy -msgid "Subnetgroup Create Success" -msgstr "Rol creado con éxito" +msgid "This module did not work past Windows XP due to UAC." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -#, fuzzy -msgid "Subnetgroup Create Fail" -msgstr "Error al crear el rol" +msgid "This module has been replaced in the new client" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -#, fuzzy -msgid "SubnetGroup General" -msgstr "Añadir grupo de almacenamiento" +msgid "This module has since been replaced with Power Management." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -#, fuzzy -msgid "A subnet group already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "This module is only used" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -#, fuzzy -msgid "A group must be selected." -msgstr "Nombre de imagen" +msgid "This module is only used on the old client" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -#, fuzzy -msgid "Please enter a valid CIDR subnet." -msgstr "Por favor, elija una opción" +msgid "This module is only used on the old client." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "This node does not appear to be online" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -#, fuzzy -msgid "Subnetgroup update failed!" -msgstr "Fallo al actualizar" +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 #, fuzzy -msgid "Subnetgroup updated!" -msgstr "Grupo de almacenamiento actualizado" +msgid "This plugin is not installed" +msgstr "Plugins instalados" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 -#, fuzzy -msgid "Subnetgroup Update Success" -msgstr "Rol actualizado con éxito" +msgid "This section allows you to customize or alter" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 -#, fuzzy -msgid "Subnetgroup Update Fail" -msgstr "Error al actualizar el rol" +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" +msgstr "" -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." +msgid "This section allows you to update" msgstr "" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "Estados de las tareas" +msgid "This section allows you to update the modules and" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 -msgid "Export Task States" +msgid "This section allows you to uploade user" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -msgid "Import Task States" +msgid "This servers ip(s)" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "Estado de la tarea" +msgid "This setting" +msgstr "Este parametro" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "Icono" +#, fuzzy +msgid "This setting defines sending the" +msgstr "Este parametro" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "" +msgid "This setting limits the bandwidth for replication between nodes" +msgstr "Esta configuración limita el ancho de banda de replicación entre nodos" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 -msgid "Create Task state" +msgid "This setting turns off all FOG Printer Management" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 -msgid "A task state already exists with this name!" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -msgid "Add task state failed!" -msgstr "Error al crear tarea!" - -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 -msgid "Task State added!" +msgid "This will allow you to configure how services" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 -msgid "Task State Create Success" +msgid "Those images should be activated with the associated" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 -msgid "Task State Create Fail" -msgstr "" +msgid "Time" +msgstr "Fecha" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 -msgid "Task State General" +msgid "Time Already Exists" +msgstr "Fecha ya existe" + +msgid "Timeout" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 -msgid "Update task state failed!" +msgid "Title must be a string" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 -msgid "Task State Updated!" +msgid "To be released only by" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 -msgid "Task State Update Success" +msgid "To get started please select an item from the menu." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 -msgid "Task State Update Fail" +msgid "To perform an imaging task an image must be assigned" msgstr "" -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." +msgid "To view a report, select an item from the menu" msgstr "" -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -#, fuzzy -msgid "Task Types" -msgstr "Tarea" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 -#, fuzzy -msgid "Export Task Types" -msgstr "Exportar" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task Types" -msgstr "Importar configuración" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -#, fuzzy -msgid "Access" -msgstr "Crear un nuevo rol de acceso" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" +msgid "Toggle Navigation" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -#, fuzzy -msgid "New Task Type" -msgstr "Tipo de tarea no válida" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" +msgid "Too many MACs" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 -msgid "Init" +msgid "Total Disk Space" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -#, fuzzy -msgid "Is Advanced" -msgstr "Avanzadas" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" +msgid "Total Memory" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -#, fuzzy -msgid "Create Task type" -msgstr "Error al crear tarea" +msgid "Total Rows" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -#, fuzzy -msgid "A task type already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Transmit" +msgstr "Transmitir" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -msgid "Add task type failed!" +msgid "Trying Snapin hash for" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 -msgid "Task Type added!" +msgid "Trying image size for" +msgstr "Intentando tamaño de imagen para" + +msgid "Txt must be a string" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -#, fuzzy -msgid "Task Type Create Success" -msgstr "Rol creado con éxito" +msgid "Type" +msgstr "Tipo" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -#, fuzzy -msgid "Task Type Create Fail" -msgstr "Tipo de tarea no válida" +msgid "UAC introduced in Vista and up" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -#, fuzzy -msgid "Task Type General" -msgstr "Tipo de tarea no válida" +msgid "Unable to Authenticate" +msgstr "Imposible de autenticar" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -msgid "Task Type Updated!" +msgid "Unable to determine plugin details." msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 -#, fuzzy -msgid "Task Type Update Success" -msgstr "Tipo de tarea no válida" +msgid "Unable to find basic information!" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 #, fuzzy -msgid "Task Type Update Fail" -msgstr "Tipo de tarea no válida" +msgid "Unable to find master Storage Node" +msgstr "No se puede encontrar el nodo de almacenamiento:" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" +msgid "Unable to get server infromation!" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" +msgid "Unable to open file for reading" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" +msgid "Unauthorized" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:31 -msgid "key" +msgid "Unavailable" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" +msgid "Unicaset" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" +msgid "Unit of time must be a string" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "" +msgid "Unknown" +msgstr "Desconocida" -#: lib/plugins/windowskey/config/plugin.config.php:36 -msgid "with the host" +msgid "Unknown upload error occurred" msgstr "" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 -#, fuzzy -msgid "Windows Key for Image" -msgstr "Asociación de imagen" - -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 -msgid "Windows Keys" -msgstr "" +msgid "Update" +msgstr "Actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 #, fuzzy -msgid "Export Windows Keys" -msgstr "Exportar configuración" +msgid "Update API?" +msgstr "Actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 #, fuzzy -msgid "Import Windows Keys" -msgstr "Importar configuración" +msgid "Update Default Printer" +msgstr "Impresora" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 #, fuzzy -msgid "Key Name" -msgstr "Nombre" +msgid "Update General?" +msgstr "Actualizar" + +msgid "Update LDAP server failed!" +msgstr "Fallo al actualizar el servidor LDAP!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 #, fuzzy -msgid "New Windows Key" -msgstr "Nueva Búsqueda" +msgid "Update MACs" +msgstr "Actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 #, fuzzy -msgid "Windows Key Name" -msgstr "Nombre de imagen" +msgid "Update PM Values" +msgstr "Actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 #, fuzzy -msgid "Windows Key Description" -msgstr "Descripción" +msgid "Update Password?" +msgstr "Actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 -msgid "Windows Key" +msgid "Update Windows Key failed!" +msgstr "Fallo al actualizar la base de datos!" + +msgid "Update auto-logout time" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 #, fuzzy -msgid "Create New Key" -msgstr "Crear Nuevo %s" +msgid "Update default printer" +msgstr "Impresora" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 #, fuzzy -msgid "A Windows Key already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Update display resolution" +msgstr "Pantalla" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 #, fuzzy -msgid "Add Windows Key failed!" -msgstr "¡Error al añadir un rol!" +msgid "Update module configurations" +msgstr "Fallo al actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 #, fuzzy -msgid "Windows Key added!" -msgstr "¡Rol añadido!" +msgid "Update not required!" +msgstr "%s es obligatorio" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 #, fuzzy -msgid "Windows Key Create Success" -msgstr "Rol creado con éxito" +msgid "Update primary group" +msgstr "Grupo principal" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 #, fuzzy -msgid "Windows Key Create Fail" -msgstr "Error al crear el rol" +msgid "Update printer configuration" +msgstr "Configuración" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 -msgid "Windows Key General" +msgid "Update task state failed!" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 -msgid "Update Windows Key failed!" -msgstr "Fallo al actualizar la base de datos!" - -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 -msgid "Windows Key updated!" +#, fuzzy +msgid "Update/Remove Storage Groups" msgstr "" +"El nodo de almacenamiento asociado al grupo de almacenamiento no es válido" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 #, fuzzy -msgid "Windows Key Update Success" -msgstr "Rol actualizado con éxito" +msgid "Update/Remove printers" +msgstr "Actualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 -#, fuzzy -msgid "Windows Key Update Fail" -msgstr "Error al actualizar el rol" +msgid "Upload Reports" +msgstr "Actualizar informes" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 #, fuzzy -msgid "Image Membership" -msgstr "Miembros" +msgid "Upload file" +msgstr "Actualizar informes" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -msgid "Check here to see what images can be added" +msgid "Upload file extension must be, jpg, jpeg, or png" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 -#, fuzzy -msgid "Add selected images" -msgstr "Borrar las imágenes elegidas" - -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 -msgid "Remove Images" -msgstr "Borrar imágenes" - -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 -msgid "Remove selected images" -msgstr "Borrar las imágenes elegidas" - -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 -msgid "WOL Broadcasts" +msgid "Uptime" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 -#, fuzzy -msgid "Export WOLBroadcasts" -msgstr "Exportar" - -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 -#, fuzzy -msgid "Import WOLBroadcasts" -msgstr "Importar configuración" +msgid "Use Group Matching (recommended)" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -#, fuzzy -msgid "Broadcast Name" -msgstr "Nombre" +msgid "Use extreme caution with this setting" +msgstr "Extreme la precaución con esta configuración" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -#, fuzzy -msgid "Broadcast IP" -msgstr "IP Nodo Almacenamiento" +msgid "Use inits and kernels from this node" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -#, fuzzy -msgid "New Broadcast Address" -msgstr "Lista de MAC Address" +msgid "Use the following link to go to the client page." +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -msgid "Create WOL Broadcast?" +msgid "Use the forums to post issues so others" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -#, fuzzy -msgid "A broadcast already exists with this name!" -msgstr "¡Ya existe un rol con este nombre!" +msgid "Use the links below if you need assistance" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 #, fuzzy -msgid "A broadcast address is required" -msgstr "Campo obligatorio está vacio" +msgid "Use this for network installs" +msgstr "Extreme la precaución con esta configuración" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" +msgid "Used" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -#, fuzzy -msgid "Add broadcast failed!" -msgstr "¡Error al añadir un rol!" +msgid "Used Disk Space" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -#, fuzzy -msgid "Broadcast added!" -msgstr "¡Rol añadido!" +msgid "Used Memory" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -#, fuzzy -msgid "Broadcast Create Success" -msgstr "Rol creado con éxito" +msgid "User" +msgstr "Usuario" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 #, fuzzy -msgid "Broadcast Create Fail" -msgstr "Error al crear el rol" +msgid "User API Enabled" +msgstr "Habilitado" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -msgid "WOL Broadcast General" -msgstr "" +#, fuzzy +msgid "User API Settings" +msgstr "Configuración de FOG" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -msgid "A broadcast already exists with this name" -msgstr "" +#, fuzzy +msgid "User API Token" +msgstr "Usuario" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 -msgid "Broadcast update failed!" +msgid "User Access Control" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 -msgid "Broadcast updated!" +msgid "User Agent Changed" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 -#, fuzzy -msgid "Broadcast Update Success" -msgstr "Rol actualizado con éxito" +msgid "User Already Exists" +msgstr "Usuario ya creado" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 #, fuzzy -msgid "Broadcast Update Fail" -msgstr "Error al actualizar el rol" +msgid "User Change Password" +msgstr "Gestión de usuarios" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." +msgid "User Cleanup" msgstr "" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 #, fuzzy -msgid "Host Ext" -msgstr "Lista de equipos" +msgid "User Create Fail" +msgstr "Error al crear el rol" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " -msgstr "" +#, fuzzy +msgid "User Create Success" +msgstr "Rol creado con éxito" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 -msgid "External Links" -msgstr "" +#, fuzzy +msgid "User DN" +msgstr "Usuario" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 #, fuzzy -msgid "Export Host Exts" -msgstr "Exportar equipos" +msgid "User Filter" +msgstr "Usuario" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 #, fuzzy -msgid "Import Host Exts" -msgstr "Importar equipos" +msgid "User General" +msgstr "Usuario" + +msgid "User Management" +msgstr "Gestión de usuarios" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 #, fuzzy -msgid "Host Ext Name" -msgstr "Ya existe un host con este nombre" +msgid "User Name" +msgstr "Usuario" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 #, fuzzy -msgid "Host Ext URL" -msgstr "Equipo" +msgid "User Name Attribute" +msgstr "Nombre" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 #, fuzzy -msgid "Host Ext Variable" -msgstr "Fallo al actualizar" +msgid "User Password" +msgstr "Usuario" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 #, fuzzy -msgid "Create New Host Ext" -msgstr "Crear Nuevo %s" +msgid "User Password (confirm)" +msgstr "Gestión de usuarios" + +msgid "User Tracker" +msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 #, fuzzy -msgid "A hostext already exists with this name!" -msgstr "Ya existe un host con este nombre" +msgid "User Update Fail" +msgstr "Error al actualizar el rol" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 #, fuzzy -msgid "Add ou failed!" -msgstr "¡Error al añadir un rol!" +msgid "User Update Success" +msgstr "Rol actualizado con éxito" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 #, fuzzy -msgid "Hostext added!" +msgid "User added!" msgstr "¡Rol añadido!" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 #, fuzzy -msgid "Hostext Create Success" -msgstr "Rol creado con éxito" +msgid "User call is invalid" +msgstr "Gestión de usuarios" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 #, fuzzy -msgid "Hostext Create Fail" -msgstr "Error al crear el rol" +msgid "User name" +msgstr "Usuario" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 #, fuzzy -msgid "Hostext update failed!" -msgstr "Error al actualizar el rol!" +msgid "User update failed!" +msgstr "Fallo al actualizar" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 #, fuzzy -msgid "Hostext updated!" -msgstr "Equipo" +msgid "User updated!" +msgstr "Usuario" + +msgid "User was not authorized by the LDAP server" +msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 #, fuzzy -msgid "Hostext Update Success" -msgstr "Rol actualizado con éxito" +msgid "User/Channel Name" +msgstr "Nombre" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 #, fuzzy -msgid "Hostext Update Fail" -msgstr "Error al actualizar el rol" +msgid "User/Channel to post to" +msgstr "Gestión de usuarios" -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" -msgstr "" +msgid "Username" +msgstr "Usuario" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" +msgid "Username cannot contain contiguous special characters" msgstr "" -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" +msgid "Username does not meet requirements" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -#, fuzzy -msgid "Associates the files on nodes" -msgstr "Error al borrar los ficheros de imagen" - -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" +msgid "Username must be at least 3 characters" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" +msgid "Username must be less than 41 characters" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" +msgid "Username must start with a word character" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" +msgid "Users" +msgstr "Usuarios" + +msgid "Using the group match function" msgstr "" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 -#, fuzzy -msgid "Integrity Settings" -msgstr "Configuración del cliente" +msgid "VNC" +msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 #, fuzzy -msgid "Export Checksums" -msgstr "Exportar" +msgid "Valid Host Colors" +msgstr "Equipo no válido" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" -msgstr "" +msgid "Value" +msgstr "Valor" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" +msgid "Variable contains" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 -#, fuzzy -msgid "Last Updated Time" -msgstr "Fecha ya existe" +msgid "Version" +msgstr "Versión" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 #, fuzzy -msgid "Conflicting path/file" -msgstr "Archivo" - -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" -msgstr "" +msgid "Version 1.2.0 and earlier" +msgstr "Última versión" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" +msgid "View History For" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgid "View advanced tasks for this" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" +msgid "Virus History" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:19 #, fuzzy -msgid "

Version 1.5.5" -msgstr "Versión" +msgid "Virus Name" +msgstr "Nombre" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 #, fuzzy -msgid "Host Status" -msgstr "Estado" +msgid "Virus Report" +msgstr "Informe" -#: lib/reg-task/registration.class.php:89 #, fuzzy -msgid "Created by FOG Reg on" -msgstr "Creado por" +msgid "Virus items removed!" +msgstr "Eliminado" -#: lib/reg-task/registration.class.php:117 -#, fuzzy -msgid "Already registered as" -msgstr "Fecha ya existe" +msgid "WOL Broadcast General" +msgstr "" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 #, fuzzy -msgid "Failed to create Host" -msgstr "Error al crear el inventario de este equipo" +msgid "WOL Broadcast Management" +msgstr "Administración Location" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" +msgid "WOL Broadcasts" msgstr "" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" +msgid "Wait time has changed to" msgstr "" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 #, fuzzy -msgid "Done, Failed to create tasking" -msgstr "Error al crear tarea" - -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "" - -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "Hecho" - -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "No hay tareas activas para este equipo" +msgid "Waiting for mysql to be available" +msgstr "No disponible" -#: lib/reg-task/taskingelement.class.php:205 -msgid "Could not find a Storage Node in this group" +msgid "Wake On Lan" msgstr "" -#: lib/reg-task/taskingelement.class.php:206 -msgid "is there one enabled" +msgid "Wake on lan?" msgstr "" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" +msgid "We are group ID" msgstr "" -#: lib/reg-task/taskingelement.class.php:233 -msgid "but has recently failed for this host" +msgid "We are group name" msgstr "" -#: lib/reg-task/taskqueue.class.php:39 -#, fuzzy -msgid "Failed to update task" -msgstr "Fallo al actualizar" - -#: lib/reg-task/taskqueue.class.php:57 -#, fuzzy -msgid "Invalid Multicast Session" -msgstr "Multicast" - -#: lib/reg-task/taskqueue.class.php:67 -#, fuzzy -msgid "Failed to update Session" -msgstr "Fallo al actualizar" - -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" +msgid "We are node ID" msgstr "" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" +msgid "We are node name" msgstr "" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" +msgid "We cannot connect to LDAP server" msgstr "" -#: lib/reg-task/taskqueue.class.php:132 #, fuzzy -msgid "The node trying to be used is currently" -msgstr "Si estás intentando transmitir a un nodo remoto A" +msgid "Web Server" +msgstr "No hay imágenes en este servidor" -#: lib/reg-task/taskqueue.class.php:133 -msgid "unavailable" +msgid "Web root" msgstr "" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" +msgid "Weekly" msgstr "" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" +msgid "When the plugin is removed, the assigned key will remain" msgstr "" -#: lib/reg-task/taskqueue.class.php:156 -msgid "There are open slots" +msgid "Where to get help" msgstr "" -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" +msgid "Width must be 650 pixels." msgstr "" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" +msgid "Window size must be greater than 1" msgstr "" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" +msgid "Windows Key" msgstr "" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 #, fuzzy -msgid "Failed to update Task" -msgstr "Fallo al actualizar" +msgid "Windows Key Create Fail" +msgstr "Error al crear el rol" -#: lib/reg-task/taskqueue.class.php:183 #, fuzzy -msgid "Failed to update/create task log" -msgstr "Error al crear tarea" +msgid "Windows Key Create Success" +msgstr "Rol creado con éxito" -#: lib/reg-task/taskqueue.class.php:301 -msgid "Machine Details" +#, fuzzy +msgid "Windows Key Description" +msgstr "Descripción" + +msgid "Windows Key General" msgstr "" -#: lib/reg-task/taskqueue.class.php:303 -msgid "Computer Model" -msgstr "Modelo de equipo" +#, fuzzy +msgid "Windows Key Management" +msgstr "Nombre de imagen" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "" +#, fuzzy +msgid "Windows Key Name" +msgstr "Nombre de imagen" -#: lib/reg-task/taskqueue.class.php:305 #, fuzzy -msgid "MAC Address" -msgstr "Lista de MAC Address" +msgid "Windows Key Update Fail" +msgstr "Error al actualizar el rol" + +#, fuzzy +msgid "Windows Key Update Success" +msgstr "Rol actualizado con éxito" -#: lib/reg-task/taskqueue.class.php:307 #, fuzzy -msgid "Image Used" -msgstr "Imagen" +msgid "Windows Key added!" +msgstr "¡Rol añadido!" -#: lib/reg-task/taskqueue.class.php:308 #, fuzzy -msgid "Snapin Used" -msgstr "Tareas de Snapin activas" +msgid "Windows Key for Image" +msgstr "Asociación de imagen" -#: lib/reg-task/taskqueue.class.php:310 -msgid "Imaged By" +msgid "Windows Key updated!" msgstr "" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 -msgid "Imaged For" +msgid "Windows Keys" msgstr "" -#: lib/reg-task/taskqueue.class.php:312 -#, fuzzy -msgid "Imaging Started" -msgstr "Estado" +msgid "Windows keys is a plugin that associates product keys" +msgstr "" -#: lib/reg-task/taskqueue.class.php:313 #, fuzzy -msgid "Imaging Completed" -msgstr "Imagen" +msgid "Working with node" +msgstr "Nodo de almacenamiento" -#: lib/reg-task/taskqueue.class.php:314 #, fuzzy -msgid "Imaging Duration" -msgstr "Descripción" +msgid "Wrong file name!" +msgstr "Archivo" -#: lib/reg-task/taskqueue.class.php:332 -#, fuzzy -msgid "Image Task Completed" -msgstr "Imagen" +msgid "Yearly" +msgstr "" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" +msgid "Yes" +msgstr "Si" + +msgid "You are only allowed to assign" msgstr "" -#: lib/reg-task/taskqueue.class.php:461 -#, fuzzy -msgid "Failed to update Host" -msgstr "Fallo al actualizar" +msgid "You have version" +msgstr "" -#: lib/reg-task/taskqueue.class.php:475 -#, fuzzy -msgid "Failed to update task log" -msgstr "Fallo al actualziar la base de datos" +msgid "You must have at least one Storage Group" +msgstr "Debe de haber por lo menos un grupo de almacenamiento" -#: lib/reg-task/taskqueue.class.php:479 #, fuzzy -msgid "Failed to update imaging log" -msgstr "Fallo al actualziar la base de datos" +msgid "You must have at least one group associated" +msgstr "Debe de haber por lo menos un grupo de almacenamiento" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" +msgid "You must select an action to perform" +msgstr "" + +msgid "Your FOG database schema is not up to date" msgstr "" -#: lib/reports/equipment_loan.report.php:63 #, fuzzy -msgid "Select User" -msgstr "Por favor, elija una opción" +msgid "Your Location Here" +msgstr "No permitido aquí" -#: lib/reports/equipment_loan.report.php:66 -msgid "Create Report?" -msgstr "Crear Informe?" +msgid "Your database connection appears to be invalid" +msgstr "" -#: lib/reports/equipment_loan.report.php:69 -msgid "Generate" +msgid "Your form is ready" msgstr "" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" +msgid "Your server only allows" msgstr "" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" +msgid "Your system PHP Version is not sufficient" msgstr "" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" +msgid "ZSTD Compressed" msgstr "" -#: lib/reports/equipment_loan.report.php:158 -#, fuzzy -msgid "Personal Information" -msgstr "Información de hardware" +msgid "ZSTD Compressed 200MiB split" +msgstr "" -#: lib/reports/equipment_loan.report.php:162 -#, fuzzy -msgid "Your Location Here" -msgstr "No permitido aquí" +msgid "access to the hidden menu system" +msgstr "" -#: lib/reports/equipment_loan.report.php:163 -#, fuzzy -msgid "Home Address" -msgstr "Lista de MAC Address" +msgid "additional macs" +msgstr "" -#: lib/reports/equipment_loan.report.php:165 -#, fuzzy -msgid "City/State/Zip" -msgstr "Estado" +msgid "ago" +msgstr "" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" +msgid "all current storage nodes" +msgstr "todos los Nodos de Almacenamiento" + +msgid "and Mac OS X" msgstr "" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" +msgid "and agree to all the" msgstr "" -#: lib/reports/equipment_loan.report.php:171 -#, fuzzy -msgid "Computer Information" -msgstr "Información de hardware" +msgid "and both the legacy and new FOG clients." +msgstr "" -#: lib/reports/equipment_loan.report.php:176 #, fuzzy -msgid "Service Tag" -msgstr "Servicio" - -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "" +msgid "and cannot be captured" +msgstr "Última captura" -#: lib/reports/equipment_loan.report.php:203 #, fuzzy -msgid "Date of checkout" -msgstr "Fecha" +msgid "and if the Database service is running" +msgstr "Configuración de servicios" -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" +msgid "and much easier on the server" msgstr "" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "" +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "y el nodo A sólo tiene 5 Mbps y tú quieres la velicidad de" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "Elementos incluidos" +msgid "and set it to master" +msgstr "es Nodo Maestro" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" +msgid "and stores their respective checksums" msgstr "" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" +msgid "and the equivalent module for what Green" msgstr "" -#: lib/reports/equipment_loan.report.php:219 -msgid "I have read" +msgid "and the location of the file on that" msgstr "" -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" +msgid "as FOG will attempt to go out to the internet" msgstr "" -#: lib/reports/equipment_loan.report.php:221 -msgid "and agree to all the" -msgstr "" +#, fuzzy +msgid "as its primary group" +msgstr "Grupo principal" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" +msgid "as they can cause issues that are difficult to troubleshoot" msgstr "" -#: lib/reports/equipment_loan.report.php:223 -msgid "on the following pages of this document" +msgid "automatically" msgstr "" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "" +#, fuzzy +msgid "based task." +msgstr "Tarea" -#: lib/reports/equipment_loan.report.php:262 -msgid "Your form is ready" +#, fuzzy +msgid "be the presence of a menu" +msgstr "Menú principal" + +msgid "before me" msgstr "" -#: lib/reports/equipment_loan.report.php:266 -msgid "Form" +msgid "before me on this node" msgstr "" -#: lib/reports/history_report.report.php:26 #, fuzzy -msgid "FOG History - Search" -msgstr "Usuario" +msgid "between" +msgstr "Esta configuración limita el ancho de banda de replicación entre nodos" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 -#, fuzzy -msgid "Enter an user name to search for" -msgstr "Búsqueda" +msgid "between different sites" +msgstr "" -#: lib/reports/history_report.report.php:68 -#, fuzzy -msgid "Enter a term to search for" -msgstr "Búsqueda" +msgid "between host and global settings" +msgstr "" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 #, fuzzy -msgid "Perform search" -msgstr "Búsqueda" +msgid "boot the client computers" +msgstr "Configuración del cliente" -#: lib/reports/history_report.report.php:111 -#, fuzzy -msgid "Full History Export" -msgstr "Exportar configuración" +msgid "but" +msgstr "" -#: lib/reports/history_report.report.php:166 -#, fuzzy -msgid "History ID" -msgstr "% ID %d no es válido" +msgid "but bind password is not set" +msgstr "" -#: lib/reports/history_report.report.php:167 -msgid "History Info" +msgid "but has recently failed for this host" msgstr "" -#: lib/reports/history_report.report.php:168 -#, fuzzy -msgid "History User" -msgstr "Usuario" +msgid "check to ensure your filesystem has enough space" +msgstr "" -#: lib/reports/history_report.report.php:169 #, fuzzy -msgid "History Time" -msgstr "Fecha ya existe" +msgid "client" +msgstr "Cliente" -#: lib/reports/history_report.report.php:170 #, fuzzy -msgid "History IP" -msgstr "IP Nodo Almacenamiento" +msgid "clients" +msgstr "Cliente" -#: lib/reports/host_list.report.php:33 -msgid "FOG Host - Search" +msgid "config files that run on the client computers." msgstr "" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 #, fuzzy -msgid "Enter a group name to search for" -msgstr "Búsqueda" +msgid "could not be cancelled" +msgstr "No se puede encontrar el nodo de almacenamiento:" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 #, fuzzy -msgid "Enter a location name to search for" -msgstr "Nueva Búsqueda" +msgid "could not be completed" +msgstr "Última captura" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 #, fuzzy -msgid "Enter a site name to search for" -msgstr "Búsqueda" +msgid "could not be killed" +msgstr "No se puede encontrar el nodo de almacenamiento:" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 #, fuzzy -msgid "Search pattern" -msgstr "Búsqueda" +msgid "day" +msgstr "El campo día de la semana no es válido" -#: lib/reports/host_list.report.php:147 #, fuzzy -msgid "Host Listing Export" -msgstr "Equipo" +msgid "day of month" +msgstr "El campo de día del mes no es válido" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 #, fuzzy -msgid "Host Created" -msgstr "Creado por" +msgid "day of week" +msgstr "El campo día de la semana no es válido" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -#, fuzzy -msgid "Host AD Join" -msgstr "Gestión de equipos" +msgid "defined reports that may not be a part of" +msgstr "" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 #, fuzzy -msgid "Host AD OU" -msgstr "Equipo" +msgid "deleted" +msgstr "Eliminado" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -#, fuzzy -msgid "Host AD Domain" -msgstr "Gestión de equipos" +msgid "deploy task occurs for it" +msgstr "" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 -#, fuzzy -msgid "Host HD Device" -msgstr "Gestión de equipos" +msgid "directive in php.ini" +msgstr "" -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -#, fuzzy -msgid "Image ID" -msgstr "Imagen" +msgid "directive specified in the HTML form" +msgstr "" -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 #, fuzzy -msgid "Image Desc" -msgstr "Imagen" +msgid "directory" +msgstr "Directorio" -#: lib/reports/hosts_and_users.report.php:24 -msgid "FOG Host and Users - Search" +msgid "download the module and use it on the next" msgstr "" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" +msgid "due to UAC introduced in Vista and up." +msgstr "" + +msgid "e.g." msgstr "" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" +msgid "either already selected or uploaded" msgstr "" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" +msgid "either because you have updated" msgstr "" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" +#, fuzzy +msgid "failed to execute, image file: " +msgstr "Error al borrar los ficheros de imagen" + +msgid "failed to execute, port must be even and numeric" msgstr "" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" +msgid "failed to execute, there are no clients included" msgstr "" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -#, fuzzy -msgid "Login Users" -msgstr "Login incorrecto" +msgid "failed to login" +msgstr "error al loguearse" -#: lib/reports/imaging_log.report.php:24 #, fuzzy -msgid "FOG Imaging - Search" -msgstr "Configuración de FOG" +msgid "failed to start" +msgstr "Error" -#: lib/reports/imaging_log.report.php:105 -#, fuzzy -msgid "Enter an image name to search for" -msgstr "Búsqueda" +msgid "faster" +msgstr "" -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -#, fuzzy -msgid "Enter a hostname to search for" -msgstr "Nueva Búsqueda" +msgid "filesize" +msgstr "Tamaño de archivo" + +msgid "for Microsoft Windows to images" +msgstr "" -#: lib/reports/imaging_log.report.php:181 #, fuzzy -msgid "FOG Imaging Log" -msgstr "Configuración de FOG" +msgid "for the advanced menu parameters" +msgstr "Menú %s" -#: lib/reports/imaging_log.report.php:209 #, fuzzy -msgid "Start Date" -msgstr "Fecha" +msgid "for the menu background" +msgstr "Menú principal" -#: lib/reports/imaging_log.report.php:211 #, fuzzy -msgid "End Date" -msgstr "Fecha" +msgid "found" +msgstr "Equipo no encontrado con esa MAC" + +msgid "from" +msgstr "" -#: lib/reports/imaging_log.report.php:214 #, fuzzy -msgid "Deploy/Capture" -msgstr "Despliegue" +msgid "function on client computers." +msgstr "Configuración del cliente" -#: lib/reports/imaging_log.report.php:268 #, fuzzy -msgid "Not Valid" -msgstr "Tipo de tarea no válida" +msgid "group" +msgstr "Grupo" -#: lib/reports/inventory_report.report.php:24 -msgid "FOG Host Inventory - Search" +msgid "has been cancelled" msgstr "" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." +msgid "has been completed" msgstr "" -#: lib/reports/inventory_report.report.php:129 -#, fuzzy -msgid "Enter a model name to search for" -msgstr "Búsqueda" +msgid "has been killed" +msgstr "" -#: lib/reports/inventory_report.report.php:169 -#, fuzzy -msgid "Full Inventory Export" -msgstr "Inventario" +msgid "has been started on port" +msgstr "" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." +msgid "has been successfully destroyed" msgstr "" -#: lib/reports/pending_mac_list.report.php:43 -#, fuzzy -msgid "Pending MAC Export" -msgstr "Equipos pendientes" +msgid "has been successfully updated" +msgstr "" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 #, fuzzy -msgid "Host Primary MAC" -msgstr "Equipo no encontrado con esa MAC" +msgid "has failed to destroy" +msgstr "Error al eliminar el nodo de almacenamiento" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 #, fuzzy -msgid "Host Pending MAC" -msgstr "Equipo no encontrado con esa MAC" +msgid "has failed to save" +msgstr "Guardar Configuración" -#: lib/reports/pending_mac_list.report.php:130 -msgid "Approve All Pending MACs for All Hosts" +msgid "has started" msgstr "" -#: lib/reports/pending_mac_list.report.php:154 -#, fuzzy -msgid "Pending MAC Actions" -msgstr "Acciones" - -#: lib/reports/pending_mac_list.report.php:160 -#, fuzzy -msgid "Approve Selected MACs" -msgstr "Borrar equipos seleccionados" - -#: lib/reports/pending_mac_list.report.php:165 -msgid "Approve" +msgid "help with any aspect of FOG" msgstr "" -#: lib/reports/pending_mac_list.report.php:171 -#, fuzzy -msgid "Delete Selected MACs" -msgstr "Borrado con éxito" +msgid "here" +msgstr "aquí" -#: lib/reports/product_keys.report.php:31 #, fuzzy -msgid "Host Product Keys" -msgstr "Gestión de equipos" +msgid "host" +msgstr "Equipo" -#: lib/reports/snapin_log.report.php:18 #, fuzzy -msgid "FOG Snapin - Search" -msgstr "Configuración de FOG" +msgid "hosts" +msgstr "Equipos" -#: lib/reports/snapin_log.report.php:82 #, fuzzy -msgid "Enter a snapin name to search for" -msgstr "Búsqueda" +msgid "hour" +msgstr "El campo hora no es válido" -#: lib/reports/snapin_log.report.php:120 -#, fuzzy -msgid "Found snapin information" -msgstr "Información de hardware" +msgid "hr" +msgstr "" -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" +msgid "iPXE General Configuration" msgstr "" -#: lib/reports/snapin_log.report.php:153 #, fuzzy -msgid "Checkin Time" -msgstr "Fecha ya existe" +msgid "iPXE Item Create Fail" +msgstr "Error al crear el rol" -#: lib/reports/snapin_log.report.php:154 #, fuzzy -msgid "Complete Time" -msgstr "Completada" +msgid "iPXE Item Create Success" +msgstr "Rol creado con éxito" -#: lib/reports/snapin_log.report.php:178 -#, fuzzy -msgid "Snapin ID" -msgstr "Gestión de snapin" +msgid "iPXE Item Remove Success" +msgstr "" -#: lib/reports/snapin_log.report.php:182 #, fuzzy -msgid "Snapin Args" -msgstr "Tareas de Snapin activas" +msgid "iPXE Item Update Success" +msgstr "Rol actualizado con éxito" -#: lib/reports/snapin_log.report.php:184 #, fuzzy -msgid "Snapin Run With Args" -msgstr "Gestión de snapin" +msgid "iPXE Item added!" +msgstr "¡Rol añadido!" -#: lib/reports/snapin_log.report.php:185 #, fuzzy -msgid "Snapin State" -msgstr "Estado" +msgid "iPXE Item create failed!" +msgstr "Error al crear tarea" -#: lib/reports/snapin_log.report.php:186 -#, fuzzy -msgid "Snapin Return Code" -msgstr "Gestión de snapin" +msgid "iPXE Menu Customization" +msgstr "" -#: lib/reports/snapin_log.report.php:187 -#, fuzzy -msgid "Snapin Return Detail" -msgstr "Gestión de snapin" +msgid "iPXE Menu Item Settings" +msgstr "" -#: lib/reports/snapin_log.report.php:188 #, fuzzy -msgid "Snapin Creation Date" -msgstr "Fecha" +msgid "iPXE Menu Settings" +msgstr "Configuración del cliente" -#: lib/reports/snapin_log.report.php:189 -#, fuzzy -msgid "Snapin Creation Time" -msgstr "Fecha ya existe" +msgid "iPXE New Menu Entry" +msgstr "" -#: lib/reports/snapin_log.report.php:190 -#, fuzzy -msgid "Job Create Date" -msgstr "Fecha" +msgid "iPXE Settings updated successfully!" +msgstr "" -#: lib/reports/snapin_log.report.php:191 #, fuzzy -msgid "Job Create Time" -msgstr "Crear" +msgid "iPXE Update Fail" +msgstr "Error al actualizar el rol" -#: lib/reports/snapin_log.report.php:192 #, fuzzy -msgid "Task Checkin Date" -msgstr "Tarea" +msgid "iPXE Update Success" +msgstr "Rol actualizado con éxito" -#: lib/reports/snapin_log.report.php:193 -#, fuzzy -msgid "Task Checkin Time" -msgstr "Fecha ya existe" +msgid "iPXE syntax is very finicky when it comes to editing" +msgstr "" -#: lib/reports/snapin_log.report.php:194 #, fuzzy -msgid "Task Complete Date" -msgstr "Fecha" +msgid "iPrint Printer" +msgstr "Impresora" -#: lib/reports/snapin_log.report.php:195 #, fuzzy -msgid "Task Complete Time" -msgstr "Completada" +msgid "if there is a task" +msgstr "Tarea" -#: lib/reports/user_tracking.report.php:31 -msgid "FOG User tracking - Search" +msgid "if used incorrectly could potentially" msgstr "" -#: lib/reports/user_tracking.report.php:95 #, fuzzy -msgid "Enter a username to search for" -msgstr "Búsqueda" +msgid "image" +msgstr "Imagen" -#: lib/reports/user_tracking.report.php:132 #, fuzzy -msgid "Found login information" -msgstr "Información de hardware" - -#: lib/reports/user_tracking.report.php:233 -msgid "FOG User tracking history" -msgstr "" +msgid "image file found, file: " +msgstr "Archivo" -#: lib/reports/user_tracking.report.php:290 #, fuzzy -msgid "Service Start" -msgstr "Servicio" +msgid "image replication" +msgstr "Ancho de banda de Replicación" -#: lib/reports/virus_history.report.php:31 #, fuzzy -msgid "FOG Virus Summary" -msgstr "Configuración de FOG" +msgid "images" +msgstr "Imágenes" -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" -msgstr "" +#, fuzzy +msgid "images to a storage group" +msgstr "Añadir grupo de almacenamiento" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" +msgid "in seconds" msgstr "" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 #, fuzzy -msgid "Already created" -msgstr "Creado por" +msgid "install or update the FOG database" +msgstr "Fallo al actualziar la base de datos" -#: lib/router/route.class.php:857 -msgid "Invalid tasking type passed" -msgstr "" +#, fuzzy +msgid "is already running with pid: " +msgstr "El grupo de almacenamiento ya existe" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" +msgid "is going on with your FOG System" msgstr "" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 -msgid "I am the group manager" -msgstr "" +#, fuzzy +msgid "is invalid" +msgstr "Login incorrecto" -#: lib/service/imagereplicator.class.php:119 -msgid "Starting Image Replication" -msgstr "Iniciando replicación de imagen" +#, fuzzy +msgid "is new" +msgstr "Nuevo" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" +msgid "is no longer running" msgstr "" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 -msgid "We are group name" +msgid "is now cancelled" msgstr "" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" -msgstr "" +#, fuzzy +msgid "is now completed" +msgstr "Gestión de snapin" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 -msgid "We are node name" +msgid "is open" msgstr "" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 -msgid "Attempting to perform" -msgstr "" +#, fuzzy +msgid "is protected" +msgstr "Imagen protegida y no puede ser borrada" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 #, fuzzy -msgid "image replication" -msgstr "Ancho de banda de Replicación" +msgid "is protected, removal not allowed" +msgstr "No permitido aquí" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "" +msgid "is required" +msgstr "es obligatorio" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" +msgid "is there one enabled" msgstr "" -#: lib/service/imagereplicator.class.php:207 #, fuzzy -msgid "images to a storage group" -msgstr "Añadir grupo de almacenamiento" - -#: lib/service/imagereplicator.class.php:241 -msgid "Replicating" -msgstr "" +msgid "is valid" +msgstr "Tipo de tarea no válida" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" +msgid "it boots to the first device" msgstr "" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -msgid "This is not the primary group" -msgstr "Este no es el grupo principal" - -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 -msgid "Nodes" -msgstr "Nodos" +#, fuzzy +msgid "it performs that task" +msgstr "Gestión de tareas" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" +msgid "it will distribute its store" msgstr "" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" +msgid "it will enforce login to gain access to the advanced" msgstr "" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" -msgstr "" +msgid "it's transmitting to" +msgstr "transmitiendo a" -#: lib/service/multicasttask.class.php:104 #, fuzzy -msgid " | Unable to find image path" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "kernel to boot the client computers" +msgstr "Configuración del cliente" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" +msgid "key" msgstr "" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "" +msgid "limited to 1Mbps on that node" +msgstr "limitado a 1Mbps en este nodo" -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" +msgid "location url based on the host that checks in" msgstr "" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" +msgid "logged in" msgstr "" -#: lib/service/pinghosts.class.php:147 -#, fuzzy -msgid "hosts" -msgstr "Equipos" - -#: lib/service/snapinhash.class.php:102 -msgid " * Snapin hash is globally disabled" +msgid "logout" msgstr "" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" +msgid "may see the issue and help and/or use the solutions" msgstr "" -#: lib/service/snapinhash.class.php:135 -msgid "Finding any snapins associated" +msgid "meaning a node that has no images on it" msgstr "" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 -#, fuzzy -msgid "with this group" -msgstr "Grupo" - -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 #, fuzzy -msgid "as its primary group" -msgstr "Grupo principal" +msgid "menu system" +msgstr "Menú %s" -#: lib/service/snapinhash.class.php:158 -msgid "No snapins associated with this group as master" +msgid "migration or mass import new items" msgstr "" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -#, fuzzy -msgid "Found" -msgstr "Equipo no encontrado con esa MAC" +msgid "min" +msgstr "" -#: lib/service/snapinhash.class.php:170 #, fuzzy -msgid "snapins" -msgstr "No hay snapin asociados a este equipo" +msgid "minute" +msgstr "El valor minuto no es válido" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" +msgid "minutes" msgstr "" -#: lib/service/snapinhash.class.php:187 -msgid "Trying Snapin hash for" +msgid "mod dates" msgstr "" -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "" +#, fuzzy +msgid "month" +msgstr "El campo mes no es válido" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" +msgid "more secure" msgstr "" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" +msgid "multiple places to get your image" msgstr "" -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" +msgid "must be specified" msgstr "" -#: lib/service/snapinreplicator.class.php:118 -msgid "Starting Snapin Replication" +msgid "n/a" msgstr "" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 -#, fuzzy -msgid "snapin replication" -msgstr "Ancho de banda de Replicación" - -#: lib/service/snapinreplicator.class.php:206 #, fuzzy -msgid "snapins to a storage group" -msgstr "Añadir grupo de almacenamiento" - -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "" - -#: lib/service/snapinreplicator.class.php:249 -msgid "Not syncing Snapin" -msgstr "No sincronización de snapin" +msgid "no database to" +msgstr "Fallo al actualziar la base de datos" -#: lib/service/fogservice.class.php:141 #, fuzzy -msgid " | This is not the master node" -msgstr "Es Nodo Maestro" +msgid "no login will appear" +msgstr "Gestión de login" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" -msgstr "" +msgid "node is the distributor of the images" +msgstr "exportar imágenes" -#: lib/service/fogservice.class.php:185 #, fuzzy -msgid "Waiting for mysql to be available" -msgstr "No disponible" +msgid "nodes containing this image" +msgstr "No hay nodos maestros disponible para borrar esta imagen" -#: lib/service/fogservice.class.php:356 #, fuzzy -msgid "This is not the master for this group" -msgstr "Este no es el grupo principal" +msgid "not found on this node" +msgstr "Nodo" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" +msgid "object" msgstr "" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" +msgid "of" msgstr "" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -#, fuzzy -msgid "between" -msgstr "Esta configuración limita el ancho de banda de replicación entre nodos" +msgid "on the following pages of this document" +msgstr "" -#: lib/service/fogservice.class.php:402 #, fuzzy -msgid "There are no other members to sync to" -msgstr "Miembros" +msgid "on the old client" +msgstr "Cliente" -#: lib/service/fogservice.class.php:411 -msgid "to transfer to" +msgid "open" msgstr "" -#: lib/service/fogservice.class.php:482 -msgid "Replication already running with PID" -msgstr "" +msgid "or" +msgstr "o" -#: lib/service/fogservice.class.php:514 -msgid "File or path cannot be reached" +#, fuzzy +msgid "or no valid images specified" +msgstr "Exporatr imágenes" + +msgid "or start to operate" msgstr "" -#: lib/service/fogservice.class.php:530 #, fuzzy -msgid "Cannot connect to" -msgstr "Imagen protegida y no puede ser borrada" +msgid "or this is a new FOG installation" +msgstr "Nuevo" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 -#, fuzzy -msgid "File does not exist" -msgstr "Método no existe" +msgid "particular node" +msgstr "" -#: lib/service/fogservice.class.php:725 #, fuzzy -msgid "File hash mismatch" -msgstr "Error al borrar los ficheros de imagen" +msgid "per host" +msgstr "Equipo" -#: lib/service/fogservice.class.php:735 -#, fuzzy -msgid "File size mismatch" -msgstr "Error al borrar los ficheros de imagen" +msgid "please see the hosts service settings section." +msgstr "" -#: lib/service/fogservice.class.php:743 #, fuzzy -msgid "Deleting remote file" -msgstr "Archivo" +msgid "power management task(s) to run" +msgstr "Gestión" -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" +msgid "present and where/how they need to display" msgstr "" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." +#, fuzzy +msgid "previous install if needed" +msgstr "Instalar plugins" + +msgid "read-only" msgstr "" -#: lib/service/fogservice.class.php:780 -msgid "Starting Sync Actions" -msgstr "Iniciando tareas de sincronización" +#, fuzzy +msgid "real insert time" +msgstr "Fecha ya existe" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" +msgid "require all hosts have the same image" msgstr "" -#: lib/service/fogservice.class.php:868 -msgid "Task started" -msgstr "Tarea iniciada" +#, fuzzy +msgid "scheduled task(s) to run" +msgstr "Tareas programadas" -#: lib/service/imagesize.class.php:102 -msgid " * Image size is globally disabled" +msgid "second" msgstr "" -#: lib/service/imagesize.class.php:111 -msgid "Starting Image Size Service" +msgid "seconds" msgstr "" -#: lib/service/imagesize.class.php:135 -msgid "Finding any images associated" +msgid "see fit" msgstr "" -#: lib/service/imagesize.class.php:158 -msgid "No images associated with this group as master" +msgid "see the forums or lookup the commands and scripts available" msgstr "" -#: lib/service/imagesize.class.php:170 -#, fuzzy -msgid "images" -msgstr "Imágenes" - -#: lib/service/imagesize.class.php:171 #, fuzzy -msgid "image" -msgstr "Imagen" - -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" -msgstr "" - -#: lib/service/imagesize.class.php:187 -msgid "Trying image size for" -msgstr "Intentando tamaño de imagen para" +msgid "sending on base port " +msgstr "Equipos pendientes" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -msgid "Path is unavailable" +msgid "sites with clients moving back and forth" msgstr "" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" -msgstr "Obteniendo tamaño de imagen para" - -#: lib/service/imagesize.class.php:225 -msgid "Size" -msgstr "" +#, fuzzy +msgid "snapin" +msgstr "Tareas de Snapin activas" -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" -msgstr "" +#, fuzzy +msgid "snapin replication" +msgstr "Ancho de banda de Replicación" -#: lib/service/multicastmanager.class.php:222 #, fuzzy -msgid "Task ID" -msgstr "Tarea" +msgid "snapins" +msgstr "No hay snapin asociados a este equipo" -#: lib/service/multicastmanager.class.php:234 #, fuzzy -msgid "No new tasks found" -msgstr "No se han encontrado tareas" +msgid "snapins to a storage group" +msgstr "Añadir grupo de almacenamiento" -#: lib/service/multicastmanager.class.php:264 -msgid " No open slots " +msgid "so if it seems like the process is hanging please be patient" msgstr "" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" +msgid "so if you are unable to boot a client you may wish to" msgstr "" -#: lib/service/multicastmanager.class.php:289 #, fuzzy -msgid "failed to execute, image file: " -msgstr "Error al borrar los ficheros de imagen" +msgid "successfully removed!" +msgstr "Eliminado" -#: lib/service/multicastmanager.class.php:291 #, fuzzy -msgid "not found on this node" -msgstr "Nodo" +msgid "task found" +msgstr "No hay tareas activas para este equipo" + +#, fuzzy +msgid "tasks in queue" +msgstr "Tareas" + +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" +msgstr "" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" +msgid "the Initrd (initial ramdisk) which is used alongside the" msgstr "" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" +msgid "the Linux kernel which is used to" msgstr "" -#: lib/service/multicastmanager.class.php:327 #, fuzzy -msgid "failed to start" -msgstr "Error" +msgid "the advanced menu to use" +msgstr "Avanzadas" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 #, fuzzy -msgid "could not be killed" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "the base FOG install" +msgstr "Instalar plugins" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 -msgid "has been killed" +msgid "the following command in a terminal" msgstr "" -#: lib/service/multicastmanager.class.php:363 -#, fuzzy -msgid "is new" -msgstr "Nuevo" +msgid "the host defined location where available" +msgstr "" -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -#, fuzzy -msgid "unable to be updated" -msgstr "Fallo al actualizar" +msgid "the main and the host" +msgstr "" -#: lib/service/multicastmanager.class.php:384 -#, fuzzy -msgid "image file found, file: " -msgstr "Archivo" +msgid "the way in which FOG operates" +msgstr "" -#: lib/service/multicastmanager.class.php:397 -#, fuzzy -msgid "client" -msgstr "Cliente" +msgid "there one enabled within this Storage Group" +msgstr "debe de haber por lo menos un grupo de almacenamiento" -#: lib/service/multicastmanager.class.php:398 -#, fuzzy -msgid "clients" -msgstr "Cliente" +msgid "there will be a database backup stored on your" +msgstr "" -#: lib/service/multicastmanager.class.php:401 -#, fuzzy -msgid "found" -msgstr "Equipo no encontrado con esa MAC" +msgid "this backup will enable you to return to the" +msgstr "" -#: lib/service/multicastmanager.class.php:409 -#, fuzzy -msgid "sending on base port " -msgstr "Equipos pendientes" +msgid "this is just another to ensure safety" +msgstr "" -#: lib/service/multicastmanager.class.php:416 -msgid "Command" +msgid "this kernel holds all the drivers for the client computer" msgstr "" -#: lib/service/multicastmanager.class.php:425 -msgid "has started" +msgid "this one is already in use by another image" msgstr "" -#: lib/service/multicastmanager.class.php:490 #, fuzzy -msgid "is already running with pid: " -msgstr "El grupo de almacenamiento ya existe" +msgid "this one is reserved for FOG" +msgstr "Configuración de FOG" -#: lib/service/multicastmanager.class.php:502 -msgid "is no longer running" +msgid "this will save the backup in your home" msgstr "" -#: lib/service/multicastmanager.class.php:528 -msgid "has been completed" +#, fuzzy +msgid "time the service is started." +msgstr "Configuración de servicios" + +msgid "to UAC introduced in Vista and up" msgstr "" -#: lib/service/multicastmanager.class.php:539 -msgid "has been cancelled" +msgid "to all nodes in the group" +msgstr "todos los Nodos de Almacenamiento" + +msgid "to be booted if no keys are pressed when the menu is" msgstr "" -#: lib/service/multicastmanager.class.php:584 -msgid "is now cancelled" +msgid "to get the requested Initrd" msgstr "" -#: lib/service/multicastmanager.class.php:585 -#, fuzzy -msgid "could not be cancelled" -msgstr "No se puede encontrar el nodo de almacenamiento:" +msgid "to get the requested Kernel" +msgstr "" -#: lib/service/multicastmanager.class.php:600 #, fuzzy -msgid "is now completed" -msgstr "Gestión de snapin" +msgid "to login" +msgstr "Login incorrecto" -#: lib/service/multicastmanager.class.php:601 -#, fuzzy -msgid "could not be completed" -msgstr "Última captura" +msgid "to operate in an environment where there may be" +msgstr "" -#: lib/service/multicastmanager.class.php:619 -msgid "Wait time has changed to" +msgid "to review." msgstr "" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" +msgid "to signify if this is a user or channel to send to" msgstr "" -#: lib/service/multicastmanager.class.php:624 -msgid "second" +#, fuzzy +msgid "to the client systems" +msgstr "Cliente" + +msgid "to time to see if a new module is published." msgstr "" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" +msgid "to transfer to" msgstr "" -#: lib/service/taskscheduler.class.php:172 -#, fuzzy -msgid "scheduled task(s) to run" -msgstr "Tareas programadas" +msgid "to update hash values as needed" +msgstr "" -#: lib/service/taskscheduler.class.php:179 -#, fuzzy -msgid "power management task(s) to run" -msgstr "Gestión" +msgid "to update size values as needed" +msgstr "" -#: lib/service/taskscheduler.class.php:187 #, fuzzy -msgid "Scheduled Task run time" -msgstr "Tareas programadas" +msgid "unable to be updated" +msgstr "Fallo al actualizar" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." +msgid "unavailable" msgstr "" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" +msgid "understood" msgstr "" -#: lib/service/taskscheduler.class.php:216 -#, fuzzy -msgid "based task." -msgstr "Tarea" +msgid "update to a newer kernel which may have more drivers built in" +msgstr "" -#: lib/service/taskscheduler.class.php:224 -msgid "Unicaset" +msgid "used" msgstr "" -#: lib/service/taskscheduler.class.php:226 #, fuzzy -msgid "task found" -msgstr "No hay tareas activas para este equipo" +msgid "user failed to login" +msgstr "Error al loguearse" -#: lib/service/taskscheduler.class.php:252 #, fuzzy -msgid "Task started for" -msgstr "Tarea iniciada" +msgid "user successfully logged in" +msgstr "Borrado con éxito" -#: lib/service/taskscheduler.class.php:275 #, fuzzy -msgid "Power Management Task run time" -msgstr "Gestión de energía" +msgid "username" +msgstr "Usuario" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." -msgstr "" +#, fuzzy +msgid "version" +msgstr "Versión" -#: lib/service/taskscheduler.class.php:294 -msgid "Task sent to" +msgid "we need a file name in the request" msgstr "" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" +msgid "where to download the snapin" msgstr "" -#: management/other/index.php:167 -msgid "Credits" -msgstr "Créditos" +msgid "which is empty" +msgstr "campo obligatorio está vacio" -#: management/other/index.php:170 -#, fuzzy -msgid "FOG Client" -msgstr "Cliente" +msgid "window" +msgstr "" -#: service/hostnameloop.php:36 -msgid "A host with that name already exists" -msgstr "Ya existe un host con este nombre" +msgid "wipe out all of your images stored on" +msgstr "" -#: service/hostnameloop.php:37 -#, fuzzy -msgid "The primary mac associated is" -msgstr "Grupo principal" +msgid "with modules and config" +msgstr "" -#: service/inventory.php:90 -msgid "Failed to create inventory for this host" -msgstr "Error al crear el inventario de este equipo" +msgid "with the host" +msgstr "" -#: service/grouplisting.php:28 -msgid "There are no groups on this server" -msgstr "No hay grupo en este servidor" +#, fuzzy +msgid "with this group" +msgstr "Grupo" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" +msgid "would you like to install it now" msgstr "" -#: service/hostinfo.php:31 -msgid "Invalid tasking!" -msgstr "" +msgid "you set the bandwidth field on that node to 1000" +msgstr "has configurado el campo de ancho de banda en ese nodo a 1000" -#: service/imagelisting.php:28 -msgid "There are no images on this server" -msgstr "No hay imágenes en este servidor" +#, fuzzy +#~ msgid "A hostext already exists with this name!" +#~ msgstr "Ya existe un host con este nombre" -#: service/locationlisting.php:28 #, fuzzy -msgid "There are no locations on this server" -msgstr "No hay snapin en este servidor" +#~ msgid "Add ou failed!" +#~ msgstr "¡Error al añadir un rol!" -#: service/progress.php:39 -msgid "Invalid image" -msgstr "Imagen inválida" +#, fuzzy +#~ msgid "Create New Host Ext" +#~ msgstr "Crear Nuevo %s" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "MAC Address inválida" +#, fuzzy +#~ msgid "Export Host Exts" +#~ msgstr "Exportar equipos" -#: service/Test.php:217 -msgid "Invalid Unit" -msgstr "Unidad incorrecto" +#, fuzzy +#~ msgid "Hello FOG Client" +#~ msgstr "Configuración de FOG" -#: service/av.php:25 #, fuzzy -msgid "Invalid operational mode" -msgstr "Modo" +#~ msgid "Host Ext" +#~ msgstr "Lista de equipos" -#: service/av.php:38 -msgid "Accepted" -msgstr "Aceptado" +#, fuzzy +#~ msgid "Host Ext Name" +#~ msgstr "Ya existe un host con este nombre" -#: service/snapinlisting.php:28 -msgid "There are no snapins on this server" -msgstr "No hay snapin en este servidor" +#, fuzzy +#~ msgid "Host Ext URL" +#~ msgstr "Equipo" -#: status/bandwidth.php:40 -msgid "Device must be a string" -msgstr "" +#, fuzzy +#~ msgid "Host Ext Variable" +#~ msgstr "Fallo al actualizar" -#: status/getfiles.php:27 #, fuzzy -msgid "Invalid" -msgstr "MAC Address inválida!" +#~ msgid "Hostext Create Fail" +#~ msgstr "Error al crear el rol" -#: status/logtoview.php:31 status/logtoview.php:130 -msgid "Invalid IP" -msgstr "IP incorrecta" +#, fuzzy +#~ msgid "Hostext Create Success" +#~ msgstr "Rol creado con éxito" -#: status/logtoview.php:37 status/logtoview.php:136 -msgid "Invalid File" -msgstr "Archivo incorrecto" +#, fuzzy +#~ msgid "Hostext Update Fail" +#~ msgstr "Error al actualizar el rol" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "Directorio incorrecto" +#, fuzzy +#~ msgid "Hostext Update Success" +#~ msgstr "Rol actualizado con éxito" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "" +#, fuzzy +#~ msgid "Hostext added!" +#~ msgstr "¡Rol añadido!" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "IP incorrecta" +#, fuzzy +#~ msgid "Hostext update failed!" +#~ msgstr "Error al actualizar el rol!" #, fuzzy -#~ msgid "Hello FOG Client" -#~ msgstr "Configuración de FOG" +#~ msgid "Hostext updated!" +#~ msgstr "Equipo" #, fuzzy -#~ msgid "Legacy Client and Utilities" -#~ msgstr "Configuración del cliente" +#~ msgid "Import Host Exts" +#~ msgstr "Importar equipos" + +#~ msgid "Invalid Unit" +#~ msgstr "Unidad incorrecto" + +#~ msgid "Invalid unit passed" +#~ msgstr "MAC Address inválida" + +#~ msgid "Inventory Desc" +#~ msgstr "Descripción de inventario" #, fuzzy #~ msgid "It is recommended to not use this file but" #~ msgstr "Extreme la precaución con esta configuración" #, fuzzy -#~ msgid "you may find" -#~ msgstr "No se puede encontrar el nodo de almacenamiento:" - -#, fuzzy -#~ msgid "will not be added to this client" -#~ msgstr "¡Rol añadido!" +#~ msgid "Legacy Client and Utilities" +#~ msgstr "Configuración del cliente" #, fuzzy #~ msgid "Legacy FOG Client" #~ msgstr "Configuración de FOG" -#, fuzzy -#~ msgid "file to" -#~ msgstr "Archivo" - -#, fuzzy -#~ msgid "task" -#~ msgstr "Tarea" - #, fuzzy #~ msgid "as they have been removed" #~ msgstr "Eliminado" @@ -11082,6 +7835,10 @@ msgstr "IP incorrecta" #~ msgid "failed to execute" #~ msgstr "Error" +#, fuzzy +#~ msgid "file to" +#~ msgstr "Archivo" + #, fuzzy #~ msgid "image file" #~ msgstr "Archivo" @@ -11089,3 +7846,15 @@ msgstr "IP incorrecta" #, fuzzy #~ msgid "no clients are included" #~ msgstr "Nodo Almacenamiento Clientes Max" + +#, fuzzy +#~ msgid "task" +#~ msgstr "Tarea" + +#, fuzzy +#~ msgid "will not be added to this client" +#~ msgstr "¡Rol añadido!" + +#, fuzzy +#~ msgid "you may find" +#~ msgstr "No se puede encontrar el nodo de almacenamiento:" diff --git a/packages/web/management/languages/fr_FR.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/fr_FR.UTF-8/LC_MESSAGES/messages.po index c8e30d7b7b..9dabcc3972 100644 --- a/packages/web/management/languages/fr_FR.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/fr_FR.UTF-8/LC_MESSAGES/messages.po @@ -18,10168 +18,6953 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +msgid " * Image replication is globally disabled" +msgstr " * La réplication d'image est globalement désactivée" -#: commons/text.php:22 -msgid "Display" -msgstr "Afficher" +msgid " * Image size is globally disabled" +msgstr " * La taille de l'image est désactivée globalement" -#: commons/text.php:23 -msgid "Auto" -msgstr "Auto" +msgid " * Multicast service is globally disabled" +msgstr " * Le service multicast est globalement désactivé" -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "Modèle" +msgid " * Ping hosts is globally disabled" +msgstr " * Le ping des machines est globalement désactivé" -#: commons/text.php:25 -msgid "Inventory" -msgstr "Inventaire" +msgid " * Snapin hash is globally disabled" +msgstr " * Le hachage des Snapins est globalement désactivé" -#: commons/text.php:26 -msgid "O/S" -msgstr "O/S" +msgid " * Snapin replication is globally disabled" +msgstr " * La réplication de Snapin est globalement désactivée" -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "Modifier" +msgid " * Task Scheduler is globally disabled" +msgstr " * Le planificateur de tâches est globalement désactivé" -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "Effacer" +msgid " Name" +msgstr " Nom" -#: commons/text.php:29 -msgid "Deleted" -msgstr "Supprimé" +msgid " No open slots " +msgstr " Pas de slots ouverts " -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "Tout" +msgid " Task state has been updated, now the task is queued!" +msgstr "" +" L'état de la tâche a été mis à jour, désormais, elle est en file d'attente !" -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "Ajouter" +msgid " | This is not the master node" +msgstr " | Ce n'est pas le nœud principal" -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "Chercher" +msgid " | Unable to find image path" +msgstr " | Impossible de trouver le chemin de l'image" -#: commons/text.php:33 -msgid "Storage" -msgstr "Stockage" +msgid "$_POST variable is empty, check apache error log." +msgstr "La variable $_POST est vide, consultez le journal des erreurs Apache." -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "Snapin" +#, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %d non valide" -#: commons/text.php:35 -msgid "Snapins" -msgstr "Snapins" +#, php-format +msgid "%s ID %s is not valid" +msgstr "%s ID %s n'est pas valide" -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "Retirer" +#, php-format +msgid "%s Manager" +msgstr "%s gestionnaire" -#: commons/text.php:37 -msgid "Removed" -msgstr "Supprimé" +#, php-format +msgid "%s Menu" +msgstr "%s Menu" -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "Activé" +#, php-format +msgid "%s is required" +msgstr "%s est requis" -#: commons/text.php:39 -msgid "Management" -msgstr "Gestion" +msgid "1 Hour" +msgstr "1 heure" -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "Mettre à jour" +msgid "10 Minutes" +msgstr "10 minutes" -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "Image" +msgid "2 Minutes" +msgstr "2 minutes" -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "Images" +msgid "30 Minutes" +msgstr "30 minutes" -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "Nœud" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "

Dépendances : port TCP 445 ouvert côté client" -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "Groupe" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "

État possible : Windows, Linux, FOS et Inconnu" -#: commons/text.php:45 -msgid "Groups" -msgstr "Groupes" +msgid "

Version 1.5.5" +msgstr "

Version 1.5.5" -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "Se déconnecter" +msgid "A LDAP setup already exists with this name!" +msgstr "Une configuration LDAP existe déjà avec ce nom !" -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "Machine" +msgid "A Windows Key already exists with this name!" +msgstr "Une clé Windows portant ce nom existe déjà !" -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "Machines" +msgid "A broadcast address is required" +msgstr "Une adresse de broadcast est requise" -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "Bande passante" +msgid "A broadcast already exists with this name" +msgstr "Un broadcast existe déjà avec ce nom" -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "Bande passante de réplication" +msgid "A broadcast already exists with this name!" +msgstr "Un broadcast existe déjà avec ce nom !" -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" -msgstr "" -"Ce paramètre limite la bande passante pour la réplication entre les nœuds" +msgid "A description needs to be set" +msgstr "Une description doit être réglée" -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" -msgstr "" -"Il fonctionne en obtenant le réglage de la bande passante maximale du nœud" +msgid "A file" +msgstr "Un fichier" -#: commons/text.php:55 -msgid "it's transmitting to" -msgstr "qu'il transmet à" +msgid "A group already exists with this name!" +msgstr "Un groupe existe déjà avec ce nom !" -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" -msgstr "Donc si vous essayez de transmettre au nœud distant A" +msgid "A group is required for a location" +msgstr "Un groupe est nécessaire pour un emplacement" -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "et le nœud A a seulement un 5Mbps et vous voulez la vitesse" +msgid "A group is required!" +msgstr "Un groupe est requis !" -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" -msgstr "limitée à 1Mbps sur ce nœud" +msgid "A group must be selected." +msgstr "Un group doit être sélectionné." -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" -msgstr "vous définissez le champ de la bande passante sur ce nœud à 1000" +msgid "A group name is required!" +msgstr "Un nom de groupe est nécessaire !" -#: commons/text.php:61 -msgid "Transmit" -msgstr "Transmission" +msgid "A host already exists with this name!" +msgstr "Une machine avec ce nom existe déjà !" -#: commons/text.php:62 -msgid "Receive" -msgstr "Réception" +msgid "A host name is required!" +msgstr "Un nom de machine est nécessaire !" -#: commons/text.php:63 -msgid "New" -msgstr "Nouveau" +msgid "A host with that name already exists" +msgstr "Une machine avec ce nom existe déjà" -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "Utilisateur" +msgid "A host with this mac already exists with name" +msgstr "Une machine avec cette adresse mac existe déjà avec le nom" -#: commons/text.php:65 -msgid "Users" -msgstr "Utilisateurs" +msgid "A location with that name already exists." +msgstr "Un emplacement avec ce nom existe déjà." -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" -msgstr "Nom" +msgid "A mac address is required!" +msgstr "Une adresse MAC est nécessaire !" -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "Membres" +msgid "A name is required!" +msgstr "Un nom est requis !" -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "Avancé" +msgid "A name must be defined if using the \"name\" property" +msgstr "" -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" -msgstr "Hostname" +msgid "A name must be set" +msgstr "Un nom doit être défini" -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" +msgid "A password is required!" +msgstr "Un mot de passe est nécessaire !" -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "MAC" +msgid "A printer already exists with this name!" +msgstr "Une imprimante existe déjà sous ce nom !" -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" -msgstr "Version" +msgid "A printer name is required!" +msgstr "Un nom d'imprimante est nécessaire !" -#: commons/text.php:73 -msgid "Text" -msgstr "Texte" +msgid "A role already exists with this name!" +msgstr "Un rôle avec ce nom existe déjà !" -#: commons/text.php:74 -msgid "Graphical" -msgstr "Graphique" +msgid "A rule already exists with this name." +msgstr "Une règle existe déjà avec ce nom." -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "Fichier" +msgid "A site alread exists with this name!" +msgstr "Un site existe déjà avec ce nom !" -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "Chemin" +msgid "A site already exists with this name!" +msgstr "Un site existe déjà sous ce nom !" -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "Arrêt" +msgid "A snapin already exists with this name!" +msgstr "Un Snapin existe déjà avec ce nom !" -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "Redémarrage" +msgid "A snapin name is required!" +msgstr "Un nom de Snapin est nécessaire !" -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "Temps" +msgid "A subnet group already exists with this name!" +msgstr "Un groupe de sous-réseaux existe déjà avec ce nom !" -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "Action" +msgid "A subnet group is already using this group." +msgstr "Un groupe de sous-réseaux utilise déjà ce groupe." -#: commons/text.php:81 -msgid "Printer" -msgstr "Imprimante" +msgid "A subnetgroup already exists with this name!" +msgstr "Un groupe de sous-réseau existe déjà avec ce nom !" -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 -msgid "Power Management" -msgstr "Gestion de l'alimentation" +msgid "A task already exists for this host at the scheduled tasking" +msgstr "" +"Une tâche existe déjà pour cette machine au moment de la planification de la " +"tâche" -#: commons/text.php:83 -msgid "Client" -msgstr "Client" +msgid "A task state already exists with this name!" +msgstr "Un état de tâche existe déjà avec ce nom !" -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "Tâche" +msgid "A task type already exists with this name!" +msgstr "Un type de tâche existe déjà avec ce nom !" -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "Identifiant" +msgid "A user already exists with this name" +msgstr "Un utilisateur existe déjà avec ce nom" -#: commons/text.php:86 -msgid "Service" -msgstr "Service" - -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "Général" - -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "Mode" - -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "Date" - -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "Effacer" - -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "Description" - -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "ici" - -#: commons/text.php:93 -msgid "NOT" -msgstr "NE PAS" +msgid "A user name is required!" +msgstr "Un nom d'utilisateur est requis !" -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "ou" +msgid "A username already exists with this name!" +msgstr "Un nom d'utilisateur existe déjà avec ce nom !" -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "Ligne" +msgid "A valid database connection could not be made" +msgstr "Une connexion valide à la base de données n'a pas pu être établie" -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "Erreurs" +msgid "AD Domain" +msgstr "AD Domain" -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "Erreur" +msgid "AD Join" +msgstr "Jonction AD" -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "Exportation" +msgid "AD OU" +msgstr "AD OU" -#: commons/text.php:99 -msgid "Schedule" -msgstr "Programme" +msgid "API Settings" +msgstr "Paramètres de l'API" -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "Déployer" +msgid "API?" +msgstr "API ?" -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 -msgid "Capture" -msgstr "Capture" +msgid "About FOG Reports" +msgstr "À propos des rapports de FOG" -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "Multicast" +msgid "Accepted" +msgstr "Accepté" -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "Statut" +msgid "Access" +msgstr "Accès" -#: commons/text.php:104 -msgid "Actions" -msgstr "Actions" +msgid "Access Control Management" +msgstr "Gestion des contrôles d'accès" -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "État" +msgid "Access Control Role General" +msgstr "Généralités sur les rôles de contrôle d'accès" -#: commons/text.php:107 -msgid "Kill" -msgstr "Tuer" +msgid "Access Control Rule" +msgstr "Règle de contrôle d'accès" -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "Noyau" +msgid "Access Control Rule General" +msgstr "Généralités sur les règles de contrôle d'accès" -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "Emplacement" +msgid "Access Control Rules" +msgstr "Règles de contrôle d'accès" -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "N/A" +msgid "Access Controls" +msgstr "Contrôles d'accès" -#: commons/text.php:111 -msgid "Home" -msgstr "Accueil" +msgid "Access Token" +msgstr "Jeton d'accès" -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "Rapport" +msgid "Access level is still 0 or false" +msgstr "Le niveau d'accès est toujours 0 ou false" -#: commons/text.php:113 -msgid "Reports" -msgstr "Rapports" +msgid "Accessed By" +msgstr "Consulté par" -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "S'identifier" +msgid "Account already linked" +msgstr "Compte déjà lié" -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "en attente" +msgid "Account linked to FOG GUI at" +msgstr "Compte lié à l'interface graphique de FOG à" -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "Achevé" +msgid "Account name to reset" +msgstr "Nom du compte à réinitialiser" -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "Inconnu" +msgid "Account removed from FOG GUI at" +msgstr "Compte retiré de l'interface FOG à" -#: commons/text.php:118 -msgid "Force" -msgstr "Obliger" +msgid "Account successfully added!" +msgstr "Compte ajouté avec succès !" -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "Type" +msgid "Action" +msgstr "Action" -#: commons/text.php:120 -msgid "Settings" -msgstr "Paramètres" +msgid "Actions" +msgstr "Actions" -#: commons/text.php:121 -msgid "FOG" -msgstr "FOG" +msgid "Activate Plugins" +msgstr "Activation des greffons" -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 msgid "Active" msgstr "Actif" -#: commons/text.php:123 -msgid "Printers" -msgstr "Imprimantes" - -#: commons/text.php:124 -msgid "Directory" -msgstr "Dossier" - -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 msgid "Active Directory" msgstr "Active Directory" -#: commons/text.php:126 -msgid "Virus History" -msgstr "Historique des virus" +msgid "Active Multi-cast Tasks" +msgstr "Tâches Multicast actives" -#: commons/text.php:127 -msgid "Login History" -msgstr "Historique de connexion" +msgid "Active Multicast Tasks" +msgstr "Tâches Multicast actives" -#: commons/text.php:128 -msgid "Image History" -msgstr "Historique des images" +msgid "Active Snapin Tasks" +msgstr "Tâches Snapin actives" -#: commons/text.php:129 -msgid "Snapin History" -msgstr "Historique des Snapins" +msgid "Active Tasks" +msgstr "Tâches actives" -#: commons/text.php:130 -msgid "Configuration" -msgstr "Configuration" +msgid "Add" +msgstr "Ajouter" -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "Greffon" +msgid "Add Directory" +msgstr "Ajouter dossier" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "Emplacements" +msgid "Add Event" +msgstr "Ajouter un évènement" -#: commons/text.php:134 -msgid "License" -msgstr "Licence" +msgid "Add Hosts" +msgstr "Ajouter des machines" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "Mise à jour Kernel" +msgid "Add LDAP server failed!" +msgstr "L'ajout du serveur LDAP a échoué !" -#: commons/text.php:136 -msgid "iPXE General Configuration" -msgstr "Configuration générale iPXE" +msgid "Add MAC" +msgstr "Ajouter MAC" -#: commons/text.php:137 -msgid "Client Updater" -msgstr "Mise à jour du client" +msgid "Add New Printer" +msgstr "Ajouter une nouvelle imprimante" -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "Renommage machine" +msgid "Add Printers" +msgstr "Ajout d'Imprimantes" -#: commons/text.php:139 -msgid "Host Registration" -msgstr "Enregistrement machine" +msgid "Add Pushbullet Account" +msgstr "Ajout compte Pushbullet" -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "Client Snapin" +msgid "Add Rules" +msgstr "Ajouter des règles" -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "Tâche de reboot" +msgid "Add Slack Account" +msgstr "Ajouter un compte Slack" -#: commons/text.php:142 -msgid "User Cleanup" -msgstr "Nettoyage de l'utilisateur" +msgid "Add Snapins" +msgstr "Ajouter Snapins" -#: commons/text.php:143 -msgid "User Tracker" -msgstr "Tracker utilisateur" +msgid "Add Storage Group" +msgstr "Ajouter un groupe de stockage" -#: commons/text.php:144 -#, php-format -msgid "%s Manager" -msgstr "%s gestionnaire" +msgid "Add Storage Groups" +msgstr "Ajouter un groupe de stockage" -#: commons/text.php:145 -msgid "Green FOG" -msgstr "Écolo FOG" +msgid "Add Storage Node" +msgstr "Ajouter un nœud de stockage" -#: commons/text.php:146 -msgid "Directory Cleaner" -msgstr "Nettoyeur de dossier" +msgid "Add Subnetgroup failed!" +msgstr "L'ajout de groupe de sous-réseau a échoué !" -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "Liste de MAC Address" +msgid "Add User" +msgstr "Ajouter un utilisateur" -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "Paramètres de FOG" +msgid "Add Users" +msgstr "Ajouter des utilisateurs" -#: commons/text.php:149 -msgid "Server Shell" -msgstr "Serveur Shell" +msgid "Add Windows Key failed!" +msgstr "L'ajout de la clé Windows a échoué !" -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "Visionneuse de journaux" +msgid "Add any custom text you would like" +msgstr "Ajoutez le texte personnalisé que vous souhaitez" -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "Enregistrer la configuration" +msgid "Add broadcast failed!" +msgstr "Échec de l'ajout du broadcast !" -#: commons/text.php:152 -msgid "FOG Sourceforge Page" -msgstr "Page sourceforge de FOG" +msgid "Add failed" +msgstr "Ajout a échoué" -#: commons/text.php:153 -msgid "FOG Home Page" -msgstr "Page d'accueil de FOG" +msgid "Add group failed!" +msgstr "L'ajout de groupe a échoué !" -#: commons/text.php:154 -msgid "New Search" -msgstr "Nouvelle recherche" +msgid "Add host failed!" +msgstr "L'ajout d'une machine a échoué !" -#: commons/text.php:155 -#, php-format -msgid "List All %s" -msgstr "Lister tous les %s" +msgid "Add image failed!" +msgstr "L'ajout d'une image a échoué !" -#: commons/text.php:156 -#, php-format -msgid "Create New %s" -msgstr "Créer un nouveau %s" +msgid "Add location failed!" +msgstr "L'ajout de l'emplacement a échoué !" -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "Tâches" +#, php-format +msgid "Add new role" +msgstr "Ajouter un nouveau rôle" -#: commons/text.php:158 -msgid "Client Settings" -msgstr "Paramètres du client" +#, php-format +msgid "Add new rule" +msgstr "Ajouter une nouvelle règle" -#: commons/text.php:159 -msgid "Plugins" -msgstr "Greffons" +msgid "Add printer failed!" +msgstr "L'ajout de l'imprimante a échoué !" -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "Tâches basiques" +msgid "Add role failed!" +msgstr "L'ajout de rôle a échoué !" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "Membres" +msgid "Add rule failed!" +msgstr "L'ajout de règle a échoué !" -#: commons/text.php:162 -msgid "Image Association" -msgstr "Association Image" +msgid "Add selected hosts" +msgstr "Ajouter les machines sélectionnées" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" -msgstr "%s Menu" +msgid "Add selected images" +msgstr "Ajouter les images sélectionnées" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "Groupe primaire" +msgid "Add selected printers" +msgstr "Ajouter les imprimantes sélectionnées" -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "Tous les nœuds de stockage" +msgid "Add selected rules" +msgstr "Ajouter les règles sélectionnées" -#: commons/text.php:166 -msgid "Add Storage Node" -msgstr "Ajouter un nœud de stockage" +msgid "Add selected snapins" +msgstr "Ajouter les Snapins sélectionnés" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "Tous les groupes de stockage" +msgid "Add selected storage groups" +msgstr "Ajouter les groupes de stockage sélectionnés" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "Ajouter un groupe de stockage" +msgid "Add selected users" +msgstr "Ajouter les utilisateurs sélectionnés" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "Tâches actives" +msgid "Add site failed!" +msgstr "Échec dans l'ajout du site !" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "Tâches Multicast actives" +msgid "Add snapin failed!" +msgstr "L'ajout de Snapin a échoué !" -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "Tâches Snapin actives" +msgid "Add storage node failed!" +msgstr "L'ajout d'un nœud de stockage a échoué !" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "Tâches planifiées" +msgid "Add task state failed!" +msgstr "Échec de l'ajout d'état de tâche !" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "Greffons installés" +msgid "Add task type failed!" +msgstr "L'ajout du type de tâche a échoué !" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "Installation greffons" +msgid "Add to group" +msgstr "Ajouter au groupe" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "Activation des greffons" +msgid "Add user failed!" +msgstr "L'ajout d'un utilisateur a échoué !" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "Exporter la configuration" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" +msgstr "Ajout FOGPage : %s , Nœud : %s" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "Importer la configuration" +msgid "Adding Key" +msgstr "Ajout de la clé" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "Solution open-source de clonage d'ordinateurs" +msgid "Additional Icon elements" +msgstr "Éléments d'icônes supplémentaires" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "Adresse MAC invalide !" +msgid "Additional MACs" +msgstr "MACs supplémentaires" -#: commons/text.php:180 -msgid "iPXE Menu Item Settings" -msgstr "Réglages des éléments du menu iPXE" +msgid "Admin Group" +msgstr "Groupe admin" -#: commons/text.php:181 -msgid "iPXE Menu Customization" -msgstr "Personnalisation du menu iPXE" +msgid "Advanced" +msgstr "Avancé" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" -msgstr "Nouvelle entrée de menu iPXE" +msgid "Advanced Actions" +msgstr "Actions avancées" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "Sauvegarder les modifications" +msgid "Advanced Login Required" +msgstr "Connexion avancée requise" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "Le champ obligatoire de la base de données est vide" +msgid "Advanced Menu Login" +msgstr "Menu Avancé Connexion" -#: commons/text.php:185 -msgid "No results found" -msgstr "Aucun résultat trouvé" +msgid "Advanced Menu settings" +msgstr "Paramètres du menu avancé" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s est requis" +msgid "Advanced Options" +msgstr "Options avancées" -#: commons/text.php:188 -msgid "Host Management" -msgstr "Gestion des machines" +msgid "Advanced Settings" +msgstr "Réglages avancés" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "Gestion du stockage" +msgid "Advanced menu command" +msgstr "Commande avancée du menu" -#: commons/text.php:190 -msgid "Task Management" -msgstr "Gestion des tâches" +msgid "After image Action" +msgstr "Action après image" -#: commons/text.php:191 -msgid "Client Management" -msgstr "Gestion des clients" +msgid "Ago must be boolean" +msgstr "Ago doit être un booléen" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "Tableau de bord" +msgid "All" +msgstr "Tout" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "Configuration du service" +msgid "All Groups" +msgstr "Tous les groupes" -#: commons/text.php:194 -msgid "Report Management" -msgstr "Gestion des rapports" +msgid "All Hosts" +msgstr "Toutes les machines" -#: commons/text.php:195 -msgid "Printer Management" -msgstr "Gestion des imprimantes" +msgid "All Pending MACs approved" +msgstr "Tous les MACs en attente approuvés" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "Configuration FOG" +msgid "All Pending MACs approved." +msgstr "Tous les MACs en attente approuvés." -#: commons/text.php:197 -msgid "Group Management" -msgstr "Gestion des groupes" +msgid "All Storage Groups" +msgstr "Tous les groupes de stockage" -#: commons/text.php:198 -msgid "Image Management" -msgstr "Gestion des images" +msgid "All Storage Nodes" +msgstr "Tous les nœuds de stockage" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "Gestion des utilisateurs" +msgid "All files synced for this item." +msgstr "Tous les fichiers synchronisés pour cet élément." -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "Informations sur le matériel" +msgid "All methods of binding have failed" +msgstr "Toutes les méthodes de liaison ont échoué" -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "Gestion des Snapins" +msgid "All snapins" +msgstr "Tous les Snapins" -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "Gestion des plugins" +msgid "Allows editing/creating of Task States fog currently has." +msgstr "" +"Permet d'éditer/créer les états de tâches que possède actuellement FOG." -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "Gestion des localisations" +msgid "Allows editing/creating of Task Types fog currently has." +msgstr "" +"Permet d'éditer/créer les types de tâches que possède actuellement FOG." -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "Gestion des contrôles d'accès" +msgid "Already created" +msgstr "Déjà créé" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "Aide générale FOG" +msgid "Already registered as" +msgstr "Déjà inscrit comme" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "Machines en attente" +msgid "Also confirm that the database is indeed running" +msgstr "Confirmez également que la base de données fonctionne bien" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "Dernière déployée" +msgid "Although there are multiple levels already" +msgstr "Bien qu'il y ait déjà plusieurs niveaux" -#: commons/text.php:210 -msgid "Last Captured" -msgstr "Dernière capturée" +msgid "An image already exists with this name!" +msgstr "Une image existe déjà avec ce nom !" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "Méthode de déploiement" +msgid "Annually" +msgstr "Annuellement" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "Type d'image" +msgid "Applications" +msgstr "Applications" -#: commons/text.php:213 -msgid "Not Available" -msgstr "Indisponible" +msgid "Approve" +msgstr "Approuver" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "Exporter les machines" +msgid "Approve All Pending MACs for All Hosts" +msgstr "Approuver tous les MACs en attente pour toutes les machines" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "Importer les machines" +msgid "Approve Host" +msgstr "Approuver cette machine" -#: commons/text.php:216 -msgid "Export Users" -msgstr "Exporter les utilisateurs" +msgid "Approve MAC" +msgstr "Approuver les MACs" -#: commons/text.php:217 -msgid "Import Users" -msgstr "Importer les utilisateurs" +msgid "Approve Selected MACs" +msgstr "Approuver les MACs sélectionnés" -#: commons/text.php:218 -msgid "Export Images" -msgstr "Exporter les images" +msgid "Approve Success" +msgstr "Succès" -#: commons/text.php:219 -msgid "Import Images" -msgstr "Importer les images" +msgid "Approve all pending macs" +msgstr "Approuver toutes les MAC en attente" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "Exporter les groupes" +msgid "Approve all pending? " +msgstr "Approuver tout ce qui est en attente ? " -#: commons/text.php:221 -msgid "Import Groups" -msgstr "Importer les groupes" +msgid "Approve selected hosts" +msgstr "Approuver les machines sélectionnés" -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "Exporter les SnapIns" +msgid "Approve this host?" +msgstr "Approuver cette machine ?" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "Importer les SnapIns" +msgid "Approved" +msgstr "Approuvée" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "Exporter les imprimantes" +msgid "Are you sure you wish to" +msgstr "Êtes-vous sûr de vouloir" -#: commons/text.php:225 -msgid "Import Printers" -msgstr "Importer les imprimantes" +msgid "Array" +msgstr "Tableau" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" -msgstr "Prêt d'équipement" +msgid "Assigned Image" +msgstr "Image assignée" -#: commons/text.php:227 -msgid "Host List" -msgstr "Liste des machines" +msgid "Assignment saved successfully" +msgstr "L'affectation a été sauvegardée avec succès" -#: commons/text.php:228 -msgid "Imaging Log" -msgstr "Journal des clonages" +msgid "Associate rule failed!" +msgstr "Association de la règle a échoué !" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" -msgstr "MACs en attente" +msgid "Associated Sites" +msgstr "Sites associés" -#: commons/text.php:230 -msgid "Snapin Log" -msgstr "Journal Snapin" +msgid "Associates the files on nodes" +msgstr "Associe les fichiers sur les nœuds" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "Télécharger Rapports" +msgid "Attempting to perform" +msgstr "Tentative d'exécution" -#: commons/text.php:233 -msgid "Main Menu" -msgstr "Menu principal" +msgid "Attempting to ping" +msgstr "Tenter de faire un ping" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "Identifiant invalide" +msgid "Auto" +msgstr "Auto" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "Non autorisé ici" +msgid "Auto Log Out Time (in minutes)" +msgstr "Temps de déconnexion automatique (en minutes)" -#: commons/text.php:237 -msgid "Management Login" -msgstr "Gestion des connexions" +msgid "Available Snapins" +msgstr "Snapins disponibles" -#: commons/text.php:238 -msgid "Password" -msgstr "Mot de passe" +msgid "BIOS Date" +msgstr "Date du BIOS" -#: commons/text.php:239 -msgid "Estimated FOG Sites" -msgstr "Serveurs FOG estimés " +msgid "BIOS Vendor" +msgstr "Vendeur du BIOS" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "Dernière version " +msgid "BIOS Version" +msgstr "Version du BIOS" -#: commons/text.php:241 -msgid "Latest Development Version" -msgstr "Dernière version de développement " +msgid "Bandwidth" +msgstr "Bande passante" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "L'image est protégée et ne peut être supprimée" +msgid "Bandwidth should be numeric and greater than 0" +msgstr "La bande passante doit être numérique et supérieur à 0" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "Snapin est protégé et ne peut être supprimé" +msgid "Barcode Numbers" +msgstr "Numéros de codes à barres" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "Pas de nœuds maîtres activés pour supprimer cette image" +msgid "Base Only" +msgstr "Base seulement" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "Échec de la suppression des fichiers d'image" +msgid "Basic Settings" +msgstr "Paramètres basiques" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "Impossible de supprimer le fichier" +msgid "Basic Tasks" +msgstr "Tâches basiques" -#: commons/text.php:249 -msgid "Not Registered Hosts" -msgstr "Machines non enregistrées" +msgid "Bind DN" +msgstr "Lier DN" -#: commons/text.php:250 -msgid "Registered Hosts" -msgstr "Machines enregistrées" +msgid "Bind Password" +msgstr "Lier le mot de passe" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "Toutes les machines" +msgid "Bitrate" +msgstr "Bitrate" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "Options de débogage" +msgid "Blank for default" +msgstr "Vide par défaut" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "Options avancées" +msgid "Boot Exit settings" +msgstr "Paramètres de sortie de boot" -#: commons/text.php:254 -msgid "Advanced Login Required" -msgstr "Connexion avancée requise" +msgid "Boot Key Sequence" +msgstr "Séquence des touches de démarrage" -#: commons/text.php:255 -msgid "Pending Registered Hosts" -msgstr "Machines enregistrés en attente" +msgid "Boot Options" +msgstr "Options de démarrage" -#: commons/text.php:257 -msgid "n/a" -msgstr "n/a" +msgid "Broadcast Create Fail" +msgstr "Échec de la création du broadcast" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "Dossier existe déjà" +msgid "Broadcast Create Success" +msgstr "Réussite de la création du broadcast" -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "L'heure existe déjà" +msgid "Broadcast IP" +msgstr "IP de broadcast" -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "L'utilisateur existe déjà" +msgid "Broadcast Name" +msgstr "Nom de broadcast" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "Aucun travail de Snapin actif trouvé pour cette image" +msgid "Broadcast Update Fail" +msgstr "Échec de la mise à jour du Broadcast" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "Impossible de créer la tâche" +msgid "Broadcast Update Success" +msgstr "Succès de la mise à jour du Broadcast" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "La machine est déjà membre d'une tâche active" +msgid "Broadcast added!" +msgstr "Broadcast ajouté !" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "Machine non valide" +msgid "Broadcast update failed!" +msgstr "La mise à jour du Broadcast a échoué !" -#: commons/text.php:267 -msgid "Group is not valid" -msgstr "Groupe est non valide" +msgid "Broadcast updated!" +msgstr "Broadcast mis à jour !" -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "Type de tâche n'est pas valide" +msgid "Browse" +msgstr "Parcourir" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "L'image n'est pas valide" +msgid "CPU Cache" +msgstr "Cache du CPU" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "Le groupe de stockage d'images attribuée est non valable" +msgid "CPU Count" +msgstr "Nombre de CPU" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "Il n'y a pas Snapins associés à cette machine" +msgid "CPU Manufacturer" +msgstr "Fabricant du CPU" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Les snapIns sont déjà déployés sur cette machine" +msgid "CPU Max Speed" +msgstr "Vitesse max CPU" -#: commons/text.php:275 -msgid "Could not find a Storage Node is" -msgstr "Impossible de trouver un nœud de stockage est" +msgid "CPU Model" +msgstr "Modèle CPU" -#: commons/text.php:276 -msgid "there one enabled within this Storage Group" -msgstr "il y en a un activé dans ce groupe de stockage" +msgid "CPU Normal Speed" +msgstr "Vitesse normale CPU" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" -msgstr "Le nœud de stockage des groupes de stockage associé n'est pas valide" +msgid "CPU Speed" +msgstr "Vitesse CPU" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "La date prévue est dans le passé" +msgid "CPU Type" +msgstr "Type de processeur" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "" -"Une tâche existe déjà pour cette machine au moment de la planification de la " -"tâche" +msgid "CPU Version" +msgstr "Version CPU" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "La valeur des minutes n'est pas valide" +msgid "CUPS Printer" +msgstr "Imprimante Serveur CUPS" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "La valeur des heures n'est pas valide" +msgid "Call" +msgstr "Appel" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "La valeur du jour du mois n'est pas valide" +msgid "Can be a comma seperated list." +msgstr "Peut être une liste séparée par des virgules." -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "La valeur du mois n'est pas valide" +msgid "Can not redeclare route" +msgstr "Impossible de redéclarer la route" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "La valleur du jour de la semaine n'est pas valide" +msgid "Cancelled due to new tasking." +msgstr "Annulé en raison de nouvelles tâches." -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "Aucune machine trouvée pour l'adresse MAC" +msgid "Cancelled task" +msgstr "Tâche annulée" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "Veuillez sélectionner une option" +msgid "Cannot add Primary mac as additional mac" +msgstr "" +"Vous ne pouvez pas ajouter un MAC primaire comme une MAC supplémentaire" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" -msgstr "Erreur : plusieurs machines retournées pour la liste des adresses MAC" +msgid "Cannot add a pre-existing primary mac" +msgstr "Impossible d'ajouter une MAC primaire pré-existante" -#: commons/text.php:302 -msgid "Session timeout" -msgstr "Expiration de la session" +msgid "Cannot bind to the LDAP server" +msgstr "Impossible de se lier au serveur LDAP" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "Nœud de stockage" +msgid "Cannot cancel tasks this way" +msgstr "Vous ne pouvez pas annuler les tâches de cette façon" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "Groupe de stockage" +msgid "Cannot change image when in tasking" +msgstr "Impossible de changer d'image durant une tâche" -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "Graphique activé" +msgid "Cannot connect to" +msgstr "Impossible de se connecter à" -#: commons/text.php:307 -msgid "Master Node" -msgstr "Nœud maître" +msgid "Cannot connect to database" +msgstr "Impossible de se connecter à la base de données" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "Est nœud maître" +msgid "Cannot connect to ftp server" +msgstr "Impossible de se connecter au serveur FTP" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "Nom du nœud de stockage" +msgid "Cannot create tasking as image is not enabled" +msgstr "Impossible de créer une tâche car l'image n'est pas activée" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "Description du nœud de stockage" +msgid "Cannot set tasking as image is not enabled" +msgstr "Impossible de définir le multitâche que l'image ne soit pas activée" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" -msgstr "Adresse IP" +msgid "Cannot set tasking to invalid hosts" +msgstr "Impossible d'attribuer des tâches à des machines non valides" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "Clients maximum" +msgid "Cannot set tasking to pending hosts" +msgstr "Impossible de définir des tâches pour les machines en attente" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" -msgstr "Chemin de l'image" +msgid "Cannot view from browser" +msgstr "Impossible de visualiser à partir du navigateur" -#: commons/text.php:314 -msgid "FTP Path" -msgstr "Chemin FTP" +msgid "Capone Deploy" +msgstr "Déployer Capone" -#: commons/text.php:315 -msgid "Snapin Path" -msgstr "Chemin du Snapin" +msgid "Capture" +msgstr "Capture" -#: commons/text.php:316 -msgid "SSL Path" -msgstr "Chemin SSL" +msgid "Captured" +msgstr "Capturée" -#: commons/text.php:317 -msgid "Interface" -msgstr "Interface" +msgid "Change password" +msgstr "Changer le mot de passe" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "Est autorisé" +msgid "Channel call is invalid" +msgstr "Appel de canal est invalide" -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "Le graphique est-il activé" +msgid "Chassis Asset" +msgstr "Actif du châssis" -#: commons/text.php:320 -msgid "On Dashboard" -msgstr "Sur le tableau de bord" +msgid "Chassis Manufacturer" +msgstr "Fabricant du châssis" -#: commons/text.php:321 -msgid "Management Username" -msgstr "Gestion des identifiants" +msgid "Chassis Serial" +msgstr "Numéro de série du châssis" -#: commons/text.php:322 -msgid "Management Password" -msgstr "Gestion des mots de passe" +msgid "Chassis Version" +msgstr "Version du châssis" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "Soyez extrêmement prudent avec ce paramètre" +msgid "Chat is also available on the forums for more realtime help" +msgstr "" +"Le chat est également disponible sur les forums pour une aide en temps réel" -#: commons/text.php:326 -msgid "This setting" -msgstr "Ce paramètre" +msgid "Check here to see what hosts can be added" +msgstr "Vérifiez ici pour voir quelles machines peuvent être ajoutées" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "s'il est utilisé de manière incorrecte peut potentiellement" +msgid "Check here to see what images can be added" +msgstr "Vérifiez ici pour voir quelles images peuvent être ajoutées" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" -msgstr "effacer toutes vos images stockées sur" +msgid "Check here to see what printers can be added" +msgstr "Vérifiez ici pour voir ce que les imprimantes peuvent être ajoutés" -#: commons/text.php:329 -msgid "all current storage nodes" -msgstr "tous les nœuds de stockage actuels" +msgid "Check here to see what rules can be added" +msgstr "Vérifiez ici pour voir quelles règles peuvent être ajoutées" -#: commons/text.php:330 -msgid "The 'Is Master Node' setting defines which" -msgstr "Le paramètre \"Est nœud maître\" définit quel" +msgid "Check here to see what snapins can be added" +msgstr "Vérifiez ici pour voir ce que Snapins peuvent être ajoutés" -#: commons/text.php:331 -msgid "node is the distributor of the images" -msgstr "nœud est le distributeur des images" +msgid "Check here to see what storage groups can be added" +msgstr "Vérifiez ici pour voir quels groupes de stockage peuvent être ajoutés" -#: commons/text.php:332 -msgid "If you add a blank node" -msgstr "Si vous ajoutez un nœud vide" +msgid "Check here to see what users can be added" +msgstr "Vérifiez ici pour voir quels utilisateurs peuvent être ajoutés" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" -msgstr "c'est-à-dire un nœud qui ne contient aucune image" +msgid "Check that database is running" +msgstr "Vérifiez que la base de données est en cours d'exécution" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "et que vous le définissez comme maître" +msgid "Checkin Time" +msgstr "Heure d'enregistrement" -#: commons/text.php:335 -msgid "it will distribute its store" -msgstr "il distribuera son magasin" +msgid "Checking if I am the group manager" +msgstr "Vérifier si je suis le gestionnaire du groupe" -#: commons/text.php:336 -msgid "which is empty" -msgstr "qui est vide" +msgid "Checksum" +msgstr "Somme de contrôle" -#: commons/text.php:337 -msgid "to all nodes in the group" -msgstr "à tous les nœuds du groupe" +msgid "Checksums" +msgstr "Sommes de contrôle" -#: commons/text.php:343 -msgid "Storage Node already exists" -msgstr "Le nœud de stockage existe déjà" +msgid "City/State/Zip" +msgstr "Ville / État / Zip" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "IP du nœud de stockage" +msgid "Class" +msgstr "Classe" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "Clients max pour ce nœud de stockage" +msgid "Class is not extended from FOGPage" +msgstr "La classe n'est pas étendue à partir de FOGPage" -#: commons/text.php:354 -msgid "Storage Node Interface" -msgstr "Interface du nœud de stockage" +msgid "Class must extend event" +msgstr "Classe doit prolonger l'événement" -#: commons/text.php:358 -msgid "Storage Node Username" -msgstr "Nom d'utilisateur du nœud de stockage" +msgid "Class must extend hook" +msgstr "La classe doit étendre le crochet" -#: commons/text.php:362 -msgid "Storage Node Password" -msgstr "Mot de passe du nœud de stockage" +msgid "Class name must be a string" +msgstr "Le nom de la classe doit être une chaîne de caractères" -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "Nœud de stockage créé" +msgid "Clear" +msgstr "Effacer" -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "Nœud de stockage mis à jour" +msgid "Clear Fields" +msgstr "Effacer les champs" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "Mise à jour de base de données a échoué" +msgid "Clear all fields?" +msgstr "Effacer tous les champs ?" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "Veuillez confirmer que vous voulez supprimer" +msgid "Clear all history" +msgstr "Effacer tout l'historique" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "Impossible de détruire le nœud de stockage" +msgid "Click" +msgstr "Cliquez" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "Nœud de stockage supprimé" +msgid "Click Here" +msgstr "Cliquez ici" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" -msgstr "Nom du groupe de stockage" +msgid "Client" +msgstr "Client" -#: commons/text.php:371 -msgid "Storage Group Description" -msgstr "Description du groupe de stockage" +msgid "Client Count" +msgstr "Nombre de clients" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "Groupe de stockage existe déjà" +msgid "Client Management" +msgstr "Gestion des clients" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "Groupe de stockage créé" +msgid "Client Modules Change Fail" +msgstr "Échec de la modification des modules clients" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "Groupe de stockage mis à jour" +msgid "Client Modules Change Success" +msgstr "Succès dans le changement des modules du client" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "Vous devez avoir au moins un groupe de stockage" +msgid "Client Settings" +msgstr "Paramètres du client" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "Groupe de stockage supprimé" +msgid "Client Updater" +msgstr "Mise à jour du client" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "Impossible de détruire le groupe de stockage" +msgid "Client Version" +msgstr "Version Client" -#: commons/text.php:382 -msgid "Invalid Class" -msgstr "Classe non valide" +msgid "Clients" +msgstr "Clients" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" -msgstr "La classe n'est pas étendue à partir de FOGPage" +msgid "Command" +msgstr "Commande" -#: commons/text.php:384 -msgid "Do not list on menu" -msgstr "Ne pas inscrire sur le menu" +msgid "Complete" +msgstr "Achevé" -#: commons/text.php:386 -msgid "Language" -msgstr "Langue" +msgid "Complete Time" +msgstr "Durée totale" -#: commons/init.php:433 -msgid "Missing one or more extensions." -msgstr "Il manque une ou plusieurs extensions." +msgid "Completed" +msgstr "Terminé" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 -msgid "No valid tasks found" -msgstr "Aucune tâche valide n'a été trouvée" +msgid "Completed imaging" +msgstr "Clonage terminé" -#: lib/client/snapinclient.class.php:306 -msgid "Snapin is invalid" -msgstr "Snapin n'est pas valide" +msgid "Compression" +msgstr "Compression" -#: lib/client/snapinclient.class.php:328 -msgid "Snapin Task is invalid" -msgstr "Tâche Snapin n'est pas valide" +msgid "Computer Information" +msgstr "Informations sur l'ordinateur" -#: lib/client/snapinclient.class.php:411 -msgid "Invalid task id sent" -msgstr "L'ID de la tâche invalide envoyé" +msgid "Computer Model" +msgstr "Modèle d'ordinateur" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" -msgstr "Affectation de la tâche Snapin invalide" +msgid "Config File" +msgstr "Fichier de configuration" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "Snapin invalide" +msgid "Configuration" +msgstr "Configuration" -#: lib/client/snapinclient.class.php:500 -msgid "Invalid task id" -msgstr "ID tâche invalide" +msgid "Configuration Import/Export" +msgstr "Configuration Import / Export" -#: lib/client/snapinclient.class.php:510 -msgid "Invalid Snapin Tasking object" -msgstr "Objet Snapin Tasking non valide" +msgid "Configuration Save" +msgstr "Enregistrer la configuration" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" -msgstr "Groupe de stockage non valide" +msgid "Confirm tasking" +msgstr "Confirmer l'affectation des tâches" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "Nœud de stockage non valide" +msgid "Conflicting path/file" +msgstr "Conflit de chemin / fichier" -#: lib/client/snapinclient.class.php:587 -msgid "Cannot connect to ftp server" -msgstr "Impossible de se connecter au serveur FTP" +msgid "Copy from existing" +msgstr "Copie de l'existant" -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." -msgstr "En attente de..." +msgid "Could not find a Storage Node in this group" +msgstr "Impossible de trouver un nœud de stockage dans ce groupe" -#: lib/client/snapinclient.class.php:628 -msgid "Could not read snapin file" -msgstr "Impossible de lire le fichier Snapin" +msgid "Could not find a Storage Node is" +msgstr "Impossible de trouver un nœud de stockage est" -#: lib/client/usertrack.class.php:67 -msgid "Postfix requires an action of login" -msgstr "Postfix requiert une action de connexion" +msgid "Could not find any" +msgstr "Impossible de trouver un" -#: lib/client/usertrack.class.php:68 -msgid "logout" -msgstr "se déconnecter" +msgid "Could not find temp filename" +msgstr "Impossible de trouver le nom du fichier temporaire" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" -msgstr "ou commencer à fonctionner" +msgid "Could not notify" +msgstr "Impossible de notifier" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" -msgstr "" -"Postfix exige une action de connexion, déconnexion, ou commencer à " -"fonctionner" +msgid "Could not read snapin file" +msgstr "Impossible de lire le fichier Snapin" -#: lib/client/usertrack.class.php:139 -msgid "Replay from journal" -msgstr "Reprise du journal" +msgid "Could not read tmp file." +msgstr "Impossible de lire le fichier tmp." -#: lib/client/usertrack.class.php:140 -msgid "real insert time" -msgstr "temps réel d'insertion" +msgid "Could not register" +msgstr "Impossible d'enregistrer" -#: lib/client/usertrack.class.php:142 -msgid "Login time" -msgstr "Temps de connexion" +msgid "Create" +msgstr "Créer" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "Aucun dossier défini à nettoyer" +msgid "Create Image" +msgstr "Créer une image" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "Inscription en attente créée par FOG_CLIENT" +#, php-format +msgid "Create New %s" +msgstr "Créer un nouveau %s" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 -msgid "Too many MACs" -msgstr "Trop de MACs" +msgid "Create New Access Control Role" +msgstr "Créer un nouveau rôle de contrôle d'accès" -#: lib/client/registerclient.class.php:110 -msgid "Only allowed to have" -msgstr "Seulement autorisé à avoir" +msgid "Create New Key" +msgstr "Créer une nouvelle clé" -#: lib/client/registerclient.class.php:112 -msgid "additional macs" -msgstr "adresses MACs supplémentaires" +msgid "Create New LDAP" +msgstr "Créer un nouveau LDAP" -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "Nécessite une chaîne d'action telle que ask, get ou list" +msgid "Create New Location" +msgstr "Créer un nouvel emplacement" -#: lib/client/updateclient.class.php:70 -msgid "If action of ask or get" -msgstr "Si action de ask ou get" +msgid "Create New Printer" +msgstr "Créer une nouvelle imprimante" -#: lib/client/updateclient.class.php:71 -msgid "we need a file name in the request" -msgstr "nous avons besoin d'un nom de fichier dans la demande" +msgid "Create New Snapin" +msgstr "Créer un nouveau Snapin" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 -msgid "Invalid data found" -msgstr "Données invalides trouvées" +msgid "Create New SubnetGroup?" +msgstr "Créer un nouveau groupe de sous-réseau ?" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" -msgstr "Une connexion valide à la base de données n'a pas pu être établie" +msgid "Create New iPXE Menu Entry" +msgstr "Créer une nouvelle entrée du menu iPXE" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" -msgstr "Échec de connexion" +msgid "Create Report?" +msgstr "Créer un rapport ?" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" -msgstr "Échec de" +msgid "Create Rule?" +msgstr "Créer une règle ?" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "Aucune requête envoyée" +msgid "Create Site" +msgstr "Créer un site" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" -msgstr "Pas de base de données pour travailler" +msgid "Create Storage Group" +msgstr "Créer un groupe de stockage" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "Aucun résultat de requête, utilisez query () en premier" +msgid "Create Storage Node" +msgstr "Créer un nœud de stockage" -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" -msgstr "Aucune classe valide envoyée" +msgid "Create Task state" +msgstr "État de création de tâche" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" -msgstr "Numéro de ligne pas réglé correctement" +msgid "Create Task type" +msgstr "Créer un type de tâche" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" -msgstr "Aucune donnée retournée" +msgid "Create WOL Broadcast?" +msgstr "Création d'un WOL Broadcast ?" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" -msgstr "Message" +msgid "Create new PM Schedule" +msgstr "Créer une nouvelle programmation de gestion de l'alimentation" -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" -msgstr "Vérifiez que la base de données est en cours d'exécution" +msgid "Create new group" +msgstr "Créer un nouveau groupe" -#: lib/db/pdodb.class.php:114 -msgid "SQL Error" -msgstr "Erreur SQL" +msgid "Create user?" +msgstr "Créer un utilisateur ?" -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" -msgstr "Message d'erreur" +msgid "Created By" +msgstr "Créé par" -#: lib/db/pdodb.class.php:208 -msgid "No link established to the database" -msgstr "Aucun lien établi avec la base de données" +msgid "Created Tasks For" +msgstr "Tâches créées pour" -#: lib/db/pdodb.class.php:264 -msgid "No query passed" -msgstr "Aucune requête passée" +msgid "Created by FOG Reg on" +msgstr "Créé par FOG Reg sur" -#: lib/db/pdodb.class.php:290 -msgid "no database to" -msgstr "aucune base de données pour" +msgid "Created file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" -msgstr "Pas de connexion à la base de données" +msgid "Credits" +msgstr "Crédits" -#: lib/db/pdodb.class.php:426 -msgid "Error Code" -msgstr "Code d'erreur" +msgid "Cron" +msgstr "Cron" -#: lib/db/pdodb.class.php:430 -msgid "Debug" -msgstr "Déboguer" +msgid "Cron Schedule" +msgstr "Programmation par cron" -#: lib/db/pdodb.class.php:435 -msgid "Cannot connect to database" -msgstr "Impossible de se connecter à la base de données" +msgid "Cross platform" +msgstr "Multiplateforme" -#: lib/db/pdodb.class.php:449 -msgid "Database connection unavailable" -msgstr "Connexion à la base de données indisponible" +msgid "Current Associations" +msgstr "Associations actuelles" -#: lib/fog/bootmenu.class.php:1498 -msgid "No valid storage nodes found" -msgstr "Aucun nœud de stockage valide n'a été trouvé" +msgid "Current Power Management settings" +msgstr "Paramètres actuels de gestion de l'alimentation" -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "Inscrit" +msgid "Current Records" +msgstr "Enregistrements courants" -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "Événement doit être une chaîne de caractères" +msgid "Current Sessions" +msgstr "Sessions en cours" -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" -msgstr "L'écouteur doit être un tableau ou un objet" +msgid "Current files" +msgstr "Fichiers en cours" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "Classe doit prolonger l'événement" +msgid "Current settings" +msgstr "Paramètres actuels" -#: lib/fog/eventmanager.class.php:76 -msgid "Second paramater must be in array(class,function)" -msgstr "Deuxième paramètre doit être sous la forme array (class, function)" +msgid "DMI Field" +msgstr "Champ DMI" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "La classe doit étendre le crochet" +msgid "DMI Key" +msgstr "Clé DMI" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "Méthode n'existe pas" +msgid "DMI Result" +msgstr "Résultat DMI" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" -msgstr "Le registre doit être géré à partir de crochets ou d'événements" +msgid "Daily" +msgstr "Quotidien" -#: lib/fog/eventmanager.class.php:102 -msgid "Could not register" -msgstr "Impossible d'enregistrer" +msgid "Dashboard" +msgstr "Tableau de bord" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 -msgid "Event" -msgstr "Événement" +msgid "Data is blank" +msgstr "Les données sont vides" -#: lib/fog/eventmanager.class.php:107 -msgid "Class" -msgstr "Classe" +msgid "Data must be an array or a callable item." +msgstr "Les données doivent être un tableau ou un élément appelable." -#: lib/fog/eventmanager.class.php:147 -msgid "Event Data must be an array" -msgstr "Les données de l'événement doivent être un tableau" +msgid "Database" +msgstr "Base de données" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "L'événement et les données ne sont pas définis" +msgid "Database Failure" +msgstr "Défaillance de la base de données" -#: lib/fog/eventmanager.class.php:165 -msgid "Could not notify" -msgstr "Impossible de notifier" +msgid "Database Reverted" +msgstr "Base de données restaurée" -#: lib/fog/fogbase.class.php:443 -msgid "Class name must be a string" -msgstr "Le nom de la classe doit être une chaîne de caractères" +msgid "Database SQL" +msgstr "Base de données SQL" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "Machine non valide" +msgid "Database Schema Installer / Updater" +msgstr "Installation / Mise à jour du schéma de la base de données" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 -msgid "Key must be a string or index" -msgstr "La clé doit être une chaîne de caractères ou un index" +msgid "Database Update Failed" +msgstr "Mise à jour de base de données a échoué" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." -msgstr "La clé doit être un tableau de clés ou une chaîne de caractères." +msgid "Database changes reverted!" +msgstr "Les modifications de la base de données ont été rétablies !" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" -msgstr "Pas de données" +msgid "Database connection unavailable" +msgstr "Connexion à la base de données indisponible" -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" -msgstr "Pas un nombre" +msgid "Database imported and added successfully!" +msgstr "Base de données importée et ajoutée avec succès !" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" -msgstr "La variable Space doit être booléenne" +msgid "Database not available" +msgstr "Base de données non disponible" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" -msgstr "Ago doit être un booléen" +msgid "Database save failed" +msgstr "La sauvegarde de la base de données a échoué" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" -msgstr "Le paramètre diff doit être numérique" +msgid "Date" +msgstr "Date" -#: lib/fog/fogbase.class.php:1347 -msgid "Unit of time must be a string" -msgstr "L'unité de temps doit être une chaîne de caractères" +msgid "Date and Time" +msgstr "Date et heure" -#: lib/fog/fogbase.class.php:1351 -msgid "In" -msgstr "Dans" +msgid "Date of checkout" +msgstr "Date de sortie" -#: lib/fog/fogbase.class.php:1354 -msgid "ago" -msgstr "depuis" +msgid "Day of month value is not valid" +msgstr "La valeur du jour du mois n'est pas valide" -#: lib/fog/fogbase.class.php:1382 -msgid "Old key must be a string" -msgstr "L'ancienne clé doit être une chaîne de caractères" +msgid "Day of week value is not valid" +msgstr "La valleur du jour de la semaine n'est pas valide" -#: lib/fog/fogbase.class.php:1385 -msgid "New key must be a string" -msgstr "La nouvelle clé doit être une chaîne de caractères" +msgid "Debug" +msgstr "Déboguer" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" -msgstr "Les données sont vides" +msgid "Debug Options" +msgstr "Options de débogage" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" -msgstr "Nécessite une clé de 256 bits" +msgid "Default" +msgstr "Défaut" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "Chemin de la clé privée non trouvée" +msgid "Default Height" +msgstr "Hauteur par défaut" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "Clé privée non trouvée" +msgid "Default Item" +msgstr "Élément par défaut" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" -msgstr "Clé privée non lisible" +msgid "Default Refresh Rate" +msgstr "Taux de rafraîchissement par défaut" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "La clé privée a échoué" +msgid "Default Width" +msgstr "Largeur par défaut" -#: lib/fog/fogbase.class.php:1677 -msgid "Failed to decrypt data on server" -msgstr "Échec du déchiffrement des données sur le serveur" +msgid "Default is disabled" +msgstr "La valeur par défaut est désactivée" -#: lib/fog/fogbase.class.php:1910 -msgid "Txt must be a string" -msgstr "Txt doit être une chaîne de caractères" +msgid "Default log out time (in minutes)" +msgstr "Temps de déconnexion par défaut (en minutes)" -#: lib/fog/fogbase.class.php:1913 -msgid "Level must be an integer" -msgstr "Le niveau doit être un nombre entier" +msgid "Delayed" +msgstr "Différé" -#: lib/fog/fogbase.class.php:1941 -msgid "String must be a string" -msgstr "La chaîne doit être une chaîne de caractères" +msgid "Delayed Start" +msgstr "Démarrage retardé" -#: lib/fog/fogbase.class.php:2067 -msgid "Key must be a string" -msgstr "La clé doit être une chaîne de caractères" +msgid "Delete" +msgstr "Effacer" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" -msgstr "Ligne" +msgid "Delete Fail" +msgstr "Échec de la suppression" -#: lib/fog/fogcontroller.class.php:129 -msgid "Table not defined for this class" -msgstr "Tableau non défini pour cette classe" +msgid "Delete MACs" +msgstr "Supprimer MACs" -#: lib/fog/fogcontroller.class.php:132 -msgid "Fields not defined for this class" -msgstr "Champs non définis pour cette classe" +msgid "Delete Menu Item" +msgstr "Supprimer l'élément de menu" -#: lib/fog/fogcontroller.class.php:145 -msgid "Record not found" -msgstr "Enregistrement non trouvé" +msgid "Delete Selected" +msgstr "Supprimer la sélection" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" -msgstr "Retour de la valeur de la clé" +msgid "Delete Selected Items" +msgstr "Supprimer tous les éléments sélectionnés" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "Valeur" +msgid "Delete Selected MACs" +msgstr "Supprimer les MACs sélectionnés" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" -msgstr "Aucune clé demandée" +msgid "Delete Success" +msgstr "Succès" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" -msgstr "Clé invalide définie" +msgid "Delete all PM tasks?" +msgstr "Supprimer toutes les tâches de gestion de l'alimentation ?" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" -msgstr "Touche de réglage" +msgid "Delete files" +msgstr "Supprimer les fichiers" -#: lib/fog/fogcontroller.class.php:267 -msgid "Set failed" -msgstr "Le réglage a échoué" +msgid "Delete hosts within" +msgstr "Supprimer les machines dans" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 -msgid "Key" -msgstr "Clé" +msgid "Delete selected" +msgstr "Supprimer la sélection" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "Une clé non valide est ajoutée" +msgid "Delete selected hosts" +msgstr "Supprimer les machines sélectionnés" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "Ajout de la clé" +msgid "Deleted" +msgstr "Supprimé" -#: lib/fog/fogcontroller.class.php:317 -msgid "Add failed" -msgstr "Ajout a échoué" +msgid "Deleted Success" +msgstr "Réussite de la suppression" -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" -msgstr "Clé non valide en cours de retrait" +msgid "Deleting remote file" +msgstr "Suppression d'un fichier distant" -#: lib/fog/fogcontroller.class.php:359 -msgid "Removing Key" -msgstr "Retrait de la clé" +msgid "Deploy" +msgstr "Déployer" -#: lib/fog/fogcontroller.class.php:371 -msgid "Remove failed" -msgstr "La suppression a échoué" +msgid "Deploy Method" +msgstr "Méthode de déploiement" -#: lib/fog/fogcontroller.class.php:456 -msgid "Saving data for" -msgstr "Sauvegarde des données pour" +msgid "Deploy/Capture" +msgstr "Déployer / Capturer" -#: lib/fog/fogcontroller.class.php:458 -msgid "object" -msgstr "objet" +msgid "Description" +msgstr "Description" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" -msgstr "ID" +msgid "Destroy failed" +msgstr "Échec de la destruction" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "NOM" +msgid "Destroyed assignment" +msgstr "Affectation détruite" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" -msgstr "a été mis à jour avec succès" +msgid "Destroyed assignments" +msgstr "Affectations détruites" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" -msgstr "n'a pas réussi à sauver" +msgid "Detailed documentation" +msgstr "Documentation détaillée" -#: lib/fog/fogcontroller.class.php:516 -msgid "Database save failed" -msgstr "La sauvegarde de la base de données a échoué" +msgid "Device must be a string" +msgstr "Le dispositif doit être une chaîne de caractères" -#: lib/fog/fogcontroller.class.php:542 -msgid "Key field must be a string" -msgstr "Le champ clé doit être une chaîne de caractères" +msgid "Diff parameter must be numeric" +msgstr "Le paramètre diff doit être numérique" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 -msgid "Operation field not set" -msgstr "Opération pas définie" +msgid "Directories" +msgstr "Dossiers" -#: lib/fog/fogcontroller.class.php:588 -msgid "Loading data to field" -msgstr "Chargement des données dans le champ" +msgid "Directory" +msgstr "Dossier" -#: lib/fog/fogcontroller.class.php:606 -msgid "Load failed" -msgstr "Échec du chargement" +msgid "Directory Already Exists" +msgstr "Dossier existe déjà" -#: lib/fog/fogcontroller.class.php:668 -msgid "Invalid key being destroyed" -msgstr "Clé invalide en cours de destruction" +msgid "Directory Cleaner" +msgstr "Nettoyeur de dossier" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 -msgid "has been successfully destroyed" -msgstr "a été détruit avec succès" +msgid "Disabled" +msgstr "Désactivé" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 -msgid "has failed to destroy" -msgstr "n'a pas réussi à détruire" +msgid "Display" +msgstr "Afficher" -#: lib/fog/fogcontroller.class.php:750 -msgid "Destroy failed" -msgstr "Échec de la destruction" +msgid "Do not list on menu" +msgstr "Ne pas inscrire sur le menu" -#: lib/fog/fogcontroller.class.php:831 -msgid "Invalid key being requested" -msgstr "La clé demandée n'est pas valide" +msgid "Domain Password" +msgstr "Mot de passe du domaine" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" -msgstr "Type non valide, merge pour ajouter, diff pour enlever" +msgid "Domain Password Legacy" +msgstr "Mot de passe du domaine hérité" -#: lib/fog/fogcontroller.class.php:877 -msgid "Invalid ID passed" -msgstr "ID non valide transmis" +msgid "Domain Username" +msgstr "Nom d'utilisateur du domaine" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" -msgstr "Échoué" +msgid "Domain name" +msgstr "Nom de domaine" -#: lib/fog/fogcore.class.php:40 -msgid "day" -msgstr "jour" +msgid "Donate to FOG" +msgstr "Donner au projet FOG" -#: lib/fog/fogcore.class.php:49 -msgid "hr" -msgstr "heure" +msgid "Done" +msgstr "Terminé" -#: lib/fog/fogcore.class.php:58 -msgid "min" -msgstr "min" +msgid "Done, Failed to create tasking" +msgstr "Fait, Impossible de créer une tâche" -#: lib/fog/fogcore.class.php:76 -msgid "Running Windows" -msgstr "Exécution de Windows" +msgid "Done, with imaging!" +msgstr "Fait, avec un clonage !" -#: lib/fog/fogcore.class.php:88 -msgid "Unavailable" -msgstr "Indisponible" +msgid "Done, without imaging!" +msgstr "C'est fait, sans clonage !" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" -msgstr "Sélectionnez un type de cron" +#, fuzzy +msgid "Done, without imaging! Invalid Login!" +msgstr "C'est fait, sans clonage !" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" -msgstr "Annuel" +#, fuzzy +msgid "Done, without imaging! No image assigned!" +msgstr "Fait, Pas d'image attribué!" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" -msgstr "Annuellement" +#, fuzzy +msgid "Dot in Filename not allowed!" +msgstr "Nom de fichier non autorisé !" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "Mensuel" +msgid "Download Failed" +msgstr "Échec du téléchargement" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "Hebdomadaire" +#, fuzzy +msgid "Downloading Initrd" +msgstr "Téléchargement du noyau" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" -msgstr "Quotidien" +msgid "Downloading Kernel" +msgstr "Téléchargement du noyau" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" -msgstr "Minuit" +msgid "Dropped" +msgstr "Abandonné" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" -msgstr "Toutes les heures" - -#: lib/fog/fogftp.class.php:219 -msgid "FTP connection failed" -msgstr "La connexion FTP a échoué" +msgid "Duration" +msgstr "Durée" -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" -msgstr "Aucun champ passé" +msgid "ESC is defaulted" +msgstr "ESC est par défaut" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" -msgstr "Aucune valeur passée" +msgid "Edit" +msgstr "Modifier" -#: lib/fog/fogmanagercontroller.class.php:603 -msgid "No data to insert" -msgstr "Aucune donnée à insérer" +msgid "Edit Host" +msgstr "Modifier la machine" -#: lib/fog/fogmanagercontroller.class.php:909 -msgid "No items found" -msgstr "Aucun élément trouvé" +msgid "Edit Image" +msgstr "Modifier l'image" -#: lib/fog/fogmanagercontroller.class.php:987 -msgid "Nothing passed to search for" -msgstr "Rien n'est passé pour chercher" +msgid "Edit Node" +msgstr "Modifier le nœud" -#: lib/fog/fogpage.class.php:236 -msgid "ID Must be set to edit" -msgstr "ID doit être configuré pour être modifié" +msgid "Edit User" +msgstr "Modifier l'utilisateur" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %d non valide" +msgid "Either reboot or shutdown action must be used." +msgstr "L'action de redémarrage ou d'arrêt doit être utilisée." -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" -msgstr "ID de machine" +msgid "Email" +msgstr "Courriel" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" -msgstr "Nom de machine" +msgid "Enable location Sending" +msgstr "Activer l'envoi de localisation" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" -msgstr "MAC machine" +msgid "Enabled" +msgstr "Activé" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" -msgstr "Machine Desc" +msgid "Enabled as default" +msgstr "Activé par défaut" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "N° d'inventaire" +msgid "End" +msgstr "Fin" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "Inventaire Desc" +msgid "End Date" +msgstr "Date de fin" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" -msgstr "Utilisateur principal" +msgid "End Time" +msgstr "Heure de fin" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" -msgstr "Autre Tag 1" +msgid "Engineer" +msgstr "Ingénieur" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "Autre Tag 2" +msgid "Enter a group name to search for" +msgstr "Entrez un nom de groupe à rechercher" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" -msgstr "Fabricant du système" +msgid "Enter a hostname to search for" +msgstr "Entrez un nom de machine pour rechercher" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" -msgstr "Produit du système" +msgid "Enter a location name to search for" +msgstr "Entrez un nom de lieu à rechercher" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" -msgstr "Version du système" +msgid "Enter a model name to search for" +msgstr "Entrez un nom de modèle à rechercher" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" -msgstr "Numéro de série du système" +msgid "Enter a site name to search for" +msgstr "Entrez un nom de lieu à rechercher" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" -msgstr "Type de système" +msgid "Enter a snapin name to search for" +msgstr "Entrez un nom de Snapin à rechercher" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" -msgstr "Version du BIOS" +msgid "Enter a term to search for" +msgstr "Entrez un terme à rechercher" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "Vendeur du BIOS" +msgid "Enter a username to search for" +msgstr "Entrez un nom d'utilisateur pour rechercher" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" -msgstr "Date du BIOS" +msgid "Enter an image name to search for" +msgstr "Entrez un nom d'image à rechercher" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "Fabricant de la carte mère" +msgid "Enter an user name to search for" +msgstr "Entrez un nom d'utilisateur pour rechercher" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "Nom carte mère" +msgid "Equipment Loan" +msgstr "Prêt d'équipement" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "Version carte mère" +msgid "Error" +msgstr "Erreur" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "Numéro de série carte mère" +msgid "Error Code" +msgstr "Code d'erreur" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "Actif de la carte mère" +msgid "Error Message" +msgstr "Message d'erreur" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" -msgstr "Fabricant du CPU" +msgid "Error Opening DB File" +msgstr "Erreur d'ouverture du fichier DB" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" -msgstr "Version CPU" +msgid "Error multiple hosts returned for list of mac addresses" +msgstr "Erreur : plusieurs machines retournées pour la liste des adresses MAC" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "Vitesse CPU" +msgid "Error performing query" +msgstr "Erreur requête effectuant" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" -msgstr "Vitesse max CPU" +#, fuzzy +msgid "Error: Failed to download initrd" +msgstr "Erreur : Impossible de télécharger le noyau" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "Mémoire" +msgid "Error: Failed to download kernel" +msgstr "Erreur : Impossible de télécharger le noyau" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" -msgstr "Modèle disque dur" +msgid "Error: Failed to open temp file" +msgstr "Erreur : Impossible d'ouvrir le fichier temporaire" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" -msgstr "Firmware disque dur" +msgid "Errors" +msgstr "Erreurs" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "Numérie de série disque dur" +msgid "Errors on revert detected!" +msgstr "Erreurs sur la restauration détectées !" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "Fabricant du châssis" +msgid "Especially when your organization has many hosts" +msgstr "Surtout quand votre organisation a de nombreuses machines" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" -msgstr "Version du châssis" +msgid "Estimated FOG Sites" +msgstr "Serveurs FOG estimés " -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "Numéro de série du châssis" +msgid "Event" +msgstr "Événement" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "Actif du châssis" +msgid "Event Data must be an array" +msgstr "Les données de l'événement doivent être un tableau" -#: lib/fog/fogpage.class.php:643 -msgid "Group Associations" -msgstr "Associations de groupes" +msgid "Event and data are not set" +msgstr "L'événement et les données ne sont pas définis" -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "Créer un nouveau groupe" +msgid "Event must be a string" +msgstr "Événement doit être une chaîne de caractères" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "Ajouter au groupe" +msgid "Exists item must be boolean" +msgstr "L'élément Exists doit être booléen" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 -msgid "Make changes?" -msgstr "Effectuer les changements ?" +msgid "Exit to Hard Drive Type" +msgstr "Sortie pour type de disque dur" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 -msgid "Delete Selected" -msgstr "Supprimer la sélection" +msgid "Exit to Hard Drive Type(EFI)" +msgstr "Sortie pour type de disque dur (EFI)" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 -msgid "Delete selected" -msgstr "Supprimer la sélection" +msgid "Expand All" +msgstr "Tout développer" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" -msgstr "Requiert des modèles pour traiter" +msgid "Export" +msgstr "Exportation" -#: lib/fog/fogpage.class.php:1019 -msgid "Cannot set tasking to invalid hosts" -msgstr "Impossible d'attribuer des tâches à des machines non valides" +msgid "Export Accesscontrols" +msgstr "Exportation des contrôles d'accès" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 -msgid "Cannot set tasking to pending hosts" -msgstr "Impossible de définir des tâches pour les machines en attente" +msgid "Export CSV" +msgstr "Export CSV" -#: lib/fog/fogpage.class.php:1034 -msgid "Invalid object to try tasking" -msgstr "Objet non valide pour essayer d'attribuer une tâche" +msgid "Export Checksums" +msgstr "Exportation des sommes de contrôle" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" -msgstr "Impossible de définir le multitâche que l'image ne soit pas activée" +msgid "Export Complete" +msgstr "Exportation terminée" -#: lib/fog/fogpage.class.php:1092 -msgid "Host Associated Snapins" -msgstr "Aucun nœud associé" +msgid "Export Configuration" +msgstr "Exporter la configuration" -#: lib/fog/fogpage.class.php:1119 -msgid "Host Unassociated Snapins" -msgstr "Aucun nœud associé" +msgid "Export Database" +msgstr "Exporter la base de données" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" -msgstr "Modifier la machine" +msgid "Export Database?" +msgstr "Exporter la base de données ?" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" -msgstr "Modifier l'image" +msgid "Export Groups" +msgstr "Exporter les groupes" -#: lib/fog/fogpage.class.php:1218 -msgid "Confirm tasking" -msgstr "Confirmer l'affectation des tâches" +msgid "Export Hosts" +msgstr "Exporter les machines" -#: lib/fog/fogpage.class.php:1223 -msgid "Image Associated: " -msgstr "Image associée : " +msgid "Export Images" +msgstr "Exporter les images" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "Réglages avancés" +msgid "Export LDAPs" +msgstr "Exportation LDAP" -#: lib/fog/fogpage.class.php:1243 -msgid "Please select the snapin you want to install" -msgstr "Veuillez sélectionner le Snapin que vous voulez installer" +msgid "Export Locations" +msgstr "Export des emplacements" -#: lib/fog/fogpage.class.php:1253 -msgid "Account name to reset" -msgstr "Nom du compte à réinitialiser" +msgid "Export PDF" +msgstr "Export en PDF" -#: lib/fog/fogpage.class.php:1274 -msgid "Schedule with shutdown" -msgstr "Programmation avec arrêt" +msgid "Export Printers" +msgstr "Exporter les imprimantes" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "Wake on lan ?" +msgid "Export Sites" +msgstr "Exportation de sites" -#: lib/fog/fogpage.class.php:1313 -msgid "Schedule as debug task" -msgstr "Planifier comme tâche de débogage" - -#: lib/fog/fogpage.class.php:1323 -msgid "Schedule instant" -msgstr "Programmation instantanée" +msgid "Export Snapins" +msgstr "Exporter les SnapIns" -#: lib/fog/fogpage.class.php:1335 -msgid "Schedule delayed" -msgstr "Programmation décalée" +msgid "Export Subnetgroups" +msgstr "Exportation de groupes de sous-réseau" -#: lib/fog/fogpage.class.php:1340 -msgid "Date and Time" -msgstr "Date et heure" +msgid "Export Task States" +msgstr "Exportation des états de la tâche" -#: lib/fog/fogpage.class.php:1373 -msgid "Schedule cron-style" -msgstr "Programmation de type cron" +msgid "Export Task Types" +msgstr "Exportation des types de tâches" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "Créer" +msgid "Export Users" +msgstr "Exporter les utilisateurs" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" -msgstr "Attribution des tâches" +msgid "Export WOLBroadcasts" +msgstr "Exportation des WOL Broadcasts" -#: lib/fog/fogpage.class.php:1445 -msgid "Hosts in task" -msgstr "Machines sur la tâche" +msgid "Export Windows Keys" +msgstr "Exportation des clés Windows" -#: lib/fog/fogpage.class.php:1556 -msgid "Invalid scheduling type" -msgstr "Type de programmation non valide" +msgid "Extension" +msgstr "Extension" -#: lib/fog/fogpage.class.php:1595 -msgid "minute" -msgstr "minute" +msgid "FOG" +msgstr "FOG" -#: lib/fog/fogpage.class.php:1604 -msgid "hour" -msgstr "heure" +msgid "FOG 1.2.0 and earlier" +msgstr "FOG 1.2.0 et antérieurs" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" -msgstr "jour du mois" +msgid "FOG 1.2.0 and earlier." +msgstr "FOG 1.2.0 et antérieur." -#: lib/fog/fogpage.class.php:1622 -msgid "month" -msgstr "mois" +msgid "FOG Client" +msgstr "Client FOG" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" -msgstr "jour de la semaine" +msgid "FOG Client Download" +msgstr "Téléchargement du Client FOG" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "Type de tâche n'est pas valide" +msgid "FOG Client Installer" +msgstr "Installateur du client FOG" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "La réinitialisation du mot de passe nécessite un compte utilisateur" +msgid "FOG Client Service Updater" +msgstr "Mise à jour du service client FOG" -#: lib/fog/fogpage.class.php:1663 -msgid "There are no hosts to task in this group" -msgstr "Il n'y a pas de machines à cibler dans ce groupe" +msgid "FOG Client Wiki" +msgstr "Wiki concernant les clients FOG" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" -msgstr "Pour effectuer une tâche de clonage, une image doit être attribuée" +msgid "FOG Client on Github" +msgstr "Client FOG sur Github" -#: lib/fog/fogpage.class.php:1678 -msgid "Cannot create tasking as image is not enabled" -msgstr "Impossible de créer une tâche car l'image n'est pas activée" +msgid "FOG Configuration" +msgstr "Configuration FOG" -#: lib/fog/fogpage.class.php:1685 -msgid "The assigned image is protected" -msgstr "L'image assignée est protégée" +msgid "FOG Crypt" +msgstr "FOG Crypt" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" -msgstr "et ne peut pas être capturée" +msgid "FOG Equipment Loan Form" +msgstr "Équipement FOG Formulaire de prêt" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" -msgstr "" -"Les groupes ne sont pas autorisés à programmer des tâches de téléchargement" +msgid "FOG Forums" +msgstr "Forums FOG" -#: lib/fog/fogpage.class.php:1700 -msgid "Multicast tasks from groups" -msgstr "Tâches multicast à partir de groupes" +msgid "FOG General Help" +msgstr "Aide générale FOG" -#: lib/fog/fogpage.class.php:1702 -msgid "require all hosts have the same image" -msgstr "exiger que toutes les machines aient la même image" +msgid "FOG History - Search" +msgstr "Historique de recherche FOG" -#: lib/fog/fogpage.class.php:1722 -msgid "No valid hosts found and" -msgstr "Aucune machine valide trouvée et" +msgid "FOG Home Page" +msgstr "Page d'accueil de FOG" -#: lib/fog/fogpage.class.php:1723 -msgid "or no valid images specified" -msgstr "ou aucune image valide n'est spécifiée" +msgid "FOG Host - Search" +msgstr "Machines FOG - Recherche" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 -msgid "Tasking Failed" -msgstr "Échec de l'affectation des tâches" +msgid "FOG Host Inventory - Search" +msgstr "Inventaire des machines FOG - Recherche" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 -msgid "Failed to create tasking" -msgstr "Échec de la création d'une tâche" +msgid "FOG Host and Users - Search" +msgstr "Machines et utilisateurs de FOG - Recherche" -#: lib/fog/fogpage.class.php:1803 -msgid "Failed to create scheduled tasking" -msgstr "Échec de la création d'une tâche planifiée" +msgid "FOG Hosts and Users Login" +msgstr "Connexion des machines et des utilisateurs du FOG" -#: lib/fog/fogpage.class.php:1806 -msgid "Scheduled tasks successfully created" -msgstr "Tâches planifiées créées avec succès" +msgid "FOG Imaging - Search" +msgstr "Clonage FOG - Recherche" -#: lib/fog/fogpage.class.php:1812 -msgid "Failed to start tasking type" -msgstr "Échec du démarrage du type de tâche" +msgid "FOG Imaging Log" +msgstr "Journaux clonage FOG" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "Programmation par cron" +msgid "FOG License Information" +msgstr "Informations sur la licence de FOG" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" -msgstr "Démarrage retardé" +msgid "FOG Log Viewer" +msgstr "Visionneuse de journaux FOG" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 -msgid "Tasked Successfully" -msgstr "Tâches effectuées avec succès" +msgid "FOG Managed Printers" +msgstr "Imprimantes gérées par FOG" -#: lib/fog/fogpage.class.php:1882 -msgid "Successfully created" -msgstr "Créé avec succès" +msgid "FOG PXE Boot Menu Configuration" +msgstr "Configuration du menu FOG PXE Boot" -#: lib/fog/fogpage.class.php:1889 -msgid "Created Tasks For" -msgstr "Tâches créées pour" +msgid "FOG Project" +msgstr "Projet FOG" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -msgid "Remove these items?" -msgstr "Retirer ces éléments ?" +msgid "FOG Project on Github" +msgstr "Projet FOG sur Github" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 -msgid "Unable to Authenticate" -msgstr "Impossible de s'authentifier" +msgid "FOG Reports exist to give you information about what" +msgstr "Les rapports FOG vous fournissent des informations sur ce qui" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 -msgid "Successfully deleted" -msgstr "Supprimé avec succès" +msgid "FOG Settings" +msgstr "Paramètres de FOG" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 -msgid "Delete Success" -msgstr "Succès" +msgid "FOG Snapin - Search" +msgstr "Snapin FOG - Recherche" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "Voir tâches avancées pour cette" +msgid "FOG Sourceforge Page" +msgstr "Page sourceforge de FOG" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "Actions avancées" +msgid "FOG System Settings" +msgstr "Paramètres système FOG" -#: lib/fog/fogpage.class.php:2314 -msgid "Clear all fields?" -msgstr "Effacer tous les champs ?" +msgid "FOG User tracking - Search" +msgstr "Suivi des utilisateurs FOG - Recherche" -#: lib/fog/fogpage.class.php:2317 -msgid "Clear Fields" -msgstr "Effacer les champs" +msgid "FOG User tracking history" +msgstr "Historique du suivi des utilisateurs FOG" -#: lib/fog/fogpage.class.php:2321 -msgid "Join Domain after deploy" -msgstr "Joindre le domaine après le déploiement" +msgid "FOG Version" +msgstr "Version FOG" -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "Nom de domaine" +msgid "FOG Version Information" +msgstr "Informations de version FOG" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "Unité organisationnelle" +msgid "FOG Virus Summary" +msgstr "Résumé FOG Virus" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "Vide par défaut" +msgid "FOG Wiki" +msgstr "Pages Wiki FOG" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "Nom d'utilisateur du domaine" +msgid "FOG database you can do so using" +msgstr "la base de données FOG, vous pouvez le faire en utilisant" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "Mot de passe du domaine" +msgid "FOG did is now called Power Management" +msgstr "Écolo s'appelle désormais Gestion de l'énergie" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "Mot de passe du domaine hérité" +msgid "FOG is unable to communicate with the database" +msgstr "Le FOG ne parvient pas à communiquer avec la base de données" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "Doit être chiffré" +msgid "FOG server defaulting under the folder" +msgstr "serveur FOG se trouvant par défaut dans le dossier" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" -msgstr "Forcer un reboot (changer le nom ou intégrer au domaine AD)" +msgid "FTP Connection has failed" +msgstr "Connexion FTP a échoué" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" -msgstr "Nom de fichier non autorisé !" +msgid "FTP Path" +msgstr "Chemin FTP" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" -msgstr "L'URL de téléchargement spécifié n'est pas autorisé !" +msgid "FTP connection failed" +msgstr "La connexion FTP a échoué" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" -msgstr "Erreur : Impossible d'ouvrir le fichier temporaire" +msgid "Fail to destroy" +msgstr "Impossible à détruire" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" -msgstr "Erreur : Impossible de télécharger le noyau" +msgid "Failed" +msgstr "Échoué" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "Échec du téléchargement" +msgid "Failed to" +msgstr "Échec de" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "taille du fichier" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" +msgstr "Échec du rendu de la Page : Nœud : %s , Erreur : %s" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "Chargez les fournisseurs MAC" +msgid "Failed to add snapin" +msgstr "Impossible d'ajouter le Snapin" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "Pas trouvé" +msgid "Failed to add/update snapin file" +msgstr "Impossible d'ajouter ou mettre à jour le fichier Snapin" -#: lib/fog/fogpage.class.php:2779 -msgid "Delete hosts within" -msgstr "Supprimer les machines dans" +msgid "Failed to connect" +msgstr "Échec de connexion" -#: lib/fog/fogpage.class.php:2788 -msgid "Delete files" -msgstr "Supprimer les fichiers" +msgid "Failed to create" +msgstr "Échec de la création" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" -msgstr "est protégé, suppression non autorisée" +msgid "Failed to create Host" +msgstr "Impossible de créer la machine" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" -msgstr "Impossible de détruire" +msgid "Failed to create Session" +msgstr "Échec de la création Session" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" -msgstr "supprimé" +msgid "Failed to create Snapin Job" +msgstr "Échec de la création d'un job Snapin" -#: lib/fog/fogpage.class.php:3323 -msgid "Delete Fail" -msgstr "Échec de la suppression" +msgid "Failed to create inventory for this host" +msgstr "Échec de la création de l'inventaire pour cette machine" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 -msgid " Name" -msgstr " Nom" +msgid "Failed to create new Group" +msgstr "Impossible de créer un nouveau groupe" -#: lib/fog/fogpage.class.php:3600 -msgid "Remove " -msgstr "Retirer " +msgid "Failed to create scheduled tasking" +msgstr "Échec de la création d'une tâche planifiée" -#: lib/fog/fogpage.class.php:3607 -msgid "Remove selected " -msgstr "Retirer les sélectionnés " +msgid "Failed to create task" +msgstr "Impossible de créer la tâche" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 -msgid "Export CSV" -msgstr "Export CSV" +msgid "Failed to create tasking" +msgstr "Échec de la création d'une tâche" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" -msgstr "Importer" +msgid "Failed to decrypt data on server" +msgstr "Échec du déchiffrement des données sur le serveur" -#: lib/fog/fogpage.class.php:3788 -msgid "List" -msgstr "Liste" +msgid "Failed to delete file" +msgstr "Impossible de supprimer le fichier" -#: lib/fog/fogpage.class.php:3806 -msgid "Import CSV" -msgstr "Import CSV" +msgid "Failed to delete image files" +msgstr "Échec de la suppression des fichiers d'image" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" -msgstr "Taille max" +msgid "Failed to destroy" +msgstr "Impossible de détruire" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" -msgstr "Parcourir" +msgid "Failed to destroy Storage Group" +msgstr "Impossible de détruire le groupe de stockage" -#: lib/fog/fogpage.class.php:3824 -msgid "Import CSV?" -msgstr "Import CSV ?" +msgid "Failed to destroy Storage Node" +msgstr "Impossible de détruire le nœud de stockage" -#: lib/fog/fogpage.class.php:3852 -msgid "This page allows you to upload a CSV file into FOG to ease" -msgstr "" -"Cette page vous permet de télécharger un fichier CSV dans FOG pour faciliter" +msgid "Failed to install plugin" +msgstr "Impossible d'installer le greffon" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" -msgstr "la migration ou l'importation en masse de nouveaux éléments" +msgid "Failed to save assignment" +msgstr "Échec de l'enregistrement de l'affectation" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" -msgstr "" -"Il fonctionnera sur la base des champs dont la zone a généralement besoin" +msgid "Failed to save plugin" +msgstr "Impossible d'enregistrer le greffon" -#: lib/fog/fogpage.class.php:3888 -msgid "File must be a csv" -msgstr "Le fichier doit être un CSV" +msgid "Failed to start tasking type" +msgstr "Échec du démarrage du type de tâche" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" -msgstr "Impossible de trouver le nom du fichier temporaire" +msgid "Failed to update" +msgstr "Impossible de mettre à jour" -#: lib/fog/fogpage.class.php:3929 -msgid "Invalid data being parsed" -msgstr "Des données non valides sont analysées" +msgid "Failed to update Host" +msgstr "Impossible de mettre à jour la machine" -#: lib/fog/fogpage.class.php:3941 -msgid "One or more macs are associated with a host" -msgstr "Un ou plusieurs macs sont associés à un hôte" +msgid "Failed to update Session" +msgstr "Impossible de mettre à jour la session" -#: lib/fog/fogpage.class.php:3966 -msgid "This host already exists" -msgstr "Cette machine existe déjà" +msgid "Failed to update Task" +msgstr "Impossible de mettre à jour la tâche" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" -msgstr "Résultats" +msgid "Failed to update imaging log" +msgstr "Impossible de mettre à jour le rapport des clonages" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" -msgstr "Nombre de lignes" +msgid "Failed to update task" +msgstr "Impossible de mettre à jour la tâche" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "Réussite" +msgid "Failed to update task log" +msgstr "Impossible de mettre à jour le rapport des tâches" -#: lib/fog/fogpage.class.php:4154 -msgid "Schedule Power" -msgstr "Programmation alimentation" +msgid "Failed to update/create image log" +msgstr "Journaux Impossible de mettre à jour / créer une image" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" -msgstr "Exécuter immédiatement ?" +msgid "Failed to update/create task log" +msgstr "Journaux Impossible de mettre à jour / créer des tâches" -#: lib/fog/fogpage.class.php:4217 -msgid "Create new PM Schedule" -msgstr "Créer une nouvelle programmation de gestion de l'alimentation" +msgid "Failed to write file to disk" +msgstr "Impossible d'écrire le fichier sur le disque" -#: lib/fog/fogpage.class.php:4227 -msgid "New power management task" -msgstr "Nouvelle tâche de gestion de l'alimentation" +msgid "Fields and types must have equal count" +msgstr "Les champs et les types doivent avoir un nombre égal" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "Aucune classe FOGPage n'a été trouvée pour ce nœud" +msgid "Fields not defined for this class" +msgstr "Champs non définis pour cette classe" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "Échec du rendu de la Page : Nœud : %s , Erreur : %s" +msgid "File" +msgstr "Fichier" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" -msgstr "Aucune valeur de classe envoyé" +#, fuzzy +msgid "File Integrity Management" +msgstr "Gestion des imprimantes" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" -msgstr "Aucun nœud associé" +msgid "File System Information" +msgstr "Informations sur les fichiers système" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" -msgstr "Ajout FOGPage : %s , Nœud : %s" +msgid "File does not exist" +msgstr "Fichier n'existe pas" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" -msgstr "La taille de la fenêtre doit être supérieure à 1" +msgid "File hash mismatch" +msgstr "Incompatibilité de hachage de fichier" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "Sélectionnez une image valide" +msgid "File must be a csv" +msgstr "Le fichier doit être un CSV" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" -msgstr "Il y a une machine dans une tâche" +msgid "File or path cannot be reached" +msgstr "Fichier ou chemin ne peut pas être atteint" -#: lib/fog/group.class.php:452 -msgid "No hosts to task" -msgstr "Aucune machine pour la tâche" +msgid "File size mismatch" +msgstr "Incohérence sur la taille du fichier" -#: lib/fog/group.class.php:475 -msgid "No hosts available to task" -msgstr "Aucune machine disponible pour la tâche" +msgid "File upload stopped by an extension" +msgstr "Téléchargement de fichier arrêté par une extension" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "L'image n'est pas activée" +msgid "Filesize" +msgstr "Taille du fichier" -#: lib/fog/group.class.php:502 -msgid "Unable to find master Storage Node" -msgstr "Impossible de trouver le nœud de stockage principal" +msgid "Filter" +msgstr "Filtrer" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "Cette MAC appartient à une autre machine" +msgid "Finding any images associated" +msgstr "Trouver les images associées" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" -msgstr "" -"Vous ne pouvez pas ajouter un MAC primaire comme une MAC supplémentaire" +msgid "Finding any snapins associated" +msgstr "Trouver les Snapins associés" -#: lib/fog/host.class.php:498 -msgid "Cannot add a pre-existing primary mac" -msgstr "Impossible d'ajouter une MAC primaire pré-existante" +msgid "For example, a GPO policy to push" +msgstr "Par exemple, une GPO à pousser" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." -msgstr "Annulé en raison de nouvelles tâches." +msgid "Force" +msgstr "Obliger" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "Échec de la création d'un job Snapin" +msgid "Force task to start" +msgstr "Task force pour commencer" -#: lib/fog/host.class.php:1371 -msgid "Could not find any" -msgstr "Impossible de trouver un" +msgid "Form" +msgstr "Formulaire" -#: lib/fog/host.class.php:1372 -msgid "nodes containing this image" -msgstr "nœuds contenant cette image" +msgid "Forums are the most common and fastest method of getting" +msgstr "" +"Les forums sont la méthode la plus courante et la plus rapide pour obtenir " +"de l'" -#: lib/fog/host.class.php:1538 -msgid "No valid Image defined for this host" -msgstr "Pas d'image définie pour cette machine" +msgid "Found" +msgstr "Trouvé" -#: lib/fog/host.class.php:1689 -msgid "No viable macs to use" -msgstr "Pas de MACs viables à utiliser" +msgid "Found a scheduled task that should run." +msgstr "J'ai trouvé une tâche planifiée qui devrait être exécutée." -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "L'adresse MAC est déjà utilisée par un autre hôte" +msgid "Found a wake on lan task that should run." +msgstr "J'ai trouvé une tâche \"Wake On Lan\" qui devrait être exécutée." -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 -msgid "snapin" -msgstr "Snapin" +msgid "Found login information" +msgstr "Informations de connexion trouvées" -#: lib/fog/host.class.php:1768 -msgid "per host" -msgstr "par machine" +msgid "Found snapin information" +msgstr "Informations trouvée sur le Snapin" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "Vous êtes seulement autorisé à attribuer" +msgid "Free" +msgstr "Libre" -#: lib/fog/system.class.php:38 -msgid "Your system PHP Version is not sufficient" -msgstr "La version PHP de votre système n'est pas suffisante" +msgid "Free Disk Space" +msgstr "Espace disque libre" -#: lib/fog/system.class.php:39 -msgid "You have version" -msgstr "Vous avez la version" +msgid "Free Memory" +msgstr "Mémoire libre" -#: lib/fog/system.class.php:41 -msgid "version" -msgstr "version" +msgid "Friendly Name" +msgstr "Nom usuel" -#: lib/fog/system.class.php:43 -msgid "is required" -msgstr "est requis" +msgid "Full History Export" +msgstr "Exportation de l'historique complet" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "Aucun groupe de stockage viable n'a été trouvé" +msgid "Full Inventory Export" +msgstr "Export complet Inventaire" -#: lib/fog/powermanagementmanager.class.php:112 -msgid "Wake On Lan" -msgstr "Wake On Lan" +msgid "Function" +msgstr "Fonction" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "Imprimante Port TCP / IP" +msgid "Function does not exist" +msgstr "Fonction n'existe pas" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" -msgstr "Imprimante iPrint" +msgid "GNU Gneral Public License" +msgstr "GNU General Public License" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" -msgstr "Imprimante réseau" +msgid "General" +msgstr "Général" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" -msgstr "Imprimante Serveur CUPS" +msgid "General Information" +msgstr "Informations générales" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "Cron" +msgid "Generate" +msgstr "Générer" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "Différé" +msgid "Generic LDAP" +msgstr "LDAP générique" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "Impossible de lire le fichier tmp." +msgid "Getting image size for" +msgstr "Obtenir la taille de l'image pour" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "Erreur d'ouverture du fichier DB" +msgid "Getting snapin hash and size for" +msgstr "Obtention du hachage et de la taille du Snapin pour" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "Erreur requête effectuant" +msgid "Goto task list" +msgstr "Aller à la liste des tâches" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "L'élément Exists doit être booléen" +msgid "Graph Enabled" +msgstr "Graphique activé" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" -msgstr "Il faut avoir un nom pour créer la table" +msgid "Graphical" +msgstr "Graphique" -#: lib/fog/schema.class.php:325 -msgid "Fields and types must have equal count" -msgstr "Les champs et les types doivent avoir un nombre égal" +msgid "Green FOG" +msgstr "Écolo FOG" -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" -msgstr "Besoin du nom de la table à supprimer" +msgid "Group" +msgstr "Groupe" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" -msgstr "Veuillez sélectionner une option" +msgid "Group Associations" +msgstr "Associations de groupes" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." -msgstr "Il s'agit d'une tâche unique qui devrait s'exécuter maintenant." +msgid "Group Auto Logout" +msgstr "Déconnexion automatique du groupe" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." -msgstr "Il s'agit d'une tâche unique qui ne doit pas être exécutée maintenant." +msgid "Group Bios Exit Type" +msgstr "Groupe Bios Type de sortie" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." -msgstr "C'est une tâche de type cron qui devrait être exécutée maintenant." +msgid "Group Create Fail" +msgstr "Échec de la création du groupe" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." -msgstr "C'est une tâche de type cron qui ne doit pas être exécutée maintenant." +msgid "Group Create Success" +msgstr "Succès de la création du groupe" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" -msgstr "Entrée numérique non valide" +msgid "Group Description" +msgstr "Description du groupe" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" -msgstr "Objet" +msgid "Group EFI Exit Type" +msgstr "Groupe EFI Type de sortie" -#: lib/fog/foggetset.class.php:73 -msgid "Array" -msgstr "Tableau" +msgid "Group FOG Client Module configuration" +msgstr "Configuration du module groupe de client FOG" -#: lib/fog/foggetset.class.php:89 -msgid "Set Failed" -msgstr "Échec de la mise en place" +msgid "Group Kernel" +msgstr "Groupe Kernel" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" -msgstr "De retour tableau dans la clé" +msgid "Group Kernel Arguments" +msgstr "Arguments Groupe Kernel" -#: lib/fog/reportmaker.class.php:157 -msgid "Invalid Type" -msgstr "Type non valide" +msgid "Group Management" +msgstr "Gestion des groupes" -#: lib/fog/reportmaker.class.php:333 -msgid "Export Complete" -msgstr "Exportation terminée" +msgid "Group Member Attribute" +msgstr "Attribut de membre du groupe" -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "Fichier icône introuvable" +msgid "Group Name" +msgstr "Nom de groupe" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "Pas d'icônes trouvés" +msgid "Group Power Management Remove" +msgstr "Supprimer la gestion de l'alimentation du groupe" -#: lib/fog/uploadexception.class.php:50 -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "Le fichier envoyé excède la directive upload_max_filesize" +msgid "Group Primary Disk" +msgstr "Groupe Disque primaire" -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" -msgstr "directive dans le fichier php.ini" +msgid "Group Printers" +msgstr "Groupe Imprimantes" -#: lib/fog/uploadexception.class.php:57 -msgid "The uploaded file exceeds the max_file_size" -msgstr "Le fichier téléchargé dépasse la directive max_file_size" +msgid "Group Product Key" +msgstr "Groupe clé de produit" -#: lib/fog/uploadexception.class.php:58 -msgid "directive specified in the HTML form" -msgstr "spécifiée dans le formulaire HTML" +msgid "Group Quick Deploy" +msgstr "Déploiement rapide d'un groupe" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" -msgstr "Le fichier n'a été que partiellement téléchargé" +msgid "Group Screen Resolution" +msgstr "Groupe Résolution de l'écran" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "Aucun fichier n'a été téléchargé" +msgid "Group Search DN" +msgstr "Recherche de groupe DN" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" -msgstr "Manquer un dossier temporaire" +msgid "Group Search DN did not return any results" +msgstr "La recherche de groupe DN n'a donné aucun résultat" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" -msgstr "Impossible d'écrire le fichier sur le disque" +msgid "Group Snapins" +msgstr "Groupe de SnapIns" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" -msgstr "Téléchargement de fichier arrêté par une extension" +msgid "Group Update Fail" +msgstr "Échec de la mise à jour du groupe" -#: lib/fog/uploadexception.class.php:79 -msgid "Unknown upload error occurred" -msgstr "Une erreur de téléchargement inconnue s'est produite" +msgid "Group Update Success" +msgstr "Succès de la mise à jour du groupe" -#: lib/fog/uploadexception.class.php:80 -msgid "Return code" -msgstr "Code de retour" +msgid "Group added!" +msgstr "Groupe ajouté !" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" -msgstr "utilisateur connecté avec succès dans" +msgid "Group general" +msgstr "Groupe Général" -#: lib/fog/user.class.php:312 -msgid "user failed to login" -msgstr "l'utilisateur n'a pas réussi à se connecter" +msgid "Group image" +msgstr "Image du groupe" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "Adresse IP modifiée" +msgid "Group image association" +msgstr "Association d'images du groupe" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" -msgstr "L'agent utilisateur modifié" +msgid "Group is not valid" +msgstr "Groupe est non valide" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" -msgstr "Session modifiée incorrectement" +msgid "Group module settings" +msgstr "Paramètres du module de groupe" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 -msgid "Node must be a string" -msgstr "Le nœud doit être une chaîne de caractères" +msgid "Group update failed!" +msgstr "La mise à jour du groupe a échoué !" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" -msgstr "Les éléments doivent être des tableaux" +msgid "Group updated!" +msgstr "Groupe mis à jour !" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." -msgstr "Les données doivent être un tableau ou un élément appelable." +msgid "Groups" +msgstr "Groupes" -#: lib/fog/fogsubmenu.class.php:313 -msgid "Info" -msgstr "Info" +msgid "Groups are not allowed to schedule upload tasks" +msgstr "" +"Les groupes ne sont pas autorisés à programmer des tâches de téléchargement" -#: lib/fog/fogsubmenu.class.php:563 -msgid "Title must be a string" -msgstr "Le titre doit être une chaîne de caractères" +msgid "HD Device" +msgstr "Périphérique Disque dur" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 -msgid "Link must be a string" -msgstr "Le lien doit être une chaîne de caractères" +msgid "HD Firmware" +msgstr "Firmware disque dur" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" -msgstr "En série" +msgid "HD Model" +msgstr "Modèle disque dur" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "Ouvrir la connexion VNC pour" +msgid "HD Serial" +msgstr "Numérie de série disque dur" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" -msgstr "VNC" +msgid "Hard Disk Firmware" +msgstr "Firmware Disque dur" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" -msgstr "Installateur du client FOG" +msgid "Hard Disk Model" +msgstr "Modèle Disque dur" -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" -msgstr "Nouveau client et utilitaires" +msgid "Hard Disk Serial Number" +msgstr "Numéro de Disque dur" -#: lib/pages/clientmanagementpage.class.php:87 -msgid "The installers for the fog client" -msgstr "Les installateurs pour le client FOG" +msgid "Hardware Information" +msgstr "Informations sur le matériel" -#: lib/pages/clientmanagementpage.class.php:89 -msgid "Client Version" -msgstr "Version Client" +msgid "Hash" +msgstr "Hash" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" -msgstr "Multiplateforme" +msgid "Have not locked the host for access" +msgstr "" -#: lib/pages/clientmanagementpage.class.php:98 -msgid "more secure" -msgstr "plus sécurisé" +msgid "Height must be 120 pixels." +msgstr "La hauteur doit être de 120 pixels." -#: lib/pages/clientmanagementpage.class.php:99 -msgid "faster" -msgstr "plus rapide" +msgid "Help and Guide" +msgstr "Aide et Guide" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" -msgstr "et beaucoup plus facile sur le serveur" +msgid "Hide Menu" +msgstr "Masquer le menu" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" -msgstr "Surtout quand votre organisation a de nombreuses machines" +msgid "Hide Menu Timeout" +msgstr "Masquer le menu Timeout" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" -msgstr "Utilisez ceci pour les installations via le réseau" +msgid "History Graph" +msgstr "Graphique de l'historique" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" -msgstr "Par exemple, une GPO à pousser" +msgid "History ID" +msgstr "Historique ID" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "Ce fichier ne fonctionnera que sous Windows" +msgid "History IP" +msgstr "Historique des IP" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" -msgstr "MSI" +msgid "History Info" +msgstr "Historique des informations" -#: lib/pages/clientmanagementpage.class.php:119 -msgid "Network Installer" -msgstr "Installateur réseau" +msgid "History Time" +msgstr "Historique des horaires" -#: lib/pages/clientmanagementpage.class.php:126 -msgid "This is the recommended installer to use now" -msgstr "C'est l'installateur recommandé à utiliser maintenant" +msgid "History User" +msgstr "Historique des utilisateurs" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" -msgstr "Il peut être utilisé sur Windows" +msgid "Home" +msgstr "Accueil" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "Linux" +msgid "Home Address" +msgstr "Adresse du domicile" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" -msgstr "and MacOS X" +msgid "Home Phone" +msgstr "Téléphone fixe" -#: lib/pages/clientmanagementpage.class.php:130 -msgid "Smart Installer" -msgstr "Installateur intelligent" +msgid "Host" +msgstr "Machine" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" -msgstr "Recommandé" +msgid "Host AD Domain" +msgstr "Domaine AD machine" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "Aide et Guide" +msgid "Host AD Join" +msgstr "Host AD Join" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" -msgstr "Où trouver de l'aide" +msgid "Host AD OU" +msgstr "Host AD OU" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" -msgstr "Utilisez les liens ci-dessous si vous avez besoin d'aide" +msgid "Host Add to Group Fail" +msgstr "Échec lors de l'ajout de la machine dans le groupe" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 -msgid "NOTE" -msgstr "NOTE" +msgid "Host Add to Group Success" +msgstr "Succès lors de l'ajout de la machine dans le groupe" -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" -msgstr "" -"Les forums sont la méthode la plus courante et la plus rapide pour obtenir " -"de l'" +msgid "Host Associated" +msgstr "Aucun nœud associé" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" -msgstr "aide sur tous les aspects de FOG" +msgid "Host Associated Snapins" +msgstr "Aucun nœud associé" -#: lib/pages/clientmanagementpage.class.php:161 -msgid "Detailed documentation" -msgstr "Documentation détaillée" +msgid "Host Auto Logout" +msgstr "Déconnexion automatique de la machine" -#: lib/pages/clientmanagementpage.class.php:162 -msgid "It is primarily geared for the smart installer methodology now" -msgstr "" -"Il est principalement destiné à la méthodologie de l'installateur intelligent" +msgid "Host Bios Exit Type" +msgstr "Type de sortie Bios de la machine" -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" -msgstr "Wiki concernant les clients FOG" +msgid "Host Create Fail" +msgstr "Échec dans la création de la machine" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" -msgstr "Besoin de davantage de support" +msgid "Host Create Success" +msgstr "Succès dans la création de la machine" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" -msgstr "Quelqu'un pourra vous aider d'une manière ou d'une autre" +msgid "Host Created" +msgstr "Machine créée" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "Utilisez les forums pour poster des problèmes afin que d'autres" +msgid "Host Desc" +msgstr "Machine Desc" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "peuvent voir le problème et aider et/ou utiliser les solutions" +msgid "Host Description" +msgstr "Description de la machine" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" -msgstr "" -"Le chat est également disponible sur les forums pour une aide en temps réel" +msgid "Host EFI Exit Type" +msgstr "Type de sortie EFI de la machine" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" -msgstr "Forums FOG" +msgid "Host FOG Client Module configuration" +msgstr "Configuration du module client FOG de la machine" -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" -msgstr "Machines en attente" +msgid "Host HD Device" +msgstr "Périphérique HD machine" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "Cliquez" +msgid "Host Hardware Inventory" +msgstr "Inventaire du matériel de la machine" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "à examiner." +msgid "Host ID" +msgstr "ID de machine" -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" -msgstr "MACs en attente" +msgid "Host Image" +msgstr "Image machine" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" -msgstr "Serveur Web" +msgid "Host Imaging History" +msgstr "Historique des clonages de la machine" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "Charge moyenne" +msgid "Host Init" +msgstr "Host Init" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" -msgstr "Temps de fonctionnement du système" +#, fuzzy +msgid "Host Invalid" +msgstr "Host Init" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" -msgstr "Présentation du système" +msgid "Host Kernel" +msgstr "Noyau de la machine" -#: lib/pages/dashboardpage.class.php:254 -msgid "Server information at a glance." -msgstr "Informations sur le serveur en un coup d'œil." +msgid "Host Kernel Arguments" +msgstr "Arguments Kernel Machine" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" -msgstr "Activité du groupe de stockage" +msgid "Host List" +msgstr "Liste des machines" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" -msgstr "Activité actuelle des groupes sélectionnés" +msgid "Host Listing Export" +msgstr "Hôte Liste Export" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" -msgstr "Utilisation du disque du nœud de stockage" +msgid "Host Location" +msgstr "Emplacement de la machine" -#: lib/pages/dashboardpage.class.php:303 -msgid "Selected node's disk usage" -msgstr "Utilisation du disque du nœud sélectionné" +msgid "Host Login History" +msgstr "Historique des connexions de la machine" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" -msgstr "Clonage des 30 derniers jours" +msgid "Host MAC" +msgstr "MAC machine" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "2 minutes" +msgid "Host Management" +msgstr "Gestion des machines" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" -msgstr "10 minutes" +msgid "Host Membership" +msgstr "Adhésions aux groupes de la machine" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "30 minutes" +msgid "Host Memory" +msgstr "Mémoire machine" -#: lib/pages/dashboardpage.class.php:407 -msgid "1 Hour" -msgstr "1 heure" +msgid "Host Name" +msgstr "Nom de machine" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" -msgstr "Aucune information sur l'activité n'est disponible pour ce groupe" +msgid "Host Pending MAC" +msgstr "Hôte en attente MAC" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" -msgstr "Libre" +msgid "Host Primary Disk" +msgstr "Disque primaire Machine" -#: lib/pages/dashboardpage.class.php:447 -msgid "No Data Available" -msgstr "Aucune donnée disponible" +msgid "Host Primary MAC" +msgstr "Hôte MAC primaire" -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "utilisé" +msgid "Host Printers" +msgstr "Imprimantes de la machine" -#: lib/pages/dashboardpage.class.php:481 -msgid "Node is unavailable" -msgstr "Le nœud est indisponible" +msgid "Host Product Key" +msgstr "Clé de produit de la machine" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" -msgstr "Nœud hors-ligne" +msgid "Host Product Keys" +msgstr "Clés du produit de la machine" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" -msgstr "Utilisé" +msgid "Host Registration" +msgstr "Enregistrement machine" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" -msgstr "Projet FOG sur Github" +msgid "Host Screen Resolution" +msgstr "Hôte Résolution de l'écran" -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" -msgstr "Client FOG sur Github" +msgid "Host Site" +msgstr "Site de la machine" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" -msgstr "Pages Wiki FOG" +msgid "Host Snapin History" +msgstr "Historique Snapin de la machine" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" -msgstr "Donner au projet FOG" +msgid "Host Snapins" +msgstr "Snapins de la machine" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" -msgstr "Informations de version FOG" +msgid "Host Status" +msgstr "Statut machine" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" -msgstr "Versions Kernel" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" +msgstr "" +"Host Status est un greffon qui ajoute une nouvelle entrée dans la page " +"d'édition de la machine" -#: lib/pages/fogconfigurationpage.class.php:145 -msgid "FOG Version" -msgstr "Version FOG" +msgid "Host Unassociated Snapins" +msgstr "Aucun nœud associé" -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" -msgstr "Informations sur la licence de FOG" +msgid "Host Update Fail" +msgstr "Mise à jour de la machine échouée" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" -msgstr "GNU General Public License" +msgid "Host Update Failed" +msgstr "Mise à jour de la machine a échoué" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" -msgstr "Cette section vous permet de mettre à jour" +msgid "Host Update Success" +msgstr "Succès de la mise à jour de la machine" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" -msgstr "le noyau Linux qui est utilisé pour" +msgid "Host Virus History" +msgstr "Historique des virus de la machine" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" -msgstr "démarrer les ordinateurs clients" +msgid "Host added!" +msgstr "Machine ajoutée !" -#: lib/pages/fogconfigurationpage.class.php:220 -msgid "In FOG" -msgstr "Dans FOG" +msgid "Host approval failed." +msgstr "Approbation de la machine échouée." -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" -msgstr "ce noyau contient tous les pilotes de l'ordinateur client" +msgid "Host approved" +msgstr "Machine approuvée" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" -msgstr "" -"donc si vous ne parvenez pas à démarrer un client, vous pouvez souhaiter" +msgid "Host description" +msgstr "Description machine" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" -msgstr "" -"mettre à jour vers un noyau plus récent qui peut avoir plus de pilotes " -"intégrés" +msgid "Host general" +msgstr "Généralités sur la machine" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" -msgstr "Ce processus d'installation peut prendre quelques minutes" +msgid "Host is already a member of an active task" +msgstr "La machine est déjà membre d'une tâche active" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" -msgstr "car FOG va essayer de sortir sur internet" - -#: lib/pages/fogconfigurationpage.class.php:226 -msgid "to get the requested Kernel" -msgstr "pour obtenir le noyau demandé" - -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" -msgstr "" -"donc si vous avez l'impression que le processus est suspendu, soyez patient" +msgid "Host is not valid" +msgstr "Machine non valide" -#: lib/pages/fogconfigurationpage.class.php:279 -msgid "Downloading Kernel" -msgstr "Téléchargement du noyau" +msgid "Host module settings" +msgstr "Paramètres du module de la machine" -#: lib/pages/fogconfigurationpage.class.php:285 -msgid "Starting process" -msgstr "Début de process" +msgid "Host name" +msgstr "Nom de machine" -#: lib/pages/fogconfigurationpage.class.php:307 -msgid "Save Kernel" -msgstr "Sauvegarder le noyau" +msgid "Host pairings" +msgstr "Associations des machines" -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" -msgstr "Nom du Kernel" +msgid "Host printer configuration" +msgstr "Configuration des imprimantes de la machine" -#: lib/pages/fogconfigurationpage.class.php:332 -msgid "Install Kernel" -msgstr "Installation du Kernel" +msgid "Host token is currently in use" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 -msgid "Install" -msgstr "Installation" +msgid "Host updated!" +msgstr "Machine mise à jour !" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "Configuration du menu FOG PXE Boot" +msgid "Host/Group Name" +msgstr "Machine / Nom de groupe" -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" -msgstr "Couleurs principales" +msgid "Hostname" +msgstr "Hostname" -#: lib/pages/fogconfigurationpage.class.php:465 -msgid "Option specifies the color settings of the main menu items" -msgstr "" -"Option qui spécifie les paramètres de couleur des éléments du menu principal" +msgid "Hostname / IP" +msgstr "Hostname / IP" -#: lib/pages/fogconfigurationpage.class.php:469 -msgid "Valid Host Colors" -msgstr "Couleurs valides de la machine" +msgid "Hostname Changer" +msgstr "Renommage machine" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 -msgid "Option specifies the color text on the menu if the host" -msgstr "L'option spécifie la couleur du texte du menu si la machine" +msgid "Hosts" +msgstr "Machines" -#: lib/pages/fogconfigurationpage.class.php:479 -msgid "is valid" -msgstr "est valide" +msgid "Hosts Associated" +msgstr "Machines associées" -#: lib/pages/fogconfigurationpage.class.php:483 -msgid "Invalid Host Colors" -msgstr "Couleurs d'hôte non valides" +msgid "Hosts do not have the same image assigned" +msgstr "Les hôtes ne possèdent pas la même image assignée" -#: lib/pages/fogconfigurationpage.class.php:494 -msgid "is invalid" -msgstr "est invalide" +msgid "Hosts in task" +msgstr "Machines sur la tâche" -#: lib/pages/fogconfigurationpage.class.php:498 -msgid "Main pairings" -msgstr "Principales associations" +msgid "Hot Key Enabled" +msgstr "Touche de raccourci activée" -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" -msgstr "L'option spécifie les paires de couleurs à" +msgid "Hot Key to use" +msgstr "Touche de raccourci à utiliser" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" -msgstr "présenter et où / comment elles doivent être affichées" +msgid "Hour value is not valid" +msgstr "La valeur des heures n'est pas valide" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" -msgstr "Principales associations de secours" +msgid "Hourly" +msgstr "Toutes les heures" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" -msgstr "L'option spécifie les associations comme solution de secours" +msgid "I am not the fog web server" +msgstr "Je ne suis pas le serveur web de FOG" -#: lib/pages/fogconfigurationpage.class.php:526 -msgid "Host pairings" -msgstr "Associations des machines" +msgid "I am the group manager" +msgstr "Je suis le responsable du groupe" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "L'option spécifie les associations après les contrôles des machines" +msgid "I have read" +msgstr "J'ai lu" -#: lib/pages/fogconfigurationpage.class.php:538 -msgid "Menu Timeout" -msgstr "Délai d'attente du menu" +msgid "I.M.C." +msgstr "I.M.C." -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" -msgstr "en secondes" +msgid "I.M.I." +msgstr "I.M.I." -#: lib/pages/fogconfigurationpage.class.php:549 -msgid "Option specifies the menu timeout" -msgstr "L'option spécifie le délai d'attente du menu" +msgid "ID" +msgstr "ID" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "Ceci est défini en secondes et provoque l'option par défaut" +msgid "ID Must be set to edit" +msgstr "ID doit être configuré pour être modifié" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "pour être démarré si aucune touche n'est pressée lorsque le menu est" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "visible" +msgid "IP Address" +msgstr "Adresse IP" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" -msgstr "Fichier d'arrière-plan du menu" +msgid "IP Address Changed" +msgstr "Adresse IP modifiée" -#: lib/pages/fogconfigurationpage.class.php:567 -msgid "Option specifies the background file to use" -msgstr "L'option spécifie le fichier d'arrière-plan à utiliser" +msgid "IP Passed is incorrect" +msgstr "L'IP passée est incorrecte" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" -msgstr "pour l'arrière-plan du menu" +msgid "Icon" +msgstr "Icône" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 -msgid "Make Changes?" -msgstr "Sauvegarder les modifications ?" +msgid "Icon File not found" +msgstr "Fichier icône introuvable" -#: lib/pages/fogconfigurationpage.class.php:598 -msgid "iPXE Menu Settings" -msgstr "Paramètres du menu iPXE" +msgid "If a new module is published the client will" +msgstr "Si un nouveau module est publié, le client" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "Couleurs de menu, associations, réglages" +msgid "If action of ask or get" +msgstr "Si action de ask ou get" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" -msgstr "Pas de menu" +msgid "If credentials are correct" +msgstr "Si les informations d'identification sont correctes" -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" -msgstr "Cette option permet de déterminer si" +msgid "If none is specified" +msgstr "Si aucun n'est spécifié" -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" -msgstr "un menu sera présent" +msgid "If off" +msgstr "Si c'est désactivé" -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" -msgstr "sur les systèmes clients" +msgid "If on" +msgstr "Sinon" -#: lib/pages/fogconfigurationpage.class.php:631 msgid "If there is not a task set" msgstr "S'il n'y a pas de tâche définie" -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" -msgstr "qui démarre sur le premier appareil" - -#: lib/pages/fogconfigurationpage.class.php:635 -msgid "if there is a task" -msgstr "s'il y a une tâche" +msgid "If this is an upgrade" +msgstr "Si c'est une mise à jour" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" -msgstr "qui exécute cette tâche" +msgid "If you add a blank node" +msgstr "Si vous ajoutez un nœud vide" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" -msgstr "Masquer le menu" +msgid "If you are looking to configure settings for a specific host" +msgstr "" +"Si vous cherchez à configurer les paramètres pour une machine spécifique" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" -msgstr "L'option définit la séquence de touches" +msgid "If you need help understanding what items are needed please" +msgstr "" +"Si vous avez besoin d'aide pour comprendre quels éléments sont nécessaires, " +"veuillez" -#: lib/pages/fogconfigurationpage.class.php:649 -msgid "If none is specified" -msgstr "Si aucun n'est spécifié" +msgid "If you would like to backup your" +msgstr "Si vous souhaitez sauvegarder votre" -#: lib/pages/fogconfigurationpage.class.php:651 -msgid "ESC is defaulted" -msgstr "ESC est par défaut" +msgid "Ignore MAC on Client" +msgstr "Ignorer MAC sur le client" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" -msgstr "" -"Connectez-vous avec les informations d'identification de FOG et vous verrez " -"le menu" +msgid "Ignore MAC on Image" +msgstr "Ignorez les MACs dans l'image" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" -msgstr "Sinon, il démarrera comme d'habitude" +msgid "Image" +msgstr "Image" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" -msgstr "Masquer le menu Timeout" +msgid "Image Associated: " +msgstr "Image associée : " -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "" -"Cette option spécifie la valeur de délai d'attente pour le système de menu " -"caché" +msgid "Image Association" +msgstr "Association Image" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" -msgstr "Séquence des touches de démarrage" +msgid "Image Associations" +msgstr "Associations des images" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" -msgstr "" -"L'option définit la séquence de touches de l'iPXE pour entrer dans le menu " -"de contrôle" +msgid "Image Create Fail" +msgstr "Échec dans la création de l'image" -#: lib/pages/fogconfigurationpage.class.php:678 -msgid "access to the hidden menu system" -msgstr "accès au système de menu caché" +msgid "Image Create Success" +msgstr "Succès dans la création de l'image" -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" -msgstr "Paramètres du menu Caché / Pas de Menu" +msgid "Image Definition" +msgstr "Définition image" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" -msgstr "Sortie pour type de disque dur" +msgid "Image Desc" +msgstr "Image Desc" -#: lib/pages/fogconfigurationpage.class.php:721 -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "" -"L'option spécifie la méthode de sortie de boot traditionnel qu'iPXE utilisera" +msgid "Image Description" +msgstr "Description de l'image" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "Sortie pour type de disque dur (EFI)" +msgid "Image Enabled" +msgstr "Image activée" -#: lib/pages/fogconfigurationpage.class.php:729 -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "L'option spécifie la méthode de sortie de boot efi qu'iPXE utilisera" +msgid "Image General" +msgstr "Généralités sur les images" -#: lib/pages/fogconfigurationpage.class.php:758 -msgid "Boot Exit settings" -msgstr "Paramètres de sortie de boot" +msgid "Image History" +msgstr "Historique des images" -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" -msgstr "Menu Avancé Connexion" +msgid "Image ID" +msgstr "Image ID" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "L'option ci-dessous met en place un système de connexion" +msgid "Image Management" +msgstr "Gestion des images" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" -msgstr "pour les paramètres du menu avancé" +msgid "Image Manager" +msgstr "Gestionnaire d'image" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "Si c'est désactivé" +msgid "Image Membership" +msgstr "Membres de l'image" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" -msgstr "aucun login n'apparaîtra" +msgid "Image Name" +msgstr "Nom de l'image" -#: lib/pages/fogconfigurationpage.class.php:782 -msgid "If on" -msgstr "Sinon" +msgid "Image Path" +msgstr "Chemin de l'image" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" -msgstr "" -"il imposera l'ouverture d'une session pour accéder aux fonctions avancées" +msgid "Image Replicator" +msgstr "Réplicateur d'images" -#: lib/pages/fogconfigurationpage.class.php:786 -msgid "menu system" -msgstr "système de menu" +msgid "Image Size" +msgstr "Taille de l'image" -#: lib/pages/fogconfigurationpage.class.php:790 -msgid "Advanced menu command" -msgstr "Commande avancée du menu" +msgid "Image Size: ON CLIENT" +msgstr "Taille de l'image : sur le client" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" -msgstr "Ajoutez le texte personnalisé que vous souhaitez" +msgid "Image Size: ON SERVER" +msgstr "Taille de l'image : sur le serveur" -#: lib/pages/fogconfigurationpage.class.php:800 -msgid "the advanced menu to use" -msgstr "le menu avancé à utiliser" +msgid "Image Storage Groups" +msgstr "Groupe de stockage des images" -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" -msgstr "Il s'agit de commandes de script iPXE pour fonctionner avec" +msgid "Image Task Completed" +msgstr "Tâche de clonage terminé" -#: lib/pages/fogconfigurationpage.class.php:831 -msgid "Advanced Menu settings" -msgstr "Paramètres du menu avancé" +msgid "Image Transfer Log" +msgstr "Journal du transfert d'images" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" -msgstr "Valeur Timeout non valide" +msgid "Image Type" +msgstr "Type d'image" -#: lib/pages/fogconfigurationpage.class.php:974 -msgid "iPXE Settings updated successfully!" -msgstr "Paramètres iPXE ont été mis à jour avec succès !" +msgid "Image Update Fail" +msgstr "Échec de la mise à jour de l'image" -#: lib/pages/fogconfigurationpage.class.php:975 -msgid "iPXE Update Success" -msgstr "Succès de la mise à jour d'iPXE" +msgid "Image Update Success" +msgstr "Réussite de la mise à jour de l'image" -#: lib/pages/fogconfigurationpage.class.php:982 -msgid "iPXE Update Fail" -msgstr "Échec de la mise à jour d'iPXE" +msgid "Image Used" +msgstr "Image utilisée" -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "" -"Cet élément vous permet de modifier tous les éléments du menu iPXE comme " -"vous le souhaitez" +msgid "Image added!" +msgstr "Image ajoutée !" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" -msgstr "voir si c'est le cas" +msgid "Image is not enabled" +msgstr "L'image n'est pas activée" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" -msgstr "Pensez-y" +msgid "Image is not valid" +msgstr "L'image n'est pas valide" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" -msgstr "La syntaxe de l'iPXE est très pointilleuse lorsqu'il s'agit d'éditer" +msgid "Image is protected and cannot be deleted" +msgstr "L'image est protégée et ne peut être supprimée" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" -msgstr "" -"Si vous avez besoin d'aide pour comprendre quels éléments sont nécessaires, " -"veuillez" +msgid "Image to DMI Mappings" +msgstr "Correspondances entre images et DMI" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" -msgstr "" -"consulter les forums ou rechercher les commandes et les scripts disponibles" +msgid "Image update failed!" +msgstr "La mise à jour de l'image a échoué !" -#: lib/pages/fogconfigurationpage.class.php:1026 -msgid "from" -msgstr "de" +msgid "Image updated!" +msgstr "Image mise à jour !" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 -msgid "Menu Item" -msgstr "Élément du menu" +msgid "Imaged" +msgstr "Clonée" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 -msgid "Parameters" -msgstr "Paramètres" +msgid "Imaged By" +msgstr "Cloné par" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 -msgid "Boot Options" -msgstr "Options de démarrage" +msgid "Imaged For" +msgstr "Cloné pour" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 -msgid "Default Item" -msgstr "Élément par défaut" +msgid "Imaged From" +msgstr "Clonée depuis" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 -msgid "Hot Key Enabled" -msgstr "Touche de raccourci activée" +msgid "Images" +msgstr "Images" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 -msgid "Hot Key to use" -msgstr "Touche de raccourci à utiliser" +msgid "Imaging Completed" +msgstr "Clonage terminé" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 -msgid "Menu Show with" -msgstr "Menu Afficher avec" +msgid "Imaging Duration" +msgstr "Durée du clonage" -#: lib/pages/fogconfigurationpage.class.php:1161 -msgid "Delete Menu Item" -msgstr "Supprimer l'élément de menu" +msgid "Imaging Log" +msgstr "Journal des clonages" -#: lib/pages/fogconfigurationpage.class.php:1310 -msgid "iPXE Item Update Success" -msgstr "Succès de la mise à jour de l'élément iPXE" +msgid "Imaging Over the last 30 days" +msgstr "Clonage des 30 derniers jours" -#: lib/pages/fogconfigurationpage.class.php:1328 -msgid "successfully removed!" -msgstr "supprimé avec succès !" +msgid "Imaging Started" +msgstr "Clonage lancé" -#: lib/pages/fogconfigurationpage.class.php:1329 -msgid "iPXE Item Remove Success" -msgstr "élément iPXE supprimé avec succès" +msgid "Import" +msgstr "Importer" -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "Créer une nouvelle entrée du menu iPXE" +msgid "Import Accesscontrols" +msgstr "Importation des contrôles d'accès" -#: lib/pages/fogconfigurationpage.class.php:1488 -msgid "New iPXE Menu" -msgstr "Nouveau menu iPXE" +msgid "Import CSV" +msgstr "Import CSV" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "Élément de menu ou le titre ne peut pas être vide" +msgid "Import CSV?" +msgstr "Import CSV ?" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" -msgstr "Une description doit être réglée" +msgid "Import Configuration" +msgstr "Importer la configuration" -#: lib/pages/fogconfigurationpage.class.php:1559 -msgid "iPXE Item create failed!" -msgstr "la création de l'élément iPXE a échoué !" +msgid "Import Database" +msgstr "Exporter la base de données" -#: lib/pages/fogconfigurationpage.class.php:1575 -msgid "iPXE Item added!" -msgstr "l'élément iPXE a été ajouté !" +msgid "Import Database?" +msgstr "Importer la base de données ?" -#: lib/pages/fogconfigurationpage.class.php:1576 -msgid "iPXE Item Create Success" -msgstr "Succès de la création de l'élément iPXE" +msgid "Import FOG Reports" +msgstr "Importations des rapports FOG" -#: lib/pages/fogconfigurationpage.class.php:1584 -msgid "iPXE Item Create Fail" -msgstr "Échec de la création de l'élément iPXE" +msgid "Import Failed" +msgstr "L'import a échoué" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "Mise à jour du service client FOG" +msgid "Import Groups" +msgstr "Importer les groupes" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" -msgstr "Nom du module" +msgid "Import Hosts" +msgstr "Importer les machines" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" -msgstr "Module MD5" +msgid "Import Images" +msgstr "Importer les images" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" -msgstr "Type de module" +msgid "Import LDAPs" +msgstr "Importation LDAP" -#: lib/pages/fogconfigurationpage.class.php:1666 -msgid "Current files" -msgstr "Fichiers en cours" +msgid "Import Locations" +msgstr "Import des emplacements" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 -msgid "NOTICE" -msgstr "NOTICE" +msgid "Import Printers" +msgstr "Importer les imprimantes" -#: lib/pages/fogconfigurationpage.class.php:1672 -msgid "The below items are only used for the old client." -msgstr "Les éléments ci-dessous ne sont utilisés que pour l'ancien client." +msgid "Import Report?" +msgstr "Importer les rapports ?" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" -msgstr "Les anciens clients sont les clients qui sont venus avec FOG" +msgid "Import Reports" +msgstr "Importation des rapports" -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" -msgstr "Version 1.2.0 et antérieure" +msgid "Import Sites" +msgstr "Importation de sites" -#: lib/pages/fogconfigurationpage.class.php:1678 -msgid "This section allows you to update the modules and" -msgstr "Cette section vous permet de mettre à jour les modules et" +msgid "Import Snapins" +msgstr "Importer les SnapIns" -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." -msgstr "" -"les fichiers de configuration qui s'exécutent sur les ordinateurs clients." +msgid "Import Subnetgroups" +msgstr "Importation de groupes de sous-réseau" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" -msgstr "Les clients s'enregistreront auprès du serveur de temps" +msgid "Import Successful" +msgstr "Import réussi" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." -msgstr "en temps pour voir si un nouveau module est publié." +msgid "Import Task States" +msgstr "Importation des états de la tâche" -#: lib/pages/fogconfigurationpage.class.php:1686 -msgid "If a new module is published the client will" -msgstr "Si un nouveau module est publié, le client" +msgid "Import Task Types" +msgstr "Importation des types de tâches" -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" -msgstr "téléchargera le module et l'utilisera sur la prochaine" +msgid "Import Users" +msgstr "Importer les utilisateurs" -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." -msgstr "fois où le service est lancé." +msgid "Import WOLBroadcasts" +msgstr "Exportation des WOL Broadcasts" -#: lib/pages/fogconfigurationpage.class.php:1710 -msgid "Upload file" -msgstr "Téléverser un fichier" +msgid "Import Windows Keys" +msgstr "Importation des clés Windows" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 -msgid "Delete Selected Items" -msgstr "Supprimer tous les éléments sélectionnés" +msgid "In" +msgstr "Dans" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 -msgid "Make Changes" -msgstr "Sauvegarder les modifications" +msgid "In FOG" +msgstr "Dans FOG" -#: lib/pages/fogconfigurationpage.class.php:1795 -msgid "Item removed successfully!" -msgstr "Élément retiré avec succès !" +msgid "Included Items" +msgstr "Éléments inclus" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 -msgid "Client Modules Change Success" -msgstr "Succès dans le changement des modules du client" +msgid "Info" +msgstr "Info" -#: lib/pages/fogconfigurationpage.class.php:1803 -msgid "No file uploaded!" -msgstr "Aucun fichier envoyé !" +msgid "Information" +msgstr "Information" -#: lib/pages/fogconfigurationpage.class.php:1849 -msgid "Modules added/updated successfully!" -msgstr "Modules ajoutées / mises à jour avec succès !" +msgid "Init" +msgstr "Init" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" -msgstr "Échec de la modification des modules clients" +msgid "Initial Template" +msgstr "Modèle initial" -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" -msgstr "Liste des fabricants d'adresses MAC" +#, fuzzy +msgid "Initrd Name" +msgstr "Nom du site" -#: lib/pages/fogconfigurationpage.class.php:1881 -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" -msgstr "" -"Cette section vous permet d'importer les fabricants connus d'adresses MAC " -"dans la base de données de FOG pour faciliter l'identification" +#, fuzzy +msgid "Initrd Update" +msgstr "Date invalide" -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" -msgstr "Enregistrements courants" +msgid "Install" +msgstr "Installation" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" -msgstr "Supprimer MACs" +msgid "Install / Update Failed!" +msgstr "Installation / mise à jour a échoué !" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" -msgstr "Mettez à jour les MACs" +msgid "Install / Update Successful!" +msgstr "Installation / Mise à jour réussie !" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" -msgstr "Paramètres système FOG" +#, fuzzy +msgid "Install Initrd" +msgstr "Installation" -#: lib/pages/fogconfigurationpage.class.php:2073 -msgid "This section allows you to customize or alter" -msgstr "Cette section vous permet de personnaliser ou de modifier" +msgid "Install Kernel" +msgstr "Installation du Kernel" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" -msgstr "le mode de fonctionnement de FOG" +msgid "Install Plugin" +msgstr "Installer greffons" -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "Soyez très prudent lorsque vous modifiez l'un des paramètres suivants" +msgid "Install Plugins" +msgstr "Installation greffons" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" -msgstr "car ils peuvent causer des problèmes difficiles à résoudre" +msgid "Install/Update" +msgstr "Installation / mise à jour" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" -msgstr "Tout développer" +msgid "Install/Update Now" +msgstr "Installation / Mise à niveau maintenant" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 -msgid "Partclone Gzip" -msgstr "Partclone Gzip" +msgid "Installed Plugins" +msgstr "Greffons installés" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "Partclone Gzip Split 200 Mo" +msgid "Integrity Settings" +msgstr "Paramètres d'intégrité" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" -msgstr "Partclone non compressé" +msgid "Interface" +msgstr "Interface" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 -msgid "Partclone Uncompressed Split 200MiB" -msgstr "Partclone non compressé Split 200 Mo" +msgid "Interface not ready, waiting for it to come up" +msgstr "L'interface n'est pas prête, j'attends qu'elle apparaisse" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 -msgid "Partclone Zstd" -msgstr "Partclone Zstd" +msgid "Invalid" +msgstr "Invalide" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 -msgid "Partclone Zstd Split 200MiB" -msgstr "Partclone Zstd Split 200 Mo" +msgid "Invalid Class" +msgstr "Classe non valide" -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" -msgstr "Aucune image spécifiée" +msgid "Invalid File" +msgstr "Fichier invalide" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 -msgid "Reset Token" -msgstr "Réinitialisation du jeton" +msgid "Invalid Folder" +msgstr "Dossier non valide" -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" -msgstr "Pas d'image spécifiée" +msgid "Invalid Host" +msgstr "Machine non valide" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." -msgstr "La largeur doit être de 650 pixels." +msgid "Invalid Host Colors" +msgstr "Couleurs d'hôte non valides" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "La hauteur doit être de 120 pixels." +msgid "Invalid ID passed" +msgstr "ID non valide transmis" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 -msgid "Settings successfully stored!" -msgstr "Les paramètres ont été enregistrés avec succès !" +msgid "Invalid IP" +msgstr "IP invalide" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 -msgid "Settings Update Success" -msgstr "Succès de la mise à jour des paramètres" +msgid "Invalid Login" +msgstr "Identifiant invalide" -#: lib/pages/fogconfigurationpage.class.php:2874 -msgid "Service Setting Update Success" -msgstr "Succès de la mise à jour des paramètres de service" +msgid "Invalid MAC Address!" +msgstr "Adresse MAC invalide !" -#: lib/pages/fogconfigurationpage.class.php:2878 -msgid "Rebranding element has been successfully updated!" -msgstr "L'élément sur l'image a été mis à jour avec succès !" +msgid "Invalid Multicast Session" +msgstr "Session multicast invalide" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 -msgid "Settings Update Fail" -msgstr "Échec de la mise à jour des paramètres" +msgid "Invalid Plugin Passed" +msgstr "Greffon non valide passé" -#: lib/pages/fogconfigurationpage.class.php:2896 -msgid "Service Setting Update Failed" -msgstr "Échec de la mise à jour des paramètres du service" +msgid "Invalid Server Information!" +msgstr "Informations sur le serveur invalide !" -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" -msgstr "Service principal" +msgid "Invalid Snapin" +msgstr "Snapin invalide" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" -msgstr "Planificateur" +msgid "Invalid Snapin Tasking" +msgstr "Affectation de la tâche Snapin invalide" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" -msgstr "Réplicateur d'images" +msgid "Invalid Snapin Tasking object" +msgstr "Objet Snapin Tasking non valide" -#: lib/pages/fogconfigurationpage.class.php:3052 -msgid "Image Size" -msgstr "Taille de l'image" +msgid "Invalid Storage Group" +msgstr "Groupe de stockage non valide" -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" -msgstr "Réplicateur de Snapin" +msgid "Invalid Storage Node" +msgstr "Nœud de stockage non valide" -#: lib/pages/fogconfigurationpage.class.php:3070 -msgid "Snapin Hash" -msgstr "Hash du Snapin" +msgid "Invalid Task Type" +msgstr "Invalid Type de tâche" -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" -msgstr "Ping machines" +#, fuzzy +msgid "Invalid Tasking" +msgstr "Tâche non valide !" -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" -msgstr "Journal du transfert d'images" +msgid "Invalid Timeout Value" +msgstr "Valeur Timeout non valide" -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" -msgstr "Journal du transfert de Snapins" +msgid "Invalid Type" +msgstr "Type non valide" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" -msgstr "Visionneuse de journaux FOG" +msgid "Invalid data being parsed" +msgstr "Des données non valides sont analysées" -#: lib/pages/fogconfigurationpage.class.php:3235 -msgid "Lines" -msgstr "Lignes" +msgid "Invalid data found" +msgstr "Données invalides trouvées" -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" -msgstr "Inverser le fichier : (le plus récent en haut)" +msgid "Invalid date" +msgstr "Date invalide" -#: lib/pages/fogconfigurationpage.class.php:3251 -msgid "Pause" -msgstr "Pause" +msgid "Invalid image" +msgstr "Image invalide" -#: lib/pages/fogconfigurationpage.class.php:3270 -msgid "Configuration Import/Export" -msgstr "Configuration Import / Export" +msgid "Invalid image assigned to host" +msgstr "Image non valide assigné à l'hôte" -#: lib/pages/fogconfigurationpage.class.php:3290 -msgid "Export Database?" -msgstr "Exporter la base de données ?" +msgid "Invalid key being added" +msgstr "Une clé non valide est ajoutée" -#: lib/pages/fogconfigurationpage.class.php:3309 -msgid "Export Database" -msgstr "Exporter la base de données" +msgid "Invalid key being destroyed" +msgstr "Clé invalide en cours de destruction" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 -msgid "Import Database?" -msgstr "Importer la base de données ?" +msgid "Invalid key being removed" +msgstr "Clé non valide en cours de retrait" -#: lib/pages/fogconfigurationpage.class.php:3351 -msgid "Import Database" -msgstr "Exporter la base de données" +msgid "Invalid key being requested" +msgstr "La clé demandée n'est pas valide" -#: lib/pages/fogconfigurationpage.class.php:3399 -msgid "Import Successful" -msgstr "Import réussi" +msgid "Invalid key being set" +msgstr "Clé invalide définie" -#: lib/pages/fogconfigurationpage.class.php:3403 -msgid "Database imported and added successfully!" -msgstr "Base de données importée et ajoutée avec succès !" +msgid "Invalid method called" +msgstr "Méthode invalide appelée" -#: lib/pages/fogconfigurationpage.class.php:3414 -msgid "Import Failed" -msgstr "L'import a échoué" +msgid "Invalid numeric entry" +msgstr "Entrée numérique non valide" -#: lib/pages/fogconfigurationpage.class.php:3418 -msgid "There were errors during import!" -msgstr "Il y a eu des erreurs pendant l'importation !" +msgid "Invalid object to try tasking" +msgstr "Objet non valide pour essayer d'attribuer une tâche" -#: lib/pages/fogconfigurationpage.class.php:3427 -msgid "Database Reverted" -msgstr "Base de données restaurée" +msgid "Invalid object type passed" +msgstr "Le type d'objet transmis est invalide" -#: lib/pages/fogconfigurationpage.class.php:3430 -msgid "Database changes reverted!" -msgstr "Les modifications de la base de données ont été rétablies !" +msgid "Invalid operational mode" +msgstr "Mode de fonctionnement non valide" -#: lib/pages/fogconfigurationpage.class.php:3437 -msgid "Database Failure" -msgstr "Défaillance de la base de données" +msgid "Invalid scheduling type" +msgstr "Type de programmation non valide" -#: lib/pages/fogconfigurationpage.class.php:3441 -msgid "Errors on revert detected!" -msgstr "Erreurs sur la restauration détectées !" +msgid "Invalid snapin" +msgstr "Snapin invalide" -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" -msgstr "Nouveau groupe" +msgid "Invalid task" +msgstr "Tâche non valide" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" -msgstr "Nom de groupe" +msgid "Invalid task id" +msgstr "ID tâche invalide" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" -msgstr "Description du groupe" +msgid "Invalid task id sent" +msgstr "L'ID de la tâche invalide envoyé" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" -msgstr "Groupe Kernel" +msgid "Invalid tasking type passed" +msgstr "Le type de tâche transmis est invalide" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" -msgstr "Arguments Groupe Kernel" +msgid "Invalid tasking!" +msgstr "Tâche non valide !" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" -msgstr "Groupe Disque primaire" +msgid "Invalid token passed" +msgstr "Jeton non valide transmis" -#: lib/pages/groupmanagementpage.class.php:298 -msgid "A group name is required!" -msgstr "Un nom de groupe est nécessaire !" +#, fuzzy +msgid "Invalid token passed for host" +msgstr "Jeton non valide transmis" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 -msgid "A group already exists with this name!" -msgstr "Un groupe existe déjà avec ce nom !" +msgid "Invalid type, merge to add, diff to remove" +msgstr "Type non valide, merge pour ajouter, diff pour enlever" -#: lib/pages/groupmanagementpage.class.php:313 -msgid "Add group failed!" -msgstr "L'ajout de groupe a échoué !" +msgid "Invalid user and/or channel passed" +msgstr "Utilisateur et / ou d'un canal non valide transmis" -#: lib/pages/groupmanagementpage.class.php:318 -msgid "Group added!" -msgstr "Groupe ajouté !" +msgid "Inventory" +msgstr "Inventaire" -#: lib/pages/groupmanagementpage.class.php:319 -msgid "Group Create Success" -msgstr "Succès de la création du groupe" +msgid "Inventory ID" +msgstr "N° d'inventaire" -#: lib/pages/groupmanagementpage.class.php:327 -msgid "Group Create Fail" -msgstr "Échec de la création du groupe" +msgid "Is Advanced" +msgstr "Est avancée" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" -msgstr "Groupe clé de produit" +msgid "Is Enabled" +msgstr "Est autorisé" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "Groupe Bios Type de sortie" +msgid "Is Graph Enabled" +msgstr "Le graphique est-il activé" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "Groupe EFI Type de sortie" +msgid "Is Group" +msgstr "Est Groupe" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" -msgstr "Réinitialiser les données de chiffrement" +msgid "Is Master Node" +msgstr "Est nœud maître" -#: lib/pages/groupmanagementpage.class.php:562 -msgid "Group general" -msgstr "Groupe Général" +msgid "Is Pack" +msgstr "Est un paquet" -#: lib/pages/groupmanagementpage.class.php:611 -msgid "Group image" -msgstr "Image du groupe" +msgid "Is Restricted User " +msgstr "Est un utilisateur restreint " -#: lib/pages/groupmanagementpage.class.php:644 -msgid "Group image association" -msgstr "Association d'images du groupe" +msgid "Is a" +msgstr "Est un" -#: lib/pages/groupmanagementpage.class.php:698 -msgid "Group Power Management Remove" -msgstr "Supprimer la gestion de l'alimentation du groupe" +msgid "Is restricted" +msgstr "Est restreint" -#: lib/pages/groupmanagementpage.class.php:703 -msgid "Delete all PM tasks?" -msgstr "Supprimer toutes les tâches de gestion de l'alimentation ?" +msgid "It can be used on Windows" +msgstr "Il peut être utilisé sur Windows" -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" -msgstr "Alias imprimante" +msgid "It is primarily geared for the smart installer methodology now" +msgstr "" +"Il est principalement destiné à la méthodologie de l'installateur intelligent" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" -msgstr "Type d'imprimante" +msgid "It operates by getting the max bandwidth setting of the node" +msgstr "" +"Il fonctionne en obtenant le réglage de la bande passante maximale du nœud" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" -msgstr "TCP / IP" +msgid "It tells the client to download snapins from" +msgstr "Il indique au client de télécharger les Snapins à partir de" -#: lib/pages/groupmanagementpage.class.php:817 -msgid "Group Printers" -msgstr "Groupe Imprimantes" +msgid "It will operate based on the fields the area typically requires" +msgstr "" +"Il fonctionnera sur la base des champs dont la zone a généralement besoin" -#: lib/pages/groupmanagementpage.class.php:827 -msgid "Printer Configuration" -msgstr "Configuration de l'imprimante" +msgid "Item removed successfully!" +msgstr "Élément retiré avec succès !" -#: lib/pages/groupmanagementpage.class.php:832 -msgid "Select management level for these hosts" -msgstr "Sélectionnez le niveau de gestion pour ces machines" +msgid "Items must be an array" +msgstr "Les éléments doivent être des tableaux" -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" -msgstr "" -"Ce paramètre désactive toutes les fonctions de gestion d'imprimante de FOG" +msgid "Job Create Date" +msgstr "Date de création du job" -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" -msgstr "Bien qu'il y ait déjà plusieurs niveaux" +msgid "Job Create Time" +msgstr "Heure de création du job" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" -msgstr "entre les paramètres de la machine et les paramètres globaux" +msgid "Join Domain after deploy" +msgstr "Joindre le domaine après le déploiement" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" -msgstr "il s'agit d'un autre moyen d'assurer la sécurité" +msgid "Kernel" +msgstr "Noyau" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" -msgstr "Pas de gestion des imprimantes" +msgid "Kernel Args" +msgstr "Kernel Args" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." -msgstr "" -"Ce paramètre ajoute et supprime uniquement les imprimantes gérées par FOG. " -"Si l'imprimante existe dans la gestion des imprimantes mais n'est pas " -"affectée à une machine, elle sera supprimée si elle existe sur la machine " -"non affecté. Il ajoutera à la machine les imprimantes qui sont affectées." +msgid "Kernel Arguments" +msgstr "Arguments du noyau" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" -msgstr "Imprimantes gérées par FOG" +msgid "Kernel Name" +msgstr "Nom du Kernel" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." -msgstr "" -"Ce paramètre n'autorise que les imprimantes attribuées par FOG à être " -"ajoutées à la machine. Toute imprimante non assignée sera supprimée, y " -"compris les imprimantes non gérées par FOG." +msgid "Kernel Update" +msgstr "Mise à jour Kernel" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" -msgstr "Imprimantes attribuées uniquement" +msgid "Kernel Versions" +msgstr "Versions Kernel" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 -msgid "Update printer configuration" -msgstr "Mise à jour de la configuration de l'imprimante" +msgid "Kernels/Inits from location" +msgstr "Kernels / Inits de l'emplacement" -#: lib/pages/groupmanagementpage.class.php:918 -msgid "Printer Associations" -msgstr "Associations d'imprimantes" +msgid "Key" +msgstr "Clé" -#: lib/pages/groupmanagementpage.class.php:928 -msgid "Make Printer Changes" -msgstr "Modifications de l'imprimante" +msgid "Key Name" +msgstr "Nom de clé" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 -msgid "Add Printers" -msgstr "Ajout d'Imprimantes" +msgid "Key field must be a string" +msgstr "Le champ clé doit être une chaîne de caractères" -#: lib/pages/groupmanagementpage.class.php:945 -msgid "Update Default Printer" -msgstr "Mise à jour de l'imprimante par défaut" +msgid "Key must be a string" +msgstr "La clé doit être une chaîne de caractères" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 -msgid "Remove selected printers" -msgstr "Supprimer les imprimantes sélectionnées" +msgid "Key must be a string or index" +msgstr "La clé doit être une chaîne de caractères ou un index" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" -msgstr "Nom Snapin" +msgid "Key must be an array of keys or a string." +msgstr "La clé doit être un tableau de clés ou une chaîne de caractères." -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 -msgid "Snapin Created" -msgstr "Snapin crée" +msgid "Kill" +msgstr "Tuer" -#: lib/pages/groupmanagementpage.class.php:1044 -msgid "Group Snapins" -msgstr "Groupe de SnapIns" +msgid "LDAP Connection Name" +msgstr "Nom de la connexion LDAP" -#: lib/pages/groupmanagementpage.class.php:1054 -msgid "Available Snapins" -msgstr "Snapins disponibles" +msgid "LDAP Connection Name" +msgstr "Nom de la connexion LDAP" -#: lib/pages/groupmanagementpage.class.php:1064 -msgid "Make Snapin Changes" -msgstr "Apporter des modifications au Snapin" +msgid "LDAP Create Fail" +msgstr "Échec de la création de LDAP" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 -msgid "Add selected snapins" -msgstr "Ajouter les Snapins sélectionnés" +msgid "LDAP Create Success" +msgstr "Succès de la création de LDAP" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" -msgstr "Retirer Snapins sélectionnés" +msgid "LDAP General" +msgstr "Généralités sur LDAP" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 -msgid "This module is only used on the old client" -msgstr "Ce module n'est utilisé que sur l'ancien client" +msgid "LDAP Management" +msgstr "Gestion LDAP" -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" -msgstr "" -"L'ancien client est celui qui était distribué avec FOG 1.2.0 et les versions " -"antérieures" +msgid "LDAP Ports" +msgstr "Ports LDAP" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" -msgstr "Ce module n'a pas fonctionné après Windows XP en raison de" +msgid "LDAP Server" +msgstr "Serveur LDAP" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "L'UAC a été introduite dans Vista et les versions ultérieures" +msgid "LDAP Server Address" +msgstr "Adresse du serveur LDAP" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "L'ancien client est celui qui était distribué avec" +msgid "LDAP Server Description" +msgstr "Serveur LDAP description" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" -msgstr "FOG 1.2.0 et antérieurs" +msgid "LDAP Server Port" +msgstr "Port du serveur LDAP" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "Ce module a été remplacé dans le nouveau client" +msgid "LDAP Server added!" +msgstr "Le serveur LDAP a été ajouté !" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "et le module équivalent à ce que faisait FOG" +msgid "LDAP Server updated!" +msgstr "Serveur LDAP mis à jour !" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" -msgstr "Écolo s'appelle désormais Gestion de l'énergie" +msgid "LDAP Servers" +msgstr "Serveurs LDAP" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" -msgstr "C'est seulement ici pour maintenir les anciennes opérations du client" +msgid "LDAP Update Fail" +msgstr "Échec de la mise à jour LDAP" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" -msgstr "Ce module n'a pas fonctionné après Windows XP en raison" +msgid "LDAP Update Success" +msgstr "Succès de la mise à jour LDAP" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" -msgstr "de l'UAC introduit dans Vista et plus" +msgid "Language" +msgstr "Langue" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" -msgstr "Ce module est uniquement utilisé" +msgid "Last Captured" +msgstr "Dernière capturée" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" -msgstr "avec les modules et la configuration" +msgid "Last Deployed" +msgstr "Dernière déployée" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" -msgstr "sur l'ancien client" +msgid "Last Updated Time" +msgstr "Heure de la dernière mise à jour" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" -msgstr "Sélectionner / désélectionner" +msgid "Last captured" +msgstr "Dernière capture" -#: lib/pages/groupmanagementpage.class.php:1300 -msgid "Group FOG Client Module configuration" -msgstr "Configuration du module groupe de client FOG" +msgid "Latest Development Version" +msgstr "Dernière version de développement " -#: lib/pages/groupmanagementpage.class.php:1310 -msgid "Group module settings" -msgstr "Paramètres du module de groupe" +msgid "Latest Version" +msgstr "Dernière version " -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -msgid "Update module configurations" -msgstr "Mise à jour des configurations des modules" +msgid "Level must be an integer" +msgstr "Le niveau doit être un nombre entier" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "Largeur de l'écran (en pixels)" +msgid "License" +msgstr "Licence" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "Hauteur de l'écran (en pixels)" +msgid "Line" +msgstr "Ligne" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" -msgstr "Taux de rafraîchissement écran (en Hz)" +msgid "Lines" +msgstr "Lignes" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" -msgstr "Groupe Résolution de l'écran" +msgid "Link New Account" +msgstr "Lien Nouveau compte" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 -msgid "Update display resolution" -msgstr "Mise à jour de la résolution d'affichage" +msgid "Link Pushbullet Account" +msgstr "Compte Lien Pushbullet" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "Temps de déconnexion automatique (en minutes)" +msgid "Link Pushbullet Account Fail" +msgstr "Échec de la liaison du compte Pushbullet" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" -msgstr "Déconnexion automatique du groupe" +msgid "Link Pushbullet Account Success" +msgstr "Succès de la liaison du compte Pushbullet" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 -msgid "Update auto-logout time" -msgstr "Mise à jour du délai de déconnexion automatique" +msgid "Link Slack Account" +msgstr "Lien compte Slack" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" -msgstr "Export en PDF" +msgid "Link Slack Account Fail" +msgstr "Échec de la liaison du compte Slack" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" -msgstr "Mémoire machine" +msgid "Link Slack Account Success" +msgstr "Réussite de la liaison du compte Slack" + +msgid "Link must be a string" +msgstr "Le lien doit être une chaîne de caractères" + +msgid "Linux" +msgstr "Linux" + +msgid "List" +msgstr "Liste" + +#, php-format +msgid "List All %s" +msgstr "Lister tous les %s" + +#, php-format +msgid "List all roles" +msgstr "Lister tous les rôles" + +#, php-format +msgid "List all rules" +msgstr "Lister toutes les règles" + +msgid "Listener must be an array or an object" +msgstr "L'écouteur doit être un tableau ou un objet" + +msgid "Load Average" +msgstr "Charge moyenne" + +msgid "Load MAC Vendors" +msgstr "Chargez les fournisseurs MAC" + +msgid "Load failed" +msgstr "Échec du chargement" + +msgid "Loading data to field" +msgstr "Chargement des données dans le champ" + +msgid "Location" +msgstr "Emplacement" + +msgid "Location Association" +msgstr "Association d'emplacement" + +msgid "Location Create Fail" +msgstr "Échec de la création de l'emplacement" + +msgid "Location Create Success" +msgstr "Succès de la création de l'emplacement" + +msgid "Location General" +msgstr "Généralités Emplacement" + +msgid "Location Management" +msgstr "Gestion des localisations" + +msgid "Location Name" +msgstr "Nom de la localisation" + +msgid "Location Update Fail" +msgstr "Échec de la mise à jour de l'emplacement" + +msgid "Location Update Success" +msgstr "Succès de la mise à jour de l'emplacement" + +msgid "Location added!" +msgstr "Emplacement ajouté !" + +msgid "Location already Exists, please try again." +msgstr "Cet emplacement existe déjà, s'il vous plaît essayer à nouveau." + +msgid "Location is a plugin that allows your FOG Server" +msgstr "Location est un greffon qui permet à votre serveur FOG" + +msgid "Location update failed!" +msgstr "La mise à jour de l'emplacement a échoué !" + +msgid "Location updated!" +msgstr "Emplacement mis à jour !" + +msgid "Location/Deployed" +msgstr "Lieu / Déployé" + +msgid "Locations" +msgstr "Emplacements" + +msgid "Log Viewer" +msgstr "Visionneuse de journaux" + +msgid "Login" +msgstr "S'identifier" + +msgid "Login History" +msgstr "Historique de connexion" + +msgid "Login Users" +msgstr "Utilisateurs connectés" + +msgid "Login accepted" +msgstr "Connexion acceptée" + +msgid "Login failed" +msgstr "La connexion a échoué" + +msgid "Login time" +msgstr "Temps de connexion" + +msgid "Login with the FOG credentials and you will see the menu" +msgstr "" +"Connectez-vous avec les informations d'identification de FOG et vous verrez " +"le menu" + +msgid "Logout" +msgstr "Se déconnecter" + +msgid "Logout not found" +msgstr "Déconnexion non trouvée" + +msgid "MAC" +msgstr "MAC" + +msgid "MAC Address" +msgstr "Adresse MAC" + +msgid "MAC Address List" +msgstr "Liste de MAC Address" + +msgid "MAC Address Manufacturer Listing" +msgstr "Liste des fabricants d'adresses MAC" + +msgid "MAC Format is invalid" +msgstr "Le format de l'adresse MAC est invalide" + +msgid "MAC address is already in use by another host" +msgstr "L'adresse MAC est déjà utilisée par un autre hôte" + +msgid "MB Asset" +msgstr "Actif de la carte mère" + +msgid "MB Manufacturer" +msgstr "Fabricant de la carte mère" + +msgid "MB Name" +msgstr "Nom carte mère" + +msgid "MB Serial" +msgstr "Numéro de série carte mère" + +msgid "MB Version" +msgstr "Version carte mère" + +msgid "MSI" +msgstr "MSI" + +msgid "Machine Details" +msgstr "Détails sur la machine" + +msgid "Main Colors" +msgstr "Couleurs principales" + +msgid "Main Menu" +msgstr "Menu principal" + +msgid "Main fallback pairings" +msgstr "Principales associations de secours" + +msgid "Main pairings" +msgstr "Principales associations" + +msgid "Make Changes" +msgstr "Sauvegarder les modifications" + +msgid "Make Changes?" +msgstr "Sauvegarder les modifications ?" + +msgid "Make Printer Changes" +msgstr "Modifications de l'imprimante" + +msgid "Make Snapin Changes" +msgstr "Apporter des modifications au Snapin" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 -msgid "You must select an action to perform" -msgstr "Vous devez sélectionner une action à effectuer" +msgid "Make changes?" +msgstr "Effectuer les changements ?" -#: lib/pages/groupmanagementpage.class.php:2099 -msgid "Group update failed!" -msgstr "La mise à jour du groupe a échoué !" +msgid "Management" +msgstr "Gestion" -#: lib/pages/groupmanagementpage.class.php:2104 -msgid "Group updated!" -msgstr "Groupe mis à jour !" +msgid "Management Login" +msgstr "Gestion des connexions" -#: lib/pages/groupmanagementpage.class.php:2105 -msgid "Group Update Success" -msgstr "Succès de la mise à jour du groupe" +msgid "Management Password" +msgstr "Gestion des mots de passe" -#: lib/pages/groupmanagementpage.class.php:2113 -msgid "Group Update Fail" -msgstr "Échec de la mise à jour du groupe" +msgid "Management Username" +msgstr "Gestion des identifiants" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" -msgstr "Clonée" +msgid "Master Node" +msgstr "Nœud maître" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" -msgstr "Image assignée" +msgid "Max" +msgstr "Max" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" -msgstr "Aller à la liste des tâches" +msgid "Max Clients" +msgstr "Clients maximum" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" -msgstr "Liste des machines en attente" +msgid "Max Size" +msgstr "Taille max" -#: lib/pages/hostmanagementpage.class.php:333 -msgid "Approve selected hosts" -msgstr "Approuver les machines sélectionnés" +msgid "Members" +msgstr "Membres" -#: lib/pages/hostmanagementpage.class.php:338 -msgid "Delete selected hosts" -msgstr "Supprimer les machines sélectionnés" +msgid "Membership" +msgstr "Membres" -#: lib/pages/hostmanagementpage.class.php:367 -msgid "Approve Success" -msgstr "Succès" +msgid "Memory" +msgstr "Mémoire" -#: lib/pages/hostmanagementpage.class.php:368 -msgid "Selected hosts approved successfully" -msgstr "Les machines sélectionnés ont été approuvés avec succès" +msgid "Menu Background File" +msgstr "Fichier d'arrière-plan du menu" -#: lib/pages/hostmanagementpage.class.php:376 -msgid "Deleted Success" -msgstr "Réussite de la suppression" +msgid "Menu Hide/No Menu settings" +msgstr "Paramètres du menu Caché / Pas de Menu" -#: lib/pages/hostmanagementpage.class.php:377 -msgid "Selected hosts deleted successfully" -msgstr "Les machines sélectionnées ont été supprimés avec succès" +msgid "Menu Item" +msgstr "Élément du menu" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" -msgstr "Nouvelle machine" +msgid "Menu Item or title cannot be blank" +msgstr "Élément de menu ou le titre ne peut pas être vide" -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" -msgstr "Nom de machine" +msgid "Menu Show with" +msgstr "Menu Afficher avec" -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" -msgstr "MAC primaire" +msgid "Menu Timeout" +msgstr "Délai d'attente du menu" -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" -msgstr "Description de la machine" +msgid "Menu colors, pairings, settings" +msgstr "Couleurs de menu, associations, réglages" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" -msgstr "Clé de produit de la machine" +msgid "Message" +msgstr "Message" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" -msgstr "Image machine" +msgid "Method does not exist" +msgstr "Méthode n'existe pas" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" -msgstr "Noyau de la machine" +msgid "Microsoft AD" +msgstr "Microsoft AD" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" -msgstr "Arguments Kernel Machine" +msgid "Midnight" +msgstr "Minuit" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 -msgid "Host Init" -msgstr "Host Init" +msgid "Mind you" +msgstr "Pensez-y" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" -msgstr "Disque primaire Machine" +msgid "Minute value is not valid" +msgstr "La valeur des minutes n'est pas valide" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "Type de sortie Bios de la machine" +msgid "Miscellaneous" +msgstr "Divers" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" -msgstr "Type de sortie EFI de la machine" +msgid "Missing a temporary folder" +msgstr "Manquer un dossier temporaire" -#: lib/pages/hostmanagementpage.class.php:616 -msgid "A host name is required!" -msgstr "Un nom de machine est nécessaire !" +msgid "Missing one or more extensions." +msgstr "Il manque une ou plusieurs extensions." -#: lib/pages/hostmanagementpage.class.php:621 -msgid "A mac address is required!" -msgstr "Une adresse MAC est nécessaire !" +msgid "Mobile Group" +msgstr "Groupe mobile" -#: lib/pages/hostmanagementpage.class.php:626 -msgid "A host already exists with this name!" -msgstr "Une machine avec ce nom existe déjà !" +msgid "Mode" +msgstr "Mode" -#: lib/pages/hostmanagementpage.class.php:631 -msgid "MAC Format is invalid" -msgstr "Le format de l'adresse MAC est invalide" +msgid "Model" +msgstr "Modèle" -#: lib/pages/hostmanagementpage.class.php:638 -msgid "A host with this mac already exists with name" -msgstr "Une machine avec cette adresse mac existe déjà avec le nom" +msgid "Module MD5" +msgstr "Module MD5" -#: lib/pages/hostmanagementpage.class.php:673 -msgid "Add host failed!" -msgstr "L'ajout d'une machine a échoué !" +msgid "Module Name" +msgstr "Nom du module" -#: lib/pages/hostmanagementpage.class.php:678 -msgid "Host added!" -msgstr "Machine ajoutée !" +msgid "Module Type" +msgstr "Type de module" -#: lib/pages/hostmanagementpage.class.php:679 -msgid "Host Create Success" -msgstr "Succès dans la création de la machine" +msgid "Module Update Fail" +msgstr "Échec de la mise à jour du module" -#: lib/pages/hostmanagementpage.class.php:687 -msgid "Host Create Fail" -msgstr "Échec dans la création de la machine" +msgid "Module Update Success" +msgstr "Succès de la mise à jour du module" -#: lib/pages/hostmanagementpage.class.php:830 -msgid "Current Power Management settings" -msgstr "Paramètres actuels de gestion de l'alimentation" +msgid "Module updated!" +msgstr "Module mis à jour !" -#: lib/pages/hostmanagementpage.class.php:841 -msgid "Update PM Values" -msgstr "Mise à jour des valeurs de la gestion de l'alimentation" +msgid "Modules added/updated successfully!" +msgstr "Modules ajoutées / mises à jour avec succès !" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" -msgstr "Retirer MAC" +msgid "Month value is not valid" +msgstr "La valeur du mois n'est pas valide" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" -msgstr "Ignorer MAC sur le client" +msgid "Monthly" +msgstr "Mensuel" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." -msgstr "I.M.C." +msgid "Motherboard Asset Tag" +msgstr "Étiquette d'inventaire Carte mère" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -msgid "Ignore MAC on Image" -msgstr "Ignorez les MACs dans l'image" +msgid "Motherboard Manufacturer" +msgstr "Fabricant Carte mère" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." -msgstr "I.M.I." +msgid "Motherboard Product Name" +msgstr "Nom du produit Carte mère" -#: lib/pages/hostmanagementpage.class.php:968 -msgid "Approve MAC" -msgstr "Approuver les MACs" +msgid "Motherboard Serial Number" +msgstr "Numéro de série Carte mère" -#: lib/pages/hostmanagementpage.class.php:981 -msgid "Approve all pending? " -msgstr "Approuver tout ce qui est en attente ? " +msgid "Motherboard Version" +msgstr "Version Carte mère" -#: lib/pages/hostmanagementpage.class.php:987 -msgid "Approve all pending macs" -msgstr "Approuver toutes les MAC en attente" +msgid "Multicast" +msgstr "Multicast" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" -msgstr "Ajouter MAC" +msgid "Multicast Image" +msgstr "Image Multicast" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "MACs supplémentaires" +msgid "Multicast Quick Deploy" +msgstr "Multicast Déploiement rapide" -#: lib/pages/hostmanagementpage.class.php:1113 -msgid "Host description" -msgstr "Description machine" +msgid "Multicast session created" +msgstr "Session Multicast créé" -#: lib/pages/hostmanagementpage.class.php:1263 -msgid "Host general" -msgstr "Généralités sur la machine" +msgid "Multicast tasks from groups" +msgstr "Tâches multicast à partir de groupes" -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" -msgstr "Veuillez entrer un nom de machine" +msgid "MulticastTask" +msgstr "Tâche Multicast" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "Veuillez entrer un nom de machine valide" +msgid "Must be 0 through 23 for hours in a day." +msgstr "Doit être compris entre 0 et 23 pour les heures d'une journée." -#: lib/pages/hostmanagementpage.class.php:1345 -msgid "Please use another hostname" -msgstr "Veuillez utiliser un autre nom de machine" +msgid "Must be 0 through 59 for minutes in an hour." +msgstr "Doit être compris entre 0 et 59 pour les minutes d'une heure." -#: lib/pages/hostmanagementpage.class.php:1349 -msgid "Please enter a mac address" -msgstr "Veuillez entrer une adresse MAC" +msgid "Must be encrypted" +msgstr "Doit être chiffré" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 -msgid "Please enter a valid mac address" -msgstr "Veuillez entrer une adresse MAC valide" +msgid "Must have a name to create the table" +msgstr "Il faut avoir un nom pour créer la table" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" -msgstr "Impossible de changer d'image durant une tâche" +msgid "Must have an image associated" +msgstr "Doit avoir une image associée" -#: lib/pages/hostmanagementpage.class.php:1485 -msgid "Host Printers" -msgstr "Imprimantes de la machine" +msgid "Must use an" +msgstr "Doit utiliser un" -#: lib/pages/hostmanagementpage.class.php:1495 -msgid "Host printer configuration" -msgstr "Configuration des imprimantes de la machine" +msgid "MySQL Administrator or by running" +msgstr "l'administration MySQL ou en exécutant" -#: lib/pages/hostmanagementpage.class.php:1500 -msgid "Select management level for this host" -msgstr "Sélectionnez le niveau de gestion pour cette machine" +msgid "N/A" +msgstr "N/A" -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" -msgstr "Vérifiez ici pour voir ce que les imprimantes peuvent être ajoutés" +msgid "NAME" +msgstr "NOM" -#: lib/pages/hostmanagementpage.class.php:1617 -msgid "Add selected printers" -msgstr "Ajouter les imprimantes sélectionnées" +msgid "NOT" +msgstr "NE PAS" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "Défaut" +msgid "NOTE" +msgstr "NOTE" -#: lib/pages/hostmanagementpage.class.php:1702 -msgid "Update/Remove printers" -msgstr "Mise à jour / suppression des imprimantes" +msgid "NOTICE" +msgstr "NOTICE" -#: lib/pages/hostmanagementpage.class.php:1709 -msgid "Update default printer" -msgstr "Mise à jour de l'imprimante par défault" +msgid "Name" +msgstr "Nom" -#: lib/pages/hostmanagementpage.class.php:1804 -msgid "Host Snapins" -msgstr "Snapins de la machine" +msgid "Name Change/AD Join Forced reboot" +msgstr "Forcer un reboot (changer le nom ou intégrer au domaine AD)" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" -msgstr "Vérifiez ici pour voir ce que Snapins peuvent être ajoutés" +msgid "Need more support" +msgstr "Besoin de davantage de support" -#: lib/pages/hostmanagementpage.class.php:1835 -msgid "Add Snapins" -msgstr "Ajouter Snapins" +msgid "Need the table name to drop" +msgstr "Besoin du nom de la table à supprimer" -#: lib/pages/hostmanagementpage.class.php:1911 -msgid "Remove snapins" -msgstr "Retirer Snapins" +msgid "Needs a 256-bit key" +msgstr "Nécessite une clé de 256 bits" -#: lib/pages/hostmanagementpage.class.php:2127 -msgid "Host FOG Client Module configuration" -msgstr "Configuration du module client FOG de la machine" +msgid "Needs action string of ask, get, or list" +msgstr "Nécessite une chaîne d'action telle que ask, get ou list" -#: lib/pages/hostmanagementpage.class.php:2137 -msgid "Host module settings" -msgstr "Paramètres du module de la machine" +msgid "Network Information" +msgstr "Information sur le réseau" -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" -msgstr "Hôte Résolution de l'écran" +msgid "Network Installer" +msgstr "Installateur réseau" -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" -msgstr "Déconnexion automatique de la machine" +msgid "Network Printer" +msgstr "Imprimante réseau" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" -msgstr "Autre Tag # 1" +msgid "New" +msgstr "Nouveau" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" -msgstr "Autre Tag # 2" +msgid "New Broadcast Address" +msgstr "Nouvelle Adresse de diffusion" -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" -msgstr "Numéro de série du système" +msgid "New Client and Utilities" +msgstr "Nouveau client et utilitaires" -#: lib/pages/hostmanagementpage.class.php:2454 -msgid "System UUID" -msgstr "Système UUID" +msgid "New Event" +msgstr "Nouvel événement" -#: lib/pages/hostmanagementpage.class.php:2459 -msgid "Motherboard Manufacturer" -msgstr "Fabricant Carte mère" +msgid "New Group" +msgstr "Nouveau groupe" -#: lib/pages/hostmanagementpage.class.php:2460 -msgid "Motherboard Product Name" -msgstr "Nom du produit Carte mère" +msgid "New Host" +msgstr "Nouvelle machine" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "Version Carte mère" +msgid "New Image" +msgstr "Nouvelle image" -#: lib/pages/hostmanagementpage.class.php:2462 -msgid "Motherboard Serial Number" -msgstr "Numéro de série Carte mère" +msgid "New LDAP Server" +msgstr "Nouveau serveur LDAP" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "Étiquette d'inventaire Carte mère" +msgid "New Location" +msgstr "Nouvel emplacement" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" -msgstr "Vitesse normale CPU" +msgid "New Role" +msgstr "Nouveau rôle" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" -msgstr "Modèle Disque dur" +msgid "New Rule" +msgstr "Nouvelle règle" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" -msgstr "Firmware Disque dur" +msgid "New Search" +msgstr "Nouvelle recherche" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" -msgstr "Numéro de Disque dur" +msgid "New Site" +msgstr "Nouveau site" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" -msgstr "Inventaire du matériel de la machine" +msgid "New Snapin" +msgstr "Nouveau Snapin" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" -msgstr "Nom du virus" +msgid "New Storage Group" +msgstr "Nouveau groupe de stockage" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" -msgstr "Quarantaine" +msgid "New Storage Node" +msgstr "Nouveau nœud de stockage" -#: lib/pages/hostmanagementpage.class.php:2619 -msgid "Host Virus History" -msgstr "Historique des virus de la machine" +msgid "New Subnetgroup" +msgstr "Nouveau sous-groupe de réseau" -#: lib/pages/hostmanagementpage.class.php:2632 -msgid "Clear all history" -msgstr "Effacer tout l'historique" +msgid "New Task State" +msgstr "Nouvel état Tâche" -#: lib/pages/hostmanagementpage.class.php:2642 -msgid "Virus Report" -msgstr "Rapport sur les virus" +msgid "New Task Type" +msgstr "Nouveau Type de tâche" -#: lib/pages/hostmanagementpage.class.php:2746 -msgid "Logout not found" -msgstr "Déconnexion non trouvée" +msgid "New User" +msgstr "Nouvel utilisateur" -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" -msgstr "Réglage de la déconnexion à une seconde avant la prochaine connexion" +msgid "New Windows Key" +msgstr "Nouvelle clé Windows" -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" -msgstr "Historique des connexions de la machine" +msgid "New iPXE Menu" +msgstr "Nouveau menu iPXE" -#: lib/pages/hostmanagementpage.class.php:2805 -msgid "View History For" -msgstr "Voir l'historique pour" +msgid "New key must be a string" +msgstr "La nouvelle clé doit être une chaîne de caractères" -#: lib/pages/hostmanagementpage.class.php:2815 -msgid "Selected Logins" -msgstr "Logins sélectionnés" +msgid "New power management task" +msgstr "Nouvelle tâche de gestion de l'alimentation" -#: lib/pages/hostmanagementpage.class.php:2825 -msgid "History Graph" -msgstr "Graphique de l'historique" +msgid "No" +msgstr "Non" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "Ingénieur" +msgid "No Active Snapin Jobs Found For Host" +msgstr "Aucun travail de Snapin actif trouvé pour cette image" -#: lib/pages/hostmanagementpage.class.php:2859 -msgid "Imaged From" -msgstr "Clonée depuis" +msgid "No Active Task found for Host" +msgstr "Aucune tâche active trouvée pour Host" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "Démarrer" +msgid "No Data" +msgstr "Pas de données" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "Fin" +msgid "No Data Available" +msgstr "Aucune donnée disponible" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "Durée" +msgid "No FOGPage Class found for this node" +msgstr "Aucune classe FOGPage n'a été trouvée pour ce nœud" -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" -msgstr "Historique des clonages de la machine" +msgid "No Host found for MAC Address" +msgstr "Aucune machine trouvée pour l'adresse MAC" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" -msgstr "Heure de départ" +msgid "No Image specified" +msgstr "Pas d'image spécifiée" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" -msgstr "Heure de fin" +msgid "No Menu" +msgstr "Pas de menu" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "Code de retour" +msgid "No Printer Management" +msgstr "Pas de gestion des imprimantes" -#: lib/pages/hostmanagementpage.class.php:3076 -msgid "Snapin task not completed" -msgstr "Tâche Snapin non terminée" +msgid "No Site" +msgstr "Pas de Site" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" -msgstr "Aucun temps complet enregistré" +msgid "No access is allowed" +msgstr "Aucun accès n'est autorisé" -#: lib/pages/hostmanagementpage.class.php:3106 -msgid "Host Snapin History" -msgstr "Historique Snapin de la machine" +msgid "No activity information available for this group" +msgstr "Aucune information sur l'activité n'est disponible pour ce groupe" -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" -msgstr "Machine approuvée" +msgid "No class value sent" +msgstr "Aucune valeur de classe envoyé" -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." -msgstr "Approbation de la machine échouée." +msgid "No complete time recorded" +msgstr "Aucun temps complet enregistré" -#: lib/pages/hostmanagementpage.class.php:3158 -msgid "Approve Host" -msgstr "Approuver cette machine" +msgid "No connection available" +msgstr "Aucune connexion disponible" -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" -msgstr "Approuver cette machine ?" +msgid "No connection to the database" +msgstr "Pas de connexion à la base de données" -#: lib/pages/hostmanagementpage.class.php:3186 -msgid "Approved" -msgstr "Approuvée" +msgid "No data returned" +msgstr "Aucune donnée retournée" -#: lib/pages/hostmanagementpage.class.php:3213 -msgid "All Pending MACs approved" -msgstr "Tous les MACs en attente approuvés" +msgid "No data to insert" +msgstr "Aucune donnée à insérer" -#: lib/pages/hostmanagementpage.class.php:3665 -msgid "Virus items removed!" -msgstr "Les éléments concernant les virus ont été supprimés !" +msgid "No database to work off" +msgstr "Pas de base de données pour travailler" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" -msgstr "Mise à jour de la machine a échoué" +msgid "No directories defined to be cleaned up" +msgstr "Aucun dossier défini à nettoyer" -#: lib/pages/hostmanagementpage.class.php:3693 -msgid "Host updated!" -msgstr "Machine mise à jour !" +msgid "No fields passed" +msgstr "Aucun champ passé" -#: lib/pages/hostmanagementpage.class.php:3694 -msgid "Host Update Success" -msgstr "Succès de la mise à jour de la machine" +msgid "No file uploaded!" +msgstr "Aucun fichier envoyé !" -#: lib/pages/hostmanagementpage.class.php:3702 -msgid "Host Update Fail" -msgstr "Mise à jour de la machine échouée" +msgid "No file was uploaded" +msgstr "Aucun fichier n'a été téléchargé" -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" -msgstr "Impossible de créer un nouveau groupe" +msgid "No friendly name defined" +msgstr "Aucun nom usuel défini" -#: lib/pages/hostmanagementpage.class.php:3747 -msgid "Successfully added selected hosts to the group!" -msgstr "Les hôtes sélectionnés ont été ajoutés au groupe avec succès !" +msgid "No groups defined, search will return all hosts." +msgstr "Aucun groupe défini, la recherche renverra toutes les machines." -#: lib/pages/hostmanagementpage.class.php:3748 -msgid "Host Add to Group Success" -msgstr "Succès lors de l'ajout de la machine dans le groupe" +msgid "No groups selected to be removed" +msgstr "Aucun groupe sélectionné ne peut être supprimé" -#: lib/pages/hostmanagementpage.class.php:3755 -msgid "Host Add to Group Fail" -msgstr "Échec lors de l'ajout de la machine dans le groupe" +msgid "No hosts available to task" +msgstr "Aucune machine disponible pour la tâche" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" -msgstr "Partimage" +msgid "No hosts to task" +msgstr "Aucune machine pour la tâche" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" -msgstr "Partclone" +msgid "No icons found" +msgstr "Pas d'icônes trouvés" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" -msgstr "Groupe de stockage primaire" +msgid "No image specified" +msgstr "Aucune image spécifiée" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "Nom de l'image" +msgid "No images associated with this group as master" +msgstr "Aucune image associée à ce groupe en tant que maître" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" -msgstr "Taille de l'image : sur le client" +msgid "No items found" +msgstr "Aucun élément trouvé" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" -msgstr "Taille de l'image : sur le serveur" +msgid "No key being requested" +msgstr "Aucune clé demandée" -#: lib/pages/imagemanagementpage.class.php:151 -msgid "Captured" -msgstr "Capturée" +msgid "No link established to the database" +msgstr "Aucun lien établi avec la base de données" -#: lib/pages/imagemanagementpage.class.php:170 -msgid "Last captured" -msgstr "Dernière capture" +msgid "No master nodes are enabled to delete this image" +msgstr "Pas de nœuds maîtres activés pour supprimer cette image" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" -msgstr "Pas encore défini" +msgid "No need to sync" +msgstr "Pas besoin de synchroniser" -#: lib/pages/imagemanagementpage.class.php:298 -msgid "Invalid date" -msgstr "Date invalide" +msgid "No new tasks found" +msgstr "Aucune nouvelle tâche trouvée" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -msgid "Not protected" -msgstr "Non protégé" +msgid "No node associated" +msgstr "Aucun nœud associé" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" -msgstr "Protégé" +msgid "No node associated with any addresses of this system" +msgstr "Aucun nœud associé à une adresse de ce système" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 -msgid "Disabled" -msgstr "Désactivé" +msgid "No open slots" +msgstr "Pas de créneaux ouverts" -#: lib/pages/imagemanagementpage.class.php:362 -msgid "Partclone Compressed" -msgstr "Partclone Compressé" +msgid "No query passed" +msgstr "Aucune requête passée" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" -msgstr "Partclone compressé 200 Mo split" +msgid "No query result, use query() first" +msgstr "Aucun résultat de requête, utilisez query () en premier" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" -msgstr "Partclone non compressé 200 Mo split" +msgid "No query sent" +msgstr "Aucune requête envoyée" -#: lib/pages/imagemanagementpage.class.php:377 -msgid "ZSTD Compressed" -msgstr "ZSTD Compressé" +msgid "No results found" +msgstr "Aucun résultat trouvé" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" -msgstr "ZSTD Compressé 200 Mo split" +msgid "No role selected" +msgstr "Pas de rôle sélectionné" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" -msgstr "Nouvelle image" +msgid "No rule selected" +msgstr "Pas de règle sélectionnée" -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" -msgstr "Description de l'image" +msgid "No site" +msgstr "Pas de site" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "Système d'exploitation" +msgid "No snapins associated with this group as master" +msgstr "Aucun Snapin associé à ce groupe en tant que maître" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" -msgstr "Partition" +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" -msgstr "Image activée" +msgid "No valid Image defined for this host" +msgstr "Pas d'image définie pour cette machine" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" -msgstr "Reproduire ?" +msgid "No valid class sent" +msgstr "Aucune classe valide envoyée" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" -msgstr "Compression" +msgid "No valid hosts found and" +msgstr "Aucune machine valide trouvée et" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" -msgstr "Gestionnaire d'image" +msgid "No valid storage nodes found" +msgstr "Aucun nœud de stockage valide n'a été trouvé" -#: lib/pages/imagemanagementpage.class.php:639 -msgid "Create Image" -msgstr "Créer une image" +msgid "No valid tasks found" +msgstr "Aucune tâche valide n'a été trouvée" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" -msgstr "Une image existe déjà avec ce nom !" +msgid "No values passed" +msgstr "Aucune valeur passée" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -msgid "Please choose a different name" -msgstr "Veuillez choisir un autre nom" +msgid "No viable macs to use" +msgstr "Pas de MACs viables à utiliser" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -msgid "this one is reserved for FOG" -msgstr "celui-ci est réservé à FOG" +msgid "No viable storage groups found" +msgstr "Aucun groupe de stockage viable n'a été trouvé" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -msgid "Please choose a different path" -msgstr "Veuillez choisir un autre chemin" +msgid "Node" +msgstr "Nœud" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" -msgstr "celle-ci est déjà utilisée par une autre image" +msgid "Node Offline" +msgstr "Nœud hors-ligne" -#: lib/pages/imagemanagementpage.class.php:744 -msgid "Add image failed!" -msgstr "L'ajout d'une image a échoué !" +msgid "Node Parent" +msgstr "Nœud parent" -#: lib/pages/imagemanagementpage.class.php:754 -msgid "Image added!" -msgstr "Image ajoutée !" +msgid "Node is unavailable" +msgstr "Le nœud est indisponible" -#: lib/pages/imagemanagementpage.class.php:755 -msgid "Image Create Success" -msgstr "Succès dans la création de l'image" +msgid "Node must be a string" +msgstr "Le nœud doit être une chaîne de caractères" -#: lib/pages/imagemanagementpage.class.php:763 -msgid "Image Create Fail" -msgstr "Échec dans la création de l'image" +msgid "Nodes" +msgstr "Nœuds" -#: lib/pages/imagemanagementpage.class.php:1041 -msgid "Image General" -msgstr "Généralités sur les images" +msgid "Normal Snapin" +msgstr "Snapin normal" -#: lib/pages/imagemanagementpage.class.php:1132 -msgid "Image Storage Groups" -msgstr "Groupe de stockage des images" +msgid "Not Available" +msgstr "Indisponible" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -msgid "Check here to see what storage groups can be added" -msgstr "Vérifiez ici pour voir quels groupes de stockage peuvent être ajoutés" +msgid "Not Registered Hosts" +msgstr "Machines non enregistrées" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 -msgid "Add Storage Groups" -msgstr "Ajouter un groupe de stockage" +msgid "Not Valid" +msgstr "Non valide" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -msgid "Add selected storage groups" -msgstr "Ajouter les groupes de stockage sélectionnés" +msgid "Not a number" +msgstr "Pas un nombre" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -msgid "Update/Remove Storage Groups" -msgstr "Mise à jour / suppression de groupes de stockage" +msgid "Not able to add" +msgstr "Pas en mesure d'ajouter" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 -msgid "Update primary group" -msgstr "Mise à jour du groupe principal" +msgid "Not all elements in filter or ports setting are integer" +msgstr "" +"Tous les éléments du filtre ou du réglage des ports ne sont pas des entiers" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 -msgid "Remove selected groups" -msgstr "Supprimer les groupes sélectionnés" +msgid "Not allowed here" +msgstr "Non autorisé ici" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 -msgid "No groups selected to be removed" -msgstr "Aucun groupe sélectionné ne peut être supprimé" +msgid "Not found" +msgstr "Pas trouvé" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 -msgid "You must have at least one group associated" -msgstr "Vous devez avoir au moins un groupe de stockage associé" +msgid "Not protected" +msgstr "Non protégé" -#: lib/pages/imagemanagementpage.class.php:1433 -msgid "Image update failed!" -msgstr "La mise à jour de l'image a échoué !" +msgid "Not set" +msgstr "Pas encore défini" -#: lib/pages/imagemanagementpage.class.php:1439 -msgid "Image updated!" -msgstr "Image mise à jour !" +msgid "Not syncing" +msgstr "Pas de synchronisation" -#: lib/pages/imagemanagementpage.class.php:1440 -msgid "Image Update Success" -msgstr "Réussite de la mise à jour de l'image" +msgid "Not syncing Image" +msgstr "Pas de synchronisation de l'image" -#: lib/pages/imagemanagementpage.class.php:1448 -msgid "Image Update Fail" -msgstr "Échec de la mise à jour de l'image" +msgid "Not syncing Snapin" +msgstr "Pas de synchronisation du Snapin" -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" -msgstr "Nom de session" +msgid "Notes" +msgstr "Remarques" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" -msgstr "Nombre de clients" +msgid "Nothing passed to search for" +msgstr "Rien n'est passé pour chercher" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "Délai d'attente" +msgid "O/S" +msgstr "O/S" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" -msgstr "minutes" +msgid "OS Name" +msgstr "Nom OS" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" -msgstr "Sélectionner l'image" +msgid "Object" +msgstr "Objet" -#: lib/pages/imagemanagementpage.class.php:1524 -msgid "Start Session" -msgstr "Démarrer la session" +msgid "Old clients are the clients that came with FOG" +msgstr "Les anciens clients sont les clients qui sont venus avec FOG" -#: lib/pages/imagemanagementpage.class.php:1548 -msgid "Multicast Image" -msgstr "Image Multicast" +msgid "Old key must be a string" +msgstr "L'ancienne clé doit être une chaîne de caractères" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" -msgstr "Démarrez la session Multicast" +msgid "On Dashboard" +msgstr "Sur le tableau de bord" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" -msgstr "Nom de la tâche" +msgid "On reboot we will try to find a new node" +msgstr "Au redémarrage, nous allons essayer de trouver un nouveau nœud" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" -msgstr "Clients" +msgid "One or more macs are associated with a host" +msgstr "Un ou plusieurs macs sont associés à un hôte" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" -msgstr "Pour cent" +msgid "Only Assigned Printers" +msgstr "Imprimantes attribuées uniquement" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" -msgstr "Arrêter la tâche" +msgid "Only allowed to have" +msgstr "Seulement autorisé à avoir" -#: lib/pages/imagemanagementpage.class.php:1647 -msgid "Current Sessions" -msgstr "Sessions en cours" +msgid "Open Source Computer Cloning Solution" +msgstr "Solution open-source de clonage d'ordinateurs" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" -msgstr "Veuillez saisir un nom de session" +msgid "Open VNC connection to" +msgstr "Ouvrir la connexion VNC pour" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" -msgstr "Veuillez choisir une image" +msgid "OpenLDAP" +msgstr "OpenLDAP" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" -msgstr "Une session avec ce nom existe déjà" +msgid "Operating System" +msgstr "Système d'exploitation" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" -msgstr "Nom de la session ne peut pas être le même qu'un nom de machine" +msgid "Operation field not set" +msgstr "Opération pas définie" -#: lib/pages/imagemanagementpage.class.php:1710 -msgid "Please wait until a slot is open" -msgstr "Veuillez attendre qu'un créneau se libère" +msgid "Option below enforces a login system" +msgstr "L'option ci-dessous met en place un système de connexion" -#: lib/pages/imagemanagementpage.class.php:1711 -msgid "There are currently" -msgstr "Il y a actuellement" +msgid "Option sets if there will even" +msgstr "Cette option permet de déterminer si" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" -msgstr "tâches dans la file d'attente" +msgid "Option sets the ipxe keysequence to enter to gain menu" +msgstr "" +"L'option définit la séquence de touches de l'iPXE pour entrer dans le menu " +"de contrôle" -#: lib/pages/imagemanagementpage.class.php:1714 -msgid "Your server only allows" -msgstr "Votre serveur ne permet que" +msgid "Option sets the key sequence" +msgstr "L'option définit la séquence de touches" -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" -msgstr "Échec de la création Session" +msgid "Option specifies the background file to use" +msgstr "L'option spécifie le fichier d'arrière-plan à utiliser" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" -msgstr "Session Multicast créé" +msgid "Option specifies the color settings of the main menu items" +msgstr "" +"Option qui spécifie les paramètres de couleur des éléments du menu principal" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" -msgstr "a été lancé sur le port" +msgid "Option specifies the color text on the menu if the host" +msgstr "L'option spécifie la couleur du texte du menu si la machine" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" -msgstr "Tâche annulée" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "L'option spécifie la méthode de sortie de boot efi qu'iPXE utilisera" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" -msgstr "Nom greffon" +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "" +"L'option spécifie la méthode de sortie de boot traditionnel qu'iPXE utilisera" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." -msgstr "Impossible de déterminer les détails du greffon." +msgid "Option specifies the menu timeout" +msgstr "L'option spécifie le délai d'attente du menu" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" -msgstr "Description du greffon" +msgid "Option specifies the pairings after host checks" +msgstr "L'option spécifie les associations après les contrôles des machines" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" -msgstr "Installation du greffon" +msgid "Option specifies the pairings as a fallback" +msgstr "L'option spécifie les associations comme solution de secours" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "This plugin is not installed" -msgstr "Ce greffon n'est pas installé" +msgid "Option specifies the pairings of colors to" +msgstr "L'option spécifie les paires de couleurs à" -#: lib/pages/pluginmanagementpage.class.php:328 -msgid "would you like to install it now" -msgstr "souhaitez-vous l'installer maintenant" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "" +"Cette option spécifie la valeur de délai d'attente pour le système de menu " +"caché" -#: lib/pages/pluginmanagementpage.class.php:333 -msgid "Install Plugin" -msgstr "Installer greffons" +msgid "Or there was no number defined for joining session" +msgstr "Ou il n'y avait pas de numéro défini pour la session de jonction" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" -msgstr "Reboot après déploiement" +msgid "Organizational Unit" +msgstr "Unité organisationnelle" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" -msgstr "Arrêt après déploiement" +msgid "Other Tag #1" +msgstr "Autre Tag # 1" -#: lib/pages/pluginmanagementpage.class.php:393 -msgid "Basic Settings" -msgstr "Paramètres basiques" +msgid "Other Tag #2" +msgstr "Autre Tag # 2" -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" -msgstr "Champ DMI" +msgid "Other Tag 1" +msgstr "Autre Tag 1" -#: lib/pages/pluginmanagementpage.class.php:431 -msgid "After image Action" -msgstr "Action après image" +msgid "Other Tag 2" +msgstr "Autre Tag 2" -#: lib/pages/pluginmanagementpage.class.php:449 -msgid "Image Associations" -msgstr "Associations des images" +msgid "Otherwise it will just boot like normal" +msgstr "Sinon, il démarrera comme d'habitude" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" -msgstr "Définition image" +msgid "PC Check-out Agreement" +msgstr "PC Check-out Agreement" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" -msgstr "Résultat DMI" +msgid "Parameters" +msgstr "Paramètres" -#: lib/pages/pluginmanagementpage.class.php:476 -msgid "Image to DMI Mappings" -msgstr "Correspondances entre images et DMI" +msgid "Parent" +msgstr "Parent" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" -msgstr "Nom OS" +msgid "Parent Node" +msgstr "Nœud parent" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" -msgstr "Clé DMI" +msgid "Partclone" +msgstr "Partclone" -#: lib/pages/pluginmanagementpage.class.php:531 -msgid "Current Associations" -msgstr "Associations actuelles" +msgid "Partclone Compressed" +msgstr "Partclone Compressé" -#: lib/pages/pluginmanagementpage.class.php:555 -msgid "Remove Selected?" -msgstr "Supprimer la sélection ?" +msgid "Partclone Compressed 200MiB split" +msgstr "Partclone compressé 200 Mo split" -#: lib/pages/pluginmanagementpage.class.php:565 -msgid "Remove Associations" -msgstr "Supprimer les associations" +msgid "Partclone Gzip" +msgstr "Partclone Gzip" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" -msgstr "Greffon non valide passé" +msgid "Partclone Gzip Split 200MiB" +msgstr "Partclone Gzip Split 200 Mo" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" -msgstr "Impossible d'installer le greffon" +msgid "Partclone Uncompressed" +msgstr "Partclone non compressé" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" -msgstr "Impossible d'enregistrer le greffon" +msgid "Partclone Uncompressed 200MiB split" +msgstr "Partclone non compressé 200 Mo split" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" -msgstr "Greffon installé !" +msgid "Partclone Uncompressed Split 200MiB" +msgstr "Partclone non compressé Split 200 Mo" -#: lib/pages/pluginmanagementpage.class.php:666 -msgid "Must have an image associated" -msgstr "Doit avoir une image associée" +msgid "Partclone Zstd" +msgstr "Partclone Zstd" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" -msgstr "Échec de l'enregistrement de l'affectation" +msgid "Partclone Zstd Split 200MiB" +msgstr "Partclone Zstd Split 200 Mo" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" -msgstr "L'affectation a été sauvegardée avec succès" +msgid "Partimage" +msgstr "Partimage" -#: lib/pages/pluginmanagementpage.class.php:691 -msgid "Destroyed assignments" -msgstr "Affectations détruites" +msgid "Partition" +msgstr "Partition" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" -msgstr "Affectation détruite" +msgid "Password" +msgstr "Mot de passe" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" -msgstr "Nom de l'imprimante" +msgid "Password reset requires a user account to reset" +msgstr "La réinitialisation du mot de passe nécessite un compte utilisateur" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" -msgstr "Port" +msgid "Path" +msgstr "Chemin" -#: lib/pages/printermanagementpage.class.php:89 -msgid "Config File" -msgstr "Fichier de configuration" +msgid "Path is unavailable" +msgstr "Le chemin est indisponible" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 -msgid "Copy from existing" -msgstr "Copie de l'existant" +msgid "Pause" +msgstr "Pause" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 -msgid "Printer Name/Alias" -msgstr "Nom / alias de l'imprimante" +msgid "Pending Host List" +msgstr "Liste des machines en attente" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." -msgstr "par exemple" +msgid "Pending Hosts" +msgstr "Machines en attente" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" -msgstr "Description imprimante" +msgid "Pending MAC Actions" +msgstr "Actions MAC en cours" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" -msgstr "Port d'imprimante" +msgid "Pending MAC Export" +msgstr "En attente MAC Export" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" -msgstr "Fichier INF imprimante" +msgid "Pending MACs" +msgstr "MACs en attente" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" -msgstr "Imprimante IP" +msgid "Pending Registered Hosts" +msgstr "Machines enregistrés en attente" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" -msgstr "Modèle d'imprimante" +msgid "Pending Registration created by FOG_CLIENT" +msgstr "Inscription en attente créée par FOG_CLIENT" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -msgid "Printer Config File" -msgstr "Fichier de configuration de l'imprimante" +msgid "Pending hosts" +msgstr "Machines en attente" -#: lib/pages/printermanagementpage.class.php:459 -msgid "Create New Printer" -msgstr "Créer une nouvelle imprimante" +msgid "Pending macs" +msgstr "MACs en attente" -#: lib/pages/printermanagementpage.class.php:473 -msgid "Add New Printer" -msgstr "Ajouter une nouvelle imprimante" +msgid "Pending..." +msgstr "En attente de..." -#: lib/pages/printermanagementpage.class.php:515 -msgid "A name must be set" -msgstr "Un nom doit être défini" +msgid "Percent" +msgstr "Pour cent" -#: lib/pages/printermanagementpage.class.php:518 -msgid "Printer name already exists" -msgstr "Ce nom d'imprimante existe déjà" +msgid "Perform Immediately?" +msgstr "Exécuter immédiatement ?" -#: lib/pages/printermanagementpage.class.php:545 -msgid "Add printer failed!" -msgstr "L'ajout de l'imprimante a échoué !" +msgid "Perform search" +msgstr "Effectuer une recherche" -#: lib/pages/printermanagementpage.class.php:551 -msgid "Printer added!" -msgstr "Imprimante ajoutée !" +msgid "Personal Information" +msgstr "Informations personnelles" -#: lib/pages/printermanagementpage.class.php:552 -msgid "Printer Create Success" -msgstr "Succès dans la création de l'imprimante" +msgid "Pick a template" +msgstr "Choisir un modèle" -#: lib/pages/printermanagementpage.class.php:560 -msgid "Printer Create Fail" -msgstr "Échec dans la création de l'imprimante" +msgid "Ping Hosts" +msgstr "Ping machines" -#: lib/pages/printermanagementpage.class.php:869 -msgid "Printer General" -msgstr "Imprimante Général" +msgid "Please Enter an admin or mobile lookup name" +msgstr "Veuillez entrer un nom de recherche d'administrateur ou mobile" -#: lib/pages/printermanagementpage.class.php:936 -msgid "A printer name is required!" -msgstr "Un nom d'imprimante est nécessaire !" +msgid "Please Select an option" +msgstr "Veuillez sélectionner une option" -#: lib/pages/printermanagementpage.class.php:957 -msgid "A printer already exists with this name!" -msgstr "Une imprimante existe déjà sous ce nom !" +msgid "Please be very careful changing any of the following settings" +msgstr "Soyez très prudent lorsque vous modifiez l'un des paramètres suivants" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" -msgstr "Mise à jour de l'imprimante a échoué !" +msgid "Please check your credentials in" +msgstr "Veuillez vérifier vos informations d'identification dans" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" -msgstr "Imprimante mis à jour!" +msgid "Please choose a different name" +msgstr "Veuillez choisir un autre nom" + +msgid "Please choose a different path" +msgstr "Veuillez choisir un autre chemin" -#: lib/pages/printermanagementpage.class.php:996 -msgid "Printer Update Success" -msgstr "Imprimante mise à jour" +msgid "Please choose an image" +msgstr "Veuillez choisir une image" -#: lib/pages/printermanagementpage.class.php:1004 -msgid "Printer Update Fail" -msgstr "Impossible de mettre à jour l'imprimante" +msgid "Please confirm you want to delete" +msgstr "Veuillez confirmer que vous voulez supprimer" -#: lib/pages/reportmanagementpage.class.php:158 -msgid "Import Reports" -msgstr "Importation des rapports" +msgid "Please enter a Group Member Attribute" +msgstr "Veuillez entrer un attribut de membre de groupe" -#: lib/pages/reportmanagementpage.class.php:189 -msgid "Import FOG Reports" -msgstr "Importations des rapports FOG" +msgid "Please enter a LDAP server address" +msgstr "Veuillez entrer une adresse de serveur LDAP" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 -msgid "Import Report?" -msgstr "Importer les rapports ?" +msgid "Please enter a Search Base DN" +msgstr "Veuillez entrer une base de recherche DN" -#: lib/pages/reportmanagementpage.class.php:250 -msgid "This section allows you to uploade user" -msgstr "Cette section vous permet d'uploader" +msgid "Please enter a User Name Attribute" +msgstr "Veuillez entrer un attribut de nom d'utilisateur" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" -msgstr "" -"des rapports définis par l'utilisateur qui peuvent ne pas faire partie de" +msgid "Please enter a hostname" +msgstr "Veuillez entrer un nom de machine" -#: lib/pages/reportmanagementpage.class.php:254 -msgid "the base FOG install" -msgstr "l'installation de base de FOG" +msgid "Please enter a mac address" +msgstr "Veuillez entrer une adresse MAC" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" -msgstr "À propos des rapports de FOG" +msgid "Please enter a name for this LDAP server." +msgstr "Veuillez entrer un nom pour ce serveur LDAP." -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" -msgstr "Les rapports FOG vous fournissent des informations sur ce qui" +msgid "Please enter a name for this location." +msgstr "S'il vous plaît entrer un nom pour cet emplacement." -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" -msgstr "se passe sur votre système FOG" +msgid "Please enter a valid CIDR subnet." +msgstr "Veuillez entrer un sous-réseau CIDR valide." -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" -msgstr "Pour afficher un rapport, sélectionnez un item du menu latéral" +msgid "Please enter a valid CIDR subnets comma separated list" +msgstr "" +"Veuillez entrer une liste valide de sous-réseaux CIDR séparés par des " +"virgules" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" -msgstr "Installation / Mise à jour du schéma de la base de données" +msgid "Please enter a valid hostname" +msgstr "Veuillez entrer un nom de machine valide" -#: lib/pages/schemaupdaterpage.class.php:63 -msgid "Install/Update" -msgstr "Installation / mise à jour" +msgid "Please enter a valid ip" +msgstr "S'il vous plaît entrer une adresse IP valide" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" -msgstr "Si vous souhaitez sauvegarder votre" +msgid "Please enter a valid mac address" +msgstr "Veuillez entrer une adresse MAC valide" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" -msgstr "la base de données FOG, vous pouvez le faire en utilisant" +msgid "Please enter an access token" +msgstr "S'il vous plaît entrer un jeton d'accès" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" -msgstr "l'administration MySQL ou en exécutant" +msgid "Please input a session name" +msgstr "Veuillez saisir un nom de session" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" -msgstr "la commande suivante dans un terminal" +msgid "Please physically associate" +msgstr "Veuillez associer physiquement" -#: lib/pages/schemaupdaterpage.class.php:75 -msgid "window" -msgstr "fenêtre" +msgid "Please select a valid ldap port" +msgstr "Veuillez sélectionner un port LDAP valide" -#: lib/pages/schemaupdaterpage.class.php:76 -msgid "Applications" -msgstr "Applications" +msgid "Please select an LDAP port to use" +msgstr "Veuillez sélectionner un port LDAP à utiliser" -#: lib/pages/schemaupdaterpage.class.php:77 -msgid "System Tools" -msgstr "Outils système" +msgid "Please select an option" +msgstr "Veuillez sélectionner une option" -#: lib/pages/schemaupdaterpage.class.php:78 -msgid "Terminal" -msgstr "Terminal" +msgid "Please select the snapin you want to install" +msgstr "Veuillez sélectionner le Snapin que vous voulez installer" -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "cela permettra de réaliser un backup dans votre home" +msgid "Please select the storage group this location relates to." +msgstr "" +"S'il vous plaît, sélectionnez le groupe de stockage auquel ce lieu se " +"rapporte." -#: lib/pages/schemaupdaterpage.class.php:80 -msgid "directory" -msgstr "dossier" +msgid "Please update your FOG Client, this is old and insecure" +msgstr "" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" -msgstr "Le schéma de votre base de données FOG n'est pas à jour" +msgid "Please use another hostname" +msgstr "Veuillez utiliser un autre nom de machine" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" -msgstr "soit parce que vous avez mis à jour" +msgid "Please wait until a slot is open" +msgstr "Veuillez attendre qu'un créneau se libère" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" -msgstr "ou il s'agit d'une nouvelle installation de FOG" +msgid "Plugin" +msgstr "Greffon" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" -msgstr "Si c'est une mise à jour" +msgid "Plugin Configuration" +msgstr "Configuration Greffon" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" -msgstr "il y aura une sauvegarde de la base de données stockée sur votre" +msgid "Plugin Description" +msgstr "Description du greffon" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" -msgstr "serveur FOG se trouvant par défaut dans le dossier" +msgid "Plugin Installation" +msgstr "Installation du greffon" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" -msgstr "En cas de problème" +msgid "Plugin Installed!" +msgstr "Greffon installé !" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" -msgstr "cette sauvegarde vous permettra de revenir à" +msgid "Plugin Management" +msgstr "Gestion des plugins" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" -msgstr "l'installation précédente si nécessaire" +msgid "Plugin Name" +msgstr "Nom greffon" -#: lib/pages/schemaupdaterpage.class.php:103 -msgid "Are you sure you wish to" -msgstr "Êtes-vous sûr de vouloir" +msgid "Plugins" +msgstr "Greffons" -#: lib/pages/schemaupdaterpage.class.php:104 -msgid "install or update the FOG database" -msgstr "installer ou mettre à jour la base de données du FOG" +msgid "Port" +msgstr "Port" -#: lib/pages/schemaupdaterpage.class.php:115 -msgid "Install/Update Now" -msgstr "Installation / Mise à niveau maintenant" +msgid "Port is not valid ldap/ldaps port" +msgstr "Le port n'est pas un port LDAP valide" -#: lib/pages/schemaupdaterpage.class.php:125 -msgid "Database not available" -msgstr "Base de données non disponible" +msgid "Postfix requires an action of login" +msgstr "Postfix requiert une action de connexion" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" -msgstr "Votre connexion à la base de données semble être invalide" +msgid "Postfix requires an action of login, logout, or start to operate" +msgstr "" +"Postfix exige une action de connexion, déconnexion, ou commencer à " +"fonctionner" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" -msgstr "Le FOG ne parvient pas à communiquer avec la base de données" +msgid "Power Management" +msgstr "Gestion de l'alimentation" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" -msgstr "Il y a plusieurs raisons pour lesquelles cela pourrait être le cas" +msgid "Power Management Task run time" +msgstr "Durée d'exécution de la tâche de gestion de l'énergie" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" -msgstr "Veuillez vérifier vos informations d'identification dans" +msgid "Primary Group" +msgstr "Groupe primaire" -#: lib/pages/schemaupdaterpage.class.php:138 -msgid "Also confirm that the database is indeed running" -msgstr "Confirmez également que la base de données fonctionne bien" +msgid "Primary MAC" +msgstr "MAC primaire" -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" -msgstr "Si les informations d'identification sont correctes" +msgid "Primary Storage Group" +msgstr "Groupe de stockage primaire" -#: lib/pages/schemaupdaterpage.class.php:140 -msgid "and if the Database service is running" -msgstr "et si le service de base de données est en cours d'exécution" +msgid "Primary User" +msgstr "Utilisateur principal" -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" -msgstr "" -"vérifiez que votre système de fichiers dispose de suffisamment d'espace" +msgid "Printed" +msgstr "Imprimé" -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" -msgstr "Aucune connexion disponible" +msgid "Printer" +msgstr "Imprimante" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" -msgstr "La mise à jour n'est pas nécessaire !" +msgid "Printer Alias" +msgstr "Alias imprimante" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 -msgid "Function" -msgstr "Fonction" +msgid "Printer Associations" +msgstr "Associations d'imprimantes" -#: lib/pages/schemaupdaterpage.class.php:230 -msgid "Database" -msgstr "Base de données" +msgid "Printer Config File" +msgstr "Fichier de configuration de l'imprimante" -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" -msgstr "La variable contient" +msgid "Printer Configuration" +msgstr "Configuration de l'imprimante" -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" -msgstr "Base de données SQL" +msgid "Printer Create Fail" +msgstr "Échec dans la création de l'imprimante" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" -msgstr "Installation / mise à jour a échoué !" +msgid "Printer Create Success" +msgstr "Succès dans la création de l'imprimante" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" -msgstr "Les erreurs suivantes sont survenues" +msgid "Printer Description" +msgstr "Description imprimante" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" -msgstr "Installation / Mise à jour réussie !" +msgid "Printer General" +msgstr "Imprimante Général" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" -msgstr "ouvrir une session" +msgid "Printer INF File" +msgstr "Fichier INF imprimante" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" -msgstr "Les erreurs suivantes se sont produites" +msgid "Printer IP" +msgstr "Imprimante IP" -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" -msgstr "Modifier le nœud" +#, fuzzy +msgid "Printer IP/Hostname" +msgstr "Nom de l'imprimante" -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" -msgstr "Hostname / IP" +msgid "Printer Management" +msgstr "Gestion des imprimantes" -#: lib/pages/serverinfo.class.php:75 -msgid "Server information" -msgstr "Informations sur le serveur" +msgid "Printer Model" +msgstr "Modèle d'imprimante" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" -msgstr "Informations sur le serveur invalide !" +msgid "Printer Name" +msgstr "Nom de l'imprimante" -#: lib/pages/serverinfo.class.php:94 -msgid "Unable to get server infromation!" -msgstr "Impossible d'obtenir des informations sur le serveur !" +msgid "Printer Name/Alias" +msgstr "Nom / alias de l'imprimante" -#: lib/pages/serverinfo.class.php:145 -msgid "Unable to find basic information!" -msgstr "Impossible de trouver les informations de base !" +msgid "Printer Port" +msgstr "Port d'imprimante" -#: lib/pages/serverinfo.class.php:158 -msgid "TX" -msgstr "TX" +msgid "Printer Type" +msgstr "Type d'imprimante" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" -msgstr "RX" +msgid "Printer Update Fail" +msgstr "Impossible de mettre à jour l'imprimante" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "Abandonné" +msgid "Printer Update Success" +msgstr "Imprimante mise à jour" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" -msgstr "Informations générales" +msgid "Printer added!" +msgstr "Imprimante ajoutée !" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "Temps de fonctionnement" +msgid "Printer name already exists" +msgstr "Ce nom d'imprimante existe déjà" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" -msgstr "Type de processeur" +msgid "Printer update failed!" +msgstr "Mise à jour de l'imprimante a échoué !" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "Nombre de CPU" +msgid "Printer updated!" +msgstr "Imprimante mis à jour!" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" -msgstr "Modèle CPU" +msgid "Printers" +msgstr "Imprimantes" -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "Cache du CPU" +msgid "Private key failed" +msgstr "La clé privée a échoué" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "Mémoire totale" +msgid "Private key not found" +msgstr "Clé privée non trouvée" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" -msgstr "Mémoire utilisée" +msgid "Private key not readable" +msgstr "Clé privée non lisible" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "Mémoire libre" +msgid "Private key path not found" +msgstr "Chemin de la clé privée non trouvée" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" -msgstr "Informations sur les fichiers système" +msgid "Protected" +msgstr "Protégé" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "Espace disque total" +msgid "Pushbullet Accounts" +msgstr "Comptes Pushbullet" -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "Espace disque utilisé" +#, fuzzy +msgid "Pushbullet Management" +msgstr "Gestion des clients" -#: lib/pages/serverinfo.class.php:203 -msgid "Free Disk Space" -msgstr "Espace disque libre" +msgid "Quarantine" +msgstr "Quarantaine" -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" -msgstr "Information sur le réseau" +msgid "Queued" +msgstr "en attente" -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" -msgstr "Information" +msgid "Quick" +msgstr "Rapide" -#: lib/pages/serviceconfigurationpage.class.php:133 -msgid "Service general" -msgstr "À propos des services" +msgid "RX" +msgstr "RX" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "Cela vous permettra de configurer la façon dont les services" +msgid "Reboot" +msgstr "Redémarrage" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." -msgstr "fonctionnent sur les ordinateurs clients." +msgid "Reboot after deploy" +msgstr "Reboot après déploiement" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." -msgstr "" -"Les paramètres ont tendance à être globaux, ce qui affecte tous les hôtes." +msgid "Reboot after install" +msgstr "Redémarrez après l'installation" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "" -"Si vous cherchez à configurer les paramètres pour une machine spécifique" +msgid "Rebranding element has been successfully updated!" +msgstr "L'élément sur l'image a été mis à jour avec succès !" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "" -"veuillez consulter la section sur les paramètres du service des machines." +msgid "Receive" +msgstr "Réception" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." -msgstr "Pour commencer, veuillez sélectionner un élément dans le menu." +msgid "Recommended" +msgstr "Recommandé" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" -msgstr "Téléchargement du Client FOG" +msgid "Record not found" +msgstr "Enregistrement non trouvé" -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "Utilisez le lien suivant pour accéder à la page du client." +msgid "Register must be managed from hooks or events" +msgstr "Le registre doit être géré à partir de crochets ou d'événements" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "Vous pouvez y télécharger des utilitaires tels que FOG Prep" +msgid "Registered" +msgstr "Inscrit" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" -msgstr "FOG Crypt" +msgid "Registered Hosts" +msgstr "Machines enregistrées" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "et les anciens et nouveaux clients FOG." +msgid "Releasing Staff Initials" +msgstr "Initiales du personnel ayant libéré" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" -msgstr "Cliquez ici" +msgid "Remit Hello Interval" +msgstr "Intervalle Remit Hello" -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" -msgstr "Activé par défaut" +msgid "Remote address attempting to login" +msgstr "L'adresse distante tente de se connecter" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" -msgstr "État du service" +msgid "Remove" +msgstr "Retirer" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 -msgid "Current settings" -msgstr "Paramètres actuels" +msgid "Remove " +msgstr "Retirer " -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "Temps de déconnexion par défaut (en minutes)" +msgid "Remove Accesscontrol Rules" +msgstr "Supprimer les règles de contrôle d'accès" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 -msgid "This module is only used on the old client." -msgstr "Ce module n'est utilisé que sur l'ancien client." +msgid "Remove Associations" +msgstr "Supprimer les associations" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" -msgstr "L'ancien client est celui qui était distribué avec" +msgid "Remove Hosts" +msgstr "Supprimer des machines" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." -msgstr "FOG 1.2.0 et antérieur." +msgid "Remove Images" +msgstr "Supprimer les images" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" -msgstr "Ce module n'a pas fonctionné après Windows XP" +msgid "Remove MAC" +msgstr "Retirer MAC" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." -msgstr "en raison de l'UAC introduit dans Vista et les versions ultérieures." +msgid "Remove Selected?" +msgstr "Supprimer la sélection ?" -#: lib/pages/serviceconfigurationpage.class.php:463 -msgid "Directories" -msgstr "Dossiers" +msgid "Remove Users" +msgstr "Retirer des utilisateurs" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" -msgstr "Ajouter dossier" +msgid "Remove failed" +msgstr "La suppression a échoué" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" -msgstr "Largeur par défaut" +msgid "Remove selected " +msgstr "Retirer les sélectionnés " -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "Hauteur par défaut" +msgid "Remove selected groups" +msgstr "Supprimer les groupes sélectionnés" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" -msgstr "Taux de rafraîchissement par défaut" +msgid "Remove selected hosts" +msgstr "Supprimer les machines sélectionnées" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." -msgstr "L'ancien client était distribué avec FOG 1.2.0 et antérieur." +msgid "Remove selected images" +msgstr "Supprimer les images sélectionnées" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." -msgstr "Ce module a depuis été remplacé par Gestion Alimentation." +msgid "Remove selected printers" +msgstr "Supprimer les imprimantes sélectionnées" -#: lib/pages/serviceconfigurationpage.class.php:678 -msgid "New Event" -msgstr "Nouvel événement" +msgid "Remove selected rules" +msgstr "Supprimer les règles sélectionnées" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" -msgstr "Ajouter un évènement" +msgid "Remove selected snapins" +msgstr "Retirer Snapins sélectionnés" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." -msgstr "Ce module n'a pas fonctionné après Windows XP en raison de l'UAC." +msgid "Remove selected users" +msgstr "Retirer les utilisateurs sélectionnés" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" -msgstr "Ajouter un utilisateur" +msgid "Remove snapins" +msgstr "Retirer Snapins" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." -msgstr "Doit être compris entre 0 et 23 pour les heures d'une journée." +msgid "Remove these items?" +msgstr "Retirer ces éléments ?" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "Doit être compris entre 0 et 59 pour les minutes d'une heure." +msgid "Removed" +msgstr "Supprimé" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." -msgstr "L'action de redémarrage ou d'arrêt doit être utilisée." +msgid "Removing Key" +msgstr "Retrait de la clé" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" -msgstr "La mise à jour du service a échoué" +msgid "Replay from journal" +msgstr "Reprise du journal" -#: lib/pages/serviceconfigurationpage.class.php:986 -msgid "Module updated!" -msgstr "Module mis à jour !" +msgid "Replicate?" +msgstr "Reproduire ?" -#: lib/pages/serviceconfigurationpage.class.php:987 -msgid "Module Update Success" -msgstr "Succès de la mise à jour du module" +msgid "Replicating" +msgstr "Clonage" -#: lib/pages/serviceconfigurationpage.class.php:995 -msgid "Module Update Fail" -msgstr "Échec de la mise à jour du module" +msgid "Replication Bandwidth" +msgstr "Bande passante de réplication" -#: lib/pages/snapinmanagementpage.class.php:134 -msgid "Filesize" -msgstr "Taille du fichier" +msgid "Replication already running with PID" +msgstr "Réplication déjà en cours avec le PID" -#: lib/pages/snapinmanagementpage.class.php:167 -msgid "Is Pack" -msgstr "Est un paquet" +msgid "Report" +msgstr "Rapport" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "Non" +msgid "Report Management" +msgstr "Gestion des rapports" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "Oui" +msgid "Reports" +msgstr "Rapports" -#: lib/pages/snapinmanagementpage.class.php:397 -msgid "New Snapin" -msgstr "Nouveau Snapin" +msgid "Required database field is empty" +msgstr "Le champ obligatoire de la base de données est vide" + +msgid "Requires templates to process" +msgstr "Requiert des modèles pour traiter" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" -msgstr "Description Snapin" +msgid "Reset Encryption Data" +msgstr "Réinitialiser les données de chiffrement" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 -msgid "Snapin Type" -msgstr "Type de Snapin" +msgid "Reset Token" +msgstr "Réinitialisation du jeton" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 -msgid "Normal Snapin" -msgstr "Snapin normal" +msgid "Result" +msgstr "Résultat" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 -msgid "Snapin Pack" -msgstr "Paquet Snapin" +msgid "Results" +msgstr "Résultats" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" -msgstr "Modèle Snapin" +msgid "Return Code" +msgstr "Code de retour" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 -msgid "Snapin Pack Template" -msgstr "Modèle de paquet Snapin" +msgid "Return Desc" +msgstr "Retour Desc" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" -msgstr "Le Snapin s'exécute avec" +msgid "Return code" +msgstr "Code de retour" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 -msgid "Snapin Pack File" -msgstr "Fichier paquet Snapin" +msgid "Returning array within key" +msgstr "De retour tableau dans la clé" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" -msgstr "Argument pour l'exécution du Snapin" +msgid "Returning value of key" +msgstr "Retour de la valeur de la clé" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 -msgid "Snapin Pack Arguments" -msgstr "Arguments paquet snapIn" +msgid "Reverse the file: (newest on top)" +msgstr "Inverser le fichier : (le plus récent en haut)" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" -msgstr "Fichier du Snapin" +msgid "Rexmit Hello Interval" +msgstr "Intervalle Rexmit Hello" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" -msgstr "Fichier Snapin (existe)" +msgid "Role" +msgstr "Rôle" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" -msgstr "Arguments SnapIn" +msgid "Role Create Fail" +msgstr "Échec de la création du rôle" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" -msgstr "Snapin activé" +msgid "Role Create Success" +msgstr "Rôle crée avec succès" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 -msgid "Snapin Arguments Hidden" -msgstr "Arguments Snapin cachés" +msgid "Role Description" +msgstr "Description du rôle" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 -msgid "Snapin Timeout (seconds)" -msgstr "Délai d'attente pour le Snapin (secondes)" +msgid "Role Name" +msgstr "Nom du rôle" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" -msgstr "Redémarrez après l'installation" +msgid "Role Update Fail" +msgstr "Échec de la mise à jour du rôle" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" -msgstr "Arrêt après l'installation" +msgid "Role Update Success" +msgstr "Succès de la mise à jour du rôle" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" -msgstr "Commande Snapin" +msgid "Role added!" +msgstr "Rôle ajouté !" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" -msgstr "lecture seule" +msgid "Role update failed!" +msgstr "La mise à jour du rôle a échoué !" -#: lib/pages/snapinmanagementpage.class.php:668 -msgid "Create New Snapin" -msgstr "Créer un nouveau Snapin" +msgid "Role updated!" +msgstr "Rôle mis à jour !" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." -msgstr "" -"Le fichier Snapin est trop gros, augmentez post_max_size dans le fichier php." -"ini." +msgid "Routes should be an array or an instance of Traversable" +msgstr "Les routes doivent être un tableau ou une instance de Traversable" -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." -msgstr "La variable $_POST est vide, consultez le journal des erreurs Apache." +msgid "Row" +msgstr "Ligne" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 -msgid "A snapin name is required!" -msgstr "Un nom de Snapin est nécessaire !" +msgid "Row number not set properly" +msgstr "Numéro de ligne pas réglé correctement" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 -msgid "A snapin already exists with this name!" -msgstr "Un Snapin existe déjà avec ce nom !" +msgid "Rule Associate Fail" +msgstr "Échec de l'association de la règle" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 -msgid "A file" -msgstr "Un fichier" +msgid "Rule Associate Success" +msgstr "Succès dans l'association de la règle" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" -msgstr "soit déjà sélectionné ou téléchargé" +msgid "Rule Association" +msgstr "Association de règles" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -msgid "must be specified" -msgstr "doit être précisé" +msgid "Rule Create Fail" +msgstr "Échec dans la création de la règle" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" -msgstr "Connexion FTP a échoué" +msgid "Rule Create Success" +msgstr "Succès dans la création de la règle" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -msgid "Failed to add snapin" -msgstr "Impossible d'ajouter le Snapin" +msgid "Rule Delete Fail" +msgstr "Échec de la suppression de la règle" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" -msgstr "Impossible d'ajouter ou mettre à jour le fichier Snapin" +msgid "Rule Delete Success" +msgstr "Succès de la suppression de la règle" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" -msgstr "L'ajout de Snapin a échoué !" +msgid "Rule Membership" +msgstr "Membres de la règle" -#: lib/pages/snapinmanagementpage.class.php:867 -msgid "Snapin added!" -msgstr "Snapin ajouté !" +msgid "Rule Name" +msgstr "Nom de la règle" -#: lib/pages/snapinmanagementpage.class.php:868 -msgid "Snapin Create Success" -msgstr "Succès dans la création du Snapin" +msgid "Rule Type" +msgstr "Type de règle" -#: lib/pages/snapinmanagementpage.class.php:877 -msgid "Snapin Create Fail" -msgstr "Impossible de créer le Snapin" +msgid "Rule Update Fail" +msgstr "Échec dans la mise à jour de la règle" -#: lib/pages/snapinmanagementpage.class.php:904 -msgid "Snapin General" -msgstr "Généralités Snapins" +msgid "Rule Update Success" +msgstr "Succès de la mise à jour de la règle" -#: lib/pages/snapinmanagementpage.class.php:1123 -msgid "Snapin Protected" -msgstr "Snapin protégé" +msgid "Rule Value" +msgstr "Valeur de la règle" -#: lib/pages/snapinmanagementpage.class.php:1291 -msgid "Snapin Storage Groups" -msgstr "Groupes de stockage Snapin" +msgid "Rule added!" +msgstr "Règle ajoutée !" -#: lib/pages/snapinmanagementpage.class.php:1701 -msgid "Snapin update failed!" -msgstr "Mise à jour du Snapin en échec !" +msgid "Rule associate success!" +msgstr "L'association de la règle a réussi !" -#: lib/pages/snapinmanagementpage.class.php:1706 -msgid "Snapin updated!" -msgstr "Snapin mis à jour !" +msgid "Rule deleted successfully!" +msgstr "Règle supprimée avec succès !" -#: lib/pages/snapinmanagementpage.class.php:1707 -msgid "Snapin Update Success" -msgstr "Succès de la mise à jour du Snapin" +msgid "Rule type" +msgstr "Type de règle" -#: lib/pages/snapinmanagementpage.class.php:1716 -msgid "Snapin Update Fail" -msgstr "Échec de la mise à jour du Snapin" +msgid "Rule updated!" +msgstr "Règle mise à jour !" -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" -msgstr "%s ID %s n'est pas valide" +msgid "Rule value" +msgstr "Valeur de la règle" -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "Racine web" +msgid "Running Windows" +msgstr "Exécution de Windows" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "Bitrate" +msgid "SQL Error" +msgstr "Erreur SQL" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" -msgstr "Intervalle Rexmit Hello" +msgid "SSL Path" +msgstr "Chemin SSL" -#: lib/pages/storagemanagementpage.class.php:462 -msgid "Create Storage Node" -msgstr "Créer un nœud de stockage" +msgid "Save Changes" +msgstr "Sauvegarder les modifications" -#: lib/pages/storagemanagementpage.class.php:483 -msgid "New Storage Node" -msgstr "Nouveau nœud de stockage" +msgid "Save Initrd" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" -msgstr "La bande passante doit être numérique et supérieur à 0" +msgid "Save Kernel" +msgstr "Sauvegarder le noyau" -#: lib/pages/storagemanagementpage.class.php:578 -msgid "Add storage node failed!" -msgstr "L'ajout d'un nœud de stockage a échoué !" +msgid "Saving data for" +msgstr "Sauvegarde des données pour" -#: lib/pages/storagemanagementpage.class.php:603 -msgid "Storage Node added!" -msgstr "Nœud de stockage ajouté !" +msgid "Schedule" +msgstr "Programme" -#: lib/pages/storagemanagementpage.class.php:604 -msgid "Storage Node Create Success" -msgstr "Succès de la création d'un nœud de stockage" +msgid "Schedule Power" +msgstr "Programmation alimentation" -#: lib/pages/storagemanagementpage.class.php:612 -msgid "Storage Node Create Fail" -msgstr "Échec de la création d'un nœud de stockage" +msgid "Schedule as debug task" +msgstr "Planifier comme tâche de débogage" -#: lib/pages/storagemanagementpage.class.php:686 -msgid "Storage Node General" -msgstr "Généralités sur le nœud de stockage" +msgid "Schedule cron-style" +msgstr "Programmation de type cron" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" -msgstr "Intervalle Remit Hello" +msgid "Schedule delayed" +msgstr "Programmation décalée" -#: lib/pages/storagemanagementpage.class.php:968 -msgid "Storage Node update failed!" -msgstr "Échec de la mise à jour du nœud de stockage !" +msgid "Schedule instant" +msgstr "Programmation instantanée" -#: lib/pages/storagemanagementpage.class.php:993 -msgid "Storage Node updated!" -msgstr "Nœud de stockage mis à jour !" +msgid "Schedule with shutdown" +msgstr "Programmation avec arrêt" -#: lib/pages/storagemanagementpage.class.php:994 -msgid "Storage Node Update Success" -msgstr "Succès de la mise à jour du nœud de stockage" +msgid "Scheduled Task run time" +msgstr "Durée d'exécution de la tâche planifiée" -#: lib/pages/storagemanagementpage.class.php:1002 -msgid "Storage Node Update Fail" -msgstr "Échec de la mise à jour du nœud de stockage" +msgid "Scheduled Tasks" +msgstr "Tâches planifiées" -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" -msgstr "Max" +msgid "Scheduled date is in the past" +msgstr "La date prévue est dans le passé" -#: lib/pages/storagemanagementpage.class.php:1250 -msgid "Create Storage Group" -msgstr "Créer un groupe de stockage" +msgid "Scheduled tasks successfully created" +msgstr "Tâches planifiées créées avec succès" -#: lib/pages/storagemanagementpage.class.php:1271 -msgid "New Storage Group" -msgstr "Nouveau groupe de stockage" +msgid "Scheduler" +msgstr "Planificateur" -#: lib/pages/storagemanagementpage.class.php:1311 -msgid "Storage Group Create Success" -msgstr "Succès de la création d'un groupe de stockage" +msgid "Screen Height (in pixels)" +msgstr "Hauteur de l'écran (en pixels)" -#: lib/pages/storagemanagementpage.class.php:1319 -msgid "Storage Group Create Fail" -msgstr "Échec de la création d'un groupe de stockage" +msgid "Screen Refresh Rate (in Hz)" +msgstr "Taux de rafraîchissement écran (en Hz)" -#: lib/pages/storagemanagementpage.class.php:1346 -msgid "Storage Group General" -msgstr "Généralités sur le groupe de stockage" +msgid "Screen Width (in pixels)" +msgstr "Largeur de l'écran (en pixels)" -#: lib/pages/storagemanagementpage.class.php:1444 -msgid "Storage Group update failed!" -msgstr "Échec de la mise à jour du groupe de stockage !" +msgid "Search" +msgstr "Chercher" -#: lib/pages/storagemanagementpage.class.php:1449 -msgid "Storage Group updated!" -msgstr "Groupe de stockage mis à jour !" +msgid "Search Base DN" +msgstr "Recherche Base DN" -#: lib/pages/storagemanagementpage.class.php:1450 -msgid "Storage Group Update Success" -msgstr "Succès de la mise à jour d'un groupe de stockage" +msgid "Search DN" +msgstr "Recherche DN" -#: lib/pages/storagemanagementpage.class.php:1457 -msgid "Storage Group Update Fail" -msgstr "Échec de la mise à jour du groupe de stockage" +msgid "Search DN did not return any results" +msgstr "La recherche DN n'a donné aucun résultat" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" -msgstr "Commencé par :" +msgid "Search Method" +msgstr "Méthode de recherche" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" -msgstr "Travailler avec un nœud" +msgid "Search Scope" +msgstr "Périmètre de recherche" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" -msgstr "Tâche forcée de commencer" +msgid "Search pattern" +msgstr "Schéma de recherche" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" -msgstr "Task force pour commencer" +msgid "Search results returned false" +msgstr "Les résultats de la recherche sont faux" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" -msgstr "Tous les groupes" +msgid "Second paramater must be in array(class,function)" +msgstr "Deuxième paramètre doit être sous la forme array (class, function)" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" -msgstr "Le type d'objet transmis est invalide" +msgid "Select Image" +msgstr "Sélectionner l'image" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" -msgstr "Invalid Type de tâche" +msgid "Select User" +msgstr "Sélectionnez l'utilisateur" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" -msgstr "Image non valide assigné à l'hôte" +msgid "Select a cron type" +msgstr "Sélectionnez un type de cron" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" -msgstr "est protégé" +msgid "Select a valid image" +msgstr "Sélectionnez une image valide" -#: lib/pages/taskmanagementpage.class.php:550 -msgid "Quick" -msgstr "Rapide" +msgid "Select management level for these hosts" +msgstr "Sélectionnez le niveau de gestion pour ces machines" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" -msgstr "Les hôtes ne possèdent pas la même image assignée" +msgid "Select management level for this host" +msgstr "Sélectionnez le niveau de gestion pour cette machine" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" -msgstr "Multicast Déploiement rapide" +msgid "Select/Deselect All" +msgstr "Sélectionner / désélectionner" -#: lib/pages/taskmanagementpage.class.php:564 -msgid "Group Quick Deploy" -msgstr "Déploiement rapide d'un groupe" +msgid "Selected Logins" +msgstr "Logins sélectionnés" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." -msgstr "" -"Tâches réussies, cliquez sur les tâches actives pour les visualiser en ligne." +msgid "Selected groups's current activity" +msgstr "Activité actuelle des groupes sélectionnés" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" -msgstr "Tâche non valide" +msgid "Selected hosts approved successfully" +msgstr "Les machines sélectionnés ont été approuvés avec succès" -#: lib/pages/taskmanagementpage.class.php:801 -msgid "Active Multi-cast Tasks" -msgstr "Tâches Multicast actives" +msgid "Selected hosts deleted successfully" +msgstr "Les machines sélectionnées ont été supprimés avec succès" -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "Tâche Multicast" +msgid "Selected node's disk usage" +msgstr "Utilisation du disque du nœud sélectionné" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" -msgstr "Vous ne pouvez pas annuler les tâches de cette façon" +msgid "Serial" +msgstr "En série" -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" -msgstr "Machine / Nom de groupe" +msgid "Serial Number" +msgstr "Numéro de série" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" -msgstr "Est Groupe" +msgid "Server Shell" +msgstr "Serveur Shell" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" -msgstr "Type de tâche" +msgid "Server information" +msgstr "Informations sur le serveur" -#: lib/pages/taskmanagementpage.class.php:1204 -msgid "All snapins" -msgstr "Tous les Snapins" +msgid "Server information at a glance." +msgstr "Informations sur le serveur en un coup d'œil." -#: lib/pages/taskmanagementpage.class.php:1208 -msgid "Invalid snapin" -msgstr "Snapin invalide" +msgid "Service" +msgstr "Service" -#: lib/pages/taskmanagementpage.class.php:1210 -msgid "Snapin to be installed" -msgstr "Snapin à installer" +msgid "Service Configuration" +msgstr "Configuration du service" -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" -msgstr "groupe" +msgid "Service Master" +msgstr "Service principal" -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" -msgstr "machine" +msgid "Service Setting Update Failed" +msgstr "Échec de la mise à jour des paramètres du service" -#: lib/pages/usermanagementpage.class.php:52 -msgid "Change password" -msgstr "Changer le mot de passe" +msgid "Service Setting Update Success" +msgstr "Succès de la mise à jour des paramètres de service" -#: lib/pages/usermanagementpage.class.php:56 -msgid "API Settings" -msgstr "Paramètres de l'API" +msgid "Service Start" +msgstr "Démarrage du service" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 -msgid "Friendly Name" -msgstr "Nom usuel" +msgid "Service Status" +msgstr "État du service" -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" -msgstr "Aucun nom usuel défini" +msgid "Service Tag" +msgstr "Numéro de service" -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" -msgstr "API ?" +msgid "Service general" +msgstr "À propos des services" -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" -msgstr "Modifier l'utilisateur" +msgid "Service update failed" +msgstr "La mise à jour du service a échoué" -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" -msgstr "Nouvel utilisateur" +msgid "Session Name" +msgstr "Nom de session" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" -msgstr "Identifiant" +msgid "Session altered improperly" +msgstr "Session modifiée incorrectement" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" -msgstr "Mot de passe de l'utilisateur" +msgid "Session name cannot be the same as an existing hostname" +msgstr "Nom de la session ne peut pas être le même qu'un nom de machine" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" -msgstr "Mot de passe de l'utilisateur (confirmation)" +msgid "Session timeout" +msgstr "Expiration de la session" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 -msgid "User API Enabled" -msgstr "API utilisateur activée" +msgid "Session with that name already exists" +msgstr "Une session avec ce nom existe déjà" -#: lib/pages/usermanagementpage.class.php:223 -msgid "Create user?" -msgstr "Créer un utilisateur ?" +msgid "Set Failed" +msgstr "Échec de la mise en place" -#: lib/pages/usermanagementpage.class.php:283 -msgid "A user name is required!" -msgstr "Un nom d'utilisateur est requis !" +msgid "Set failed" +msgstr "Le réglage a échoué" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" -msgstr "Le nom d'utilisateur ne répond pas aux exigences" +msgid "Setting Key" +msgstr "Touche de réglage" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" -msgstr "Le nom d'utilisateur doit commencer par un caractère de mot" +msgid "Setting logout to one second prior to next login" +msgstr "Réglage de la déconnexion à une seconde avant la prochaine connexion" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" -msgstr "Le nom d'utilisateur doit comporter au moins 3 caractères" +msgid "Settings" +msgstr "Paramètres" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" -msgstr "Le nom d'utilisateur doit comporter moins de 41 caractères" +msgid "Settings Update Fail" +msgstr "Échec de la mise à jour des paramètres" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" -msgstr "" -"Le nom d'utilisateur ne peut pas contenir de caractères spéciaux contigus" +msgid "Settings Update Success" +msgstr "Succès de la mise à jour des paramètres" -#: lib/pages/usermanagementpage.class.php:304 -msgid "A username already exists with this name!" -msgstr "Un nom d'utilisateur existe déjà avec ce nom !" +msgid "Settings successfully stored!" +msgstr "Les paramètres ont été enregistrés avec succès !" -#: lib/pages/usermanagementpage.class.php:309 -msgid "A password is required!" -msgstr "Un mot de passe est nécessaire !" +msgid "Should anything go wrong" +msgstr "En cas de problème" -#: lib/pages/usermanagementpage.class.php:321 -msgid "Add user failed!" -msgstr "L'ajout d'un utilisateur a échoué !" +msgid "Shutdown" +msgstr "Arrêt" -#: lib/pages/usermanagementpage.class.php:327 -msgid "User added!" -msgstr "Utilisateur ajouté !" +msgid "Shutdown after deploy" +msgstr "Arrêt après déploiement" -#: lib/pages/usermanagementpage.class.php:328 -msgid "User Create Success" -msgstr "Succès de la création de l'utilisateur" +msgid "Shutdown after install" +msgstr "Arrêt après l'installation" -#: lib/pages/usermanagementpage.class.php:336 -msgid "User Create Fail" -msgstr "Échec de la création de l'utilisateur" +msgid "Signed" +msgstr "Signé" -#: lib/pages/usermanagementpage.class.php:363 -msgid "User General" -msgstr "Généralités sur l'utilisateur" +msgid "Site" +msgstr "Site" -#: lib/pages/usermanagementpage.class.php:392 -msgid "Update General?" -msgstr "Mise à jour générale ?" +msgid "Site Association" +msgstr "Association de site" -#: lib/pages/usermanagementpage.class.php:455 -msgid "User Change Password" -msgstr "Changement de mot de passe par l'utilisateur" +#, fuzzy +msgid "Site Control Management" +msgstr "Gestion des contrôles d'accès" -#: lib/pages/usermanagementpage.class.php:481 -msgid "Update Password?" -msgstr "Mettre à jour le mot de passe ?" +msgid "Site Create Fail" +msgstr "Impossible de créer le site" -#: lib/pages/usermanagementpage.class.php:535 -msgid "User API Settings" -msgstr "Paramètres de l'API utilisateur" +msgid "Site Create Success" +msgstr "Site crée avec succès" -#: lib/pages/usermanagementpage.class.php:557 -msgid "User API Token" -msgstr "Jeton d'accès API utilisateur" +msgid "Site Description" +msgstr "Description du site" -#: lib/pages/usermanagementpage.class.php:573 -msgid "Update API?" -msgstr "Mise à jour de l'API ?" +msgid "Site General" +msgstr "Généralités sur les sites" -#: lib/pages/usermanagementpage.class.php:667 -msgid "A user already exists with this name" -msgstr "Un utilisateur existe déjà avec ce nom" +msgid "Site Name" +msgstr "Nom du site" -#: lib/pages/usermanagementpage.class.php:728 -msgid "User update failed!" -msgstr "La mise à jour de l'utilisateur a échoué !" +msgid "Site Update Fail" +msgstr "Échec de la mise à jour du site" -#: lib/pages/usermanagementpage.class.php:733 -msgid "User updated!" -msgstr "Utilisateur mis à jour !" +msgid "Site Update Success" +msgstr "Succès de la mise à jour du site" -#: lib/pages/usermanagementpage.class.php:734 -msgid "User Update Success" -msgstr "Succès de la mise à jour de l'utilisateur" +msgid "Site Updated!" +msgstr "Site mis à jour !" -#: lib/pages/usermanagementpage.class.php:742 -msgid "User Update Fail" -msgstr "Échec de la mise à jour de l'utilisateur" +msgid "Site added!" +msgstr "Site ajouté !" -#: lib/pages/processlogin.class.php:161 -msgid "Login failed" -msgstr "La connexion a échoué" +msgid "Site update failed!" +msgstr "La mise à jour du site a échoué !" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 -msgid "username" -msgstr "identifiant" +msgid "Sites" +msgstr "Sites" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "impossible de se connecter" +msgid "Size" +msgstr "Taille" -#: lib/pages/processlogin.class.php:185 -msgid "Login accepted" -msgstr "Connexion acceptée" +msgid "Slack Accounts" +msgstr "Comptes Slack" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" -msgstr "connecté" +#, fuzzy +msgid "Slack Management" +msgstr "Gestion des tâches" -#: lib/pages/processlogin.class.php:246 -msgid "FOG Project" -msgstr "Projet FOG" +msgid "Smart Installer" +msgstr "Installateur intelligent" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 -msgid "Access Controls" -msgstr "Contrôles d'accès" +msgid "Snapin" +msgstr "Snapin" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 -msgid "Role" -msgstr "Rôle" +msgid "Snapin Args" +msgstr "Args SnapIn" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -msgid "User Access Control" -msgstr "Contrôle d'accès des utilisateurs" +msgid "Snapin Arguments" +msgstr "Arguments SnapIn" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -msgid "Export Accesscontrols" -msgstr "Exportation des contrôles d'accès" +msgid "Snapin Arguments Hidden" +msgstr "Arguments Snapin cachés" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 -msgid "Import Accesscontrols" -msgstr "Importation des contrôles d'accès" +msgid "Snapin Client" +msgstr "Client Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 -msgid "Rule Association" -msgstr "Association de règles" +msgid "Snapin Command" +msgstr "Commande Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 -msgid "Role Name" -msgstr "Nom du rôle" +msgid "Snapin Create Fail" +msgstr "Impossible de créer le Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -msgid "Rule type" -msgstr "Type de règle" +msgid "Snapin Create Success" +msgstr "Succès dans la création du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" -msgstr "Valeur de la règle" +msgid "Snapin Created" +msgstr "Snapin crée" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 -msgid "Parent Node" -msgstr "Nœud parent" +msgid "Snapin Creation Date" +msgstr "Date de création Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, php-format -msgid "List all roles" -msgstr "Lister tous les rôles" +msgid "Snapin Creation Time" +msgstr "Date de création Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, php-format -msgid "Add new role" -msgstr "Ajouter un nouveau rôle" +msgid "Snapin Description" +msgstr "Description Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, php-format -msgid "List all rules" -msgstr "Lister toutes les règles" +msgid "Snapin Enabled" +msgstr "Snapin activé" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, php-format -msgid "Add new rule" -msgstr "Ajouter une nouvelle règle" +msgid "Snapin File" +msgstr "Fichier du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 -msgid "Role Description" -msgstr "Description du rôle" +msgid "Snapin File (exists)" +msgstr "Fichier Snapin (existe)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -msgid "New Role" -msgstr "Nouveau rôle" +msgid "Snapin General" +msgstr "Généralités Snapins" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -msgid "Create New Access Control Role" -msgstr "Créer un nouveau rôle de contrôle d'accès" +msgid "Snapin Hash" +msgstr "Hash du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 -msgid "A name is required!" -msgstr "Un nom est requis !" +msgid "Snapin History" +msgstr "Historique des Snapins" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -msgid "A role already exists with this name!" -msgstr "Un rôle avec ce nom existe déjà !" +msgid "Snapin ID" +msgstr "ID Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -msgid "Add role failed!" -msgstr "L'ajout de rôle a échoué !" +msgid "Snapin Locations" +msgstr "Emplacements des Snapins" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -msgid "Role added!" -msgstr "Rôle ajouté !" +msgid "Snapin Log" +msgstr "Journal Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 -msgid "Role Create Success" -msgstr "Rôle crée avec succès" +msgid "Snapin Management" +msgstr "Gestion des Snapins" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 -msgid "Role Create Fail" -msgstr "Échec de la création du rôle" +msgid "Snapin Name" +msgstr "Nom Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 -msgid "Access Control Role General" -msgstr "Généralités sur les rôles de contrôle d'accès" +msgid "Snapin Pack" +msgstr "Paquet Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -msgid "Role update failed!" -msgstr "La mise à jour du rôle a échoué !" +msgid "Snapin Pack Arguments" +msgstr "Arguments paquet snapIn" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -msgid "Role updated!" -msgstr "Rôle mis à jour !" +msgid "Snapin Pack File" +msgstr "Fichier paquet Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 -msgid "Role Update Success" -msgstr "Succès de la mise à jour du rôle" +msgid "Snapin Pack Template" +msgstr "Modèle de paquet Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 -msgid "Role Update Fail" -msgstr "Échec de la mise à jour du rôle" +msgid "Snapin Path" +msgstr "Chemin du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 -msgid "Access Control Rules" -msgstr "Règles de contrôle d'accès" +msgid "Snapin Protected" +msgstr "Snapin protégé" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -msgid "Parent" -msgstr "Parent" +msgid "Snapin Replicator" +msgstr "Réplicateur de Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 -msgid "Access Control Rule" -msgstr "Règle de contrôle d'accès" +msgid "Snapin Return Code" +msgstr "Code de retour Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 -msgid "New Rule" -msgstr "Nouvelle règle" +msgid "Snapin Return Detail" +msgstr "Détail du retour Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 -msgid "Rule Type" -msgstr "Type de règle" +msgid "Snapin Run With" +msgstr "Le Snapin s'exécute avec" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 -msgid "Node Parent" -msgstr "Nœud parent" +msgid "Snapin Run With Args" +msgstr "Arguments exécuter avec du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 -msgid "Rule Value" -msgstr "Valeur de la règle" +msgid "Snapin Run With Argument" +msgstr "Argument pour l'exécution du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 -msgid "Create Rule?" -msgstr "Créer une règle ?" +msgid "Snapin State" +msgstr "État du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 -msgid "A rule already exists with this name." -msgstr "Une règle existe déjà avec ce nom." +msgid "Snapin Storage Groups" +msgstr "Groupes de stockage Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 -msgid "Add rule failed!" -msgstr "L'ajout de règle a échoué !" +msgid "Snapin Task is invalid" +msgstr "Tâche Snapin n'est pas valide" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 -msgid "Rule added!" -msgstr "Règle ajoutée !" +msgid "Snapin Template" +msgstr "Modèle Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 -msgid "Rule Create Success" -msgstr "Succès dans la création de la règle" +msgid "Snapin Timeout (seconds)" +msgstr "Délai d'attente pour le Snapin (secondes)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 -msgid "Rule Create Fail" -msgstr "Échec dans la création de la règle" +msgid "Snapin Transfer Log" +msgstr "Journal du transfert de Snapins" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 -msgid "Access Control Rule General" -msgstr "Généralités sur les règles de contrôle d'accès" +msgid "Snapin Type" +msgstr "Type de Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "Impossible de mettre à jour" +msgid "Snapin Update Fail" +msgstr "Échec de la mise à jour du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 -msgid "Rule updated!" -msgstr "Règle mise à jour !" +msgid "Snapin Update Success" +msgstr "Succès de la mise à jour du Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 -msgid "Rule Update Success" -msgstr "Succès de la mise à jour de la règle" +msgid "Snapin Used" +msgstr "SnapIn utilisé" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 -msgid "Rule Update Fail" -msgstr "Échec dans la mise à jour de la règle" +msgid "Snapin added!" +msgstr "Snapin ajouté !" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 -msgid "Fail to destroy" -msgstr "Impossible à détruire" +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "" +"Le fichier Snapin est trop gros, augmentez post_max_size dans le fichier php." +"ini." -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 -msgid "Rule deleted successfully!" -msgstr "Règle supprimée avec succès !" +msgid "Snapin is invalid" +msgstr "Snapin n'est pas valide" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" -msgstr "Succès de la suppression de la règle" +msgid "Snapin is protected and cannot be deleted" +msgstr "Snapin est protégé et ne peut être supprimé" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 -msgid "Rule Delete Fail" -msgstr "Échec de la suppression de la règle" +msgid "Snapin task not completed" +msgstr "Tâche Snapin non terminée" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 -msgid "Rule Name" -msgstr "Nom de la règle" +msgid "Snapin to be installed" +msgstr "Snapin à installer" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 -msgid "Rule Membership" -msgstr "Membres de la règle" +msgid "Snapin update failed!" +msgstr "Mise à jour du Snapin en échec !" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 -msgid "Check here to see what rules can be added" -msgstr "Vérifiez ici pour voir quelles règles peuvent être ajoutées" +msgid "Snapin updated!" +msgstr "Snapin mis à jour !" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 -msgid "Add Rules" -msgstr "Ajouter des règles" +msgid "Snapins" +msgstr "Snapins" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 -msgid "Add selected rules" -msgstr "Ajouter les règles sélectionnées" +msgid "Snapins Are already deployed to this host" +msgstr "Les snapIns sont déjà déployés sur cette machine" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 -msgid "Remove Accesscontrol Rules" -msgstr "Supprimer les règles de contrôle d'accès" +msgid "So if you are trying to transmit to remote node A" +msgstr "Donc si vous essayez de transmettre au nœud distant A" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 -msgid "Remove selected rules" -msgstr "Supprimer les règles sélectionnées" +msgid "Somebody will be able to help in some form" +msgstr "Quelqu'un pourra vous aider d'une manière ou d'une autre" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 -msgid "No role selected" -msgstr "Pas de rôle sélectionné" +msgid "Space variable must be boolean" +msgstr "La variable Space doit être booléenne" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 -msgid "No rule selected" -msgstr "Pas de règle sélectionnée" +msgid "Specified download URL not allowed!" +msgstr "L'URL de téléchargement spécifié n'est pas autorisé !" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 -msgid "Associate rule failed!" -msgstr "Association de la règle a échoué !" +msgid "Start" +msgstr "Démarrer" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 -msgid "Rule associate success!" -msgstr "L'association de la règle a réussi !" +msgid "Start Date" +msgstr "Date de début" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 -msgid "Rule Associate Success" -msgstr "Succès dans l'association de la règle" +msgid "Start Multicast Session" +msgstr "Démarrez la session Multicast" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 -msgid "Rule Associate Fail" -msgstr "Échec de l'association de la règle" +msgid "Start Session" +msgstr "Démarrer la session" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 -msgid "User name" -msgstr "Identifiant" +msgid "Start Time" +msgstr "Heure de départ" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 -msgid "Check here to see what users can be added" -msgstr "Vérifiez ici pour voir quels utilisateurs peuvent être ajoutés" +msgid "Started By:" +msgstr "Commencé par :" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -msgid "Add Users" -msgstr "Ajouter des utilisateurs" +msgid "Started sync for" +msgstr "A commencé la synchronisation pour" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -msgid "Add selected users" -msgstr "Ajouter les utilisateurs sélectionnés" +msgid "Starting Image Replication" +msgstr "Démarrage de la réplication d'images" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 -msgid "Remove Users" -msgstr "Retirer des utilisateurs" +msgid "Starting Image Size Service" +msgstr "Démarrage du service de taille d'image" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 -msgid "Remove selected users" -msgstr "Retirer les utilisateurs sélectionnés" +msgid "Starting Snapin Hashing Service" +msgstr "Démarrage du service de hachage de Snapin" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" -msgstr "Déployer Capone" +msgid "Starting Snapin Replication" +msgstr "Démarrer la réplication de Snapin" -#: lib/plugins/ldap/class/ldap.class.php:107 -msgid "Function does not exist" -msgstr "Fonction n'existe pas" +msgid "Starting Sync Actions" +msgstr "Démarrer les actions de synchronisation" -#: lib/plugins/ldap/class/ldap.class.php:147 -msgid "Port is not valid ldap/ldaps port" -msgstr "Le port n'est pas un port LDAP valide" +msgid "Starting process" +msgstr "Début de process" -#: lib/plugins/ldap/class/ldap.class.php:295 -msgid "We cannot connect to LDAP server" -msgstr "Nous ne pouvons pas nous connecter au serveur LDAP" +msgid "State" +msgstr "État" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" -msgstr "Utilisation de la fonction de correspondance de groupe" +msgid "Status" +msgstr "Statut" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" -msgstr "mais le mot de passe de liaison n'est pas défini" +msgid "Stop Task" +msgstr "Arrêter la tâche" -#: lib/plugins/ldap/class/ldap.class.php:398 -msgid "Cannot bind to the LDAP server" -msgstr "Impossible de se lier au serveur LDAP" +msgid "Storage" +msgstr "Stockage" -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" -msgstr "Les résultats de la recherche sont faux" +msgid "Storage Group" +msgstr "Groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 -msgid "Search DN" -msgstr "Recherche DN" +msgid "Storage Group Activity" +msgstr "Activité du groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 -msgid "Filter" -msgstr "Filtrer" +msgid "Storage Group Already Exists" +msgstr "Groupe de stockage existe déjà" -#: lib/plugins/ldap/class/ldap.class.php:460 -msgid "User was not authorized by the LDAP server" -msgstr "L'utilisateur n'a pas été autorisé par le serveur LDAP" +msgid "Storage Group Create Fail" +msgstr "Échec de la création d'un groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:461 -msgid "User DN" -msgstr "Utilisateur DN" +msgid "Storage Group Create Success" +msgstr "Succès de la création d'un groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" -msgstr "Toutes les méthodes de liaison ont échoué" +msgid "Storage Group Created" +msgstr "Groupe de stockage créé" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" -msgstr "La recherche DN n'a donné aucun résultat" +msgid "Storage Group Description" +msgstr "Description du groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" -msgstr "Le niveau d'accès est toujours 0 ou false" +msgid "Storage Group General" +msgstr "Généralités sur le groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" -msgstr "Aucun accès n'est autorisé" +msgid "Storage Group Name" +msgstr "Nom du groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" -msgstr "La recherche de groupe DN n'a donné aucun résultat" +msgid "Storage Group Update Fail" +msgstr "Échec de la mise à jour du groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 -msgid "Group Search DN" -msgstr "Recherche de groupe DN" +msgid "Storage Group Update Success" +msgstr "Succès de la mise à jour d'un groupe de stockage" -#: lib/plugins/ldap/class/ldap.class.php:848 -msgid "Search Method" -msgstr "Méthode de recherche" +msgid "Storage Group Updated" +msgstr "Groupe de stockage mis à jour" -#: lib/plugins/ldap/class/ldap.class.php:852 -msgid "Result" -msgstr "Résultat" +msgid "Storage Group deleted" +msgstr "Groupe de stockage supprimé" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 -msgid "LDAP Servers" -msgstr "Serveurs LDAP" +msgid "Storage Group update failed!" +msgstr "Échec de la mise à jour du groupe de stockage !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" -msgstr "Gestion LDAP" +msgid "Storage Group updated!" +msgstr "Groupe de stockage mis à jour !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 -msgid "Export LDAPs" -msgstr "Exportation LDAP" +msgid "Storage Management" +msgstr "Gestion du stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 -msgid "Import LDAPs" -msgstr "Importation LDAP" +msgid "Storage Node" +msgstr "Nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 -msgid "Plugin Configuration" -msgstr "Configuration Greffon" +msgid "Storage Node Create Fail" +msgstr "Échec de la création d'un nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 -msgid "LDAP Connection Name" -msgstr "Nom de la connexion LDAP" +msgid "Storage Node Create Success" +msgstr "Succès de la création d'un nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" -msgstr "Adresse du serveur LDAP" +msgid "Storage Node Created" +msgstr "Nœud de stockage créé" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 -msgid "LDAP Connection Name" -msgstr "Nom de la connexion LDAP" +msgid "Storage Node Description" +msgstr "Description du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" -msgstr "Serveur LDAP description" +msgid "Storage Node Disk Usage" +msgstr "Utilisation du disque du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" -msgstr "Serveur LDAP" +msgid "Storage Node General" +msgstr "Généralités sur le nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 -msgid "Admin Group" -msgstr "Groupe admin" +msgid "Storage Node IP" +msgstr "IP du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" -msgstr "Nouveau serveur LDAP" +msgid "Storage Node Interface" +msgstr "Interface du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "Base seulement" +msgid "Storage Node Max Clients" +msgstr "Clients max pour ce nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" -msgstr "Sous-arbre seulement" +msgid "Storage Node Name" +msgstr "Nom du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" -msgstr "Sous-arbre et dessous" +msgid "Storage Node Password" +msgstr "Mot de passe du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 -msgid "LDAP Server Port" -msgstr "Port du serveur LDAP" +#, fuzzy +msgid "Storage Node Protocol" +msgstr "IP du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" -msgstr "Utiliser l'appariement des groupes (recommandé)" +msgid "Storage Node Update Fail" +msgstr "Échec de la mise à jour du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 -msgid "Search Base DN" -msgstr "Recherche Base DN" +msgid "Storage Node Update Success" +msgstr "Succès de la mise à jour du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 -msgid "Mobile Group" -msgstr "Groupe mobile" +msgid "Storage Node Updated" +msgstr "Nœud de stockage mis à jour" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -msgid "Initial Template" -msgstr "Modèle initial" +msgid "Storage Node Username" +msgstr "Nom d'utilisateur du nœud de stockage" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 -msgid "Pick a template" -msgstr "Choisir un modèle" +msgid "Storage Node added!" +msgstr "Nœud de stockage ajouté !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "Microsoft AD" +msgid "Storage Node already exists" +msgstr "Le nœud de stockage existe déjà" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" -msgstr "OpenLDAP" +msgid "Storage Node deleted" +msgstr "Nœud de stockage supprimé" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" -msgstr "LDAP générique" +msgid "Storage Node update failed!" +msgstr "Échec de la mise à jour du nœud de stockage !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 -msgid "User Name Attribute" -msgstr "Attribut du nom d'utilisateur" +msgid "Storage Node updated!" +msgstr "Nœud de stockage mis à jour !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" -msgstr "Attribut de membre du groupe" +msgid "String must be a string" +msgstr "La chaîne doit être une chaîne de caractères" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 -msgid "Search Scope" -msgstr "Périmètre de recherche" +msgid "Subnet Groups" +msgstr "Groupes de sous-réseau" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "Lier DN" +msgid "SubnetGroup General" +msgstr "Généralités Groupe de sous-réseaux" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 -msgid "Bind Password" -msgstr "Lier le mot de passe" +msgid "Subnetgroup Create Fail" +msgstr "Échec de la création d'un groupe de sous-réseau" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 -msgid "Create New LDAP" -msgstr "Créer un nouveau LDAP" +msgid "Subnetgroup Create Success" +msgstr "Succès de la création d'un groupe de sous-réseau" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "Pas en mesure d'ajouter" +#, fuzzy +msgid "Subnetgroup Management" +msgstr "Gestion des groupes" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "Veuillez entrer un nom pour ce serveur LDAP." +msgid "Subnetgroup Update Fail" +msgstr "Échec dans la mise à jour du groupe de sous-réseau" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "Veuillez entrer une adresse de serveur LDAP" +msgid "Subnetgroup Update Success" +msgstr "Succès dans la mise à jour du groupe de sous-réseau" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -msgid "Please enter a Search Base DN" -msgstr "Veuillez entrer une base de recherche DN" +msgid "Subnetgroup added!" +msgstr "Groupe de sous-réseau ajouté !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 -msgid "Please select an LDAP port to use" -msgstr "Veuillez sélectionner un port LDAP à utiliser" +msgid "Subnetgroup update failed!" +msgstr "La mise à jour du groupe de sous-réseau a échoué !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 -msgid "Please select a valid ldap port" -msgstr "Veuillez sélectionner un port LDAP valide" +msgid "Subnetgroup updated!" +msgstr "Groupe de sous-réseau mis à jour !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -msgid "Please Enter an admin or mobile lookup name" -msgstr "Veuillez entrer un nom de recherche d'administrateur ou mobile" +msgid "Subnets" +msgstr "Sous-réseaux" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 -msgid "Please enter a User Name Attribute" -msgstr "Veuillez entrer un attribut de nom d'utilisateur" +msgid "Subree and Below" +msgstr "Sous-arbre et dessous" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 -msgid "Please enter a Group Member Attribute" -msgstr "Veuillez entrer un attribut de membre de groupe" +msgid "Subtree Only" +msgstr "Sous-arbre seulement" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 -msgid "A LDAP setup already exists with this name!" -msgstr "Une configuration LDAP existe déjà avec ce nom !" +msgid "Successful" +msgstr "Réussite" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 -msgid "Add LDAP server failed!" -msgstr "L'ajout du serveur LDAP a échoué !" +msgid "Successfully added selected hosts to the group!" +msgstr "Les hôtes sélectionnés ont été ajoutés au groupe avec succès !" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 -msgid "LDAP Server added!" -msgstr "Le serveur LDAP a été ajouté !" +msgid "Successfully created" +msgstr "Créé avec succès" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 -msgid "LDAP Create Success" -msgstr "Succès de la création de LDAP" +msgid "Successfully deleted" +msgstr "Supprimé avec succès" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 -msgid "LDAP Create Fail" -msgstr "Échec de la création de LDAP" +msgid "System Manufacturer" +msgstr "Fabricant du système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 -msgid "LDAP General" -msgstr "Généralités sur LDAP" +msgid "System Overview" +msgstr "Présentation du système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 -msgid "Update LDAP server failed!" -msgstr "La mise à jour du serveur LDAP a échoué !" +msgid "System Product" +msgstr "Produit du système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 -msgid "LDAP Server updated!" -msgstr "Serveur LDAP mis à jour !" +msgid "System Serial" +msgstr "Numéro de série du système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 -msgid "LDAP Update Success" -msgstr "Succès de la mise à jour LDAP" +msgid "System Serial Number" +msgstr "Numéro de série du système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 -msgid "LDAP Update Fail" -msgstr "Échec de la mise à jour LDAP" +msgid "System Tools" +msgstr "Outils système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 -msgid "User Filter" -msgstr "Filtre utilisateur" +msgid "System Type" +msgstr "Type de système" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 -msgid "LDAP Ports" -msgstr "Ports LDAP" +msgid "System UUID" +msgstr "Système UUID" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" -"Tous les éléments du filtre ou du réglage des ports ne sont pas des entiers" +msgid "System Uptime" +msgstr "Temps de fonctionnement du système" -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "Location est un greffon qui permet à votre serveur FOG" +msgid "System Version" +msgstr "Version du système" -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" -msgstr "de fonctionner dans un environnement où il peut y avoir" +msgid "TCP/IP" +msgstr "TCP / IP" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" -msgstr "plusieurs endroits pour obtenir votre image" +msgid "TCP/IP Port Printer" +msgstr "Imprimante Port TCP / IP" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" -msgstr "Ceci est particulièrement utile si vous avez plusieurs" +msgid "TX" +msgstr "TX" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" -msgstr "sites avec des clients qui vont et viennent" +msgid "Table not defined for this class" +msgstr "Tableau non défini pour cette classe" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" -msgstr "entre différents sites" +msgid "Task" +msgstr "Tâche" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 -msgid "Location Association" -msgstr "Association d'emplacement" +msgid "Task Checkin Date" +msgstr "Date de vérification de la tâche" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" -msgstr "Lieu / Déployé" +msgid "Task Checkin Time" +msgstr "Heure de vérification de la tâche" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" -msgstr "Emplacement de la machine" +msgid "Task Complete Date" +msgstr "Date d'achèvement de la tâche" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 -msgid "This setting defines sending the" -msgstr "Ce paramètre définit l'envoi de l'" +msgid "Task Complete Time" +msgstr "Heure d'achêvement de la tâche" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "url de localisation basée sur la machine qui s'enregistre" +msgid "Task ID" +msgstr "ID tâche" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "Il indique au client de télécharger les Snapins à partir de" +msgid "Task Management" +msgstr "Gestion des tâches" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "l'emplacement défini par la machine, lorsqu'elle est disponible" +msgid "Task Name" +msgstr "Nom de la tâche" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 -msgid "Default is disabled" -msgstr "La valeur par défaut est désactivée" +msgid "Task Reboot" +msgstr "Tâche de reboot" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 -msgid "Snapin Locations" -msgstr "Emplacements des Snapins" +msgid "Task State" +msgstr "État tâche" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "Cette zone permettra à l'hôte qui s'enregistre de dire" +msgid "Task State Create Fail" +msgstr "Échec de la création de l'état tâche" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 -msgid "where to download the snapin" -msgstr "où télécharger le Snapin" +msgid "Task State Create Success" +msgstr "Succès de la création de l'état tâche" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" -msgstr "Ceci est utile dans le cas de liaisons lentes entre" +msgid "Task State General" +msgstr "Généralités sur l'état des tâches" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" -msgstr "le principal et la machine" +#, fuzzy +msgid "Task State Management" +msgstr "Gestion des tâches" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" -msgstr "Activer l'envoi de localisation" +msgid "Task State Update Fail" +msgstr "Échec de la mise à jour à jour de l'état tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 -msgid "Export Locations" -msgstr "Export des emplacements" +msgid "Task State Update Success" +msgstr "Succès de la mise à jour à jour de l'état tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 -msgid "Import Locations" -msgstr "Import des emplacements" +msgid "Task State Updated!" +msgstr "État Tâche mis à jour !" -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" -msgstr "Nom de la localisation" +msgid "Task State added!" +msgstr "État Tâche ajouté !" -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "Kernels / Inits de l'emplacement" +msgid "Task States" +msgstr "États de la tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" -msgstr "Nouvel emplacement" +msgid "Task Type" +msgstr "Type de tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "Utilisez les inits et kernels de ce nœud" +msgid "Task Type Create Fail" +msgstr "Échec de la création du type de tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 -msgid "Create New Location" -msgstr "Créer un nouvel emplacement" +msgid "Task Type Create Success" +msgstr "Succès de la création du type de tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." -msgstr "Cet emplacement existe déjà, s'il vous plaît essayer à nouveau." +msgid "Task Type General" +msgstr "État Tâche - Généralités" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." -msgstr "S'il vous plaît entrer un nom pour cet emplacement." +#, fuzzy +msgid "Task Type Management" +msgstr "Gestion des tâches" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." -msgstr "" -"S'il vous plaît, sélectionnez le groupe de stockage auquel ce lieu se " -"rapporte." +msgid "Task Type Update Fail" +msgstr "La mise à jour du type de tâche a échoué" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 -msgid "Add location failed!" -msgstr "L'ajout de l'emplacement a échoué !" +msgid "Task Type Update Success" +msgstr "Mise à jour réussie du type de tâche" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 -msgid "Location added!" -msgstr "Emplacement ajouté !" +msgid "Task Type Updated!" +msgstr "Type de tâche mise à jour !" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 -msgid "Location Create Success" -msgstr "Succès de la création de l'emplacement" +msgid "Task Type added!" +msgstr "Le type de tâche a été ajouté !" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 -msgid "Location Create Fail" -msgstr "Échec de la création de l'emplacement" +msgid "Task Type is not valid" +msgstr "Type de tâche n'est pas valide" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 -msgid "Location General" -msgstr "Généralités Emplacement" +msgid "Task Types" +msgstr "Types de tâches" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "Un emplacement avec ce nom existe déjà." +msgid "Task forced to start" +msgstr "Tâche forcée de commencer" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -msgid "A group is required for a location" -msgstr "Un groupe est nécessaire pour un emplacement" +msgid "Task not created as there are no associated tasks" +msgstr "Tâche non créée car il n'y a pas de tâches associées" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -msgid "Location update failed!" -msgstr "La mise à jour de l'emplacement a échoué !" +msgid "Task sent to" +msgstr "Tâche envoyée à" + +msgid "Task started" +msgstr "Tâche amorcée" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 -msgid "Location updated!" -msgstr "Emplacement mis à jour !" +msgid "Task started for" +msgstr "Tâche commencée pour" -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 -msgid "Location Update Success" -msgstr "Succès de la mise à jour de l'emplacement" +msgid "Task type is not valid" +msgstr "Type de tâche n'est pas valide" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 -msgid "Location Update Fail" -msgstr "Échec de la mise à jour de l'emplacement" +msgid "Tasked Successfully" +msgstr "Tâches effectuées avec succès" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" -msgstr "L'adresse distante tente de se connecter" +msgid "Tasked successfully, click active tasks to view in line." +msgstr "" +"Tâches réussies, cliquez sur les tâches actives pour les visualiser en ligne." -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" -msgstr "Comptes Pushbullet" +msgid "Tasking" +msgstr "Attribution des tâches" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" -msgstr "Compte Lien Pushbullet" +msgid "Tasking Failed" +msgstr "Échec de l'affectation des tâches" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" -msgstr "Courriel" +msgid "Tasks" +msgstr "Tâches" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" -msgstr "Lien Nouveau compte" +msgid "Team" +msgstr "Équipe" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" -msgstr "Jeton d'accès" +msgid "Terminal" +msgstr "Terminal" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 -msgid "Add Pushbullet Account" -msgstr "Ajout compte Pushbullet" +msgid "Terms and Conditions" +msgstr "Termes et conditions" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" -msgstr "Compte déjà lié" +msgid "Text" +msgstr "Texte" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "S'il vous plaît entrer un jeton d'accès" +msgid "The 'Is Master Node' setting defines which" +msgstr "Le paramètre \"Est nœud maître\" définit quel" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "Échec de la création" +msgid "The assigned image is protected" +msgstr "L'image assignée est protégée" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 -msgid "Account successfully added!" -msgstr "Compte ajouté avec succès !" +msgid "The below items are only used for the old client." +msgstr "Les éléments ci-dessous ne sont utilisés que pour l'ancien client." -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 -msgid "Link Pushbullet Account Success" -msgstr "Succès de la liaison du compte Pushbullet" +msgid "The clients will checkin with the server from time" +msgstr "Les clients s'enregistreront auprès du serveur de temps" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 -msgid "Link Pushbullet Account Fail" -msgstr "Échec de la liaison du compte Pushbullet" +msgid "The following errors occured" +msgstr "Les erreurs suivantes se sont produites" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 -msgid "Site Association" -msgstr "Association de site" +msgid "The following errors occurred" +msgstr "Les erreurs suivantes sont survenues" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 -msgid "Site" -msgstr "Site" +msgid "The image storage group assigned is not valid" +msgstr "Le groupe de stockage d'images attribuée est non valable" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 -msgid "Associated Sites" -msgstr "Sites associés" +msgid "The installers for the fog client" +msgstr "Les installateurs pour le client FOG" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 -msgid "Host Site" -msgstr "Site de la machine" +msgid "The key will be assigned to registered hosts when a" +msgstr "La clé sera attribuée aux machines enregistrées lorsqu'une" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 -msgid "Sites" -msgstr "Sites" +msgid "The node trying to be used is currently" +msgstr "Le nœud que l'on essaie d'utiliser est actuellement" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 -msgid "Is restricted" -msgstr "Est restreint" +msgid "The old client is what was distributed with" +msgstr "L'ancien client est celui qui était distribué avec" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 -msgid "No site" -msgstr "Pas de site" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgstr "" +"L'ancien client est celui qui était distribué avec FOG 1.2.0 et les versions " +"antérieures" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " -msgstr "Est un utilisateur restreint " +msgid "The old client iswhat was distributed with" +msgstr "L'ancien client est celui qui était distribué avec" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 -msgid "No Site" -msgstr "Pas de Site" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "L'ancien client était distribué avec FOG 1.2.0 et antérieur." -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 -msgid "Export Sites" -msgstr "Exportation de sites" +msgid "The primary mac associated is" +msgstr "La MAC principale associée est" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 -msgid "Import Sites" -msgstr "Importation de sites" +msgid "The settings tend to be global which affects all hosts." +msgstr "" +"Les paramètres ont tendance à être globaux, ce qui affecte tous les hôtes." -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 -msgid "Hosts Associated" -msgstr "Machines associées" +msgid "The storage groups associated storage node is not valid" +msgstr "Le nœud de stockage des groupes de stockage associé n'est pas valide" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 -msgid "Host Associated" -msgstr "Aucun nœud associé" +msgid "The uploaded file exceeds the max_file_size" +msgstr "Le fichier téléchargé dépasse la directive max_file_size" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 -msgid "Site Name" -msgstr "Nom du site" +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "Le fichier envoyé excède la directive upload_max_filesize" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 -msgid "Site Description" -msgstr "Description du site" +msgid "The uploaded file was only partially uploaded" +msgstr "Le fichier n'a été que partiellement téléchargé" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 -msgid "New Site" -msgstr "Nouveau site" +msgid "There are" +msgstr "Il y a" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 -msgid "Create Site" -msgstr "Créer un site" +msgid "There are currently" +msgstr "Il y a actuellement" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 -msgid "A site already exists with this name!" -msgstr "Un site existe déjà sous ce nom !" +msgid "There are many reasons why this could be the case" +msgstr "Il y a plusieurs raisons pour lesquelles cela pourrait être le cas" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 -msgid "Add site failed!" -msgstr "Échec dans l'ajout du site !" +msgid "There are no groups on this server" +msgstr "Il n'y a pas de groupes sur ce serveur" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 -msgid "Site added!" -msgstr "Site ajouté !" +msgid "There are no hosts to task in this group" +msgstr "Il n'y a pas de machines à cibler dans ce groupe" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 -msgid "Site Create Success" -msgstr "Site crée avec succès" +msgid "There are no images on this server" +msgstr "Il n'y a pas d'images sur ce serveur" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 -msgid "Site Create Fail" -msgstr "Impossible de créer le site" +msgid "There are no locations on this server" +msgstr "Il n'y a pas d'emplacement sur ce serveur" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 -msgid "Site General" -msgstr "Généralités sur les sites" +msgid "There are no other members to sync to" +msgstr "Il n'y a pas d'autres membres à synchroniser" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 -msgid "A site alread exists with this name!" -msgstr "Un site existe déjà avec ce nom !" +msgid "There are no snapins associated with this host" +msgstr "Il n'y a pas Snapins associés à cette machine" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 -msgid "Site update failed!" -msgstr "La mise à jour du site a échoué !" +msgid "There are no snapins on this server" +msgstr "Il n'y a pas Snapins sur ce serveur" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 -msgid "Site Updated!" -msgstr "Site mis à jour !" +msgid "There are open slots" +msgstr "Il y a des créneaux ouverts" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -msgid "Site Update Success" -msgstr "Succès de la mise à jour du site" +msgid "There is a host in a tasking" +msgstr "Il y a une machine dans une tâche" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 -msgid "Site Update Fail" -msgstr "Échec de la mise à jour du site" +msgid "There is nothing to replicate" +msgstr "Il n'y a rien à répliquer" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -msgid "Host Membership" -msgstr "Adhésions aux groupes de la machine" +msgid "There were errors during import!" +msgstr "Il y a eu des erreurs pendant l'importation !" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -msgid "Check here to see what hosts can be added" -msgstr "Vérifiez ici pour voir quelles machines peuvent être ajoutées" +msgid "There you can download utilities such as FOG Prep" +msgstr "Vous pouvez y télécharger des utilitaires tels que FOG Prep" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 -msgid "Add Hosts" -msgstr "Ajouter des machines" +msgid "This MAC Belongs to another host" +msgstr "Cette MAC appartient à une autre machine" -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 -msgid "Add selected hosts" -msgstr "Ajouter les machines sélectionnées" +msgid "This area will allow the host checking in to tell" +msgstr "Cette zone permettra à l'hôte qui s'enregistre de dire" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 -msgid "Remove Hosts" -msgstr "Supprimer des machines" +msgid "This file will only work on Windows" +msgstr "Ce fichier ne fonctionnera que sous Windows" -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -msgid "Remove selected hosts" -msgstr "Supprimer les machines sélectionnées" +msgid "This host already exists" +msgstr "Cette machine existe déjà" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" -msgstr "Appel de canal est invalide" +msgid "This installation process may take a few minutes" +msgstr "Ce processus d'installation peut prendre quelques minutes" -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" -msgstr "L'appel de l'utilisateur est invalide" +msgid "This is a cron style task that should not run now." +msgstr "C'est une tâche de type cron qui ne doit pas être exécutée maintenant." -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" -msgstr "Méthode invalide appelée" +msgid "This is a cron style task that should run now." +msgstr "C'est une tâche de type cron qui devrait être exécutée maintenant." -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 -msgid "Completed imaging" -msgstr "Clonage terminé" +msgid "This is a single run task that should not run now." +msgstr "Il s'agit d'une tâche unique qui ne doit pas être exécutée maintenant." -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" -msgstr "Comptes Slack" +msgid "This is a single run task that should run now." +msgstr "Il s'agit d'une tâche unique qui devrait s'exécuter maintenant." -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" -msgstr "Compte retiré de l'interface FOG à" +msgid "This is especially useful if you have multiple" +msgstr "Ceci est particulièrement utile si vous avez plusieurs" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" -msgstr "Lien compte Slack" +msgid "This is ipxe script commands to operate with" +msgstr "Il s'agit de commandes de script iPXE pour fonctionner avec" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" -msgstr "Équipe" +msgid "This is not the master for this group" +msgstr "Ce n'est pas le maître pour ce groupe" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "Créé par" +msgid "This is not the primary group" +msgstr "Ce n'est pas le groupe principal" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" -msgstr "Utilisateur / Nom de la chaîne" +msgid "This is only here to maintain old client operations" +msgstr "C'est seulement ici pour maintenir les anciennes opérations du client" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" -msgstr "Utilisateur / Canal pour poster à" +msgid "This is set in seconds and causes the default option" +msgstr "Ceci est défini en secondes et provoque l'option par défaut" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -msgid "Add Slack Account" -msgstr "Ajouter un compte Slack" +msgid "This is the recommended installer to use now" +msgstr "C'est l'installateur recommandé à utiliser maintenant" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" -msgstr "Doit utiliser un" +msgid "This is useful in the case of slow links between" +msgstr "Ceci est utile dans le cas de liaisons lentes entre" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 -msgid "to signify if this is a user or channel to send to" +msgid "This item allows you to edit all of the iPXE Menu items as you" msgstr "" -"pour indiquer s'il s'agit d'un utilisateur ou d'un canal à qui envoyer des " -"informations" - -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" -msgstr "Jeton non valide transmis" +"Cet élément vous permet de modifier tous les éléments du menu iPXE comme " +"vous le souhaitez" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" -msgstr "Utilisateur et / ou d'un canal non valide transmis" +msgid "This module did not work past Windows XP" +msgstr "Ce module n'a pas fonctionné après Windows XP" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" -msgstr "Compte lié à l'interface graphique de FOG à" +msgid "This module did not work past Windows XP due" +msgstr "Ce module n'a pas fonctionné après Windows XP en raison" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 -msgid "Link Slack Account Success" -msgstr "Réussite de la liaison du compte Slack" +msgid "This module did not work past Windows XP due to" +msgstr "Ce module n'a pas fonctionné après Windows XP en raison de" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 -msgid "Link Slack Account Fail" -msgstr "Échec de la liaison du compte Slack" +msgid "This module did not work past Windows XP due to UAC." +msgstr "Ce module n'a pas fonctionné après Windows XP en raison de l'UAC." -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 -msgid "Subnet Groups" -msgstr "Groupes de sous-réseau" +msgid "This module has been replaced in the new client" +msgstr "Ce module a été remplacé dans le nouveau client" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 -msgid "Export Subnetgroups" -msgstr "Exportation de groupes de sous-réseau" +msgid "This module has since been replaced with Power Management." +msgstr "Ce module a depuis été remplacé par Gestion Alimentation." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 -msgid "Import Subnetgroups" -msgstr "Importation de groupes de sous-réseau" +msgid "This module is only used" +msgstr "Ce module est uniquement utilisé" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" -msgstr "Sous-réseaux" +msgid "This module is only used on the old client" +msgstr "Ce module n'est utilisé que sur l'ancien client" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -msgid "New Subnetgroup" -msgstr "Nouveau sous-groupe de réseau" +msgid "This module is only used on the old client." +msgstr "Ce module n'est utilisé que sur l'ancien client." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 -msgid "Create New SubnetGroup?" -msgstr "Créer un nouveau groupe de sous-réseau ?" +msgid "This node does not appear to be online" +msgstr "Ce nœud ne semble pas être en ligne" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 -msgid "A subnetgroup already exists with this name!" -msgstr "Un groupe de sous-réseau existe déjà avec ce nom !" +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "" +"Cette page vous permet de télécharger un fichier CSV dans FOG pour faciliter" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 -msgid "A group is required!" -msgstr "Un groupe est requis !" +msgid "This plugin is not installed" +msgstr "Ce greffon n'est pas installé" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." -msgstr "Un groupe de sous-réseaux utilise déjà ce groupe." +msgid "This section allows you to customize or alter" +msgstr "Cette section vous permet de personnaliser ou de modifier" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -msgid "Please enter a valid CIDR subnets comma separated list" +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" msgstr "" -"Veuillez entrer une liste valide de sous-réseaux CIDR séparés par des " -"virgules" +"Cette section vous permet d'importer les fabricants connus d'adresses MAC " +"dans la base de données de FOG pour faciliter l'identification" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -msgid "Add Subnetgroup failed!" -msgstr "L'ajout de groupe de sous-réseau a échoué !" +msgid "This section allows you to update" +msgstr "Cette section vous permet de mettre à jour" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -msgid "Subnetgroup added!" -msgstr "Groupe de sous-réseau ajouté !" +msgid "This section allows you to update the modules and" +msgstr "Cette section vous permet de mettre à jour les modules et" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 -msgid "Subnetgroup Create Success" -msgstr "Succès de la création d'un groupe de sous-réseau" +msgid "This section allows you to uploade user" +msgstr "Cette section vous permet d'uploader" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -msgid "Subnetgroup Create Fail" -msgstr "Échec de la création d'un groupe de sous-réseau" +msgid "This servers ip(s)" +msgstr "Les IP de ce serveur" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -msgid "SubnetGroup General" -msgstr "Généralités Groupe de sous-réseaux" +msgid "This setting" +msgstr "Ce paramètre" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -msgid "A subnet group already exists with this name!" -msgstr "Un groupe de sous-réseaux existe déjà avec ce nom !" +msgid "This setting defines sending the" +msgstr "Ce paramètre définit l'envoi de l'" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -msgid "A group must be selected." -msgstr "Un group doit être sélectionné." +msgid "This setting limits the bandwidth for replication between nodes" +msgstr "" +"Ce paramètre limite la bande passante pour la réplication entre les nœuds" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -msgid "Please enter a valid CIDR subnet." -msgstr "Veuillez entrer un sous-réseau CIDR valide." +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." +msgstr "" +"Ce paramètre ajoute et supprime uniquement les imprimantes gérées par FOG. " +"Si l'imprimante existe dans la gestion des imprimantes mais n'est pas " +"affectée à une machine, elle sera supprimée si elle existe sur la machine " +"non affecté. Il ajoutera à la machine les imprimantes qui sont affectées." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." -msgstr "Peut être une liste séparée par des virgules." +msgid "This setting turns off all FOG Printer Management" +msgstr "" +"Ce paramètre désactive toutes les fonctions de gestion d'imprimante de FOG" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -msgid "Subnetgroup update failed!" -msgstr "La mise à jour du groupe de sous-réseau a échoué !" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." +msgstr "" +"Ce paramètre n'autorise que les imprimantes attribuées par FOG à être " +"ajoutées à la machine. Toute imprimante non assignée sera supprimée, y " +"compris les imprimantes non gérées par FOG." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 -msgid "Subnetgroup updated!" -msgstr "Groupe de sous-réseau mis à jour !" +msgid "This will allow you to configure how services" +msgstr "Cela vous permettra de configurer la façon dont les services" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 -msgid "Subnetgroup Update Success" -msgstr "Succès dans la mise à jour du groupe de sous-réseau" +msgid "Those images should be activated with the associated" +msgstr "Ces images doivent être activées avec l'image associée" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 -msgid "Subnetgroup Update Fail" -msgstr "Échec dans la mise à jour du groupe de sous-réseau" +msgid "Time" +msgstr "Temps" -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." -msgstr "" -"Permet d'éditer/créer les états de tâches que possède actuellement FOG." +msgid "Time Already Exists" +msgstr "L'heure existe déjà" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "États de la tâche" +msgid "Timeout" +msgstr "Délai d'attente" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 -msgid "Export Task States" -msgstr "Exportation des états de la tâche" +msgid "Title must be a string" +msgstr "Le titre doit être une chaîne de caractères" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -msgid "Import Task States" -msgstr "Importation des états de la tâche" +msgid "To be released only by" +msgstr "Pour être libéré que par" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "État tâche" +msgid "To get started please select an item from the menu." +msgstr "Pour commencer, veuillez sélectionner un élément dans le menu." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "Icône" +msgid "To perform an imaging task an image must be assigned" +msgstr "Pour effectuer une tâche de clonage, une image doit être attribuée" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "Nouvel état Tâche" +msgid "To view a report, select an item from the menu" +msgstr "Pour afficher un rapport, sélectionnez un item du menu latéral" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" -msgstr "Éléments d'icônes supplémentaires" +msgid "Toggle Navigation" +msgstr "Naviguer dans le menu" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 -msgid "Create Task state" -msgstr "État de création de tâche" +msgid "Too many MACs" +msgstr "Trop de MACs" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 -msgid "A task state already exists with this name!" -msgstr "Un état de tâche existe déjà avec ce nom !" +msgid "Total Disk Space" +msgstr "Espace disque total" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -msgid "Add task state failed!" -msgstr "Échec de l'ajout d'état de tâche !" +msgid "Total Memory" +msgstr "Mémoire totale" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 -msgid "Task State added!" -msgstr "État Tâche ajouté !" +msgid "Total Rows" +msgstr "Nombre de lignes" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 -msgid "Task State Create Success" -msgstr "Succès de la création de l'état tâche" +msgid "Transmit" +msgstr "Transmission" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 -msgid "Task State Create Fail" -msgstr "Échec de la création de l'état tâche" +msgid "Trying Snapin hash for" +msgstr "Essai de hachage de Snapin pour" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 -msgid "Task State General" -msgstr "Généralités sur l'état des tâches" +msgid "Trying image size for" +msgstr "Essayer la taille de l'image pour" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 -msgid "Update task state failed!" -msgstr "Échec de la mise à jour de l'état tâche !" +msgid "Txt must be a string" +msgstr "Txt doit être une chaîne de caractères" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 -msgid "Task State Updated!" -msgstr "État Tâche mis à jour !" +msgid "Type" +msgstr "Type" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 -msgid "Task State Update Success" -msgstr "Succès de la mise à jour à jour de l'état tâche" +msgid "UAC introduced in Vista and up" +msgstr "L'UAC a été introduite dans Vista et les versions ultérieures" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 -msgid "Task State Update Fail" -msgstr "Échec de la mise à jour à jour de l'état tâche" +msgid "Unable to Authenticate" +msgstr "Impossible de s'authentifier" -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." -msgstr "" -"Permet d'éditer/créer les types de tâches que possède actuellement FOG." +msgid "Unable to determine plugin details." +msgstr "Impossible de déterminer les détails du greffon." -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" -msgstr "Types de tâches" +msgid "Unable to find basic information!" +msgstr "Impossible de trouver les informations de base !" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 -msgid "Export Task Types" -msgstr "Exportation des types de tâches" +msgid "Unable to find master Storage Node" +msgstr "Impossible de trouver le nœud de stockage principal" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -msgid "Import Task Types" -msgstr "Importation des types de tâches" +msgid "Unable to get server infromation!" +msgstr "Impossible d'obtenir des informations sur le serveur !" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" -msgstr "Accès" +msgid "Unable to open file for reading" +msgstr "Impossible d'ouvrir le fichier pour la lecture" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" -msgstr "Kernel Args" +msgid "Unauthorized" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" -msgstr "Nouveau Type de tâche" +msgid "Unavailable" +msgstr "Indisponible" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" -msgstr "Arguments du noyau" +msgid "Unicaset" +msgstr "Unicast" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 -msgid "Init" -msgstr "Init" +msgid "Unit of time must be a string" +msgstr "L'unité de temps doit être une chaîne de caractères" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" -msgstr "Est avancée" +msgid "Unknown" +msgstr "Inconnu" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" -msgstr "Consulté par" +msgid "Unknown upload error occurred" +msgstr "Une erreur de téléchargement inconnue s'est produite" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -msgid "Create Task type" -msgstr "Créer un type de tâche" +msgid "Update" +msgstr "Mettre à jour" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -msgid "A task type already exists with this name!" -msgstr "Un type de tâche existe déjà avec ce nom !" +msgid "Update API?" +msgstr "Mise à jour de l'API ?" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -msgid "Add task type failed!" -msgstr "L'ajout du type de tâche a échoué !" +msgid "Update Default Printer" +msgstr "Mise à jour de l'imprimante par défaut" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 -msgid "Task Type added!" -msgstr "Le type de tâche a été ajouté !" +msgid "Update General?" +msgstr "Mise à jour générale ?" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -msgid "Task Type Create Success" -msgstr "Succès de la création du type de tâche" +msgid "Update LDAP server failed!" +msgstr "La mise à jour du serveur LDAP a échoué !" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -msgid "Task Type Create Fail" -msgstr "Échec de la création du type de tâche" +msgid "Update MACs" +msgstr "Mettez à jour les MACs" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -msgid "Task Type General" -msgstr "État Tâche - Généralités" +msgid "Update PM Values" +msgstr "Mise à jour des valeurs de la gestion de l'alimentation" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -msgid "Task Type Updated!" -msgstr "Type de tâche mise à jour !" +msgid "Update Password?" +msgstr "Mettre à jour le mot de passe ?" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 -msgid "Task Type Update Success" -msgstr "Mise à jour réussie du type de tâche" +msgid "Update Windows Key failed!" +msgstr "Échec de la mise à jour de la clé Windows !" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 -msgid "Task Type Update Fail" -msgstr "La mise à jour du type de tâche a échoué" +msgid "Update auto-logout time" +msgstr "Mise à jour du délai de déconnexion automatique" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" -msgstr "Windows keys est un plugin qui associe les clés de produit" +msgid "Update default printer" +msgstr "Mise à jour de l'imprimante par défault" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" -msgstr "pour Microsoft Windows aux images" +msgid "Update display resolution" +msgstr "Mise à jour de la résolution d'affichage" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" -msgstr "Ces images doivent être activées avec l'image associée" +msgid "Update module configurations" +msgstr "Mise à jour des configurations des modules" -#: lib/plugins/windowskey/config/plugin.config.php:31 -msgid "key" -msgstr "clé" +msgid "Update not required!" +msgstr "La mise à jour n'est pas nécessaire !" -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" -msgstr "La clé sera attribuée aux machines enregistrées lorsqu'une" +msgid "Update primary group" +msgstr "Mise à jour du groupe principal" -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" -msgstr "tâche de déploiement se présente pour elles" +msgid "Update printer configuration" +msgstr "Mise à jour de la configuration de l'imprimante" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "Lorsque le greffon est enlevé, la clé assignée demeure" +msgid "Update task state failed!" +msgstr "Échec de la mise à jour de l'état tâche !" -#: lib/plugins/windowskey/config/plugin.config.php:36 -msgid "with the host" -msgstr "avec la machine" +msgid "Update/Remove Storage Groups" +msgstr "Mise à jour / suppression de groupes de stockage" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 -msgid "Windows Key for Image" -msgstr "Clé Windows pour l'image" +msgid "Update/Remove printers" +msgstr "Mise à jour / suppression des imprimantes" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 -msgid "Windows Keys" -msgstr "Clés Windows" +msgid "Upload Reports" +msgstr "Télécharger Rapports" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 -msgid "Export Windows Keys" -msgstr "Exportation des clés Windows" +msgid "Upload file" +msgstr "Téléverser un fichier" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -msgid "Import Windows Keys" -msgstr "Importation des clés Windows" +msgid "Upload file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 -msgid "Key Name" -msgstr "Nom de clé" +msgid "Uptime" +msgstr "Temps de fonctionnement" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 -msgid "New Windows Key" -msgstr "Nouvelle clé Windows" +msgid "Use Group Matching (recommended)" +msgstr "Utiliser l'appariement des groupes (recommandé)" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 -msgid "Windows Key Name" -msgstr "Nom de clé Windows" +msgid "Use extreme caution with this setting" +msgstr "Soyez extrêmement prudent avec ce paramètre" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 -msgid "Windows Key Description" -msgstr "Description de la clé Windows" +msgid "Use inits and kernels from this node" +msgstr "Utilisez les inits et kernels de ce nœud" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 -msgid "Windows Key" -msgstr "Clé Windows" +msgid "Use the following link to go to the client page." +msgstr "Utilisez le lien suivant pour accéder à la page du client." -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 -msgid "Create New Key" -msgstr "Créer une nouvelle clé" +msgid "Use the forums to post issues so others" +msgstr "Utilisez les forums pour poster des problèmes afin que d'autres" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 -msgid "A Windows Key already exists with this name!" -msgstr "Une clé Windows portant ce nom existe déjà !" +msgid "Use the links below if you need assistance" +msgstr "Utilisez les liens ci-dessous si vous avez besoin d'aide" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 -msgid "Add Windows Key failed!" -msgstr "L'ajout de la clé Windows a échoué !" +msgid "Use this for network installs" +msgstr "Utilisez ceci pour les installations via le réseau" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 -msgid "Windows Key added!" -msgstr "Clé Windows ajoutée !" +msgid "Used" +msgstr "Utilisé" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 -msgid "Windows Key Create Success" -msgstr "Succès dans la création de la clé Windows" +msgid "Used Disk Space" +msgstr "Espace disque utilisé" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 -msgid "Windows Key Create Fail" -msgstr "Échec dans la création de la clé Windows" +msgid "Used Memory" +msgstr "Mémoire utilisée" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 -msgid "Windows Key General" -msgstr "Généralités sur les clés Windows" +msgid "User" +msgstr "Utilisateur" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 -msgid "Update Windows Key failed!" -msgstr "Échec de la mise à jour de la clé Windows !" +msgid "User API Enabled" +msgstr "API utilisateur activée" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 -msgid "Windows Key updated!" -msgstr "Clé Windows mise à jour !" +msgid "User API Settings" +msgstr "Paramètres de l'API utilisateur" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 -msgid "Windows Key Update Success" -msgstr "Succès de la mise à jour de la clé Windows" +msgid "User API Token" +msgstr "Jeton d'accès API utilisateur" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 -msgid "Windows Key Update Fail" -msgstr "Échec de la mise à jour de la clé Windows" +msgid "User Access Control" +msgstr "Contrôle d'accès des utilisateurs" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 -msgid "Image Membership" -msgstr "Membres de l'image" +msgid "User Agent Changed" +msgstr "L'agent utilisateur modifié" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -msgid "Check here to see what images can be added" -msgstr "Vérifiez ici pour voir quelles images peuvent être ajoutées" +msgid "User Already Exists" +msgstr "L'utilisateur existe déjà" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 -msgid "Add selected images" -msgstr "Ajouter les images sélectionnées" +msgid "User Change Password" +msgstr "Changement de mot de passe par l'utilisateur" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 -msgid "Remove Images" -msgstr "Supprimer les images" +msgid "User Cleanup" +msgstr "Nettoyage de l'utilisateur" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 -msgid "Remove selected images" -msgstr "Supprimer les images sélectionnées" +msgid "User Create Fail" +msgstr "Échec de la création de l'utilisateur" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 -msgid "WOL Broadcasts" -msgstr "WOL Broadcasts" +msgid "User Create Success" +msgstr "Succès de la création de l'utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 -msgid "Export WOLBroadcasts" -msgstr "Exportation des WOL Broadcasts" +msgid "User DN" +msgstr "Utilisateur DN" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 -msgid "Import WOLBroadcasts" -msgstr "Exportation des WOL Broadcasts" +msgid "User Filter" +msgstr "Filtre utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" -msgstr "Nom de broadcast" +msgid "User General" +msgstr "Généralités sur l'utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" -msgstr "IP de broadcast" +msgid "User Management" +msgstr "Gestion des utilisateurs" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" -msgstr "Nouvelle Adresse de diffusion" +msgid "User Name" +msgstr "Identifiant" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -msgid "Create WOL Broadcast?" -msgstr "Création d'un WOL Broadcast ?" +msgid "User Name Attribute" +msgstr "Attribut du nom d'utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -msgid "A broadcast already exists with this name!" -msgstr "Un broadcast existe déjà avec ce nom !" +msgid "User Password" +msgstr "Mot de passe de l'utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 -msgid "A broadcast address is required" -msgstr "Une adresse de broadcast est requise" +msgid "User Password (confirm)" +msgstr "Mot de passe de l'utilisateur (confirmation)" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" -msgstr "S'il vous plaît entrer une adresse IP valide" +msgid "User Tracker" +msgstr "Tracker utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -msgid "Add broadcast failed!" -msgstr "Échec de l'ajout du broadcast !" +msgid "User Update Fail" +msgstr "Échec de la mise à jour de l'utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -msgid "Broadcast added!" -msgstr "Broadcast ajouté !" +msgid "User Update Success" +msgstr "Succès de la mise à jour de l'utilisateur" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -msgid "Broadcast Create Success" -msgstr "Réussite de la création du broadcast" +msgid "User added!" +msgstr "Utilisateur ajouté !" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 -msgid "Broadcast Create Fail" -msgstr "Échec de la création du broadcast" +msgid "User call is invalid" +msgstr "L'appel de l'utilisateur est invalide" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -msgid "WOL Broadcast General" -msgstr "WOL Broadcast Général" +msgid "User name" +msgstr "Identifiant" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -msgid "A broadcast already exists with this name" -msgstr "Un broadcast existe déjà avec ce nom" +msgid "User update failed!" +msgstr "La mise à jour de l'utilisateur a échoué !" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 -msgid "Broadcast update failed!" -msgstr "La mise à jour du Broadcast a échoué !" +msgid "User updated!" +msgstr "Utilisateur mis à jour !" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 -msgid "Broadcast updated!" -msgstr "Broadcast mis à jour !" +msgid "User was not authorized by the LDAP server" +msgstr "L'utilisateur n'a pas été autorisé par le serveur LDAP" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 -msgid "Broadcast Update Success" -msgstr "Succès de la mise à jour du Broadcast" +msgid "User/Channel Name" +msgstr "Utilisateur / Nom de la chaîne" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 -msgid "Broadcast Update Fail" -msgstr "Échec de la mise à jour du Broadcast" +msgid "User/Channel to post to" +msgstr "Utilisateur / Canal pour poster à" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." -msgstr "" -"Host Ext est un greffon qui permet d'attribuer à chaque hôte une url externe." - -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 -msgid "Host Ext" -msgstr "Host ext" - -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " -msgstr "Host URL Externe - " - -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 -msgid "External Links" -msgstr "Liens externes" - -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 -msgid "Export Host Exts" -msgstr "Exportation Host ext" - -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 -msgid "Import Host Exts" -msgstr "Importation Host ext" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 -msgid "Host Ext Name" -msgstr "Nom Host ext" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 -msgid "Host Ext URL" -msgstr "URL Host ext" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 -msgid "Host Ext Variable" -msgstr "Variable Host ext" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 -msgid "Create New Host Ext" -msgstr "Création nouveau Host Ext" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 -msgid "A hostext already exists with this name!" -msgstr "Une Host ext existe déjà avec ce nom !" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -msgid "Add ou failed!" -msgstr "L'ajout OU a échoué !" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 -msgid "Hostext added!" -msgstr "Host ext ajoutée !" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 -msgid "Hostext Create Success" -msgstr "Host ext créée avec succès" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 -msgid "Hostext Create Fail" -msgstr "Création Host ext échouée" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 -msgid "Hostext update failed!" -msgstr "Échec de la mise à jour Host ext !" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 -msgid "Hostext updated!" -msgstr "Host ext mise à jour !" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 -msgid "Hostext Update Success" -msgstr "Mise à jour Host ext réussie" - -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 -msgid "Hostext Update Fail" -msgstr "Échec mise à jour de Host ext" - -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" +msgid "Username" +msgstr "Identifiant" + +msgid "Username cannot contain contiguous special characters" msgstr "" -"Utilisez le sélecteur pour choisir le nombre d'éléments que vous souhaitez " -"exporter" +"Le nom d'utilisateur ne peut pas contenir de caractères spéciaux contigus" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" -msgstr "Impossible de déterminer les détails du plugin" +msgid "Username does not meet requirements" +msgstr "Le nom d'utilisateur ne répond pas aux exigences" -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" -msgstr "Aucun nœud associé à une adresse de ce système" +msgid "Username must be at least 3 characters" +msgstr "Le nom d'utilisateur doit comporter au moins 3 caractères" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" -msgstr "Associe les fichiers sur les nœuds" +msgid "Username must be less than 41 characters" +msgstr "Le nom d'utilisateur doit comporter moins de 41 caractères" -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" -msgstr "et stocke leurs sommes de contrôle respectives" +msgid "Username must start with a word character" +msgstr "Le nom d'utilisateur doit commencer par un caractère de mot" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" -msgstr "dates de modification" +msgid "Users" +msgstr "Utilisateurs" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" -msgstr "et l'emplacement du fichier sur ce" +msgid "Using the group match function" +msgstr "Utilisation de la fonction de correspondance de groupe" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" -msgstr "nœud particulier" +msgid "VNC" +msgstr "VNC" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 -msgid "Integrity Settings" -msgstr "Paramètres d'intégrité" +msgid "Valid Host Colors" +msgstr "Couleurs valides de la machine" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 -msgid "Export Checksums" -msgstr "Exportation des sommes de contrôle" +msgid "Value" +msgstr "Valeur" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" -msgstr "Sommes de contrôle" +msgid "Variable contains" +msgstr "La variable contient" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" -msgstr "Somme de contrôle" +msgid "Version" +msgstr "Version" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 -msgid "Last Updated Time" -msgstr "Heure de la dernière mise à jour" +msgid "Version 1.2.0 and earlier" +msgstr "Version 1.2.0 et antérieure" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" -msgstr "Conflit de chemin / fichier" +msgid "View History For" +msgstr "Voir l'historique pour" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" -msgstr "" -"Host Status est un greffon qui ajoute une nouvelle entrée dans la page " -"d'édition de la machine" +msgid "View advanced tasks for this" +msgstr "Voir tâches avancées pour cette" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" -msgstr "" -"qui détecte l'état à la volée, mise sous tension ou hors tension et le " -"système d'exploitation, du client" +msgid "Virus History" +msgstr "Historique des virus" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" -msgstr "

État possible : Windows, Linux, FOS et Inconnu" +msgid "Virus Name" +msgstr "Nom du virus" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" -msgstr "

Dépendances : port TCP 445 ouvert côté client" +msgid "Virus Report" +msgstr "Rapport sur les virus" -#: lib/plugins/hoststatus/config/plugin.config.php:19 -msgid "

Version 1.5.5" -msgstr "

Version 1.5.5" +msgid "Virus items removed!" +msgstr "Les éléments concernant les virus ont été supprimés !" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 -msgid "Host Status" -msgstr "Statut machine" +msgid "WOL Broadcast General" +msgstr "WOL Broadcast Général" -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" -msgstr "Créé par FOG Reg sur" +#, fuzzy +msgid "WOL Broadcast Management" +msgstr "Gestion des localisations" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" -msgstr "Déjà inscrit comme" +msgid "WOL Broadcasts" +msgstr "WOL Broadcasts" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" -msgstr "Impossible de créer la machine" +msgid "Wait time has changed to" +msgstr "Le temps d'attente est passé à" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" -msgstr "C'est fait, sans clonage !" +msgid "Waiting for mysql to be available" +msgstr "En attente que MySql soit disponible" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" -msgstr "Fait, Pas d'image attribué!" +msgid "Wake On Lan" +msgstr "Wake On Lan" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" -msgstr "Fait, Impossible de créer une tâche" +msgid "Wake on lan?" +msgstr "Wake on lan ?" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "Fait, avec un clonage !" +msgid "We are group ID" +msgstr "Nous sommes le groupe ID" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "Terminé" +msgid "We are group name" +msgstr "Nous sommes le nom du groupe" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "Aucune tâche active trouvée pour Host" +msgid "We are node ID" +msgstr "Nous sommes le nœud ID" -#: lib/reg-task/taskingelement.class.php:205 -msgid "Could not find a Storage Node in this group" -msgstr "Impossible de trouver un nœud de stockage dans ce groupe" +msgid "We are node name" +msgstr "Nous sommes le nom du nœud" -#: lib/reg-task/taskingelement.class.php:206 -msgid "is there one enabled" -msgstr "y a-t-il un activé" +msgid "We cannot connect to LDAP server" +msgstr "Nous ne pouvons pas nous connecter au serveur LDAP" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" -msgstr "est ouvert" +msgid "Web Server" +msgstr "Serveur Web" -#: lib/reg-task/taskingelement.class.php:233 -msgid "but has recently failed for this host" -msgstr "mais a récemment échoué pour cette machine" +msgid "Web root" +msgstr "Racine web" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" -msgstr "Impossible de mettre à jour la tâche" +msgid "Weekly" +msgstr "Hebdomadaire" -#: lib/reg-task/taskqueue.class.php:57 -msgid "Invalid Multicast Session" -msgstr "Session multicast invalide" +msgid "When the plugin is removed, the assigned key will remain" +msgstr "Lorsque le greffon est enlevé, la clé assignée demeure" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" -msgstr "Impossible de mettre à jour la session" +msgid "Where to get help" +msgstr "Où trouver de l'aide" -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" -msgstr "Pas de créneaux ouverts" +msgid "Width must be 650 pixels." +msgstr "La largeur doit être de 650 pixels." -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" -msgstr "Il y a" +msgid "Window size must be greater than 1" +msgstr "La taille de la fenêtre doit être supérieure à 1" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" -msgstr "avant moi" +msgid "Windows Key" +msgstr "Clé Windows" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" -msgstr "Le nœud que l'on essaie d'utiliser est actuellement" +msgid "Windows Key Create Fail" +msgstr "Échec dans la création de la clé Windows" -#: lib/reg-task/taskqueue.class.php:133 -msgid "unavailable" -msgstr "indisponible" +msgid "Windows Key Create Success" +msgstr "Succès dans la création de la clé Windows" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" -msgstr "Au redémarrage, nous allons essayer de trouver un nouveau nœud" +msgid "Windows Key Description" +msgstr "Description de la clé Windows" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" -msgstr "automatiquement" +msgid "Windows Key General" +msgstr "Généralités sur les clés Windows" -#: lib/reg-task/taskqueue.class.php:156 -msgid "There are open slots" -msgstr "Il y a des créneaux ouverts" +#, fuzzy +msgid "Windows Key Management" +msgstr "Nom de clé Windows" -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" -msgstr "mais" +msgid "Windows Key Name" +msgstr "Nom de clé Windows" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" -msgstr "avant moi sur ce nœud" +msgid "Windows Key Update Fail" +msgstr "Échec de la mise à jour de la clé Windows" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" -msgstr "Journaux Impossible de mettre à jour / créer une image" +msgid "Windows Key Update Success" +msgstr "Succès de la mise à jour de la clé Windows" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" -msgstr "Impossible de mettre à jour la tâche" +msgid "Windows Key added!" +msgstr "Clé Windows ajoutée !" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" -msgstr "Journaux Impossible de mettre à jour / créer des tâches" +msgid "Windows Key for Image" +msgstr "Clé Windows pour l'image" -#: lib/reg-task/taskqueue.class.php:301 -msgid "Machine Details" -msgstr "Détails sur la machine" +msgid "Windows Key updated!" +msgstr "Clé Windows mise à jour !" -#: lib/reg-task/taskqueue.class.php:303 -msgid "Computer Model" -msgstr "Modèle d'ordinateur" +msgid "Windows Keys" +msgstr "Clés Windows" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "Numéro de série" +msgid "Windows keys is a plugin that associates product keys" +msgstr "Windows keys est un plugin qui associe les clés de produit" -#: lib/reg-task/taskqueue.class.php:305 -msgid "MAC Address" -msgstr "Adresse MAC" +msgid "Working with node" +msgstr "Travailler avec un nœud" -#: lib/reg-task/taskqueue.class.php:307 -msgid "Image Used" -msgstr "Image utilisée" +#, fuzzy +msgid "Wrong file name!" +msgstr "Aucun fichier envoyé !" -#: lib/reg-task/taskqueue.class.php:308 -msgid "Snapin Used" -msgstr "SnapIn utilisé" +msgid "Yearly" +msgstr "Annuel" -#: lib/reg-task/taskqueue.class.php:310 -msgid "Imaged By" -msgstr "Cloné par" +msgid "Yes" +msgstr "Oui" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 -msgid "Imaged For" -msgstr "Cloné pour" +msgid "You are only allowed to assign" +msgstr "Vous êtes seulement autorisé à attribuer" -#: lib/reg-task/taskqueue.class.php:312 -msgid "Imaging Started" -msgstr "Clonage lancé" +msgid "You have version" +msgstr "Vous avez la version" -#: lib/reg-task/taskqueue.class.php:313 -msgid "Imaging Completed" -msgstr "Clonage terminé" +msgid "You must have at least one Storage Group" +msgstr "Vous devez avoir au moins un groupe de stockage" -#: lib/reg-task/taskqueue.class.php:314 -msgid "Imaging Duration" -msgstr "Durée du clonage" +msgid "You must have at least one group associated" +msgstr "Vous devez avoir au moins un groupe de stockage associé" -#: lib/reg-task/taskqueue.class.php:332 -msgid "Image Task Completed" -msgstr "Tâche de clonage terminé" +msgid "You must select an action to perform" +msgstr "Vous devez sélectionner une action à effectuer" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" -msgstr "Appel" +msgid "Your FOG database schema is not up to date" +msgstr "Le schéma de votre base de données FOG n'est pas à jour" + +msgid "Your Location Here" +msgstr "Votre lieu ici" -#: lib/reg-task/taskqueue.class.php:461 -msgid "Failed to update Host" -msgstr "Impossible de mettre à jour la machine" +msgid "Your database connection appears to be invalid" +msgstr "Votre connexion à la base de données semble être invalide" -#: lib/reg-task/taskqueue.class.php:475 -msgid "Failed to update task log" -msgstr "Impossible de mettre à jour le rapport des tâches" +msgid "Your form is ready" +msgstr "Votre formulaire est prêt" -#: lib/reg-task/taskqueue.class.php:479 -msgid "Failed to update imaging log" -msgstr "Impossible de mettre à jour le rapport des clonages" +msgid "Your server only allows" +msgstr "Votre serveur ne permet que" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" -msgstr "Équipement FOG Formulaire de prêt" +msgid "Your system PHP Version is not sufficient" +msgstr "La version PHP de votre système n'est pas suffisante" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" -msgstr "Sélectionnez l'utilisateur" +msgid "ZSTD Compressed" +msgstr "ZSTD Compressé" -#: lib/reports/equipment_loan.report.php:66 -msgid "Create Report?" -msgstr "Créer un rapport ?" +msgid "ZSTD Compressed 200MiB split" +msgstr "ZSTD Compressé 200 Mo split" -#: lib/reports/equipment_loan.report.php:69 -msgid "Generate" -msgstr "Générer" +msgid "access to the hidden menu system" +msgstr "accès au système de menu caché" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" -msgstr "de" +msgid "additional macs" +msgstr "adresses MACs supplémentaires" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" -msgstr "Imprimé" +msgid "ago" +msgstr "depuis" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" -msgstr "PC Check-out Agreement" +msgid "all current storage nodes" +msgstr "tous les nœuds de stockage actuels" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" -msgstr "Informations personnelles" +msgid "and Mac OS X" +msgstr "and MacOS X" -#: lib/reports/equipment_loan.report.php:162 -msgid "Your Location Here" -msgstr "Votre lieu ici" +msgid "and agree to all the" +msgstr "et accepté tous les" -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" -msgstr "Adresse du domicile" +msgid "and both the legacy and new FOG clients." +msgstr "et les anciens et nouveaux clients FOG." -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" -msgstr "Ville / État / Zip" +msgid "and cannot be captured" +msgstr "et ne peut pas être capturée" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" -msgstr "Extension" +msgid "and if the Database service is running" +msgstr "et si le service de base de données est en cours d'exécution" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" -msgstr "Téléphone fixe" +msgid "and much easier on the server" +msgstr "et beaucoup plus facile sur le serveur" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" -msgstr "Informations sur l'ordinateur" +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "et le nœud A a seulement un 5Mbps et vous voulez la vitesse" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" -msgstr "Numéro de service" +msgid "and set it to master" +msgstr "et que vous le définissez comme maître" -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "Numéros de codes à barres" +msgid "and stores their respective checksums" +msgstr "et stocke leurs sommes de contrôle respectives" -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" -msgstr "Date de sortie" +msgid "and the equivalent module for what Green" +msgstr "et le module équivalent à ce que faisait FOG" -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" -msgstr "Remarques" +msgid "and the location of the file on that" +msgstr "et l'emplacement du fichier sur ce" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "Divers" +msgid "as FOG will attempt to go out to the internet" +msgstr "car FOG va essayer de sortir sur internet" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "Éléments inclus" +msgid "as its primary group" +msgstr "comme groupe principal" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" -msgstr "Initiales du personnel ayant libéré" +msgid "as they can cause issues that are difficult to troubleshoot" +msgstr "car ils peuvent causer des problèmes difficiles à résoudre" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" -msgstr "Pour être libéré que par" +msgid "automatically" +msgstr "automatiquement" -#: lib/reports/equipment_loan.report.php:219 -msgid "I have read" -msgstr "J'ai lu" +msgid "based task." +msgstr "tâche basée." -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" -msgstr "compris" +msgid "be the presence of a menu" +msgstr "un menu sera présent" -#: lib/reports/equipment_loan.report.php:221 -msgid "and agree to all the" -msgstr "et accepté tous les" +msgid "before me" +msgstr "avant moi" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" -msgstr "Termes et conditions" +msgid "before me on this node" +msgstr "avant moi sur ce nœud" -#: lib/reports/equipment_loan.report.php:223 -msgid "on the following pages of this document" -msgstr "sur les pages suivantes de ce document" +msgid "between" +msgstr "entre" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "Signé" +msgid "between different sites" +msgstr "entre différents sites" -#: lib/reports/equipment_loan.report.php:262 -msgid "Your form is ready" -msgstr "Votre formulaire est prêt" +msgid "between host and global settings" +msgstr "entre les paramètres de la machine et les paramètres globaux" -#: lib/reports/equipment_loan.report.php:266 -msgid "Form" -msgstr "Formulaire" +msgid "boot the client computers" +msgstr "démarrer les ordinateurs clients" -#: lib/reports/history_report.report.php:26 -msgid "FOG History - Search" -msgstr "Historique de recherche FOG" +msgid "but" +msgstr "mais" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 -msgid "Enter an user name to search for" -msgstr "Entrez un nom d'utilisateur pour rechercher" +msgid "but bind password is not set" +msgstr "mais le mot de passe de liaison n'est pas défini" -#: lib/reports/history_report.report.php:68 -msgid "Enter a term to search for" -msgstr "Entrez un terme à rechercher" +msgid "but has recently failed for this host" +msgstr "mais a récemment échoué pour cette machine" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" -msgstr "Effectuer une recherche" +msgid "check to ensure your filesystem has enough space" +msgstr "" +"vérifiez que votre système de fichiers dispose de suffisamment d'espace" -#: lib/reports/history_report.report.php:111 -msgid "Full History Export" -msgstr "Exportation de l'historique complet" +msgid "client" +msgstr "client" -#: lib/reports/history_report.report.php:166 -msgid "History ID" -msgstr "Historique ID" +msgid "clients" +msgstr "clients" -#: lib/reports/history_report.report.php:167 -msgid "History Info" -msgstr "Historique des informations" +msgid "config files that run on the client computers." +msgstr "" +"les fichiers de configuration qui s'exécutent sur les ordinateurs clients." -#: lib/reports/history_report.report.php:168 -msgid "History User" -msgstr "Historique des utilisateurs" +msgid "could not be cancelled" +msgstr "n'a pas pu être annulé" -#: lib/reports/history_report.report.php:169 -msgid "History Time" -msgstr "Historique des horaires" +msgid "could not be completed" +msgstr "n'a pas pu être complété" -#: lib/reports/history_report.report.php:170 -msgid "History IP" -msgstr "Historique des IP" +msgid "could not be killed" +msgstr "n'a pas pu être tué" -#: lib/reports/host_list.report.php:33 -msgid "FOG Host - Search" -msgstr "Machines FOG - Recherche" +msgid "day" +msgstr "jour" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -msgid "Enter a group name to search for" -msgstr "Entrez un nom de groupe à rechercher" +msgid "day of month" +msgstr "jour du mois" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -msgid "Enter a location name to search for" -msgstr "Entrez un nom de lieu à rechercher" +msgid "day of week" +msgstr "jour de la semaine" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 -msgid "Enter a site name to search for" -msgstr "Entrez un nom de lieu à rechercher" +msgid "defined reports that may not be a part of" +msgstr "" +"des rapports définis par l'utilisateur qui peuvent ne pas faire partie de" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 -msgid "Search pattern" -msgstr "Schéma de recherche" +msgid "deleted" +msgstr "supprimé" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" -msgstr "Hôte Liste Export" +msgid "deploy task occurs for it" +msgstr "tâche de déploiement se présente pour elles" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" -msgstr "Machine créée" +msgid "directive in php.ini" +msgstr "directive dans le fichier php.ini" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -msgid "Host AD Join" -msgstr "Host AD Join" +msgid "directive specified in the HTML form" +msgstr "spécifiée dans le formulaire HTML" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -msgid "Host AD OU" -msgstr "Host AD OU" +msgid "directory" +msgstr "dossier" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -msgid "Host AD Domain" -msgstr "Domaine AD machine" +msgid "download the module and use it on the next" +msgstr "téléchargera le module et l'utilisera sur la prochaine" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 -msgid "Host HD Device" -msgstr "Périphérique HD machine" +msgid "due to UAC introduced in Vista and up." +msgstr "en raison de l'UAC introduit dans Vista et les versions ultérieures." -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" -msgstr "Image ID" +msgid "e.g." +msgstr "par exemple" -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" -msgstr "Image Desc" +msgid "either already selected or uploaded" +msgstr "soit déjà sélectionné ou téléchargé" -#: lib/reports/hosts_and_users.report.php:24 -msgid "FOG Host and Users - Search" -msgstr "Machines et utilisateurs de FOG - Recherche" +msgid "either because you have updated" +msgstr "soit parce que vous avez mis à jour" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" -msgstr "Connexion des machines et des utilisateurs du FOG" +msgid "failed to execute, image file: " +msgstr "n'a pas réussi à s'exécuter, fichier image : " -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" -msgstr "Jonction AD" +msgid "failed to execute, port must be even and numeric" +msgstr "a échoué à s'exécuter, le port doit être pair et numérique" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" -msgstr "AD OU" +msgid "failed to execute, there are no clients included" +msgstr "a échoué à s'exécuter, il n'y a pas de clients inclus" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" -msgstr "AD Domain" +msgid "failed to login" +msgstr "impossible de se connecter" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" -msgstr "Périphérique Disque dur" +msgid "failed to start" +msgstr "a échoué à démarrer" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -msgid "Login Users" -msgstr "Utilisateurs connectés" +msgid "faster" +msgstr "plus rapide" -#: lib/reports/imaging_log.report.php:24 -msgid "FOG Imaging - Search" -msgstr "Clonage FOG - Recherche" +msgid "filesize" +msgstr "taille du fichier" -#: lib/reports/imaging_log.report.php:105 -msgid "Enter an image name to search for" -msgstr "Entrez un nom d'image à rechercher" +msgid "for Microsoft Windows to images" +msgstr "pour Microsoft Windows aux images" -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" -msgstr "Entrez un nom de machine pour rechercher" +msgid "for the advanced menu parameters" +msgstr "pour les paramètres du menu avancé" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" -msgstr "Journaux clonage FOG" +msgid "for the menu background" +msgstr "pour l'arrière-plan du menu" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" -msgstr "Date de début" +msgid "found" +msgstr "trouvé" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" -msgstr "Date de fin" +msgid "from" +msgstr "de" -#: lib/reports/imaging_log.report.php:214 -msgid "Deploy/Capture" -msgstr "Déployer / Capturer" +msgid "function on client computers." +msgstr "fonctionnent sur les ordinateurs clients." -#: lib/reports/imaging_log.report.php:268 -msgid "Not Valid" -msgstr "Non valide" +msgid "group" +msgstr "groupe" -#: lib/reports/inventory_report.report.php:24 -msgid "FOG Host Inventory - Search" -msgstr "Inventaire des machines FOG - Recherche" +msgid "has been cancelled" +msgstr "a été annulé" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." -msgstr "Aucun groupe défini, la recherche renverra toutes les machines." +msgid "has been completed" +msgstr "a été achevé" -#: lib/reports/inventory_report.report.php:129 -msgid "Enter a model name to search for" -msgstr "Entrez un nom de modèle à rechercher" +msgid "has been killed" +msgstr "a été tué" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" -msgstr "Export complet Inventaire" +msgid "has been started on port" +msgstr "a été lancé sur le port" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." -msgstr "Tous les MACs en attente approuvés." +msgid "has been successfully destroyed" +msgstr "a été détruit avec succès" -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" -msgstr "En attente MAC Export" +msgid "has been successfully updated" +msgstr "a été mis à jour avec succès" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" -msgstr "Hôte MAC primaire" +msgid "has failed to destroy" +msgstr "n'a pas réussi à détruire" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" -msgstr "Hôte en attente MAC" +msgid "has failed to save" +msgstr "n'a pas réussi à sauver" -#: lib/reports/pending_mac_list.report.php:130 -msgid "Approve All Pending MACs for All Hosts" -msgstr "Approuver tous les MACs en attente pour toutes les machines" +msgid "has started" +msgstr "a débuté" -#: lib/reports/pending_mac_list.report.php:154 -msgid "Pending MAC Actions" -msgstr "Actions MAC en cours" +msgid "help with any aspect of FOG" +msgstr "aide sur tous les aspects de FOG" -#: lib/reports/pending_mac_list.report.php:160 -msgid "Approve Selected MACs" -msgstr "Approuver les MACs sélectionnés" +msgid "here" +msgstr "ici" -#: lib/reports/pending_mac_list.report.php:165 -msgid "Approve" -msgstr "Approuver" +msgid "host" +msgstr "machine" -#: lib/reports/pending_mac_list.report.php:171 -msgid "Delete Selected MACs" -msgstr "Supprimer les MACs sélectionnés" +msgid "hosts" +msgstr "machines" -#: lib/reports/product_keys.report.php:31 -msgid "Host Product Keys" -msgstr "Clés du produit de la machine" +msgid "hour" +msgstr "heure" -#: lib/reports/snapin_log.report.php:18 -msgid "FOG Snapin - Search" -msgstr "Snapin FOG - Recherche" +msgid "hr" +msgstr "heure" -#: lib/reports/snapin_log.report.php:82 -msgid "Enter a snapin name to search for" -msgstr "Entrez un nom de Snapin à rechercher" +msgid "iPXE General Configuration" +msgstr "Configuration générale iPXE" -#: lib/reports/snapin_log.report.php:120 -msgid "Found snapin information" -msgstr "Informations trouvée sur le Snapin" +msgid "iPXE Item Create Fail" +msgstr "Échec de la création de l'élément iPXE" -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" -msgstr "Retour Desc" +msgid "iPXE Item Create Success" +msgstr "Succès de la création de l'élément iPXE" -#: lib/reports/snapin_log.report.php:153 -msgid "Checkin Time" -msgstr "Heure d'enregistrement" +msgid "iPXE Item Remove Success" +msgstr "élément iPXE supprimé avec succès" -#: lib/reports/snapin_log.report.php:154 -msgid "Complete Time" -msgstr "Durée totale" +msgid "iPXE Item Update Success" +msgstr "Succès de la mise à jour de l'élément iPXE" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" -msgstr "ID Snapin" +msgid "iPXE Item added!" +msgstr "l'élément iPXE a été ajouté !" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" -msgstr "Args SnapIn" +msgid "iPXE Item create failed!" +msgstr "la création de l'élément iPXE a échoué !" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" -msgstr "Arguments exécuter avec du Snapin" +msgid "iPXE Menu Customization" +msgstr "Personnalisation du menu iPXE" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" -msgstr "État du Snapin" +msgid "iPXE Menu Item Settings" +msgstr "Réglages des éléments du menu iPXE" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" -msgstr "Code de retour Snapin" +msgid "iPXE Menu Settings" +msgstr "Paramètres du menu iPXE" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" -msgstr "Détail du retour Snapin" +msgid "iPXE New Menu Entry" +msgstr "Nouvelle entrée de menu iPXE" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" -msgstr "Date de création Snapin" +msgid "iPXE Settings updated successfully!" +msgstr "Paramètres iPXE ont été mis à jour avec succès !" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" -msgstr "Date de création Snapin" +msgid "iPXE Update Fail" +msgstr "Échec de la mise à jour d'iPXE" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" -msgstr "Date de création du job" +msgid "iPXE Update Success" +msgstr "Succès de la mise à jour d'iPXE" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" -msgstr "Heure de création du job" +msgid "iPXE syntax is very finicky when it comes to editing" +msgstr "La syntaxe de l'iPXE est très pointilleuse lorsqu'il s'agit d'éditer" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" -msgstr "Date de vérification de la tâche" +msgid "iPrint Printer" +msgstr "Imprimante iPrint" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" -msgstr "Heure de vérification de la tâche" +msgid "if there is a task" +msgstr "s'il y a une tâche" -#: lib/reports/snapin_log.report.php:194 -msgid "Task Complete Date" -msgstr "Date d'achèvement de la tâche" +msgid "if used incorrectly could potentially" +msgstr "s'il est utilisé de manière incorrecte peut potentiellement" -#: lib/reports/snapin_log.report.php:195 -msgid "Task Complete Time" -msgstr "Heure d'achêvement de la tâche" +msgid "image" +msgstr "image" -#: lib/reports/user_tracking.report.php:31 -msgid "FOG User tracking - Search" -msgstr "Suivi des utilisateurs FOG - Recherche" +msgid "image file found, file: " +msgstr "fichier image trouvé, fichier : " -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" -msgstr "Entrez un nom d'utilisateur pour rechercher" +msgid "image replication" +msgstr "réplication des images" -#: lib/reports/user_tracking.report.php:132 -msgid "Found login information" -msgstr "Informations de connexion trouvées" +msgid "images" +msgstr "images" -#: lib/reports/user_tracking.report.php:233 -msgid "FOG User tracking history" -msgstr "Historique du suivi des utilisateurs FOG" +msgid "images to a storage group" +msgstr "images vers un groupe de stockage" -#: lib/reports/user_tracking.report.php:290 -msgid "Service Start" -msgstr "Démarrage du service" +msgid "in seconds" +msgstr "en secondes" -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" -msgstr "Résumé FOG Virus" +msgid "install or update the FOG database" +msgstr "installer ou mettre à jour la base de données du FOG" -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" -msgstr "Les routes doivent être un tableau ou une instance de Traversable" +msgid "is already running with pid: " +msgstr "est déjà en cours d'exécution avec le pid : " -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" -msgstr "Impossible de redéclarer la route" +msgid "is going on with your FOG System" +msgstr "se passe sur votre système FOG" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 -msgid "Already created" -msgstr "Déjà créé" +msgid "is invalid" +msgstr "est invalide" -#: lib/router/route.class.php:857 -msgid "Invalid tasking type passed" -msgstr "Le type de tâche transmis est invalide" +msgid "is new" +msgstr "est nouveau" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" -msgstr " * La réplication d'image est globalement désactivée" +msgid "is no longer running" +msgstr "ne fonctionne plus" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 -msgid "I am the group manager" -msgstr "Je suis le responsable du groupe" +msgid "is now cancelled" +msgstr "est maintenant annulé" -#: lib/service/imagereplicator.class.php:119 -msgid "Starting Image Replication" -msgstr "Démarrage de la réplication d'images" +msgid "is now completed" +msgstr "est maintenant achevé" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" -msgstr "Nous sommes le groupe ID" +msgid "is open" +msgstr "est ouvert" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 -msgid "We are group name" -msgstr "Nous sommes le nom du groupe" +msgid "is protected" +msgstr "est protégé" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" -msgstr "Nous sommes le nœud ID" +msgid "is protected, removal not allowed" +msgstr "est protégé, suppression non autorisée" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 -msgid "We are node name" -msgstr "Nous sommes le nom du nœud" +msgid "is required" +msgstr "est requis" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 -msgid "Attempting to perform" -msgstr "Tentative d'exécution" +msgid "is there one enabled" +msgstr "y a-t-il un activé" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 -msgid "image replication" -msgstr "réplication des images" +msgid "is valid" +msgstr "est valide" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "Il n'y a rien à répliquer" +msgid "it boots to the first device" +msgstr "qui démarre sur le premier appareil" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" -msgstr "Veuillez associer physiquement" +msgid "it performs that task" +msgstr "qui exécute cette tâche" -#: lib/service/imagereplicator.class.php:207 -msgid "images to a storage group" -msgstr "images vers un groupe de stockage" +msgid "it will distribute its store" +msgstr "il distribuera son magasin" -#: lib/service/imagereplicator.class.php:241 -msgid "Replicating" -msgstr "Clonage" +msgid "it will enforce login to gain access to the advanced" +msgstr "" +"il imposera l'ouverture d'une session pour accéder aux fonctions avancées" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" -msgstr "Pas de synchronisation de l'image" +msgid "it's transmitting to" +msgstr "qu'il transmet à" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -msgid "This is not the primary group" -msgstr "Ce n'est pas le groupe principal" +#, fuzzy +msgid "kernel to boot the client computers" +msgstr "démarrer les ordinateurs clients" -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 -msgid "Nodes" -msgstr "Nœuds" +msgid "key" +msgstr "clé" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" -msgstr "Vérifier si je suis le gestionnaire du groupe" +msgid "limited to 1Mbps on that node" +msgstr "limitée à 1Mbps sur ce nœud" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" -msgstr "Tâche non créée car il n'y a pas de tâches associées" +msgid "location url based on the host that checks in" +msgstr "url de localisation basée sur la machine qui s'enregistre" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" -msgstr "Ou il n'y avait pas de numéro défini pour la session de jonction" +msgid "logged in" +msgstr "connecté" -#: lib/service/multicasttask.class.php:104 -msgid " | Unable to find image path" -msgstr " | Impossible de trouver le chemin de l'image" +msgid "logout" +msgstr "se déconnecter" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" -msgstr " * Le ping des machines est globalement désactivé" +msgid "may see the issue and help and/or use the solutions" +msgstr "peuvent voir le problème et aider et/ou utiliser les solutions" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "Je ne suis pas le serveur web de FOG" +msgid "meaning a node that has no images on it" +msgstr "c'est-à-dire un nœud qui ne contient aucune image" -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" -msgstr "Les IP de ce serveur" +msgid "menu system" +msgstr "système de menu" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" -msgstr "Tenter de faire un ping" +msgid "migration or mass import new items" +msgstr "la migration ou l'importation en masse de nouveaux éléments" -#: lib/service/pinghosts.class.php:147 -msgid "hosts" -msgstr "machines" +msgid "min" +msgstr "min" -#: lib/service/snapinhash.class.php:102 -msgid " * Snapin hash is globally disabled" -msgstr " * Le hachage des Snapins est globalement désactivé" +msgid "minute" +msgstr "minute" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" -msgstr "Démarrage du service de hachage de Snapin" +msgid "minutes" +msgstr "minutes" -#: lib/service/snapinhash.class.php:135 -msgid "Finding any snapins associated" -msgstr "Trouver les Snapins associés" +msgid "mod dates" +msgstr "dates de modification" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 -msgid "with this group" -msgstr "avec ce groupe" +msgid "month" +msgstr "mois" -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 -msgid "as its primary group" -msgstr "comme groupe principal" +msgid "more secure" +msgstr "plus sécurisé" -#: lib/service/snapinhash.class.php:158 -msgid "No snapins associated with this group as master" -msgstr "Aucun Snapin associé à ce groupe en tant que maître" +msgid "multiple places to get your image" +msgstr "plusieurs endroits pour obtenir votre image" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" -msgstr "Trouvé" +msgid "must be specified" +msgstr "doit être précisé" -#: lib/service/snapinhash.class.php:170 -msgid "snapins" -msgstr "snapins" +msgid "n/a" +msgstr "n/a" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" -msgstr "pour mettre à jour les valeurs de hachage si nécessaire" +msgid "no database to" +msgstr "aucune base de données pour" -#: lib/service/snapinhash.class.php:187 -msgid "Trying Snapin hash for" -msgstr "Essai de hachage de Snapin pour" +msgid "no login will appear" +msgstr "aucun login n'apparaîtra" -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "Obtention du hachage et de la taille du Snapin pour" +msgid "node is the distributor of the images" +msgstr "nœud est le distributeur des images" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" -msgstr "Hash" +msgid "nodes containing this image" +msgstr "nœuds contenant cette image" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" -msgstr "Terminé" +msgid "not found on this node" +msgstr "non trouvé sur ce nœud" -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" -msgstr " * La réplication de Snapin est globalement désactivée" +msgid "object" +msgstr "objet" -#: lib/service/snapinreplicator.class.php:118 -msgid "Starting Snapin Replication" -msgstr "Démarrer la réplication de Snapin" +msgid "of" +msgstr "de" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 -msgid "snapin replication" -msgstr "réplication Snapin" +msgid "on the following pages of this document" +msgstr "sur les pages suivantes de ce document" -#: lib/service/snapinreplicator.class.php:206 -msgid "snapins to a storage group" -msgstr "Snapins à un groupe de stockage" +msgid "on the old client" +msgstr "sur l'ancien client" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "Réplication de ssl sans clé privée" +msgid "open" +msgstr "visible" -#: lib/service/snapinreplicator.class.php:249 -msgid "Not syncing Snapin" -msgstr "Pas de synchronisation du Snapin" +msgid "or" +msgstr "ou" -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" -msgstr " | Ce n'est pas le nœud principal" +msgid "or no valid images specified" +msgstr "ou aucune image valide n'est spécifiée" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" -msgstr "L'interface n'est pas prête, j'attends qu'elle apparaisse" +msgid "or start to operate" +msgstr "ou commencer à fonctionner" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" -msgstr "En attente que MySql soit disponible" +msgid "or this is a new FOG installation" +msgstr "ou il s'agit d'une nouvelle installation de FOG" -#: lib/service/fogservice.class.php:356 -msgid "This is not the master for this group" -msgstr "Ce n'est pas le maître pour ce groupe" +msgid "particular node" +msgstr "nœud particulier" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" -msgstr "Ce nœud ne semble pas être en ligne" +msgid "per host" +msgstr "par machine" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" -msgstr "Pas de synchronisation" +msgid "please see the hosts service settings section." +msgstr "" +"veuillez consulter la section sur les paramètres du service des machines." -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" -msgstr "entre" +msgid "power management task(s) to run" +msgstr "tâche(s) de gestion de l'énergie à exécuter" -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" -msgstr "Il n'y a pas d'autres membres à synchroniser" +msgid "present and where/how they need to display" +msgstr "présenter et où / comment elles doivent être affichées" -#: lib/service/fogservice.class.php:411 -msgid "to transfer to" -msgstr "à transférer vers" +msgid "previous install if needed" +msgstr "l'installation précédente si nécessaire" -#: lib/service/fogservice.class.php:482 -msgid "Replication already running with PID" -msgstr "Réplication déjà en cours avec le PID" +msgid "read-only" +msgstr "lecture seule" -#: lib/service/fogservice.class.php:514 -msgid "File or path cannot be reached" -msgstr "Fichier ou chemin ne peut pas être atteint" +msgid "real insert time" +msgstr "temps réel d'insertion" -#: lib/service/fogservice.class.php:530 -msgid "Cannot connect to" -msgstr "Impossible de se connecter à" +msgid "require all hosts have the same image" +msgstr "exiger que toutes les machines aient la même image" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 -msgid "File does not exist" -msgstr "Fichier n'existe pas" +msgid "scheduled task(s) to run" +msgstr "tâche(s) planifiée(s) à exécuter" -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" -msgstr "Incompatibilité de hachage de fichier" +msgid "second" +msgstr "seconde" -#: lib/service/fogservice.class.php:735 -msgid "File size mismatch" -msgstr "Incohérence sur la taille du fichier" +msgid "seconds" +msgstr "secondes" -#: lib/service/fogservice.class.php:743 -msgid "Deleting remote file" -msgstr "Suppression d'un fichier distant" +msgid "see fit" +msgstr "voir si c'est le cas" -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" -msgstr "Pas besoin de synchroniser" +msgid "see the forums or lookup the commands and scripts available" +msgstr "" +"consulter les forums ou rechercher les commandes et les scripts disponibles" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." -msgstr "Tous les fichiers synchronisés pour cet élément." +msgid "sending on base port " +msgstr "envoi sur le port de base " -#: lib/service/fogservice.class.php:780 -msgid "Starting Sync Actions" -msgstr "Démarrer les actions de synchronisation" +msgid "sites with clients moving back and forth" +msgstr "sites avec des clients qui vont et viennent" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" -msgstr "A commencé la synchronisation pour" +msgid "snapin" +msgstr "Snapin" -#: lib/service/fogservice.class.php:868 -msgid "Task started" -msgstr "Tâche amorcée" +msgid "snapin replication" +msgstr "réplication Snapin" -#: lib/service/imagesize.class.php:102 -msgid " * Image size is globally disabled" -msgstr " * La taille de l'image est désactivée globalement" +msgid "snapins" +msgstr "snapins" -#: lib/service/imagesize.class.php:111 -msgid "Starting Image Size Service" -msgstr "Démarrage du service de taille d'image" +msgid "snapins to a storage group" +msgstr "Snapins à un groupe de stockage" -#: lib/service/imagesize.class.php:135 -msgid "Finding any images associated" -msgstr "Trouver les images associées" +msgid "so if it seems like the process is hanging please be patient" +msgstr "" +"donc si vous avez l'impression que le processus est suspendu, soyez patient" -#: lib/service/imagesize.class.php:158 -msgid "No images associated with this group as master" -msgstr "Aucune image associée à ce groupe en tant que maître" +msgid "so if you are unable to boot a client you may wish to" +msgstr "" +"donc si vous ne parvenez pas à démarrer un client, vous pouvez souhaiter" -#: lib/service/imagesize.class.php:170 -msgid "images" -msgstr "images" +msgid "successfully removed!" +msgstr "supprimé avec succès !" -#: lib/service/imagesize.class.php:171 -msgid "image" -msgstr "image" +msgid "task found" +msgstr "tâche trouvée" -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" -msgstr "pour mettre à jour les valeurs de taille si nécessaire" +msgid "tasks in queue" +msgstr "tâches dans la file d'attente" -#: lib/service/imagesize.class.php:187 -msgid "Trying image size for" -msgstr "Essayer la taille de l'image pour" +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" +msgstr "" +"qui détecte l'état à la volée, mise sous tension ou hors tension et le " +"système d'exploitation, du client" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -msgid "Path is unavailable" -msgstr "Le chemin est indisponible" +msgid "the Initrd (initial ramdisk) which is used alongside the" +msgstr "" + +msgid "the Linux kernel which is used to" +msgstr "le noyau Linux qui est utilisé pour" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" -msgstr "Obtenir la taille de l'image pour" +msgid "the advanced menu to use" +msgstr "le menu avancé à utiliser" -#: lib/service/imagesize.class.php:225 -msgid "Size" -msgstr "Taille" +msgid "the base FOG install" +msgstr "l'installation de base de FOG" -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" -msgstr " * Le service multicast est globalement désactivé" +msgid "the following command in a terminal" +msgstr "la commande suivante dans un terminal" -#: lib/service/multicastmanager.class.php:222 -msgid "Task ID" -msgstr "ID tâche" +msgid "the host defined location where available" +msgstr "l'emplacement défini par la machine, lorsqu'elle est disponible" -#: lib/service/multicastmanager.class.php:234 -msgid "No new tasks found" -msgstr "Aucune nouvelle tâche trouvée" +msgid "the main and the host" +msgstr "le principal et la machine" -#: lib/service/multicastmanager.class.php:264 -msgid " No open slots " -msgstr " Pas de slots ouverts " +msgid "the way in which FOG operates" +msgstr "le mode de fonctionnement de FOG" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" -msgstr "" -" L'état de la tâche a été mis à jour, désormais, elle est en file d'attente !" +msgid "there one enabled within this Storage Group" +msgstr "il y en a un activé dans ce groupe de stockage" -#: lib/service/multicastmanager.class.php:289 -msgid "failed to execute, image file: " -msgstr "n'a pas réussi à s'exécuter, fichier image : " +msgid "there will be a database backup stored on your" +msgstr "il y aura une sauvegarde de la base de données stockée sur votre" -#: lib/service/multicastmanager.class.php:291 -msgid "not found on this node" -msgstr "non trouvé sur ce nœud" +msgid "this backup will enable you to return to the" +msgstr "cette sauvegarde vous permettra de revenir à" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" -msgstr "a échoué à s'exécuter, il n'y a pas de clients inclus" +msgid "this is just another to ensure safety" +msgstr "il s'agit d'un autre moyen d'assurer la sécurité" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" -msgstr "a échoué à s'exécuter, le port doit être pair et numérique" +msgid "this kernel holds all the drivers for the client computer" +msgstr "ce noyau contient tous les pilotes de l'ordinateur client" -#: lib/service/multicastmanager.class.php:327 -msgid "failed to start" -msgstr "a échoué à démarrer" +msgid "this one is already in use by another image" +msgstr "celle-ci est déjà utilisée par une autre image" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 -msgid "could not be killed" -msgstr "n'a pas pu être tué" +msgid "this one is reserved for FOG" +msgstr "celui-ci est réservé à FOG" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 -msgid "has been killed" -msgstr "a été tué" +msgid "this will save the backup in your home" +msgstr "cela permettra de réaliser un backup dans votre home" -#: lib/service/multicastmanager.class.php:363 -msgid "is new" -msgstr "est nouveau" +msgid "time the service is started." +msgstr "fois où le service est lancé." -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -msgid "unable to be updated" -msgstr "impossible à mettre à jour" +msgid "to UAC introduced in Vista and up" +msgstr "de l'UAC introduit dans Vista et plus" -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " -msgstr "fichier image trouvé, fichier : " +msgid "to all nodes in the group" +msgstr "à tous les nœuds du groupe" -#: lib/service/multicastmanager.class.php:397 -msgid "client" -msgstr "client" +msgid "to be booted if no keys are pressed when the menu is" +msgstr "pour être démarré si aucune touche n'est pressée lorsque le menu est" -#: lib/service/multicastmanager.class.php:398 -msgid "clients" -msgstr "clients" +#, fuzzy +msgid "to get the requested Initrd" +msgstr "pour obtenir le noyau demandé" -#: lib/service/multicastmanager.class.php:401 -msgid "found" -msgstr "trouvé" +msgid "to get the requested Kernel" +msgstr "pour obtenir le noyau demandé" -#: lib/service/multicastmanager.class.php:409 -msgid "sending on base port " -msgstr "envoi sur le port de base " +msgid "to login" +msgstr "ouvrir une session" -#: lib/service/multicastmanager.class.php:416 -msgid "Command" -msgstr "Commande" +msgid "to operate in an environment where there may be" +msgstr "de fonctionner dans un environnement où il peut y avoir" -#: lib/service/multicastmanager.class.php:425 -msgid "has started" -msgstr "a débuté" +msgid "to review." +msgstr "à examiner." -#: lib/service/multicastmanager.class.php:490 -msgid "is already running with pid: " -msgstr "est déjà en cours d'exécution avec le pid : " +msgid "to signify if this is a user or channel to send to" +msgstr "" +"pour indiquer s'il s'agit d'un utilisateur ou d'un canal à qui envoyer des " +"informations" -#: lib/service/multicastmanager.class.php:502 -msgid "is no longer running" -msgstr "ne fonctionne plus" +msgid "to the client systems" +msgstr "sur les systèmes clients" -#: lib/service/multicastmanager.class.php:528 -msgid "has been completed" -msgstr "a été achevé" +msgid "to time to see if a new module is published." +msgstr "en temps pour voir si un nouveau module est publié." -#: lib/service/multicastmanager.class.php:539 -msgid "has been cancelled" -msgstr "a été annulé" +msgid "to transfer to" +msgstr "à transférer vers" -#: lib/service/multicastmanager.class.php:584 -msgid "is now cancelled" -msgstr "est maintenant annulé" +msgid "to update hash values as needed" +msgstr "pour mettre à jour les valeurs de hachage si nécessaire" -#: lib/service/multicastmanager.class.php:585 -msgid "could not be cancelled" -msgstr "n'a pas pu être annulé" +msgid "to update size values as needed" +msgstr "pour mettre à jour les valeurs de taille si nécessaire" -#: lib/service/multicastmanager.class.php:600 -msgid "is now completed" -msgstr "est maintenant achevé" +msgid "unable to be updated" +msgstr "impossible à mettre à jour" -#: lib/service/multicastmanager.class.php:601 -msgid "could not be completed" -msgstr "n'a pas pu être complété" +msgid "unavailable" +msgstr "indisponible" -#: lib/service/multicastmanager.class.php:619 -msgid "Wait time has changed to" -msgstr "Le temps d'attente est passé à" +msgid "understood" +msgstr "compris" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" -msgstr "secondes" +msgid "update to a newer kernel which may have more drivers built in" +msgstr "" +"mettre à jour vers un noyau plus récent qui peut avoir plus de pilotes " +"intégrés" -#: lib/service/multicastmanager.class.php:624 -msgid "second" -msgstr "seconde" +msgid "used" +msgstr "utilisé" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" -msgstr " * Le planificateur de tâches est globalement désactivé" +msgid "user failed to login" +msgstr "l'utilisateur n'a pas réussi à se connecter" -#: lib/service/taskscheduler.class.php:172 -msgid "scheduled task(s) to run" -msgstr "tâche(s) planifiée(s) à exécuter" +msgid "user successfully logged in" +msgstr "utilisateur connecté avec succès dans" -#: lib/service/taskscheduler.class.php:179 -msgid "power management task(s) to run" -msgstr "tâche(s) de gestion de l'énergie à exécuter" +msgid "username" +msgstr "identifiant" -#: lib/service/taskscheduler.class.php:187 -msgid "Scheduled Task run time" -msgstr "Durée d'exécution de la tâche planifiée" +msgid "version" +msgstr "version" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." -msgstr "J'ai trouvé une tâche planifiée qui devrait être exécutée." +msgid "we need a file name in the request" +msgstr "nous avons besoin d'un nom de fichier dans la demande" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" -msgstr "Est un" +msgid "where to download the snapin" +msgstr "où télécharger le Snapin" -#: lib/service/taskscheduler.class.php:216 -msgid "based task." -msgstr "tâche basée." +msgid "which is empty" +msgstr "qui est vide" -#: lib/service/taskscheduler.class.php:224 -msgid "Unicaset" -msgstr "Unicast" +msgid "window" +msgstr "fenêtre" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" -msgstr "tâche trouvée" +msgid "wipe out all of your images stored on" +msgstr "effacer toutes vos images stockées sur" -#: lib/service/taskscheduler.class.php:252 -msgid "Task started for" -msgstr "Tâche commencée pour" +msgid "with modules and config" +msgstr "avec les modules et la configuration" -#: lib/service/taskscheduler.class.php:275 -msgid "Power Management Task run time" -msgstr "Durée d'exécution de la tâche de gestion de l'énergie" +msgid "with the host" +msgstr "avec la machine" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." -msgstr "J'ai trouvé une tâche \"Wake On Lan\" qui devrait être exécutée." +msgid "with this group" +msgstr "avec ce groupe" -#: lib/service/taskscheduler.class.php:294 -msgid "Task sent to" -msgstr "Tâche envoyée à" +msgid "would you like to install it now" +msgstr "souhaitez-vous l'installer maintenant" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" -msgstr "Naviguer dans le menu" +msgid "you set the bandwidth field on that node to 1000" +msgstr "vous définissez le champ de la bande passante sur ce nœud à 1000" -#: management/other/index.php:167 -msgid "Credits" -msgstr "Crédits" +#~ msgid "A hostext already exists with this name!" +#~ msgstr "Une Host ext existe déjà avec ce nom !" -#: management/other/index.php:170 -msgid "FOG Client" -msgstr "Client FOG" +#~ msgid "Add ou failed!" +#~ msgstr "L'ajout OU a échoué !" -#: service/hostnameloop.php:36 -msgid "A host with that name already exists" -msgstr "Une machine avec ce nom existe déjà" +#~ msgid "Could not read temp file" +#~ msgstr "Impossible de lire le fichier temporaire" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" -msgstr "La MAC principale associée est" +#~ msgid "Create New Host Ext" +#~ msgstr "Création nouveau Host Ext" -#: service/inventory.php:90 -msgid "Failed to create inventory for this host" -msgstr "Échec de la création de l'inventaire pour cette machine" +#~ msgid "Export Host Exts" +#~ msgstr "Exportation Host ext" -#: service/grouplisting.php:28 -msgid "There are no groups on this server" -msgstr "Il n'y a pas de groupes sur ce serveur" +#~ msgid "External Links" +#~ msgstr "Liens externes" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" -msgstr "Impossible de visualiser à partir du navigateur" +#~ msgid "FOG Snapin Log" +#~ msgstr "FOG Snapin Connexion" -#: service/hostinfo.php:31 -msgid "Invalid tasking!" -msgstr "Tâche non valide !" +#~ msgid "Hello FOG Client" +#~ msgstr "Bonjour FOG client" -#: service/imagelisting.php:28 -msgid "There are no images on this server" -msgstr "Il n'y a pas d'images sur ce serveur" +#~ msgid "Host Ext" +#~ msgstr "Host ext" -#: service/locationlisting.php:28 -msgid "There are no locations on this server" -msgstr "Il n'y a pas d'emplacement sur ce serveur" +#~ msgid "Host Ext Name" +#~ msgstr "Nom Host ext" -#: service/progress.php:39 -msgid "Invalid image" -msgstr "Image invalide" +#~ msgid "Host Ext URL" +#~ msgstr "URL Host ext" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "Unité non valide passée" +#~ msgid "Host Ext Variable" +#~ msgstr "Variable Host ext" -#: service/Test.php:217 -msgid "Invalid Unit" -msgstr "Unité invalide" +#~ msgid "" +#~ "Host Ext is a plugin which allows to assign to each host an external url." +#~ msgstr "" +#~ "Host Ext est un greffon qui permet d'attribuer à chaque hôte une url " +#~ "externe." -#: service/av.php:25 -msgid "Invalid operational mode" -msgstr "Mode de fonctionnement non valide" +#~ msgid "Host External URL - " +#~ msgstr "Host URL Externe - " -#: service/av.php:38 -msgid "Accepted" -msgstr "Accepté" +#~ msgid "Hostext Create Fail" +#~ msgstr "Création Host ext échouée" -#: service/snapinlisting.php:28 -msgid "There are no snapins on this server" -msgstr "Il n'y a pas Snapins sur ce serveur" +#~ msgid "Hostext Create Success" +#~ msgstr "Host ext créée avec succès" -#: status/bandwidth.php:40 -msgid "Device must be a string" -msgstr "Le dispositif doit être une chaîne de caractères" +#~ msgid "Hostext Update Fail" +#~ msgstr "Échec mise à jour de Host ext" -#: status/getfiles.php:27 -msgid "Invalid" -msgstr "Invalide" +#~ msgid "Hostext Update Success" +#~ msgstr "Mise à jour Host ext réussie" -#: status/logtoview.php:31 status/logtoview.php:130 -msgid "Invalid IP" -msgstr "IP invalide" +#~ msgid "Hostext added!" +#~ msgstr "Host ext ajoutée !" -#: status/logtoview.php:37 status/logtoview.php:136 -msgid "Invalid File" -msgstr "Fichier invalide" +#~ msgid "Hostext update failed!" +#~ msgstr "Échec de la mise à jour Host ext !" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "Dossier non valide" +#~ msgid "Hostext updated!" +#~ msgstr "Host ext mise à jour !" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "Impossible d'ouvrir le fichier pour la lecture" +#~ msgid "Import Host Exts" +#~ msgstr "Importation Host ext" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "L'IP passée est incorrecte" +#~ msgid "Invalid Unit" +#~ msgstr "Unité invalide" -#~ msgid "Hello FOG Client" -#~ msgstr "Bonjour FOG client" +#~ msgid "Invalid unit passed" +#~ msgstr "Unité non valide passée" -#~ msgid "FOG Snapin Log" -#~ msgstr "FOG Snapin Connexion" +#~ msgid "Inventory Desc" +#~ msgstr "Inventaire Desc" #~ msgid "Legacy Client and Utilities" #~ msgstr "Client hérité et utilitaires" @@ -10187,14 +6972,22 @@ msgstr "L'IP passée est incorrecte" #~ msgid "Legacy FOG Client" #~ msgstr "Héritage FOG client" +#~ msgid "Replicating ssl less private key" +#~ msgstr "Réplication de ssl sans clé privée" + #, fuzzy #~ msgid "This file is used to encrypt the AD Password" #~ msgstr "" #~ "Ce fichier est utilisé pour chiffrer le mot de passe AD. NE PAS UTILISER " #~ "CE SI VOUS UTILISEZ LE NOUVEAU CLIENT." -#~ msgid "Could not read temp file" -#~ msgstr "Impossible de lire le fichier temporaire" +#~ msgid "Unable to determine plugin details" +#~ msgstr "Impossible de déterminer les détails du plugin" + +#~ msgid "Use the selector to choose how many items you want exported" +#~ msgstr "" +#~ "Utilisez le sélecteur pour choisir le nombre d'éléments que vous " +#~ "souhaitez exporter" #, fuzzy #~ msgid "file to" diff --git a/packages/web/management/languages/it_IT.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/it_IT.UTF-8/LC_MESSAGES/messages.po index 9e21a3b99d..57586f7a45 100644 --- a/packages/web/management/languages/it_IT.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/it_IT.UTF-8/LC_MESSAGES/messages.po @@ -19,10351 +19,7133 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 1.8.7.1\n" -#: commons/text.php:22 -msgid "Display" -msgstr "Display" - -#: commons/text.php:23 -msgid "Auto" -msgstr "Auto" +msgid " * Image replication is globally disabled" +msgstr "* La replica di immagini è globalmente disattivata" -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "Modello" +msgid " * Image size is globally disabled" +msgstr "* La dimensione dell'immagine è disattivata globalmente" -#: commons/text.php:25 -msgid "Inventory" -msgstr "Inventario" +msgid " * Multicast service is globally disabled" +msgstr "* Il servizio Multicast è disabilitato a livello globale" -#: commons/text.php:26 -msgid "O/S" -msgstr "O / S" +msgid " * Ping hosts is globally disabled" +msgstr "* Gli host Ping sono disattivati a livello globale" -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "Modifica" +msgid " * Snapin hash is globally disabled" +msgstr "* L'hash di Snapin è disattivato a livello globale" -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "cancellare" +msgid " * Snapin replication is globally disabled" +msgstr "* La replica Snapin è disattivata globalmente" -#: commons/text.php:29 -msgid "Deleted" -msgstr "eliminata" +msgid " * Task Scheduler is globally disabled" +msgstr "* Il task scheduler è disattivato a livello globale" -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "Tutti" +msgid " Name" +msgstr "Nome" -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "Aggiungere" +#, fuzzy +msgid " No open slots " +msgstr "Nessuno slot aperti" -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "Ricerca" +msgid " Task state has been updated, now the task is queued!" +msgstr "" -#: commons/text.php:33 -msgid "Storage" -msgstr "Conservazione" +msgid " | This is not the master node" +msgstr " | Questo non è il nodo master" -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "Snapin" +#, fuzzy +msgid " | Unable to find image path" +msgstr "Impossibile trovare il Nodo Archiviazione master" -#: commons/text.php:35 -msgid "Snapins" -msgstr "snapins" +msgid "$_POST variable is empty, check apache error log." +msgstr "La variabile $ _POST è vuota, controlla il log degli errori di apache." -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "Rimuovere" +#, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %d non valido" -#: commons/text.php:37 -msgid "Removed" -msgstr "Rimosso" +#, php-format +msgid "%s ID %s is not valid" +msgstr "%s ID %s non è valido" -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "Abilitato" +#, php-format +msgid "%s Manager" +msgstr "%s Responsabile" -#: commons/text.php:39 -msgid "Management" -msgstr "Gestione" +#, php-format +msgid "%s Menu" +msgstr "%s Menu" -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "Aggiornare" +#, php-format +msgid "%s is required" +msgstr "%s è richiesto" -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "Immagine" +msgid "1 Hour" +msgstr "1 ora" -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "immagini" +msgid "10 Minutes" +msgstr "10 minuti" -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "Nodo" +msgid "2 Minutes" +msgstr "2 minuti" -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "Gruppo" +msgid "30 Minutes" +msgstr "30 minuti" -#: commons/text.php:45 -msgid "Groups" -msgstr "gruppi" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "" -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "Disconnettersi" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "" -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "Host" +#, fuzzy +msgid "

Version 1.5.5" +msgstr "Versione" -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "host" +msgid "A LDAP setup already exists with this name!" +msgstr "Un'impostazione LDAP esiste già con questo nome!" -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "Larghezza di banda" +#, fuzzy +msgid "A Windows Key already exists with this name!" +msgstr "Un host già esiste con questo nome!" -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "Larghezza di banda replica" +msgid "A broadcast address is required" +msgstr "È necessario un indirizzo di broadcast" -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" -msgstr "" -"Questa impostazione limita la larghezza di banda per la replica tra i nodi" +msgid "A broadcast already exists with this name" +msgstr "Un broadcast esiste già con questo nome" -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" -msgstr "" -"funziona ottenendo l'impostazione massima della larghezza di banda del nodo" +msgid "A broadcast already exists with this name!" +msgstr "Un broadcast esiste già con questo nome!" -#: commons/text.php:55 -msgid "it's transmitting to" -msgstr "sta trasmettendo a" +msgid "A description needs to be set" +msgstr "Una descrizione deve essere impostato" -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" -msgstr "Quindi, se stai cercando di trasmettere al nodo remoto A" +msgid "A file" +msgstr "Un file" -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "E il nodo A ha solo 5Mbps e si desidera la velocità" +msgid "A group already exists with this name!" +msgstr "Esiste già un gruppo con questo nome!" -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" -msgstr "limitata a 1Mbps su quel nodo" +msgid "A group is required for a location" +msgstr "Un gruppo è necessario per un luogo" -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" -msgstr "si imposti il campo di larghezza di banda su quel nodo a 1000" +#, fuzzy +msgid "A group is required!" +msgstr "È richiesto un nome di gruppo!" -#: commons/text.php:61 -msgid "Transmit" -msgstr "Trasmettere" +#, fuzzy +msgid "A group must be selected." +msgstr "Un nome deve essere impostato" -#: commons/text.php:62 -msgid "Receive" -msgstr "Ricevere" +msgid "A group name is required!" +msgstr "È richiesto un nome di gruppo!" -#: commons/text.php:63 -msgid "New" -msgstr "Nuovo" +msgid "A host already exists with this name!" +msgstr "Un host già esiste con questo nome!" -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "Utente" +msgid "A host name is required!" +msgstr "È richiesto un nome host!" -#: commons/text.php:65 -msgid "Users" -msgstr "utenti" +msgid "A host with that name already exists" +msgstr "Un nome host con questo nome esiste già" -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" -msgstr "Nome" +msgid "A host with this mac already exists with name" +msgstr "Un host con questo MAC esiste già con il nome" -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "Utenti" +msgid "A location with that name already exists." +msgstr "Una posizione con questo nome esiste già." -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "Avanzate" +msgid "A mac address is required!" +msgstr "È necessario un indirizzo MAC!" -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" -msgstr "Nome host" +msgid "A name is required!" +msgstr "È richiesto un nome!" -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" +msgid "A name must be defined if using the \"name\" property" +msgstr "" -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "MAC" +msgid "A name must be set" +msgstr "Un nome deve essere impostato" -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" -msgstr "Versione" +msgid "A password is required!" +msgstr "Una password è richiesta!" -#: commons/text.php:73 -msgid "Text" -msgstr "Testo" +msgid "A printer already exists with this name!" +msgstr "Nome stampante già esistente on questo nome!" -#: commons/text.php:74 -msgid "Graphical" -msgstr "grafico" +msgid "A printer name is required!" +msgstr "È richiesto un nome di stampante!" -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "File" +msgid "A role already exists with this name!" +msgstr "Esiste già un ruolo con questo nome!" -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "Percorso" +#, fuzzy +msgid "A rule already exists with this name." +msgstr "Esiste già un ruolo con questo nome!" -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "Spegnimento" +#, fuzzy +msgid "A site alread exists with this name!" +msgstr "Un host già esiste con questo nome!" -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "Riavvio" +#, fuzzy +msgid "A site already exists with this name!" +msgstr "Un host già esiste con questo nome!" -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "Tempo" +msgid "A snapin already exists with this name!" +msgstr "Esiste già un snapin con questo nome!" -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "Azione" +msgid "A snapin name is required!" +msgstr "È richiesto un nome di snapin!" -#: commons/text.php:81 -msgid "Printer" -msgstr "Stampante" +#, fuzzy +msgid "A subnet group already exists with this name!" +msgstr "Esiste già un gruppo con questo nome!" -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 -msgid "Power Management" -msgstr "Gestione energetica" +msgid "A subnet group is already using this group." +msgstr "" -#: commons/text.php:83 -msgid "Client" -msgstr "Cliente" +#, fuzzy +msgid "A subnetgroup already exists with this name!" +msgstr "Esiste già un gruppo con questo nome!" -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "Compito" +msgid "A task already exists for this host at the scheduled tasking" +msgstr "Un compito esiste già per questo host al tasking programmata" -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "Nome utente" - -#: commons/text.php:86 -msgid "Service" -msgstr "Servizio" - -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "Generale" - -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "Modalità" - -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "Data" - -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "Pulire" +msgid "A task state already exists with this name!" +msgstr "Uno stato di attività già esiste con questo nome!" -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "Descrizione" +msgid "A task type already exists with this name!" +msgstr "Un tipo di attività esiste già con questo nome!" -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "qui" +msgid "A user already exists with this name" +msgstr "Esiste già un utente con questo nome!" -#: commons/text.php:93 -msgid "NOT" -msgstr "NON" +msgid "A user name is required!" +msgstr "È richiesto un nome utente!" -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "o" +msgid "A username already exists with this name!" +msgstr "Esiste già un nome utente con questo nome!" -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "Riga" +msgid "A valid database connection could not be made" +msgstr "Non è possibile effettuare una connessione di database valida" -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "Errori" +msgid "AD Domain" +msgstr "AD Domain" -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "Errore" +msgid "AD Join" +msgstr "AD Join" -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "Esportare" +msgid "AD OU" +msgstr "AD OU" -#: commons/text.php:99 -msgid "Schedule" -msgstr "Programmazione" +msgid "API Settings" +msgstr "impostazioni API" -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "Distribuisci" +msgid "API?" +msgstr "API?" -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 -msgid "Capture" -msgstr "Catturare" +msgid "About FOG Reports" +msgstr "Informazioni sui report FOG" -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "Multicast" +msgid "Accepted" +msgstr "Accettato" -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "Stato" +msgid "Access" +msgstr "Accesso" -#: commons/text.php:104 -msgid "Actions" -msgstr "azioni" +msgid "Access Control Management" +msgstr "Gestione Access Control" -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "Stato" +msgid "Access Control Role General" +msgstr "Ruolo controllo accessi Generale" -#: commons/text.php:107 -msgid "Kill" -msgstr "Uccidere" +#, fuzzy +msgid "Access Control Rule" +msgstr "Regole controllo accessi" -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "nocciolo" +#, fuzzy +msgid "Access Control Rule General" +msgstr "Ruolo controllo accessi Generale" -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "Luogo" +msgid "Access Control Rules" +msgstr "Regole controllo accessi" -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "N/D" +msgid "Access Controls" +msgstr "Controllo accessi" -#: commons/text.php:111 -msgid "Home" -msgstr "Casa" +msgid "Access Token" +msgstr "Token di accesso" -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "rapporto" +msgid "Access level is still 0 or false" +msgstr "Il livello di accesso è ancora 0 o falso" -#: commons/text.php:113 -msgid "Reports" -msgstr "Rapporti" +msgid "Accessed By" +msgstr "Si accede da" -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "Accesso" +msgid "Account already linked" +msgstr "Account già collegato" -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "In coda" +msgid "Account linked to FOG GUI at" +msgstr "Account collegato alla nebbia GUI a" -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "Completare" +msgid "Account name to reset" +msgstr "Nome account da ripristinare" -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "Sconosciuto" +msgid "Account removed from FOG GUI at" +msgstr "Account rimosso da FOG GUI a" -#: commons/text.php:118 -msgid "Force" -msgstr "Forza" +msgid "Account successfully added!" +msgstr "Account aggiunto con successo!" -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "Tipo" +msgid "Action" +msgstr "Azione" -#: commons/text.php:120 -msgid "Settings" -msgstr "impostazioni" +msgid "Actions" +msgstr "azioni" -#: commons/text.php:121 -msgid "FOG" -msgstr "NEBBIA" +msgid "Activate Plugins" +msgstr "Attiva Plugin" -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 msgid "Active" msgstr "Attivo" -#: commons/text.php:123 -msgid "Printers" -msgstr "Stampanti" - -#: commons/text.php:124 -msgid "Directory" -msgstr "elenco" - -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 msgid "Active Directory" msgstr "Active Directory" -#: commons/text.php:126 -msgid "Virus History" -msgstr "Storia di virus" - -#: commons/text.php:127 -msgid "Login History" -msgstr "Accesso Storia" +msgid "Active Multi-cast Tasks" +msgstr "Attività multi-cast attive" -#: commons/text.php:128 -msgid "Image History" -msgstr "Storia immagine" +msgid "Active Multicast Tasks" +msgstr "Compiti multicast attivi" -#: commons/text.php:129 -msgid "Snapin History" -msgstr "Storia Snapin" +msgid "Active Snapin Tasks" +msgstr "Compiti Snap-attivi" -#: commons/text.php:130 -msgid "Configuration" -msgstr "Configurazione" +msgid "Active Tasks" +msgstr "Attività in corso" -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "Collegare" +msgid "Add" +msgstr "Aggiungere" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "sedi" +msgid "Add Directory" +msgstr "Aggiungere Directory" -#: commons/text.php:134 -msgid "License" -msgstr "Licenza" +msgid "Add Event" +msgstr "Aggiungi evento" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "Aggiornamento del kernel" +#, fuzzy +msgid "Add Hosts" +msgstr "tutti gli host" -#: commons/text.php:136 -msgid "iPXE General Configuration" -msgstr "Configurazione generale iPXE" +msgid "Add LDAP server failed!" +msgstr "Aggiunta LDAP server fallita!" -#: commons/text.php:137 -msgid "Client Updater" -msgstr "Updater client" +msgid "Add MAC" +msgstr "Aggiungere MAC" -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "Nome host Changer" +msgid "Add New Printer" +msgstr "Aggiungi nuova stampante" -#: commons/text.php:139 -msgid "Host Registration" -msgstr "registrazione Host" +msgid "Add Printers" +msgstr "Aggiungi stampanti" -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "snap-client" +msgid "Add Pushbullet Account" +msgstr "Aggiungi account Pushbullet" -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "Task Reboot" +#, fuzzy +msgid "Add Rules" +msgstr "Aggiungi utente" -#: commons/text.php:142 -msgid "User Cleanup" -msgstr "Cleanup utente" +msgid "Add Slack Account" +msgstr "Aggiungere un account Slack" -#: commons/text.php:143 -msgid "User Tracker" -msgstr "Tracker utente" +msgid "Add Snapins" +msgstr "Aggiungi Snapins" -#: commons/text.php:144 -#, php-format -msgid "%s Manager" -msgstr "%s Responsabile" +msgid "Add Storage Group" +msgstr "Aggiungere gruppo di archiviazione" -#: commons/text.php:145 -msgid "Green FOG" -msgstr "FOG verde" +msgid "Add Storage Groups" +msgstr "Aggiungi gruppo di archiviazione" -#: commons/text.php:146 -msgid "Directory Cleaner" -msgstr "directory Cleaner" +msgid "Add Storage Node" +msgstr "Aggiungere Storage Node" -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "MAC Address List" +#, fuzzy +msgid "Add Subnetgroup failed!" +msgstr "Aggiunta gruppo non riuscito!" -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "Impostazioni FOG" +msgid "Add User" +msgstr "Aggiungi utente" -#: commons/text.php:149 -msgid "Server Shell" -msgstr "Server Shell" +#, fuzzy +msgid "Add Users" +msgstr "Aggiungi utente" -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "Log Viewer" +#, fuzzy +msgid "Add Windows Key failed!" +msgstr "Nome chiave di Windows" -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "Salva configurazione" +msgid "Add any custom text you would like" +msgstr "Aggiungi qualunque testo personalizzato desideri" -#: commons/text.php:152 -msgid "FOG Sourceforge Page" -msgstr "FOG Sourceforge Pagina" +msgid "Add broadcast failed!" +msgstr "Aggiunta broadcast non riuscita!" -#: commons/text.php:153 -msgid "FOG Home Page" -msgstr "FOG pagina" +msgid "Add failed" +msgstr "Aggiunta fallita" -#: commons/text.php:154 -msgid "New Search" -msgstr "Nuova ricerca" +msgid "Add group failed!" +msgstr "Aggiunta gruppo non riuscito!" + +msgid "Add host failed!" +msgstr "Aggiunta host non riuscita!" + +msgid "Add image failed!" +msgstr "Aggiuta immagine non riuscita!" + +msgid "Add location failed!" +msgstr "Aggiunta posizione non riuscita!" -#: commons/text.php:155 #, php-format -msgid "List All %s" -msgstr "Elencare tutti %s" +msgid "Add new role" +msgstr "Aggiungi nuovo ruolo" -#: commons/text.php:156 #, php-format -msgid "Create New %s" -msgstr "Crea nuovo %s" +msgid "Add new rule" +msgstr "Aggiungi nuova regola" -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "Attività" +msgid "Add printer failed!" +msgstr "Aggiunta stampante non riuscita!" -#: commons/text.php:158 -msgid "Client Settings" -msgstr "Impostazioni Client" +msgid "Add role failed!" +msgstr "Aggiunta ruolo non riuscita!" -#: commons/text.php:159 -msgid "Plugins" -msgstr "Plugins" +#, fuzzy +msgid "Add rule failed!" +msgstr "Aggiunta ruolo non riuscita!" -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "Operazioni di base" +#, fuzzy +msgid "Add selected hosts" +msgstr "Aggiungi stampanti selezionate" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "membri" +#, fuzzy +msgid "Add selected images" +msgstr "Aggiungi stampanti selezionate" -#: commons/text.php:162 -msgid "Image Association" -msgstr "Associazione immagine" +msgid "Add selected printers" +msgstr "Aggiungi stampanti selezionate" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" -msgstr "%s Menu" +#, fuzzy +msgid "Add selected rules" +msgstr "Aggiungi stampanti selezionate" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "Gruppo primario" +msgid "Add selected snapins" +msgstr "Aggiungi snapins selezionati" -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "Tutti i nodi di storage" +msgid "Add selected storage groups" +msgstr "Aggiungi gruppo di archiviazione selezionato" -#: commons/text.php:166 -msgid "Add Storage Node" -msgstr "Aggiungere Storage Node" +#, fuzzy +msgid "Add selected users" +msgstr "Aggiungi stampanti selezionate" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "Tutti i gruppi di archiviazione" +#, fuzzy +msgid "Add site failed!" +msgstr "Aggiunta host non riuscita!" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "Aggiungere gruppo di archiviazione" +msgid "Add snapin failed!" +msgstr "Aggiungi snapin non riuscito!" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "Attività in corso" +msgid "Add storage node failed!" +msgstr "Aggiunta nodo di archiviazione fallita!" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "Compiti multicast attivi" +msgid "Add task state failed!" +msgstr "Aggiunta stato attività non riuscito!" -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "Compiti Snap-attivi" +msgid "Add task type failed!" +msgstr "Aggiunta tipo attività non riuscita!" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "Attività pianificate" +msgid "Add to group" +msgstr "Aggiungere al gruppo" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "plugin installati" +msgid "Add user failed!" +msgstr "Aggiunta utente fallita!" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "installare plugin" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" +msgstr "FOGPage Aggiunta: %s , nodo: %s" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "Attiva Plugin" +msgid "Adding Key" +msgstr "Aggiunta chiave" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "Esporta configurazione" +msgid "Additional Icon elements" +msgstr "elementi di icone aggiuntive" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "Importa configurazione" +msgid "Additional MACs" +msgstr "MAC aggiuntive" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "Open Source Computer Clonazione Soluzione" +msgid "Admin Group" +msgstr "Gruppo amministrativo" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "Non valido Indirizzo MAC!" +msgid "Advanced" +msgstr "Avanzate" -#: commons/text.php:180 -msgid "iPXE Menu Item Settings" -msgstr "Menu iPXE impostazioni" +msgid "Advanced Actions" +msgstr "Azioni Avanzate" -#: commons/text.php:181 -msgid "iPXE Menu Customization" -msgstr "iPXE Personalizzazione menu" +msgid "Advanced Login Required" +msgstr "Avanzata Login Richiesto" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" -msgstr "iPXE nuova voce di menu" +msgid "Advanced Menu Login" +msgstr "Accesso Menu avanzato" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "Salva i cambiamenti" +msgid "Advanced Menu settings" +msgstr "Impostazioni menu avanzate" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "campo del database richiesto è vuoto" +msgid "Advanced Options" +msgstr "Opzioni avanzate" -#: commons/text.php:185 -msgid "No results found" -msgstr "nessun risultato trovato" +msgid "Advanced Settings" +msgstr "Impostazioni avanzate" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s è richiesto" +msgid "Advanced menu command" +msgstr "Comando menu avanzato" -#: commons/text.php:188 -msgid "Host Management" -msgstr "Gestione Host" +msgid "After image Action" +msgstr "Azione successiva per l'immagine" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "Storage Management" +msgid "Ago must be boolean" +msgstr "Fa deve essere boolean" -#: commons/text.php:190 -msgid "Task Management" -msgstr "Gestione dei compiti" +msgid "All" +msgstr "Tutti" -#: commons/text.php:191 -msgid "Client Management" -msgstr "client Management" +msgid "All Groups" +msgstr "tutti i gruppi" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "scrivania" +msgid "All Hosts" +msgstr "tutti gli host" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "Configurazione del servizio" +msgid "All Pending MACs approved" +msgstr "Tutti i MAC in sospeso approvati" -#: commons/text.php:194 -msgid "Report Management" -msgstr "Relazione sulla gestione" +msgid "All Pending MACs approved." +msgstr "Tutti i Mac in sospeso approvati." -#: commons/text.php:195 -msgid "Printer Management" -msgstr "Printer Management" +msgid "All Storage Groups" +msgstr "Tutti i gruppi di archiviazione" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "Configurazione FOG" +msgid "All Storage Nodes" +msgstr "Tutti i nodi di storage" -#: commons/text.php:197 -msgid "Group Management" -msgstr "Direzione del Gruppo" +msgid "All files synced for this item." +msgstr "Tutti i file sincronizzati per questo articolo." -#: commons/text.php:198 -msgid "Image Management" -msgstr "Gestione immagine" +msgid "All methods of binding have failed" +msgstr "Tutti i metodi di associazione sono falliti" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "Gestione utenti" +msgid "All snapins" +msgstr "Tutti gli snap-in" -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "Informazioni sull'hardware" +msgid "Allows editing/creating of Task States fog currently has." +msgstr "Consente la modifica/creazione di Task States per FOG." -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "Gestione Snapin" +msgid "Allows editing/creating of Task Types fog currently has." +msgstr "Consente la modifica / creazione di tipi di attività FOG." -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "Gestione Plugin" +msgid "Already created" +msgstr "Già creato" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "Gestione della posizione" +msgid "Already registered as" +msgstr "Già registrato come" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "Gestione Access Control" +msgid "Also confirm that the database is indeed running" +msgstr "Confermare anche che il database sia in esecuzione" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "FOG Guida generale" +msgid "Although there are multiple levels already" +msgstr "Anche se ci sono già diversi livelli" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "Host in sospeso" +msgid "An image already exists with this name!" +msgstr "Un'immagine esiste già con questo nome!" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "Ultima Distribuita" +msgid "Annually" +msgstr "Annualmente" -#: commons/text.php:210 -msgid "Last Captured" -msgstr "Ultima cattura" +msgid "Applications" +msgstr "Applicazioni" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "Metodo Deploy" +msgid "Approve" +msgstr "Approva" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "Tipo di immagine" +msgid "Approve All Pending MACs for All Hosts" +msgstr "Approvare tutti i MAC in sospeso per tutti gli host" -#: commons/text.php:213 -msgid "Not Available" -msgstr "Non disponibile" +msgid "Approve Host" +msgstr "Approvare Host" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "Host Export" +msgid "Approve MAC" +msgstr "Approva i MAC" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "Importa Host" +msgid "Approve Selected MACs" +msgstr "Approvare MAC selezionati" -#: commons/text.php:216 -msgid "Export Users" -msgstr "Esporta utenti" +msgid "Approve Success" +msgstr "Approva il successo" -#: commons/text.php:217 -msgid "Import Users" -msgstr "Importa utenti" +msgid "Approve all pending macs" +msgstr "Approvare tutti i MAC in sospeso" -#: commons/text.php:218 -msgid "Export Images" -msgstr "esportare immagini" +msgid "Approve all pending? " +msgstr "Approva tutto il sospeso?" -#: commons/text.php:219 -msgid "Import Images" -msgstr "Importa immagini" +msgid "Approve selected hosts" +msgstr "Approvare host selezionati" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "Gruppi Export" +msgid "Approve this host?" +msgstr "Approvare questo host?" -#: commons/text.php:221 -msgid "Import Groups" -msgstr "Gruppi di importazione" +msgid "Approved" +msgstr "Approvato" -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "Export Snapins" +msgid "Are you sure you wish to" +msgstr "Sei sicuro di voler" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "Importa Snapins" +msgid "Array" +msgstr "array" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "Stampanti Export" +msgid "Assigned Image" +msgstr "Immagine assegnata" -#: commons/text.php:225 -msgid "Import Printers" -msgstr "Stampanti di importazione" +msgid "Assignment saved successfully" +msgstr "Assegnazione salvata" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" -msgstr "attrezzature di prestito" +#, fuzzy +msgid "Associate rule failed!" +msgstr "Aggiunta ruolo non riuscita!" -#: commons/text.php:227 -msgid "Host List" -msgstr "Lista Host" +msgid "Associated Sites" +msgstr "Siti Associati" -#: commons/text.php:228 -msgid "Imaging Log" -msgstr "Imaging Log" +msgid "Associates the files on nodes" +msgstr "Associare i file sui nodi" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" -msgstr "sospeso MAC" +msgid "Attempting to perform" +msgstr "Tentativo di eseguire" -#: commons/text.php:230 -msgid "Snapin Log" -msgstr "snap-Log" +msgid "Attempting to ping" +msgstr "Il tentativo di ping" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "Carica Report" +msgid "Auto" +msgstr "Auto" -#: commons/text.php:233 -msgid "Main Menu" -msgstr "Menu principale" +msgid "Auto Log Out Time (in minutes)" +msgstr "Log Out Auto Tempo (in minuti)" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "Login non valido" +msgid "Available Snapins" +msgstr "Available Snapins" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "Non ammessi qui" +msgid "BIOS Date" +msgstr "BIOS Data" -#: commons/text.php:237 -msgid "Management Login" -msgstr "Gestione Accesso" +msgid "BIOS Vendor" +msgstr "Venditore BIOS" -#: commons/text.php:238 -msgid "Password" -msgstr "parola d'ordine" +msgid "BIOS Version" +msgstr "Versione BIOS" -#: commons/text.php:239 -msgid "Estimated FOG Sites" -msgstr "Siti FOG stimati" +msgid "Bandwidth" +msgstr "Larghezza di banda" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "Ultima versione" +msgid "Bandwidth should be numeric and greater than 0" +msgstr "Larghezza di banda deve essere numerico e maggiore di 0" -#: commons/text.php:241 -msgid "Latest Development Version" -msgstr "Ultima versione di sviluppo" +msgid "Barcode Numbers" +msgstr "I numeri di codici a barre" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "L'immagine è protetta e non può essere cancellato" +msgid "Base Only" +msgstr "Solo base" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "Snapin è protetto e non può essere cancellato" +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "Non nodi master sono abilitati per eliminare questa immagine" +msgid "Basic Tasks" +msgstr "Operazioni di base" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "Impossibile eliminare i file di immagine" +msgid "Bind DN" +msgstr "Bind DN" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "Impossibile eliminare il file" +msgid "Bind Password" +msgstr "Bind Password" -#: commons/text.php:249 -msgid "Not Registered Hosts" -msgstr "Host non registrati" +msgid "Bitrate" +msgstr "bitrate" -#: commons/text.php:250 -msgid "Registered Hosts" -msgstr "host registrati" +msgid "Blank for default" +msgstr "Bianco per il default" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "tutti gli host" +msgid "Boot Exit settings" +msgstr "Impostazioni di uscita del Boot" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "Opzioni di debug" +msgid "Boot Key Sequence" +msgstr "Boot Sequence chiave" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +msgid "Boot Options" +msgstr "Opzioni di avvio:" -#: commons/text.php:254 -msgid "Advanced Login Required" -msgstr "Avanzata Login Richiesto" +msgid "Broadcast Create Fail" +msgstr "Creazione Broadcast fallita" -#: commons/text.php:255 -msgid "Pending Registered Hosts" -msgstr "In attesa di host registrati" +msgid "Broadcast Create Success" +msgstr "Creazione Broadcast completata" -#: commons/text.php:257 -msgid "n/a" -msgstr "n/d" +msgid "Broadcast IP" +msgstr "Broadcast IP" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "Directory esiste già" +msgid "Broadcast Name" +msgstr "Nome Broadcast" -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "Ora esiste già" +msgid "Broadcast Update Fail" +msgstr "Aggiornamento Broadcast fallita" -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "L'utente esiste già" +msgid "Broadcast Update Success" +msgstr "Aggiornamento Broadcast completata" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "No Attivo Snapin processo trovato Per Host" +msgid "Broadcast added!" +msgstr "Broadcast aggiunto!" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "Impossibile creare un'attività" +msgid "Broadcast update failed!" +msgstr "Aggiornamento Broadcast fallito!" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "Host è già membro di un compito attivo" +msgid "Broadcast updated!" +msgstr "Broadcast aggiornato!" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "Host non è valido" +msgid "Browse" +msgstr "Sfoglia" -#: commons/text.php:267 -msgid "Group is not valid" -msgstr "Gruppo non valido" +msgid "CPU Cache" +msgstr "cache della CPU" -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "Task Type non è valido" +msgid "CPU Count" +msgstr "Conte CPU" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "L'immagine non è valida" +msgid "CPU Manufacturer" +msgstr "CPU del produttore" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "Il gruppo di archiviazione immagine assegnato non è valido" +msgid "CPU Max Speed" +msgstr "CPU Velocità max" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "Non ci sono snapins associati con questo host" +msgid "CPU Model" +msgstr "Modello CPU" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Snapins già distribuiti a questo host" +msgid "CPU Normal Speed" +msgstr "Velocità CPU Normale" -#: commons/text.php:275 -msgid "Could not find a Storage Node is" -msgstr "Impossibile trovare il nodo di archiviazione" +msgid "CPU Speed" +msgstr "Velocità CPU" -#: commons/text.php:276 -msgid "there one enabled within this Storage Group" -msgstr "c'è uno abilitato all'interno di questo gruppo di archiviazione" +msgid "CPU Type" +msgstr "Tipo CPU" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" -msgstr "" -"Il nodo di archiviazione gruppi di archiviazione associato non è valido" +msgid "CPU Version" +msgstr "Versione CPU" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "Data prevista è nel passato" +msgid "CUPS Printer" +msgstr "CUPS Printer" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "Un compito esiste già per questo host al tasking programmata" +msgid "Call" +msgstr "Chiamata" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "valore dei minuti non è valido" +msgid "Can be a comma seperated list." +msgstr "" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "il valore ora non è valido" +msgid "Can not redeclare route" +msgstr "Impossibile ridichiarare il percorso" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "Giorno del valore del mese non è valido" +msgid "Cancelled due to new tasking." +msgstr "Annullato a causa della nuova tasking." -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "valore del mese non è valido" +msgid "Cancelled task" +msgstr "compito Annullato" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "Giorno della settimana il valore non è valido" +msgid "Cannot add Primary mac as additional mac" +msgstr "Impossibile aggiungere mac primario come mac aggiuntivo" -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "Nessun Host trovato per MAC Address" +msgid "Cannot add a pre-existing primary mac" +msgstr "Non è possibile aggiungere un MAC primario preesistente" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "per favore selezionate un'opzione" +msgid "Cannot bind to the LDAP server" +msgstr "Impossibile legare al server LDAP" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" -msgstr "Errore più host restituiti per elenco di indirizzi MAC" +msgid "Cannot cancel tasks this way" +msgstr "Impossibile annullare le attività in questo modo" -#: commons/text.php:302 -msgid "Session timeout" -msgstr "Timeout della sessione" +msgid "Cannot change image when in tasking" +msgstr "Impossibile modificare l'immagine durante l'attività" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "Storage Node" +msgid "Cannot connect to" +msgstr "Impossibile connettersi" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "gruppo di archiviazione" +msgid "Cannot connect to database" +msgstr "Non è possibile connettersi al database" -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "Grafico Abilitato" +msgid "Cannot connect to ftp server" +msgstr "Impossibile connettersi al server ftp" -#: commons/text.php:307 -msgid "Master Node" -msgstr "Maestro Node" +msgid "Cannot create tasking as image is not enabled" +msgstr "Impossibile creare l'attività finché l'immagine non è abilitata" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "È padrone Nodo" +msgid "Cannot set tasking as image is not enabled" +msgstr "Impossibile affidare attività se l'immagine non è abilitata" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "Nome Storage Node" +msgid "Cannot set tasking to invalid hosts" +msgstr "Impossibile affidare attività ad host non valiti" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "Storage Node Descrizione" +msgid "Cannot set tasking to pending hosts" +msgstr "Impossibile affidare attività ad host in attesa" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" -msgstr "Indirizzo IP" +msgid "Cannot view from browser" +msgstr "Impossiible visualizzare nel browser" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "clienti max" +msgid "Capone Deploy" +msgstr "Capone Deploy" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" -msgstr "Percorso immagini" +msgid "Capture" +msgstr "Catturare" -#: commons/text.php:314 -msgid "FTP Path" -msgstr "Percorso FTP" +msgid "Captured" +msgstr "Catturato" -#: commons/text.php:315 -msgid "Snapin Path" -msgstr "Percorso Snapin" +msgid "Change password" +msgstr "Cambia password" -#: commons/text.php:316 -msgid "SSL Path" -msgstr "Percorso SSL" +msgid "Channel call is invalid" +msgstr "chiamata canale non è valido" -#: commons/text.php:317 -msgid "Interface" -msgstr "Interfaccia" +msgid "Chassis Asset" +msgstr "Telaio Asset" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "È abilitato" +msgid "Chassis Manufacturer" +msgstr "Telaio Produttore" -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "Viene attivato Grafico" +msgid "Chassis Serial" +msgstr "Telaio seriale" -#: commons/text.php:320 -msgid "On Dashboard" -msgstr "sul cruscotto" +msgid "Chassis Version" +msgstr "Telaio Version" -#: commons/text.php:321 -msgid "Management Username" -msgstr "Gestione utente" +msgid "Chat is also available on the forums for more realtime help" +msgstr "" +"La chat è anche disponibile all'interno del forum per una maggiore " +"assistenza in tempo reale" -#: commons/text.php:322 -msgid "Management Password" -msgstr "Gestione delle password" +#, fuzzy +msgid "Check here to see what hosts can be added" +msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "Usa la massima attenzione con questa impostazione" +#, fuzzy +msgid "Check here to see what images can be added" +msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" -#: commons/text.php:326 -msgid "This setting" -msgstr "Questa impostazione" +msgid "Check here to see what printers can be added" +msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "se usato non correttamente può potenzialmente" +#, fuzzy +msgid "Check here to see what rules can be added" +msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" -msgstr "cancellare tutte le immagini archiviate in" +msgid "Check here to see what snapins can be added" +msgstr "Controlla qui per vedere quali snapins possono essere aggiunti" -#: commons/text.php:329 -msgid "all current storage nodes" -msgstr "tutti i nodi di archiviazione attivi" +msgid "Check here to see what storage groups can be added" +msgstr "" +"Controlla qui per vedere quali gruppi di archiviazione possono essere " +"aggiunti" -#: commons/text.php:330 -msgid "The 'Is Master Node' setting defines which" -msgstr "L'impostazione \"nodo master\" definisce quale" +#, fuzzy +msgid "Check here to see what users can be added" +msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" -#: commons/text.php:331 -msgid "node is the distributor of the images" -msgstr "nodo è il distributore delle immagini" +msgid "Check that database is running" +msgstr "Controllare che database è in esecuzione" -#: commons/text.php:332 -msgid "If you add a blank node" -msgstr "Se aggiungi un nodo vuoto" +msgid "Checkin Time" +msgstr "Orario Checkin" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" -msgstr "intendendo un nodo con nessuna immagine in esso" +msgid "Checking if I am the group manager" +msgstr "Controllare se sono il responsabile del gruppo" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "ed imposta a master" +msgid "Checksum" +msgstr "Checksum" -#: commons/text.php:335 -msgid "it will distribute its store" -msgstr "Distribuirà i suoi dati" +msgid "Checksums" +msgstr "Checksums" -#: commons/text.php:336 -msgid "which is empty" -msgstr "che è vuoto" +msgid "City/State/Zip" +msgstr "Città stato CAP" -#: commons/text.php:337 -msgid "to all nodes in the group" -msgstr "a tutti i nodi del gruppo" +msgid "Class" +msgstr "Classe" -#: commons/text.php:343 -msgid "Storage Node already exists" -msgstr "Storage Node esiste già" +msgid "Class is not extended from FOGPage" +msgstr "Classe non è esteso da FOGPage" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "Storage Node IP" +msgid "Class must extend event" +msgstr "Class deve estendere evento" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "I clienti Storage Node Max" +msgid "Class must extend hook" +msgstr "Class deve estendere gancio" -#: commons/text.php:354 -msgid "Storage Node Interface" -msgstr "Storage Node Interface" +msgid "Class name must be a string" +msgstr "Il nome della Classe deve essere una stringa" -#: commons/text.php:358 -msgid "Storage Node Username" -msgstr "Storage Node Nome utente" +msgid "Clear" +msgstr "Pulire" -#: commons/text.php:362 -msgid "Storage Node Password" -msgstr "Storage Node password" +msgid "Clear Fields" +msgstr "Cancellare campi" -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "Storage Node Creato" +msgid "Clear all fields?" +msgstr "Cancellare tutti i campi?" -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "Storage Node Aggiornato" +msgid "Clear all history" +msgstr "Cancella tutta la cronologia" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "Aggiornamento del database non riuscito" +msgid "Click" +msgstr "Click" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "Conferma che desideri eliminare" +msgid "Click Here" +msgstr "Clicca qui" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "Impossibile per distruggere il nodo di archiviazione" +msgid "Client" +msgstr "Cliente" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "Storage Node cancellato" +msgid "Client Count" +msgstr "Conte client" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" -msgstr "Nome gruppo di archiviazione" +msgid "Client Management" +msgstr "client Management" -#: commons/text.php:371 -msgid "Storage Group Description" -msgstr "Gruppo di archiviazione Descrizione" +msgid "Client Modules Change Fail" +msgstr "Modulo Client fallimento di cambiamento" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "Gruppo di archiviazione già esistente" +msgid "Client Modules Change Success" +msgstr "Moduli client modificato con successo" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "Storage Group Creato" +msgid "Client Settings" +msgstr "Impostazioni Client" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "Storage Group Aggiornato" +msgid "Client Updater" +msgstr "Updater client" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "È necessario disporre di almeno un gruppo di archiviazione" +msgid "Client Version" +msgstr "Versione client" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "Storage Group cancellato" +msgid "Clients" +msgstr "clienti" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "Impossibile per distruggere gruppo di archiviazione" +msgid "Command" +msgstr "Comando" -#: commons/text.php:382 -msgid "Invalid Class" -msgstr "Classe non valido" +msgid "Complete" +msgstr "Completare" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" -msgstr "Classe non è esteso da FOGPage" +msgid "Complete Time" +msgstr "Tempo completo" -#: commons/text.php:384 -msgid "Do not list on menu" -msgstr "Non elencare nel menu" +msgid "Completed" +msgstr "Completato" -#: commons/text.php:386 -msgid "Language" -msgstr "Lingua" +msgid "Completed imaging" +msgstr "Imaging completato" -#: commons/init.php:433 -msgid "Missing one or more extensions." -msgstr "Manca una o più estensioni." +msgid "Compression" +msgstr "Compressione" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 -msgid "No valid tasks found" -msgstr "Non sono stati trovati compiti validi" +msgid "Computer Information" +msgstr "Informazioni sul computer" -#: lib/client/snapinclient.class.php:306 -msgid "Snapin is invalid" -msgstr "Snapin non è valido" +msgid "Computer Model" +msgstr "Modello di computer" -#: lib/client/snapinclient.class.php:328 -msgid "Snapin Task is invalid" -msgstr "L'attività Snapin non è valida" +msgid "Config File" +msgstr "File di configurazione" -#: lib/client/snapinclient.class.php:411 -msgid "Invalid task id sent" -msgstr "ID attività non valido inviato" +msgid "Configuration" +msgstr "Configurazione" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" -msgstr "Non valido Snapin Tasking" +msgid "Configuration Import/Export" +msgstr "Configurazione Importazione/Esportazione" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "Snapin non valido" +msgid "Configuration Save" +msgstr "Salva configurazione" -#: lib/client/snapinclient.class.php:500 -msgid "Invalid task id" -msgstr "ID attività non valido" +msgid "Confirm tasking" +msgstr "Conferma il task" -#: lib/client/snapinclient.class.php:510 -msgid "Invalid Snapin Tasking object" -msgstr "Oggetto Snapin Tasking non valido" +msgid "Conflicting path/file" +msgstr "Percorso / file in conflitto" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" -msgstr "Gruppo di archiviazione non valido" +msgid "Copy from existing" +msgstr "Copia da esistenti" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "Non valido Storage Node" +msgid "Could not find a Storage Node in this group" +msgstr "Impossibile trovare un nodo di archiviazione in questo gruppo" -#: lib/client/snapinclient.class.php:587 -msgid "Cannot connect to ftp server" -msgstr "Impossibile connettersi al server ftp" +msgid "Could not find a Storage Node is" +msgstr "Impossibile trovare il nodo di archiviazione" -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." -msgstr "In attesa di..." +msgid "Could not find any" +msgstr "Impossibile trovare" + +msgid "Could not find temp filename" +msgstr "Impossibile trovare il nome del file temporaneo" + +msgid "Could not notify" +msgstr "Non posso notificare" -#: lib/client/snapinclient.class.php:628 msgid "Could not read snapin file" msgstr "Impossibile leggere il file snapin" -#: lib/client/usertrack.class.php:67 -msgid "Postfix requires an action of login" -msgstr "Postfix richiede un'azione di accesso" +msgid "Could not read tmp file." +msgstr "Impossibile leggere il file tmp." -#: lib/client/usertrack.class.php:68 -msgid "logout" -msgstr "disconnettersi" +msgid "Could not register" +msgstr "Non posso registrare" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" -msgstr "o iniziare ad operare" +msgid "Create" +msgstr "Creare" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" -msgstr "Postfix richiede un'azione di login, logout, o iniziare a funzionare" +msgid "Create Image" +msgstr "Crea immagina" -#: lib/client/usertrack.class.php:139 -msgid "Replay from journal" -msgstr "Replay dal journal" +#, php-format +msgid "Create New %s" +msgstr "Crea nuovo %s" -#: lib/client/usertrack.class.php:140 -msgid "real insert time" -msgstr "Tempo reale di inserimento" +msgid "Create New Access Control Role" +msgstr "Crea nuovo ruolo di controllo accessi" -#: lib/client/usertrack.class.php:142 -msgid "Login time" -msgstr "Tempo di accesso" +#, fuzzy +msgid "Create New Key" +msgstr "Crea nuovo %s" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "Nessuna directory definita per essere pulita" +msgid "Create New LDAP" +msgstr "Crea nuovo LDAP" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "In attesa di registrazione creato da FOG_CLIENT" +msgid "Create New Location" +msgstr "Crea nuova posizione" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 -msgid "Too many MACs" -msgstr "Troppi MAC" +msgid "Create New Printer" +msgstr "Crea nuova stampante" -#: lib/client/registerclient.class.php:110 -msgid "Only allowed to have" -msgstr "Permesso solo di avere" +msgid "Create New Snapin" +msgstr "Crea nuovo snapin" -#: lib/client/registerclient.class.php:112 -msgid "additional macs" -msgstr "MAC aggiuntivi" +#, fuzzy +msgid "Create New SubnetGroup?" +msgstr "Crea nuovo gruppo" -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "Ha bisogno stringa di azione di chiedere, ottenere, o di un elenco" +msgid "Create New iPXE Menu Entry" +msgstr "Crea nuovo iPXE Menu Entry" -#: lib/client/updateclient.class.php:70 -msgid "If action of ask or get" -msgstr "Se azione di chiedere o ottenere" +msgid "Create Report?" +msgstr "Crea Report?" -#: lib/client/updateclient.class.php:71 -msgid "we need a file name in the request" -msgstr "Abbiamo bisogno di un nome di file nella richiesta" +msgid "Create Rule?" +msgstr "Crea ruolo?" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 -msgid "Invalid data found" -msgstr "Sono stati trovati dati non validi" +#, fuzzy +msgid "Create Site" +msgstr "Creare" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" -msgstr "Non è possibile effettuare una connessione di database valida" +msgid "Create Storage Group" +msgstr "Creazione Gruppo di archiviazione" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" -msgstr "Connessione fallita" +msgid "Create Storage Node" +msgstr "Crea nodo di archiviazione" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" -msgstr "Non è riuscito a" +msgid "Create Task state" +msgstr "Crea stato attività" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "No query inviata" +msgid "Create Task type" +msgstr "Crea tipo attività" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" -msgstr "Nessun database di lavorare off" +msgid "Create WOL Broadcast?" +msgstr "Crea WOL Broadcasts?" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "Nessun risultato della query, utilizzare query () prima" +msgid "Create new PM Schedule" +msgstr "Crea nuova Programmazione PM" -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" -msgstr "Nessun classe valido inviato" +msgid "Create new group" +msgstr "Crea nuovo gruppo" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" -msgstr "numero di riga non impostato correttamente" +msgid "Create user?" +msgstr "Crea utente?" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" -msgstr "Non ci sono dati restituiti" +msgid "Created By" +msgstr "Creato da" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" -msgstr "Messaggio" +msgid "Created Tasks For" +msgstr "Create attività per" -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" -msgstr "Controllare che database è in esecuzione" +msgid "Created by FOG Reg on" +msgstr "Creato da FOG Reg su" -#: lib/db/pdodb.class.php:114 -msgid "SQL Error" -msgstr "Errore SQL:" +msgid "Created file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" -msgstr "Messaggio di errore" +msgid "Credits" +msgstr "Credits" -#: lib/db/pdodb.class.php:208 -msgid "No link established to the database" -msgstr "Nessun collegamento stabilito al database" +msgid "Cron" +msgstr "cron" -#: lib/db/pdodb.class.php:264 -msgid "No query passed" -msgstr "Nessuna query inviata" +msgid "Cron Schedule" +msgstr "pianificazione cron" -#: lib/db/pdodb.class.php:290 -msgid "no database to" -msgstr "Nessun database a" +msgid "Cross platform" +msgstr "Cross platform" -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" -msgstr "Nessuna connessione al database" +msgid "Current Associations" +msgstr "Associazioni attuali" -#: lib/db/pdodb.class.php:426 -msgid "Error Code" -msgstr "Codice di errore" +msgid "Current Power Management settings" +msgstr "Impostazioni attuali Power Management" -#: lib/db/pdodb.class.php:430 -msgid "Debug" -msgstr "mettere a punto" +msgid "Current Records" +msgstr "Current Records" -#: lib/db/pdodb.class.php:435 -msgid "Cannot connect to database" -msgstr "Non è possibile connettersi al database" +msgid "Current Sessions" +msgstr "Sessioni correnti" -#: lib/db/pdodb.class.php:449 -#, fuzzy -msgid "Database connection unavailable" -msgstr "Database non disponibile" +msgid "Current files" +msgstr "File corrente" -#: lib/fog/bootmenu.class.php:1498 -msgid "No valid storage nodes found" -msgstr "Nessun nodo di archiviazione valido trovato" +msgid "Current settings" +msgstr "Sessioni correnti" -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "Registrato" +msgid "DMI Field" +msgstr "DMI campo" -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "Evento deve essere una stringa" +msgid "DMI Key" +msgstr "DMI chiave" -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" -msgstr "Listener deve essere un array o un oggetto" +msgid "DMI Result" +msgstr "DMI Risultato" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "Class deve estendere evento" +msgid "Daily" +msgstr "Quotidiano" -#: lib/fog/eventmanager.class.php:76 -msgid "Second paramater must be in array(class,function)" -msgstr "Il secondo parametro deve essere un array (classe, funzione)" +msgid "Dashboard" +msgstr "scrivania" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "Class deve estendere gancio" +msgid "Data is blank" +msgstr "" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "Metodo non esiste" +msgid "Data must be an array or a callable item." +msgstr "Dati deve essere un array o un callable" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" -msgstr "Registro deve essere gestito da hook o eventi" +msgid "Database" +msgstr "Database" -#: lib/fog/eventmanager.class.php:102 -msgid "Could not register" -msgstr "Non posso registrare" +msgid "Database Failure" +msgstr "Fallimento del database" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 -msgid "Event" -msgstr "Evento" +msgid "Database Reverted" +msgstr "Database ripristinato" -#: lib/fog/eventmanager.class.php:107 -msgid "Class" -msgstr "Classe" +msgid "Database SQL" +msgstr "Database SQL" -#: lib/fog/eventmanager.class.php:147 -msgid "Event Data must be an array" -msgstr "Event data deve essere un array" +msgid "Database Schema Installer / Updater" +msgstr "Database Schema di installazione / aggiornamento" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "Event e data non sono impostati" +msgid "Database Update Failed" +msgstr "Aggiornamento del database non riuscito" -#: lib/fog/eventmanager.class.php:165 -msgid "Could not notify" -msgstr "Non posso notificare" +msgid "Database changes reverted!" +msgstr "Modifiche al database ripristinate" -#: lib/fog/fogbase.class.php:443 -msgid "Class name must be a string" -msgstr "Il nome della Classe deve essere una stringa" +#, fuzzy +msgid "Database connection unavailable" +msgstr "Database non disponibile" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "Host non valido" +msgid "Database imported and added successfully!" +msgstr "Database importati e aggiunti con successo" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 -msgid "Key must be a string or index" -msgstr "Chiave deve essere una stringa o un indice" +msgid "Database not available" +msgstr "Database non disponibile" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." -msgstr "Chiave deve essere un array o una stringa." +msgid "Database save failed" +msgstr "Salvataggio del database non riuscito" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" -msgstr "Nessun dato" +msgid "Date" +msgstr "Data" -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" -msgstr "Non è un numero" +msgid "Date and Time" +msgstr "Data e Ora" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" -msgstr "La variabile spazio deve essere boolean" +msgid "Date of checkout" +msgstr "Data di cassa" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" -msgstr "Fa deve essere boolean" +msgid "Day of month value is not valid" +msgstr "Giorno del valore del mese non è valido" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" -msgstr "Il parametro Diff deve essere numerico" +msgid "Day of week value is not valid" +msgstr "Giorno della settimana il valore non è valido" -#: lib/fog/fogbase.class.php:1347 -msgid "Unit of time must be a string" -msgstr "Unità di tempo deve essere una stringa" +msgid "Debug" +msgstr "mettere a punto" -#: lib/fog/fogbase.class.php:1351 -msgid "In" -msgstr "In" +msgid "Debug Options" +msgstr "Opzioni di debug" -#: lib/fog/fogbase.class.php:1354 -msgid "ago" -msgstr "fa" +msgid "Default" +msgstr "Predefinito" -#: lib/fog/fogbase.class.php:1382 -msgid "Old key must be a string" -msgstr "Vecchia chiave deve essere una stringa" +msgid "Default Height" +msgstr "Altezza di default" -#: lib/fog/fogbase.class.php:1385 -msgid "New key must be a string" -msgstr "Nuova chiave deve essere una stringa" +msgid "Default Item" +msgstr "Elemento predefinito:" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" -msgstr "" +msgid "Default Refresh Rate" +msgstr "Predefinito: frequenza aggiornamento" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" -msgstr "" +msgid "Default Width" +msgstr "Larghezza predefinita" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "Percorso chiave privata non trovata" +msgid "Default is disabled" +msgstr "Il valore predefinito è disabilitato" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "Chiave privata non trovato" +msgid "Default log out time (in minutes)" +msgstr "Predefinito disconnettersi tempo (in minuti)" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" -msgstr "chiave privata non leggibile" +msgid "Delayed" +msgstr "Ritardato" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "Chiave privata non è riuscita" +msgid "Delayed Start" +msgstr "Partenza ritardata" -#: lib/fog/fogbase.class.php:1677 -#, fuzzy -msgid "Failed to decrypt data on server" -msgstr "Impossibile decifrare i dati" +msgid "Delete" +msgstr "cancellare" -#: lib/fog/fogbase.class.php:1910 -msgid "Txt must be a string" -msgstr "Txt deve essere una stringa" +#, fuzzy +msgid "Delete Fail" +msgstr "Cancellare i file" -#: lib/fog/fogbase.class.php:1913 -msgid "Level must be an integer" -msgstr "Livello deve essere una stringa" +msgid "Delete MACs" +msgstr "Eliminare MAC" -#: lib/fog/fogbase.class.php:1941 -msgid "String must be a string" -msgstr "Stringa deve essere una stringa" +msgid "Delete Menu Item" +msgstr "Elimina il menu" -#: lib/fog/fogbase.class.php:2067 -msgid "Key must be a string" -msgstr "Chiave deve essere una stringa" +msgid "Delete Selected" +msgstr "Elimina selezionato" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" -msgstr "linea" +msgid "Delete Selected Items" +msgstr "Eliminare gli elementi selezionati" -#: lib/fog/fogcontroller.class.php:129 -msgid "Table not defined for this class" -msgstr "Tabella del database non definita per questa classe" +msgid "Delete Selected MACs" +msgstr "Cancella MAC Selezionati" -#: lib/fog/fogcontroller.class.php:132 -msgid "Fields not defined for this class" -msgstr "Campi del database definiti per questa classe" +msgid "Delete Success" +msgstr "Eliminato con successo" -#: lib/fog/fogcontroller.class.php:145 -msgid "Record not found" -msgstr "Record non trovato" +msgid "Delete all PM tasks?" +msgstr "Cancellare tutte le attività PM?" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" -msgstr "Tornando valore della chiave" +msgid "Delete files" +msgstr "Cancellare i file" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "Valore" +msgid "Delete hosts within" +msgstr "Elimina gli host all'interno" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" -msgstr "Nessuna chiave chiede il" +msgid "Delete selected" +msgstr "Cancella selezionato" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" -msgstr "chiave non valido stato impostato" +msgid "Delete selected hosts" +msgstr "Elimina host selezionati" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" -msgstr "Impostazione chiave" +msgid "Deleted" +msgstr "eliminata" -#: lib/fog/fogcontroller.class.php:267 -msgid "Set failed" -msgstr "Fallita impostazione" +msgid "Deleted Success" +msgstr "Eliminato con successo" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 -msgid "Key" -msgstr "Chiave" +msgid "Deleting remote file" +msgstr "Eliminazione di file remoti" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "chiave non valido viene aggiunto" +msgid "Deploy" +msgstr "Distribuisci" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "Aggiunta chiave" +msgid "Deploy Method" +msgstr "Metodo Deploy" -#: lib/fog/fogcontroller.class.php:317 -msgid "Add failed" -msgstr "Aggiunta fallita" +msgid "Deploy/Capture" +msgstr "Distribuire/catturare" -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" -msgstr "Chiave non valida rimossa" +msgid "Description" +msgstr "Descrizione" -#: lib/fog/fogcontroller.class.php:359 -msgid "Removing Key" -msgstr "Rimuovi chiave" +msgid "Destroy failed" +msgstr "Deistruzione fallita" -#: lib/fog/fogcontroller.class.php:371 -msgid "Remove failed" -msgstr "Rimozione fallita" +msgid "Destroyed assignment" +msgstr "Assegnazione distrutta" -#: lib/fog/fogcontroller.class.php:456 -msgid "Saving data for" -msgstr "Salvataggio dei dati per" +msgid "Destroyed assignments" +msgstr "Assegnamenti distrutti" -#: lib/fog/fogcontroller.class.php:458 -msgid "object" -msgstr "oggetto" +msgid "Detailed documentation" +msgstr "Documentazione dettagliata" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" -msgstr "ID" +msgid "Device must be a string" +msgstr "Dispositivo deve essere una stringa" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "NOME" +msgid "Diff parameter must be numeric" +msgstr "Il parametro Diff deve essere numerico" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" -msgstr "è stato aggiornato con successo" +msgid "Directories" +msgstr "Cartelle" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" -msgstr "fallito il salvataggio" +msgid "Directory" +msgstr "elenco" -#: lib/fog/fogcontroller.class.php:516 -msgid "Database save failed" -msgstr "Salvataggio del database non riuscito" +msgid "Directory Already Exists" +msgstr "Directory esiste già" -#: lib/fog/fogcontroller.class.php:542 -msgid "Key field must be a string" -msgstr "Campo chiave deve essere una stringa" +msgid "Directory Cleaner" +msgstr "directory Cleaner" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 -msgid "Operation field not set" -msgstr "Campo operazione non impostato" +msgid "Disabled" +msgstr "Disabilitato" -#: lib/fog/fogcontroller.class.php:588 -msgid "Loading data to field" -msgstr "Caricamento dei dati campo" +msgid "Display" +msgstr "Display" -#: lib/fog/fogcontroller.class.php:606 -msgid "Load failed" -msgstr "Caricamento non riuscito" +msgid "Do not list on menu" +msgstr "Non elencare nel menu" -#: lib/fog/fogcontroller.class.php:668 -msgid "Invalid key being destroyed" -msgstr "Chiave non valida distrutta" +msgid "Domain Password" +msgstr "password di dominio" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 -msgid "has been successfully destroyed" -msgstr "è stato distrutta con successo" +msgid "Domain Password Legacy" +msgstr "Password di dominio Legacy" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 -msgid "has failed to destroy" -msgstr "è fallita la distruzione" +msgid "Domain Username" +msgstr "dominio Nome utente" -#: lib/fog/fogcontroller.class.php:750 -msgid "Destroy failed" -msgstr "Deistruzione fallita" +msgid "Domain name" +msgstr "Nome del dominio" -#: lib/fog/fogcontroller.class.php:831 -msgid "Invalid key being requested" -msgstr "chiave non valida richiesta" +msgid "Donate to FOG" +msgstr "Donate alla nebbia" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" -msgstr "Tipo non valido, unione da aggiunta, differenza da rimuovere" +msgid "Done" +msgstr "Fatto" -#: lib/fog/fogcontroller.class.php:877 -msgid "Invalid ID passed" -msgstr "ID non valido passato" +msgid "Done, Failed to create tasking" +msgstr "Fatto, Impossibile creare tasking" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" -msgstr "Fallito" +msgid "Done, with imaging!" +msgstr "Fatto, con l'imaging!" -#: lib/fog/fogcore.class.php:40 -msgid "day" -msgstr "giorno" +msgid "Done, without imaging!" +msgstr "Fatto, senza imaging!" -#: lib/fog/fogcore.class.php:49 -msgid "hr" -msgstr "ore" +#, fuzzy +msgid "Done, without imaging! Invalid Login!" +msgstr "Fatto, senza imaging!" -#: lib/fog/fogcore.class.php:58 -msgid "min" -msgstr "minuti" +#, fuzzy +msgid "Done, without imaging! No image assigned!" +msgstr "Fatto, nessuna immagine assegnato!" -#: lib/fog/fogcore.class.php:76 -msgid "Running Windows" -msgstr "Running Windows" +msgid "Dot in Filename not allowed!" +msgstr "" -#: lib/fog/fogcore.class.php:88 -msgid "Unavailable" -msgstr "Non disponibile" +msgid "Download Failed" +msgstr "Scaricamento fallito" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" -msgstr "Selezionare un tipo di cron" +#, fuzzy +msgid "Downloading Initrd" +msgstr "Downloading Kernel" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" -msgstr "Annuale" +msgid "Downloading Kernel" +msgstr "Downloading Kernel" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" -msgstr "Annualmente" +msgid "Dropped" +msgstr "Dropped" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "Mensile" +msgid "Duration" +msgstr "Durata" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "settimanalmente" +msgid "ESC is defaulted" +msgstr "ESC è predefinito" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" -msgstr "Quotidiano" +msgid "Edit" +msgstr "Modifica" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" -msgstr "Mezzanotte" +msgid "Edit Host" +msgstr "Modifica Host" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" -msgstr "ogni ora" +msgid "Edit Image" +msgstr "Modifica immagine" -#: lib/fog/fogftp.class.php:219 -#, fuzzy -msgid "FTP connection failed" -msgstr "La connessione FTP non è riuscita" +msgid "Edit Node" +msgstr "Modifica nodo" -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" -msgstr "Nessun campo passato" +msgid "Edit User" +msgstr "Modifica utente" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" -msgstr "Nessun valore passato" +msgid "Either reboot or shutdown action must be used." +msgstr "È necessario utilizzare l'azione di riavvio o di arresto." -#: lib/fog/fogmanagercontroller.class.php:603 -msgid "No data to insert" -msgstr "Nessun dato da inserire" +msgid "Email" +msgstr "E-mail" -#: lib/fog/fogmanagercontroller.class.php:909 -msgid "No items found" -msgstr "Nessun elemento trovato" +msgid "Enable location Sending" +msgstr "Abilita invio posizione " -#: lib/fog/fogmanagercontroller.class.php:987 -msgid "Nothing passed to search for" -msgstr "Nessun risultato per la ricerca di" +msgid "Enabled" +msgstr "Abilitato" -#: lib/fog/fogpage.class.php:236 -msgid "ID Must be set to edit" -msgstr "ID deve essere impostato per modificare" +msgid "Enabled as default" +msgstr "Attivata come impostazione predefinita" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %d non valido" +msgid "End" +msgstr "Fine" -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" -msgstr "ID Host" +msgid "End Date" +msgstr "Data di fine" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" -msgstr "Nome host" +msgid "End Time" +msgstr "Fine del tempo" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" -msgstr "Host MAC" +msgid "Engineer" +msgstr "Ingegnere" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" -msgstr "Host Desc" +#, fuzzy +msgid "Enter a group name to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "ID inventario" +msgid "Enter a hostname to search for" +msgstr "Inserisci un hostname da cercare" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "inventario Desc" +#, fuzzy +msgid "Enter a location name to search for" +msgstr "Inserisci un hostname da cercare" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" -msgstr "Utente primario" +#, fuzzy +msgid "Enter a model name to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" -msgstr "Altro Tag 1" +#, fuzzy +msgid "Enter a site name to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "Altro Tag 2" +#, fuzzy +msgid "Enter a snapin name to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" -msgstr "Sistema produttore" +#, fuzzy +msgid "Enter a term to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" -msgstr "Sistema prodotto" +msgid "Enter a username to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" -msgstr "Sistema versione" +#, fuzzy +msgid "Enter an image name to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" -msgstr "Sistema seriale" +#, fuzzy +msgid "Enter an user name to search for" +msgstr "Inserisci un nome utente da cercare" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" -msgstr "Sistema tipo" +msgid "Equipment Loan" +msgstr "attrezzature di prestito" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" -msgstr "Versione BIOS" +msgid "Error" +msgstr "Errore" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "Venditore BIOS" +msgid "Error Code" +msgstr "Codice di errore" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" -msgstr "BIOS Data" +msgid "Error Message" +msgstr "Messaggio di errore" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "MB Produttore" +msgid "Error Opening DB File" +msgstr "Errore di apertura del file DB" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "Nome MB" +msgid "Error multiple hosts returned for list of mac addresses" +msgstr "Errore più host restituiti per elenco di indirizzi MAC" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "MB Versione" +msgid "Error performing query" +msgstr "Errore l'esecuzione di query" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "MB seriale" +#, fuzzy +msgid "Error: Failed to download initrd" +msgstr "Errore: Impossibile scaricare il kernel" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "MB Asset" +msgid "Error: Failed to download kernel" +msgstr "Errore: Impossibile scaricare il kernel" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" -msgstr "CPU del produttore" +msgid "Error: Failed to open temp file" +msgstr "Errore: Impossibile aprire il file temporaneo" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" -msgstr "Versione CPU" +msgid "Errors" +msgstr "Errori" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "Velocità CPU" +msgid "Errors on revert detected!" +msgstr "Errori su Revert rilevati" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" -msgstr "CPU Velocità max" +msgid "Especially when your organization has many hosts" +msgstr "Soprattutto quando la tua organizzazione ha molti host" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "Memoria" +msgid "Estimated FOG Sites" +msgstr "Siti FOG stimati" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" -msgstr "HD Modello" +msgid "Event" +msgstr "Evento" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" -msgstr "HD firmware" +msgid "Event Data must be an array" +msgstr "Event data deve essere un array" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "HD Serial" +msgid "Event and data are not set" +msgstr "Event e data non sono impostati" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "Telaio Produttore" +msgid "Event must be a string" +msgstr "Evento deve essere una stringa" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" -msgstr "Telaio Version" +msgid "Exists item must be boolean" +msgstr "Exists deve essere boolean" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "Telaio seriale" +msgid "Exit to Hard Drive Type" +msgstr "Uscita Tipo disco rigido" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "Telaio Asset" +msgid "Exit to Hard Drive Type(EFI)" +msgstr "Uscita Tipo disco rigido (EFI)" -#: lib/fog/fogpage.class.php:643 -msgid "Group Associations" -msgstr "Associazioni di Grouppo" +msgid "Expand All" +msgstr "Espandi tutti" -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "Crea nuovo gruppo" +msgid "Export" +msgstr "Esportare" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "Aggiungere al gruppo" +msgid "Export Accesscontrols" +msgstr "Esporta controllo accessi" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 -msgid "Make changes?" -msgstr "Applicare cambiamenti?" +msgid "Export CSV" +msgstr "Esporta CSV" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 -msgid "Delete Selected" -msgstr "Elimina selezionato" +msgid "Export Checksums" +msgstr "Esporta Checksum" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 -msgid "Delete selected" -msgstr "Cancella selezionato" +msgid "Export Complete" +msgstr "Esportazione Completata" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" -msgstr "Richiede modelli per elaborare" +msgid "Export Configuration" +msgstr "Esporta configurazione" -#: lib/fog/fogpage.class.php:1019 -msgid "Cannot set tasking to invalid hosts" -msgstr "Impossibile affidare attività ad host non valiti" +msgid "Export Database" +msgstr "Esporta database" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 -msgid "Cannot set tasking to pending hosts" -msgstr "Impossibile affidare attività ad host in attesa" +msgid "Export Database?" +msgstr "Esporta database?" -#: lib/fog/fogpage.class.php:1034 -msgid "Invalid object to try tasking" -msgstr "tipo di oggetto attività non valido" +msgid "Export Groups" +msgstr "Gruppi Export" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" -msgstr "Impossibile affidare attività se l'immagine non è abilitata" +msgid "Export Hosts" +msgstr "Host Export" -#: lib/fog/fogpage.class.php:1092 -msgid "Host Associated Snapins" -msgstr "Snapin associati a Host" - -#: lib/fog/fogpage.class.php:1119 -msgid "Host Unassociated Snapins" -msgstr "Snapin non associati a Host" +msgid "Export Images" +msgstr "esportare immagini" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" -msgstr "Modifica Host" +msgid "Export LDAPs" +msgstr "Esportare LDAP" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" -msgstr "Modifica immagine" +msgid "Export Locations" +msgstr "Esporta luoghi" -#: lib/fog/fogpage.class.php:1218 -msgid "Confirm tasking" -msgstr "Conferma il task" +msgid "Export PDF" +msgstr "Esporta PDF" -#: lib/fog/fogpage.class.php:1223 -msgid "Image Associated: " -msgstr "Immagine Associata: " +msgid "Export Printers" +msgstr "Stampanti Export" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "Impostazioni avanzate" +msgid "Export Sites" +msgstr "Esporta Siti" -#: lib/fog/fogpage.class.php:1243 -msgid "Please select the snapin you want to install" -msgstr "Si prega di selezionare lo snap-in che si desidera installare" +msgid "Export Snapins" +msgstr "Export Snapins" -#: lib/fog/fogpage.class.php:1253 -msgid "Account name to reset" -msgstr "Nome account da ripristinare" +#, fuzzy +msgid "Export Subnetgroups" +msgstr "Gruppi Export" -#: lib/fog/fogpage.class.php:1274 -msgid "Schedule with shutdown" -msgstr "Programma con spegnimento" +msgid "Export Task States" +msgstr "Esporta Stato delle attività" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "Wake On LAN?" +msgid "Export Task Types" +msgstr "Esporta tipi di attività" -#: lib/fog/fogpage.class.php:1313 -msgid "Schedule as debug task" -msgstr "Pianifica come debug task" +msgid "Export Users" +msgstr "Esporta utenti" -#: lib/fog/fogpage.class.php:1323 -msgid "Schedule instant" -msgstr "Programma adesso" +msgid "Export WOLBroadcasts" +msgstr "Esporta WOLBroadcasts" -#: lib/fog/fogpage.class.php:1335 -msgid "Schedule delayed" -msgstr "Programmazione ritardata" +msgid "Export Windows Keys" +msgstr "Esporta chiavi Windows" -#: lib/fog/fogpage.class.php:1340 -msgid "Date and Time" -msgstr "Data e Ora" +msgid "Extension" +msgstr "Estensione" -#: lib/fog/fogpage.class.php:1373 -msgid "Schedule cron-style" -msgstr "Pianifica cron-style" +msgid "FOG" +msgstr "NEBBIA" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "Creare" +msgid "FOG 1.2.0 and earlier" +msgstr "FOG 1.2.0 e precedenti" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" -msgstr "Attività" +msgid "FOG 1.2.0 and earlier." +msgstr "FOG 1.2.0 e precedenti" -#: lib/fog/fogpage.class.php:1445 -msgid "Hosts in task" -msgstr "Host in attività" +msgid "FOG Client" +msgstr "FOG Client" -#: lib/fog/fogpage.class.php:1556 -msgid "Invalid scheduling type" -msgstr "Tipo di scheduling non valido" +msgid "FOG Client Download" +msgstr "FOG client Scarica" -#: lib/fog/fogpage.class.php:1595 -msgid "minute" -msgstr "minuto" +msgid "FOG Client Installer" +msgstr "FOG Client Installer" -#: lib/fog/fogpage.class.php:1604 -msgid "hour" -msgstr "ora" +msgid "FOG Client Service Updater" +msgstr "FOG Servizio Clienti Updater" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" -msgstr "giorno del mese" +msgid "FOG Client Wiki" +msgstr "FOG client Wiki" -#: lib/fog/fogpage.class.php:1622 -msgid "month" -msgstr "mese" +msgid "FOG Client on Github" +msgstr "Client FOG su Github" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" -msgstr "giorno della settimana" +msgid "FOG Configuration" +msgstr "Configurazione FOG" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "Tipo di attività non è valido" +msgid "FOG Crypt" +msgstr "FOG Crypt" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "" -"reimpostazione della password richiede un account utente per ripristinare" +msgid "FOG Equipment Loan Form" +msgstr "FOG Attrezzature prestito Modulo" -#: lib/fog/fogpage.class.php:1663 -msgid "There are no hosts to task in this group" -msgstr "Non ci sono host a cui affidare compiti in questo gruppo" +msgid "FOG Forums" +msgstr "FOG Forum" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" -msgstr "Per eseguire l'attività di immagine deve essere assegnata" +msgid "FOG General Help" +msgstr "FOG Guida generale" -#: lib/fog/fogpage.class.php:1678 -msgid "Cannot create tasking as image is not enabled" -msgstr "Impossibile creare l'attività finché l'immagine non è abilitata" +#, fuzzy +msgid "FOG History - Search" +msgstr "FOG Tracciamento degli utenti - Cerca" -#: lib/fog/fogpage.class.php:1685 -msgid "The assigned image is protected" -msgstr "L'immagine assegnata è protetta" +msgid "FOG Home Page" +msgstr "FOG pagina" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" -msgstr "e non può essere catturato" +#, fuzzy +msgid "FOG Host - Search" +msgstr "FOG Tracciamento degli utenti - Cerca" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" -msgstr "" -"I gruppi non sono autorizzati alla programmazione di attività di upload" +#, fuzzy +msgid "FOG Host Inventory - Search" +msgstr "FOG Tracciamento degli utenti - Cerca" -#: lib/fog/fogpage.class.php:1700 -msgid "Multicast tasks from groups" -msgstr "Attività multicast dai gruppi" +#, fuzzy +msgid "FOG Host and Users - Search" +msgstr "Host nebbia e Accesso utenti" -#: lib/fog/fogpage.class.php:1702 -msgid "require all hosts have the same image" -msgstr "necessita che tutti gli host abbiano la stessa immagine" +msgid "FOG Hosts and Users Login" +msgstr "Host nebbia e Accesso utenti" -#: lib/fog/fogpage.class.php:1722 -msgid "No valid hosts found and" -msgstr "Nessun host valido trovato e" +#, fuzzy +msgid "FOG Imaging - Search" +msgstr "FOG Tracciamento degli utenti - Cerca" -#: lib/fog/fogpage.class.php:1723 -msgid "or no valid images specified" -msgstr "o una valida immagine specificata" +msgid "FOG Imaging Log" +msgstr "FOG Imaging Log" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 -msgid "Tasking Failed" -msgstr "Attività fallite" +msgid "FOG License Information" +msgstr "Informazioni FOG licenza" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 -msgid "Failed to create tasking" -msgstr "Impossibile creare un'attività" +msgid "FOG Log Viewer" +msgstr "FOG Log Viewer" -#: lib/fog/fogpage.class.php:1803 -msgid "Failed to create scheduled tasking" -msgstr "Impossibile creare un'attività pianificata" +msgid "FOG Managed Printers" +msgstr "Gestione Stampanti FOG" -#: lib/fog/fogpage.class.php:1806 -msgid "Scheduled tasks successfully created" -msgstr "Attività pianificate create con successo" +msgid "FOG PXE Boot Menu Configuration" +msgstr "Menu di configurazione di avvio PXE FOG" -#: lib/fog/fogpage.class.php:1812 -msgid "Failed to start tasking type" -msgstr "Fallito l'avvio di una attività tipo" +msgid "FOG Project" +msgstr "Progetto FOG" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "pianificazione cron" +msgid "FOG Project on Github" +msgstr "Progetto FOG su Github" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" -msgstr "Partenza ritardata" +msgid "FOG Reports exist to give you information about what" +msgstr "Esistono rapporti FOG per fornire informazioni su cosa" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 -msgid "Tasked Successfully" -msgstr "Attività Completata" +msgid "FOG Settings" +msgstr "Impostazioni FOG" -#: lib/fog/fogpage.class.php:1882 -msgid "Successfully created" -msgstr "Creato con successo" +#, fuzzy +msgid "FOG Snapin - Search" +msgstr "FOG Tracciamento degli utenti - Cerca" -#: lib/fog/fogpage.class.php:1889 -msgid "Created Tasks For" -msgstr "Create attività per" +msgid "FOG Sourceforge Page" +msgstr "FOG Sourceforge Pagina" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -msgid "Remove these items?" -msgstr "Rimuovere questi elementi?" +msgid "FOG System Settings" +msgstr "Impostazioni di sistema della nebbia" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 -#, fuzzy -msgid "Unable to Authenticate" -msgstr "Impossibile contattare il server" +msgid "FOG User tracking - Search" +msgstr "FOG Tracciamento degli utenti - Cerca" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 -#, fuzzy -msgid "Successfully deleted" -msgstr "Creato con successo" +msgid "FOG User tracking history" +msgstr "FOG Cronologia di monitoraggio degli utenti" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 -msgid "Delete Success" -msgstr "Eliminato con successo" +msgid "FOG Version" +msgstr "Versione FOG" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "Visualizza attività avanzate di questo" +msgid "FOG Version Information" +msgstr "FOG Informazioni sulla versione" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "Azioni Avanzate" +msgid "FOG Virus Summary" +msgstr "Sommario FOG Virus" -#: lib/fog/fogpage.class.php:2314 -msgid "Clear all fields?" -msgstr "Cancellare tutti i campi?" +msgid "FOG Wiki" +msgstr "FOG Wiki" -#: lib/fog/fogpage.class.php:2317 -msgid "Clear Fields" -msgstr "Cancellare campi" +msgid "FOG database you can do so using" +msgstr "FOG database è possibile farlo utilizzando" -#: lib/fog/fogpage.class.php:2321 -msgid "Join Domain after deploy" -msgstr "Unire il dominio dopo deploy" +msgid "FOG did is now called Power Management" +msgstr "FOG did è ora chiamato Power Management" -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "Nome del dominio" +msgid "FOG is unable to communicate with the database" +msgstr "FOG non è in grado di comunicare con il database" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "Unità organizzativa" +msgid "FOG server defaulting under the folder" +msgstr "server FOG per default nella cartella" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "Bianco per il default" +msgid "FTP Connection has failed" +msgstr "Connessione FTP non è riuscita" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "dominio Nome utente" +msgid "FTP Path" +msgstr "Percorso FTP" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "password di dominio" +#, fuzzy +msgid "FTP connection failed" +msgstr "La connessione FTP non è riuscita" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "Password di dominio Legacy" +#, fuzzy +msgid "Fail to destroy" +msgstr "Impossibile per distruggere" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "Deve essere criptato" +msgid "Failed" +msgstr "Fallito" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" -msgstr "Cambio nome/unione AD Riavvio forzato" +msgid "Failed to" +msgstr "Non è riuscito a" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" -msgstr "" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" +msgstr "Impossibile per il rendering della pagina: nodo: %s , errore: %s" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" -msgstr "" +msgid "Failed to add snapin" +msgstr "Impossibile aggiungere lo snapin" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" -msgstr "Errore: Impossibile aprire il file temporaneo" +msgid "Failed to add/update snapin file" +msgstr "Impossibile aggiungere / aggiornare il file snapin" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" -msgstr "Errore: Impossibile scaricare il kernel" +msgid "Failed to connect" +msgstr "Connessione fallita" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "Scaricamento fallito" +msgid "Failed to create" +msgstr "Impossibile creare" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "dimensione del file" +msgid "Failed to create Host" +msgstr "Impossibile creare Host" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "Caricare fornitori MAC" +msgid "Failed to create Session" +msgstr "Impossibile creare Session" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "Non trovato" +msgid "Failed to create Snapin Job" +msgstr "Impossibile creare Snapin lavoro" -#: lib/fog/fogpage.class.php:2779 -msgid "Delete hosts within" -msgstr "Elimina gli host all'interno" +msgid "Failed to create inventory for this host" +msgstr "Fallita la creazione dell'inventario per questo host" -#: lib/fog/fogpage.class.php:2788 -msgid "Delete files" -msgstr "Cancellare i file" +msgid "Failed to create new Group" +msgstr "Impossibile creare un nuovo gruppo" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" -msgstr "è protetta, la rimozione non consentita" +msgid "Failed to create scheduled tasking" +msgstr "Impossibile creare un'attività pianificata" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" -msgstr "Impossibile per distruggere" +msgid "Failed to create task" +msgstr "Impossibile creare un'attività" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" -msgstr "eliminata" +msgid "Failed to create tasking" +msgstr "Impossibile creare un'attività" -#: lib/fog/fogpage.class.php:3323 #, fuzzy -msgid "Delete Fail" -msgstr "Cancellare i file" +msgid "Failed to decrypt data on server" +msgstr "Impossibile decifrare i dati" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 -msgid " Name" -msgstr "Nome" +msgid "Failed to delete file" +msgstr "Impossibile eliminare il file" -#: lib/fog/fogpage.class.php:3600 -msgid "Remove " -msgstr "Rimuovere" +msgid "Failed to delete image files" +msgstr "Impossibile eliminare i file di immagine" -#: lib/fog/fogpage.class.php:3607 -msgid "Remove selected " -msgstr "Rimuovi i selezionati" +msgid "Failed to destroy" +msgstr "Impossibile per distruggere" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 -msgid "Export CSV" -msgstr "Esporta CSV" +msgid "Failed to destroy Storage Group" +msgstr "Impossibile per distruggere gruppo di archiviazione" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" -msgstr "Importare" +msgid "Failed to destroy Storage Node" +msgstr "Impossibile per distruggere il nodo di archiviazione" -#: lib/fog/fogpage.class.php:3788 -msgid "List" -msgstr "Elenca" +msgid "Failed to install plugin" +msgstr "Impossibile installare plug-in" -#: lib/fog/fogpage.class.php:3806 -msgid "Import CSV" -msgstr "Importa CSV" +msgid "Failed to save assignment" +msgstr "Impossibile salvare l'assegnazione" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" -msgstr "Dimensione massima" +msgid "Failed to save plugin" +msgstr "Impossibile salvare plug-in" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" -msgstr "Sfoglia" +msgid "Failed to start tasking type" +msgstr "Fallito l'avvio di una attività tipo" -#: lib/fog/fogpage.class.php:3824 -msgid "Import CSV?" -msgstr "Importa CSV?" +msgid "Failed to update" +msgstr "Impossibile aggiornare" -#: lib/fog/fogpage.class.php:3852 -msgid "This page allows you to upload a CSV file into FOG to ease" -msgstr "" -"Questa pagina ti consente di caricare un file CSV in FOG per facilitare" +msgid "Failed to update Host" +msgstr "Impossibile aggiornare l'host" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" -msgstr "migrazione o importazione di massa nuovi elementi" +msgid "Failed to update Session" +msgstr "Impossibile aggiornare Session" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" -msgstr "Funzionerà in base ai campi che l'area richiede in genere" +msgid "Failed to update Task" +msgstr "Impossibile aggiornare Task" -#: lib/fog/fogpage.class.php:3888 -msgid "File must be a csv" -msgstr "Il file deve essere un csv" +msgid "Failed to update imaging log" +msgstr "Impossibile aggiornare il registro di imaging" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" -msgstr "Impossibile trovare il nome del file temporaneo" +msgid "Failed to update task" +msgstr "Impossibile aggiornare compito" -#: lib/fog/fogpage.class.php:3929 -msgid "Invalid data being parsed" -msgstr "Dati non validi parsati" +msgid "Failed to update task log" +msgstr "Impossibile aggiornare il registro attività" -#: lib/fog/fogpage.class.php:3941 -msgid "One or more macs are associated with a host" -msgstr "Uno o più MAC sono associati a questo host" +msgid "Failed to update/create image log" +msgstr "Impossibile aggiornare / creare log immagine" -#: lib/fog/fogpage.class.php:3966 -msgid "This host already exists" -msgstr "Questo host esiste già" +msgid "Failed to update/create task log" +msgstr "Impossibile aggiornare / creare registro dell'attività" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" -msgstr "risultati" +msgid "Failed to write file to disk" +msgstr "Impossibile scrivere file su disco" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" -msgstr "Righe totali" +msgid "Fields and types must have equal count" +msgstr "Campo e tipo devono avere lo stesso conteggio" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "Riuscito" +msgid "Fields not defined for this class" +msgstr "Campi del database definiti per questa classe" -#: lib/fog/fogpage.class.php:4154 -msgid "Schedule Power" -msgstr "Pianifica spegnimento" +msgid "File" +msgstr "File" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" -msgstr "Esegui immediatamente?" +#, fuzzy +msgid "File Integrity Management" +msgstr "Printer Management" -#: lib/fog/fogpage.class.php:4217 -msgid "Create new PM Schedule" -msgstr "Crea nuova Programmazione PM" +msgid "File System Information" +msgstr "File System Information" -#: lib/fog/fogpage.class.php:4227 -msgid "New power management task" -msgstr "Nuova attività di gestione energetica" +#, fuzzy +msgid "File does not exist" +msgstr "Il file non esiste" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "Nessun FOGPage Classe trovato per questo nodo" +msgid "File hash mismatch" +msgstr "Errore di hash del file" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "Impossibile per il rendering della pagina: nodo: %s , errore: %s" +msgid "File must be a csv" +msgstr "Il file deve essere un csv" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" -msgstr "Nessun valore di classe inviato" +msgid "File or path cannot be reached" +msgstr "Impossibile raggiungere il file o il percorso" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" -msgstr "Nessun nodo associato" +#, fuzzy +msgid "File size mismatch" +msgstr "Errore di dimensioni del file" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" -msgstr "FOGPage Aggiunta: %s , nodo: %s" +msgid "File upload stopped by an extension" +msgstr "File di caricamento fermato da una estensione" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" -msgstr "La finestra dati deve essere maggiore di 1" +msgid "Filesize" +msgstr "Dimensione del file" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "Selezionare un'immagine valida" +msgid "Filter" +msgstr "Filtro" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" -msgstr "C'è un host con un compito" +msgid "Finding any images associated" +msgstr "Trovare tutte le immagini associate" -#: lib/fog/group.class.php:452 -msgid "No hosts to task" -msgstr "Nessun host disponibile" +msgid "Finding any snapins associated" +msgstr "Individuazione di eventuali snaps associati" -#: lib/fog/group.class.php:475 -msgid "No hosts available to task" -msgstr "Nessun host disponibile per task" +msgid "For example, a GPO policy to push" +msgstr "Ad esempio, una policy GPO per spingere" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "L'immagine non è abilitato" +msgid "Force" +msgstr "Forza" -#: lib/fog/group.class.php:502 -msgid "Unable to find master Storage Node" -msgstr "Impossibile trovare il Nodo Archiviazione master" +msgid "Force task to start" +msgstr "Task da forzare a partire" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "Questo MAC appartiene a un altro host" +msgid "Form" +msgstr "Modulo" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" -msgstr "Impossibile aggiungere mac primario come mac aggiuntivo" +msgid "Forums are the most common and fastest method of getting" +msgstr "I forum sono il metodo più comune e veloce per ottenere" -#: lib/fog/host.class.php:498 -msgid "Cannot add a pre-existing primary mac" -msgstr "Non è possibile aggiungere un MAC primario preesistente" +msgid "Found" +msgstr "Trovato" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." -msgstr "Annullato a causa della nuova tasking." +msgid "Found a scheduled task that should run." +msgstr "" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "Impossibile creare Snapin lavoro" +msgid "Found a wake on lan task that should run." +msgstr "" -#: lib/fog/host.class.php:1371 -msgid "Could not find any" -msgstr "Impossibile trovare" +msgid "Found login information" +msgstr "Trovato informazioni di accesso" -#: lib/fog/host.class.php:1372 -msgid "nodes containing this image" -msgstr "nodi che contengono questa immagine" +#, fuzzy +msgid "Found snapin information" +msgstr "Trovato informazioni di accesso" -#: lib/fog/host.class.php:1538 -msgid "No valid Image defined for this host" -msgstr "Nessuna Imagine valida definita per questo host" +msgid "Free" +msgstr "" -#: lib/fog/host.class.php:1689 -msgid "No viable macs to use" -msgstr "Nessun MAC valido da usare" +msgid "Free Disk Space" +msgstr "Spazio libero su disco" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "L'indirizzo MAC è già in uso da un altro host" +msgid "Free Memory" +msgstr "Memoria libera" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 -msgid "snapin" -msgstr "snapin" +msgid "Friendly Name" +msgstr "Nome amichevole" -#: lib/fog/host.class.php:1768 -msgid "per host" -msgstr "per host" +#, fuzzy +msgid "Full History Export" +msgstr "Inventario Export completa" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "È consentito soltanto per assegnare" +msgid "Full Inventory Export" +msgstr "Inventario Export completa" -#: lib/fog/system.class.php:38 -msgid "Your system PHP Version is not sufficient" -msgstr "La versione del sistema PHP non è sufficiente" +msgid "Function" +msgstr "Funzione" -#: lib/fog/system.class.php:39 -msgid "You have version" -msgstr "Hai l'ultima versione" +msgid "Function does not exist" +msgstr "La funzione non esiste" -#: lib/fog/system.class.php:41 -msgid "version" -msgstr "versione" +msgid "GNU Gneral Public License" +msgstr "GNU Gneral Public License" -#: lib/fog/system.class.php:43 -msgid "is required" -msgstr "è richiesto" +msgid "General" +msgstr "Generale" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "Nessun gruppo di storage disponibile trovato" +msgid "General Information" +msgstr "Informazione generale" -#: lib/fog/powermanagementmanager.class.php:112 -msgid "Wake On Lan" -msgstr "Wake On LAN" +msgid "Generate" +msgstr "Genera" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "Porta TCP / IP della stampante" +msgid "Generic LDAP" +msgstr "LDAP Generico" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" -msgstr "iPrint stampante" +msgid "Getting image size for" +msgstr "Ottenere la dimensione dell'immagine per" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" -msgstr "stampante di rete" +msgid "Getting snapin hash and size for" +msgstr "Ottenere hash di snapin e dimensione per" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" -msgstr "CUPS Printer" +msgid "Goto task list" +msgstr "Andare all'elenco delle attività" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "cron" +msgid "Graph Enabled" +msgstr "Grafico Abilitato" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "Ritardato" +msgid "Graphical" +msgstr "grafico" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "Impossibile leggere il file tmp." +msgid "Green FOG" +msgstr "FOG verde" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "Errore di apertura del file DB" +msgid "Group" +msgstr "Gruppo" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "Errore l'esecuzione di query" +msgid "Group Associations" +msgstr "Associazioni di Grouppo" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "Exists deve essere boolean" +msgid "Group Auto Logout" +msgstr "Auto Logout di Groppo" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" -msgstr "Deve avere un nome per creare la tabella" +msgid "Group Bios Exit Type" +msgstr "Gruppo Bios Tipo Exit" -#: lib/fog/schema.class.php:325 -msgid "Fields and types must have equal count" -msgstr "Campo e tipo devono avere lo stesso conteggio" +msgid "Group Create Fail" +msgstr "Creazione Gruppo fallita" -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" -msgstr "Necessario il nome tabella da cancellare" +msgid "Group Create Success" +msgstr "Creazione Gruppo completata" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" -msgstr "Per favore selezionate un'opzione" +msgid "Group Description" +msgstr "Descrizione del gruppo" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." -msgstr "" +msgid "Group EFI Exit Type" +msgstr "Gruppo EFI Tipo Exit" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." -msgstr "" +msgid "Group FOG Client Module configuration" +msgstr "Configurazione Modulo di Gruppo FOG Client" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." -msgstr "" +msgid "Group Kernel" +msgstr "Gruppo kernel" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." -msgstr "" +msgid "Group Kernel Arguments" +msgstr "Argomenti Gruppo Kernel" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" -msgstr "ingresso numerico non valido" +msgid "Group Management" +msgstr "Direzione del Gruppo" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" -msgstr "Oggetto" +msgid "Group Member Attribute" +msgstr "Attributo membro del gruppo" -#: lib/fog/foggetset.class.php:73 -msgid "Array" -msgstr "array" +msgid "Group Name" +msgstr "Nome del gruppo" -#: lib/fog/foggetset.class.php:89 -msgid "Set Failed" -msgstr "Set fallito" +msgid "Group Power Management Remove" +msgstr "Rimozione del gruppo di gestione energetica" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" -msgstr "Tornando matrice all'interno chiave" +msgid "Group Primary Disk" +msgstr "Gruppo di dischi primario" -#: lib/fog/reportmaker.class.php:157 -msgid "Invalid Type" -msgstr "Tipo non valido" +msgid "Group Printers" +msgstr "Stampanti di gruppo" -#: lib/fog/reportmaker.class.php:333 -msgid "Export Complete" -msgstr "Esportazione Completata" +msgid "Group Product Key" +msgstr "Product Key Group" -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "File Icona non trovato" +msgid "Group Quick Deploy" +msgstr "Rapida distribuzione di gruppo" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "Nessuna icona trovato" +msgid "Group Screen Resolution" +msgstr "Gruppo risoluzione dello schermo" -#: lib/fog/uploadexception.class.php:50 -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "Il file caricato supera upload_max_filesize" +msgid "Group Search DN" +msgstr "Ricerca gruppo DN" -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" -msgstr "direttiva in php.ini" +msgid "Group Search DN did not return any results" +msgstr "Ricerca nel gruppo DN non ha restituito alcun risultato" -#: lib/fog/uploadexception.class.php:57 -msgid "The uploaded file exceeds the max_file_size" -msgstr "Il file caricato supera max_file_size" +msgid "Group Snapins" +msgstr "Gruppo Snapins" -#: lib/fog/uploadexception.class.php:58 -msgid "directive specified in the HTML form" -msgstr "direttiva indicata nel modulo HTML" +msgid "Group Update Fail" +msgstr "Aggiornamento gruppo non riuscito" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" -msgstr "Il file caricato è stato solo parzialmente caricato" +msgid "Group Update Success" +msgstr "Aggiornamento del gruppo completato" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "Nessun file è stato caricato" +msgid "Group added!" +msgstr "Gruppo aggiunto!" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" -msgstr "Manca una cartella temporanea" +msgid "Group general" +msgstr "Gruppo Generale" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" -msgstr "Impossibile scrivere file su disco" +msgid "Group image" +msgstr "Immagine gruppo" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" -msgstr "File di caricamento fermato da una estensione" +msgid "Group image association" +msgstr "Associazione immagine di gruppo" -#: lib/fog/uploadexception.class.php:79 -msgid "Unknown upload error occurred" -msgstr "Si è verificato errore di caricamento sconosciuto" +msgid "Group is not valid" +msgstr "Gruppo non valido" -#: lib/fog/uploadexception.class.php:80 -msgid "Return code" -msgstr "Codice di ritorno" +msgid "Group module settings" +msgstr "Impostazioni modulo del gruppo" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" -msgstr "utente connesso con successo" +msgid "Group update failed!" +msgstr "Aggiornamento del gruppo non riuscito!" -#: lib/fog/user.class.php:312 -msgid "user failed to login" -msgstr "utente non connesso" +msgid "Group updated!" +msgstr "Gruppo aggiornato!" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "Indirizzo IP cambiato" +msgid "Groups" +msgstr "gruppi" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" -msgstr "User Agent cambiato" +msgid "Groups are not allowed to schedule upload tasks" +msgstr "" +"I gruppi non sono autorizzati alla programmazione di attività di upload" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" -msgstr "Sessione alterato in modo improprio" +msgid "HD Device" +msgstr "dispositivo HD" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 -msgid "Node must be a string" -msgstr "Nodo deve essere una stringa" +msgid "HD Firmware" +msgstr "HD firmware" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" -msgstr "Gli elementi devono essere un array" +msgid "HD Model" +msgstr "HD Modello" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." -msgstr "Dati deve essere un array o un callable" +msgid "HD Serial" +msgstr "HD Serial" -#: lib/fog/fogsubmenu.class.php:313 -msgid "Info" -msgstr "Info" +msgid "Hard Disk Firmware" +msgstr "Hard Disk Firmware" -#: lib/fog/fogsubmenu.class.php:563 -msgid "Title must be a string" -msgstr "Titolo deve essere una stringa" +msgid "Hard Disk Model" +msgstr "Modello Hard Disk" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 -msgid "Link must be a string" -msgstr "Collegamento deve essere una stringa" +msgid "Hard Disk Serial Number" +msgstr "Hard Disk Serial Number" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" -msgstr "Seriale" +msgid "Hardware Information" +msgstr "Informazioni sull'hardware" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "connessione VNC aperta a" +msgid "Hash" +msgstr "Hash" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" -msgstr "VNC" +msgid "Have not locked the host for access" +msgstr "" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" -msgstr "FOG Client Installer" +msgid "Height must be 120 pixels." +msgstr "Altezza deve essere di 120 pixel." -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" -msgstr "Nuovo Cliente e utilità" +msgid "Help and Guide" +msgstr "Aiuto e guida" -#: lib/pages/clientmanagementpage.class.php:87 -msgid "The installers for the fog client" -msgstr "Installatori per fog client" +msgid "Hide Menu" +msgstr "Nascondi Menu" -#: lib/pages/clientmanagementpage.class.php:89 -msgid "Client Version" -msgstr "Versione client" +msgid "Hide Menu Timeout" +msgstr "Nascondi Timeout Menu" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" -msgstr "Cross platform" +msgid "History Graph" +msgstr "Grafico storico" -#: lib/pages/clientmanagementpage.class.php:98 -msgid "more secure" -msgstr "più sicuro" +#, fuzzy +msgid "History ID" +msgstr "Grafico storico" -#: lib/pages/clientmanagementpage.class.php:99 -msgid "faster" -msgstr "veloce" +#, fuzzy +msgid "History IP" +msgstr "Grafico storico" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" -msgstr "e molto più facile sul server" +#, fuzzy +msgid "History Info" +msgstr "Visualizza la cronologia per" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" -msgstr "Soprattutto quando la tua organizzazione ha molti host" +#, fuzzy +msgid "History Time" +msgstr "Grafico storico" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" -msgstr "Utilizzare questo per le installazioni di rete" +#, fuzzy +msgid "History User" +msgstr "Grafico storico" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" -msgstr "Ad esempio, una policy GPO per spingere" +msgid "Home" +msgstr "Casa" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "Questo file funziona solo in Windows" +msgid "Home Address" +msgstr "Indirizzo di casa" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" -msgstr "MSI" +msgid "Home Phone" +msgstr "Telefono di casa" -#: lib/pages/clientmanagementpage.class.php:119 -msgid "Network Installer" -msgstr "Installazione via rete" +msgid "Host" +msgstr "Host" -#: lib/pages/clientmanagementpage.class.php:126 -msgid "This is the recommended installer to use now" -msgstr "Questo è il programma di installazione consigliato da utilizzare ora" +msgid "Host AD Domain" +msgstr "Host AD Dominio" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" -msgstr "Può essere utilizzato in Windows" +msgid "Host AD Join" +msgstr "Host AD Join" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "Linux" +msgid "Host AD OU" +msgstr "Host AD OU" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" -msgstr "e Mac OS X" +msgid "Host Add to Group Fail" +msgstr "Aggiunta host al gruppo fallita" -#: lib/pages/clientmanagementpage.class.php:130 -msgid "Smart Installer" -msgstr "Smart Installer" +msgid "Host Add to Group Success" +msgstr "Aggiunta host al gruppo completata" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" -msgstr "Consigliato" +msgid "Host Associated" +msgstr "Host associato" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "Aiuto e guida" +msgid "Host Associated Snapins" +msgstr "Snapin associati a Host" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" -msgstr "Dove ottenere aiuto" +msgid "Host Auto Logout" +msgstr "Auto Logout Host" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" -msgstr "Utilizza i collegamenti qui sotto se ti serve assistenza" +msgid "Host Bios Exit Type" +msgstr "Host Bios Tipo Exit" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 -msgid "NOTE" -msgstr "NOTE" +msgid "Host Create Fail" +msgstr "Creazione Host fallita" -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" -msgstr "I forum sono il metodo più comune e veloce per ottenere" +msgid "Host Create Success" +msgstr "Creazione Host con successo" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" -msgstr "Aiuto con qualsiasi aspetto di FOG" +msgid "Host Created" +msgstr "Host Creato" -#: lib/pages/clientmanagementpage.class.php:161 -msgid "Detailed documentation" -msgstr "Documentazione dettagliata" +msgid "Host Desc" +msgstr "Host Desc" -#: lib/pages/clientmanagementpage.class.php:162 -msgid "It is primarily geared for the smart installer methodology now" -msgstr "È destinato principalmente alla metodologia Smart Installer ora" +msgid "Host Description" +msgstr "Host Descrizione" -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" -msgstr "FOG client Wiki" +msgid "Host EFI Exit Type" +msgstr "Host EFI Tipo Exit" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" -msgstr "Hai bisogno di più supporto" +msgid "Host FOG Client Module configuration" +msgstr "Configurazione del modulo client Host FOG" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" -msgstr "Qualcuno sarà in grado di aiutare in qualche modo" +msgid "Host HD Device" +msgstr "Host Dispositivo HD" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "Utilizza i forum per inviare problemi in modo da altri" +msgid "Host Hardware Inventory" +msgstr "Host inventario hardware" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "può vedere il problema e aiutare e / o utilizzare le soluzioni" +msgid "Host ID" +msgstr "ID Host" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" -msgstr "" -"La chat è anche disponibile all'interno del forum per una maggiore " -"assistenza in tempo reale" +msgid "Host Image" +msgstr "immagine host" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" -msgstr "FOG Forum" +msgid "Host Imaging History" +msgstr "Host Imaging Storia" -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" -msgstr "host in sospeso" +msgid "Host Init" +msgstr "Host Init" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "Click" +#, fuzzy +msgid "Host Invalid" +msgstr "Host Init" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "da revisionare" +msgid "Host Kernel" +msgstr "Host kernel" -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" -msgstr "Mac in attesa" +msgid "Host Kernel Arguments" +msgstr "Host argomenti del kernel" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" -msgstr "Server web" +msgid "Host List" +msgstr "Lista Host" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "Carico medio" +msgid "Host Listing Export" +msgstr "Esportazione delle liste host" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" -msgstr "sistema Uptime" +msgid "Host Location" +msgstr "Host Luoghi" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" -msgstr "panoramica del sistema" +msgid "Host Login History" +msgstr "Host Accesso Storia" -#: lib/pages/dashboardpage.class.php:254 -msgid "Server information at a glance." -msgstr "Informazioni sul server in un colpo d'occhio." +msgid "Host MAC" +msgstr "Host MAC" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" -msgstr "Gruppo di archiviazione di attività" +msgid "Host Management" +msgstr "Gestione Host" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" -msgstr "Attività corrente del gruppo selezionato" +#, fuzzy +msgid "Host Membership" +msgstr "membri" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" -msgstr "Utilizzo disco nodo di archiviazione" +msgid "Host Memory" +msgstr "Memoria Host" -#: lib/pages/dashboardpage.class.php:303 -msgid "Selected node's disk usage" -msgstr "Utilizzo del disco del nodo selezionato" +msgid "Host Name" +msgstr "Nome Host" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" -msgstr "Imaging Negli ultimi 30 giorni" +msgid "Host Pending MAC" +msgstr "Host attesa MAC" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "2 minuti" +msgid "Host Primary Disk" +msgstr "Host disco principale" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" -msgstr "10 minuti" +msgid "Host Primary MAC" +msgstr "Host primario MAC" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "30 minuti" +msgid "Host Printers" +msgstr "Stampanti host" -#: lib/pages/dashboardpage.class.php:407 -msgid "1 Hour" -msgstr "1 ora" +msgid "Host Product Key" +msgstr "Host Product Key" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" -msgstr "" +msgid "Host Product Keys" +msgstr "Tasti del prodotto host" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" -msgstr "" +msgid "Host Registration" +msgstr "registrazione Host" + +msgid "Host Screen Resolution" +msgstr "Risoluzione dello schermo Host" -#: lib/pages/dashboardpage.class.php:447 #, fuzzy -msgid "No Data Available" -msgstr "Non disponibile" +msgid "Host Site" +msgstr "Lista Host" -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "" +msgid "Host Snapin History" +msgstr "Storia Snapin Host" + +msgid "Host Snapins" +msgstr "Host Snapins" -#: lib/pages/dashboardpage.class.php:481 #, fuzzy -msgid "Node is unavailable" -msgstr "Percorso non disponibile" +msgid "Host Status" +msgstr "Stato" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" msgstr "" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" -msgstr "" +msgid "Host Unassociated Snapins" +msgstr "Snapin non associati a Host" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" -msgstr "Progetto FOG su Github" +msgid "Host Update Fail" +msgstr "Aggiornamento Host completato" -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" -msgstr "Client FOG su Github" +msgid "Host Update Failed" +msgstr "Aggiornamento Host riuscito" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" -msgstr "FOG Wiki" - -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" -msgstr "Donate alla nebbia" +msgid "Host Update Success" +msgstr "Aggiornamento host completato!" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" -msgstr "FOG Informazioni sulla versione" +msgid "Host Virus History" +msgstr "Cronologia virus dell'host" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" -msgstr "versioni del kernel" +msgid "Host added!" +msgstr "Host aggiunto!" -#: lib/pages/fogconfigurationpage.class.php:145 -msgid "FOG Version" -msgstr "Versione FOG" +msgid "Host approval failed." +msgstr "approvazione Host riuscita." -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" -msgstr "Informazioni FOG licenza" +msgid "Host approved" +msgstr "Host approvato" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" -msgstr "GNU Gneral Public License" +msgid "Host description" +msgstr "Descrizione host" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" -msgstr "Questa sezione ti consente di aggiornare" +msgid "Host general" +msgstr "Generale Host" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" -msgstr "il kernel Linux che verrà usato" +msgid "Host is already a member of an active task" +msgstr "Host è già membro di un compito attivo" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" -msgstr "avvia i computer client" +msgid "Host is not valid" +msgstr "Host non è valido" -#: lib/pages/fogconfigurationpage.class.php:220 -msgid "In FOG" -msgstr "In FOG" +msgid "Host module settings" +msgstr "Impostazioni del modulo host" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" -msgstr "questo kernel attende tutti i driver per il computre client" +msgid "Host name" +msgstr "Nome host" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" -msgstr "pertanto se non si è in grado di abbiare un client tu puoi" +msgid "Host pairings" +msgstr "Abbinamenti host" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" -msgstr "aggiornare ad un nuovo kernel che abbia maggiori driver built in" +msgid "Host printer configuration" +msgstr "Configurazione della stampante host" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" -msgstr "Questo processo di installazione impiegherà alcuni minuti" +msgid "Host token is currently in use" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" -msgstr "come FOG proverà ad andare in internet" +msgid "Host updated!" +msgstr "Host aggiornato!" -#: lib/pages/fogconfigurationpage.class.php:226 -msgid "to get the requested Kernel" -msgstr "pr ottenere il Kernel richiesto" +msgid "Host/Group Name" +msgstr "Host / Nome gruppo" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" -msgstr "se il processo sembra bloccato portate pazienza" +msgid "Hostname" +msgstr "Nome host" -#: lib/pages/fogconfigurationpage.class.php:279 -msgid "Downloading Kernel" -msgstr "Downloading Kernel" +msgid "Hostname / IP" +msgstr "Hostname / IP" -#: lib/pages/fogconfigurationpage.class.php:285 -msgid "Starting process" -msgstr "Avvio processo" +msgid "Hostname Changer" +msgstr "Nome host Changer" -#: lib/pages/fogconfigurationpage.class.php:307 -msgid "Save Kernel" -msgstr "Save Kernel" +msgid "Hosts" +msgstr "host" -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" -msgstr "Nome kernel" +msgid "Hosts Associated" +msgstr "Host Associati" -#: lib/pages/fogconfigurationpage.class.php:332 -msgid "Install Kernel" -msgstr "Installa Kernel" +msgid "Hosts do not have the same image assigned" +msgstr "Host non hanno la stessa immagine assegnato" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 -msgid "Install" -msgstr "Installa" +msgid "Hosts in task" +msgstr "Host in attività" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "Menu di configurazione di avvio PXE FOG" +msgid "Hot Key Enabled" +msgstr "Tasti Hot Key attivati" -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" -msgstr "Colori principali" +msgid "Hot Key to use" +msgstr "Tasti Hot Key da usare" -#: lib/pages/fogconfigurationpage.class.php:465 -msgid "Option specifies the color settings of the main menu items" -msgstr "" -"Opzione consente di specificare le impostazioni di colore degli elementi " -"principali" +msgid "Hour value is not valid" +msgstr "il valore ora non è valido" -#: lib/pages/fogconfigurationpage.class.php:469 -msgid "Valid Host Colors" -msgstr "Colori host validi" +msgid "Hourly" +msgstr "ogni ora" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 -msgid "Option specifies the color text on the menu if the host" -msgstr "Opzione specifica il colore del testo se l'host" +msgid "I am not the fog web server" +msgstr "Io non sono il server web fog" -#: lib/pages/fogconfigurationpage.class.php:479 -msgid "is valid" -msgstr "è valido" +msgid "I am the group manager" +msgstr "Sono il responsabile del gruppo" -#: lib/pages/fogconfigurationpage.class.php:483 -msgid "Invalid Host Colors" -msgstr "Colori host non validi" +msgid "I have read" +msgstr "ho letto" -#: lib/pages/fogconfigurationpage.class.php:494 -msgid "is invalid" -msgstr "Non è valido" +msgid "I.M.C." +msgstr "I.M.C." -#: lib/pages/fogconfigurationpage.class.php:498 -msgid "Main pairings" -msgstr "Accoppiamenti principali" +msgid "I.M.I." +msgstr "I.M.I." -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" -msgstr "Opzione specifica le accoppiamenti dei colori per" +msgid "ID" +msgstr "ID" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" -msgstr "presente e dove/come devono essere visualizzati" +msgid "ID Must be set to edit" +msgstr "ID deve essere impostato per modificare" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" -msgstr "Abbinamenti principali fallback" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" -msgstr "L'opzione specifica le accoppiamenti come fallback" +msgid "IP Address" +msgstr "Indirizzo IP" -#: lib/pages/fogconfigurationpage.class.php:526 -msgid "Host pairings" -msgstr "Abbinamenti host" +msgid "IP Address Changed" +msgstr "Indirizzo IP cambiato" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "Opzione specifica le associazioni dopo controlli host" +msgid "IP Passed is incorrect" +msgstr "IP Passato è corretto" -#: lib/pages/fogconfigurationpage.class.php:538 -msgid "Menu Timeout" -msgstr "Timeout menu" +msgid "Icon" +msgstr "Icona" -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" -msgstr "in secondi" +msgid "Icon File not found" +msgstr "File Icona non trovato" -#: lib/pages/fogconfigurationpage.class.php:549 -msgid "Option specifies the menu timeout" -msgstr "L'opzione specifica il timeout del menu" +msgid "If a new module is published the client will" +msgstr "Se viene pubblicato un nuovo modulo, il client farà" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "Questo viene impostato in secondi e causa l'opzione predefinita" +msgid "If action of ask or get" +msgstr "Se azione di chiedere o ottenere" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "per essere avviato se non è premuto nessun tasto quando il menu è" +msgid "If credentials are correct" +msgstr "Se le credenziali sono corrette" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "aperto" +msgid "If none is specified" +msgstr "Se niente specificato" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" -msgstr "File di sfondo menu" +msgid "If off" +msgstr "Se disabilitato" -#: lib/pages/fogconfigurationpage.class.php:567 -msgid "Option specifies the background file to use" -msgstr "L'opzione specifica il file di sfondo da utilizzare" +msgid "If on" +msgstr "Se abilitato" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" -msgstr "per il menu di sfondo" +msgid "If there is not a task set" +msgstr "Non c'è alcuna attività impostata" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 -msgid "Make Changes?" -msgstr "Applicare cambiamenti?" +msgid "If this is an upgrade" +msgstr "Se questo è un aggiornamento" -#: lib/pages/fogconfigurationpage.class.php:598 -msgid "iPXE Menu Settings" -msgstr "Impostazioni del menu iPXE" +msgid "If you add a blank node" +msgstr "Se aggiungi un nodo vuoto" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "Colori del menu, accoppiamenti, impostazioni" +msgid "If you are looking to configure settings for a specific host" +msgstr "Se si desidera configurare le impostazioni di un host specifico" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" -msgstr "Nessun Menu" +msgid "If you need help understanding what items are needed please" +msgstr "" +"Se hai bisogno di aiuto per capire quali elementi sono necessari, per favore" -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" -msgstr "L'opzione si imposta se ci sarà anche" +msgid "If you would like to backup your" +msgstr "Se vuoi eseguire il backup del tuo" -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" -msgstr "c'è la presenza di un menu" +msgid "Ignore MAC on Client" +msgstr "Ignora MAC sul client" -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" -msgstr "verso i sistemi client" +msgid "Ignore MAC on Image" +msgstr "Ignorare MAC sull'immagine" -#: lib/pages/fogconfigurationpage.class.php:631 -msgid "If there is not a task set" -msgstr "Non c'è alcuna attività impostata" +msgid "Image" +msgstr "Immagine" -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" -msgstr "avvia dal primo dispositivo" +msgid "Image Associated: " +msgstr "Immagine Associata: " -#: lib/pages/fogconfigurationpage.class.php:635 -msgid "if there is a task" -msgstr "Se c'è una attività" +msgid "Image Association" +msgstr "Associazione immagine" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" -msgstr "esegue una attività" +msgid "Image Associations" +msgstr "Associazioni di immagini" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" -msgstr "Nascondi Menu" +msgid "Image Create Fail" +msgstr "Creazione immagine fallita" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" -msgstr "L'opzione imposta la sequenza di tasti" +msgid "Image Create Success" +msgstr "Creazione immagine riuscita" -#: lib/pages/fogconfigurationpage.class.php:649 -msgid "If none is specified" -msgstr "Se niente specificato" +msgid "Image Definition" +msgstr "immagine Definizione" -#: lib/pages/fogconfigurationpage.class.php:651 -msgid "ESC is defaulted" -msgstr "ESC è predefinito" +msgid "Image Desc" +msgstr "immagine Desc" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" -msgstr "Accedi con le credenziali FOG per vedere il menu" +msgid "Image Description" +msgstr "Descrizione dell'immagine" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" -msgstr "Altrimenti eseguirà il boot normalmente" +msgid "Image Enabled" +msgstr "immagine Abilitato" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" -msgstr "Nascondi Timeout Menu" +msgid "Image General" +msgstr "Immagine principale" -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "Opzione specifica il valore di timeout per il sistema di menu nascosto" +msgid "Image History" +msgstr "Storia immagine" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" -msgstr "Boot Sequence chiave" +msgid "Image ID" +msgstr "ID immagine" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" -msgstr "L'opzione imposta la sequenza di tasti ipxe per entrare nel menu" +msgid "Image Management" +msgstr "Gestione immagine" -#: lib/pages/fogconfigurationpage.class.php:678 -msgid "access to the hidden menu system" -msgstr "accesso al sistema di menu nascosto" +msgid "Image Manager" +msgstr "Image manager" -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" -msgstr "Nascondi Menu/Nessuna impostazione del menu" +#, fuzzy +msgid "Image Membership" +msgstr "membri" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" -msgstr "Uscita Tipo disco rigido" +msgid "Image Name" +msgstr "Nome immagine" -#: lib/pages/fogconfigurationpage.class.php:721 -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "L'opzione specifica il metodo di uscita boot legacy che utilizza ipxe" +msgid "Image Path" +msgstr "Percorso immagini" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "Uscita Tipo disco rigido (EFI)" +msgid "Image Replicator" +msgstr "immagine Replicator" -#: lib/pages/fogconfigurationpage.class.php:729 -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "" -"L'opzione specifica il metodo di uscite di boot di efi che utilizzerà ipxe" +msgid "Image Size" +msgstr "Dimensioni immagine" -#: lib/pages/fogconfigurationpage.class.php:758 -msgid "Boot Exit settings" -msgstr "Impostazioni di uscita del Boot" +msgid "Image Size: ON CLIENT" +msgstr "Dimensioni immagine: ON CLIENT" -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" -msgstr "Accesso Menu avanzato" +msgid "Image Size: ON SERVER" +msgstr "Dimensioni immagine: SU SERVER" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "L'opzione sotto rafforza il sistema di login" +msgid "Image Storage Groups" +msgstr "Groppo di archiviazione immagini" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" -msgstr "per i parametri di menu avanzati" +msgid "Image Task Completed" +msgstr "Attività di immagine completata" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "Se disabilitato" +msgid "Image Transfer Log" +msgstr "Immagine registro trasferimenti" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" -msgstr "nessun login appare" +msgid "Image Type" +msgstr "Tipo di immagine" -#: lib/pages/fogconfigurationpage.class.php:782 -msgid "If on" -msgstr "Se abilitato" +msgid "Image Update Fail" +msgstr "Aggiornamento immagine fallito" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" -msgstr "attiverà il login per accedere alle avanzate" +msgid "Image Update Success" +msgstr "Modifica immagine riuscita" -#: lib/pages/fogconfigurationpage.class.php:786 -msgid "menu system" -msgstr "menu di sistema" +msgid "Image Used" +msgstr "Immagine utilizzata" -#: lib/pages/fogconfigurationpage.class.php:790 -msgid "Advanced menu command" -msgstr "Comando menu avanzato" +msgid "Image added!" +msgstr "Immagine aggiunta!" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" -msgstr "Aggiungi qualunque testo personalizzato desideri" +msgid "Image is not enabled" +msgstr "L'immagine non è abilitato" -#: lib/pages/fogconfigurationpage.class.php:800 -msgid "the advanced menu to use" -msgstr "Il menu avanzato da utilizzare" +msgid "Image is not valid" +msgstr "L'immagine non è valida" -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" -msgstr "Questo è il comando ipxe script per operare con" +msgid "Image is protected and cannot be deleted" +msgstr "L'immagine è protetta e non può essere cancellato" -#: lib/pages/fogconfigurationpage.class.php:831 -msgid "Advanced Menu settings" -msgstr "Impostazioni menu avanzate" +msgid "Image to DMI Mappings" +msgstr "Immagine alle associazioni DMI" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" -msgstr "Non valido Valore Timeout" +msgid "Image update failed!" +msgstr "Modifica immagine fallita" -#: lib/pages/fogconfigurationpage.class.php:974 -msgid "iPXE Settings updated successfully!" -msgstr "Impostazioni iPXE aggiornate correttamente!" +msgid "Image updated!" +msgstr "immagine aggiornata" -#: lib/pages/fogconfigurationpage.class.php:975 -msgid "iPXE Update Success" -msgstr "Riuscito iPXE Update" +msgid "Imaged" +msgstr "imaged" -#: lib/pages/fogconfigurationpage.class.php:982 -msgid "iPXE Update Fail" -msgstr "Fallito iPXE Update" +msgid "Imaged By" +msgstr "Imaged by" -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "Questa voce consente di modificare tutte le voci di menu iPXE" +msgid "Imaged For" +msgstr "Immagini per" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" -msgstr "Vedere la misura" +msgid "Imaged From" +msgstr "Immagini da" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" -msgstr "Mente voi" +msgid "Images" +msgstr "immagini" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" -msgstr "La sintassi di iPXE è molto finicky quando si tratta di modifica" +#, fuzzy +msgid "Imaging Completed" +msgstr "Attività di immagine completata" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" -msgstr "" -"Se hai bisogno di aiuto per capire quali elementi sono necessari, per favore" +#, fuzzy +msgid "Imaging Duration" +msgstr "Imaging Log" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" -msgstr "Vedere i forum o la ricerca dei comandi e degli script disponibili" +msgid "Imaging Log" +msgstr "Imaging Log" -#: lib/pages/fogconfigurationpage.class.php:1026 -msgid "from" -msgstr "da" +msgid "Imaging Over the last 30 days" +msgstr "Imaging Negli ultimi 30 giorni" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 -msgid "Menu Item" -msgstr "Elemento del menu:" +#, fuzzy +msgid "Imaging Started" +msgstr "Snapin Stato" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 -msgid "Parameters" -msgstr "parametri:" +msgid "Import" +msgstr "Importare" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 -msgid "Boot Options" -msgstr "Opzioni di avvio:" +msgid "Import Accesscontrols" +msgstr "Importa controllo accessi" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 -msgid "Default Item" -msgstr "Elemento predefinito:" +msgid "Import CSV" +msgstr "Importa CSV" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 -msgid "Hot Key Enabled" -msgstr "Tasti Hot Key attivati" +msgid "Import CSV?" +msgstr "Importa CSV?" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 -msgid "Hot Key to use" -msgstr "Tasti Hot Key da usare" +msgid "Import Configuration" +msgstr "Importa configurazione" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 -msgid "Menu Show with" -msgstr "Mostra menu con:" +msgid "Import Database" +msgstr "Importa database" -#: lib/pages/fogconfigurationpage.class.php:1161 -msgid "Delete Menu Item" -msgstr "Elimina il menu" +msgid "Import Database?" +msgstr "Importa database?" -#: lib/pages/fogconfigurationpage.class.php:1310 -msgid "iPXE Item Update Success" -msgstr "Elemento iPXE aggiornato con successo" +msgid "Import FOG Reports" +msgstr "Importa FOG Report" -#: lib/pages/fogconfigurationpage.class.php:1328 -msgid "successfully removed!" -msgstr "rimosso con successo" +msgid "Import Failed" +msgstr "Importazione fallita" -#: lib/pages/fogconfigurationpage.class.php:1329 -msgid "iPXE Item Remove Success" -msgstr "Elemento iPXE rimosso con successo" +msgid "Import Groups" +msgstr "Gruppi di importazione" -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "Crea nuovo iPXE Menu Entry" +msgid "Import Hosts" +msgstr "Importa Host" -#: lib/pages/fogconfigurationpage.class.php:1488 -msgid "New iPXE Menu" -msgstr "Nuovo menu iPXE" +msgid "Import Images" +msgstr "Importa immagini" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "Voce di menu o il titolo non può essere vuoto" +msgid "Import LDAPs" +msgstr "Importare LDAP" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" -msgstr "Una descrizione deve essere impostato" +msgid "Import Locations" +msgstr "Importa luoghi" -#: lib/pages/fogconfigurationpage.class.php:1559 -msgid "iPXE Item create failed!" -msgstr "Creazione elemento iPXE non riuscita!" +msgid "Import Printers" +msgstr "Stampanti di importazione" -#: lib/pages/fogconfigurationpage.class.php:1575 -msgid "iPXE Item added!" -msgstr "Elemento iPXE aggiunto!" +msgid "Import Report?" +msgstr "Importa Report?" -#: lib/pages/fogconfigurationpage.class.php:1576 -msgid "iPXE Item Create Success" -msgstr "Creazione elemento iPXE riuscita" +msgid "Import Reports" +msgstr "Importa Report" -#: lib/pages/fogconfigurationpage.class.php:1584 -msgid "iPXE Item Create Fail" -msgstr "Creazione elemento iPXE non riuscita!" +msgid "Import Sites" +msgstr "importa Siti" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "FOG Servizio Clienti Updater" +msgid "Import Snapins" +msgstr "Importa Snapins" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" -msgstr "Nome Modulo" +#, fuzzy +msgid "Import Subnetgroups" +msgstr "Gruppi di importazione" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" -msgstr "Modulo MD5" +msgid "Import Successful" +msgstr "Importazione riuscita" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" -msgstr "Tipo di modulo" +msgid "Import Task States" +msgstr "Importa Stato delle attività" -#: lib/pages/fogconfigurationpage.class.php:1666 -msgid "Current files" -msgstr "File corrente" +msgid "Import Task Types" +msgstr "Importa tipi di attività" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 -msgid "NOTICE" -msgstr "AVVISO" +msgid "Import Users" +msgstr "Importa utenti" -#: lib/pages/fogconfigurationpage.class.php:1672 -msgid "The below items are only used for the old client." -msgstr "" -"Gli elementi riportati di seguito sono utilizzati solo per il vecchio client." +msgid "Import WOLBroadcasts" +msgstr "Importa WOLBroadcasts" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" -msgstr "I vecchi client sono i client che si preventano con FOG" - -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" -msgstr "Versione 1.2.0. o precedente" +msgid "Import Windows Keys" +msgstr "Importa chiavi Windows" -#: lib/pages/fogconfigurationpage.class.php:1678 -msgid "This section allows you to update the modules and" -msgstr "Questa sezione consente di aggiornare i moduli e" +msgid "In" +msgstr "In" -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." -msgstr "file di configurazione eseguiti sui computer client." +msgid "In FOG" +msgstr "In FOG" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" -msgstr "I clienti effettueranno il check-in con il server di tanto" +msgid "Included Items" +msgstr "Elementi inclusi" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." -msgstr "in tanto per vedere se è stato pubblicato un nuovo modulo." +msgid "Info" +msgstr "Info" -#: lib/pages/fogconfigurationpage.class.php:1686 -msgid "If a new module is published the client will" -msgstr "Se viene pubblicato un nuovo modulo, il client farà" +msgid "Information" +msgstr "Informazioni" -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" -msgstr "scaricare il modulo e utilizzarlo nella successiva" +msgid "Init" +msgstr "Init" -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." -msgstr "volta che il servizio viene avviato." +msgid "Initial Template" +msgstr "Modello iniziale" -#: lib/pages/fogconfigurationpage.class.php:1710 -msgid "Upload file" -msgstr "Caricare un file" +#, fuzzy +msgid "Initrd Name" +msgstr "Nome sito" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 -msgid "Delete Selected Items" -msgstr "Eliminare gli elementi selezionati" +#, fuzzy +msgid "Initrd Update" +msgstr "Data non valida" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 -msgid "Make Changes" -msgstr "Applicare cambiamenti" +msgid "Install" +msgstr "Installa" -#: lib/pages/fogconfigurationpage.class.php:1795 -msgid "Item removed successfully!" -msgstr "Elemento rimosso con successo!" +msgid "Install / Update Failed!" +msgstr "Installare / Aggiornamento non riuscito!" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 -msgid "Client Modules Change Success" -msgstr "Moduli client modificato con successo" +msgid "Install / Update Successful!" +msgstr "Installare / Aggiornamento di successo!" -#: lib/pages/fogconfigurationpage.class.php:1803 -msgid "No file uploaded!" -msgstr "Nessun file caricato" +#, fuzzy +msgid "Install Initrd" +msgstr "Installa" -#: lib/pages/fogconfigurationpage.class.php:1849 -msgid "Modules added/updated successfully!" -msgstr "Moduli aggiunti/aggiornati con successo!" +msgid "Install Kernel" +msgstr "Installa Kernel" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" -msgstr "Modulo Client fallimento di cambiamento" +msgid "Install Plugin" +msgstr "Installare plugin" -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" -msgstr "MAC Listing Indirizzo Produttore" +msgid "Install Plugins" +msgstr "installare plugin" -#: lib/pages/fogconfigurationpage.class.php:1881 -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" -msgstr "" -"Questa sezione ti consente di importare produttori di indirizzi MAC " -"conosciuti nel database FOG per facilitare l'identificazione" +msgid "Install/Update" +msgstr "Installa/Aggiorna" -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" -msgstr "Current Records" +msgid "Install/Update Now" +msgstr "Installa/Aggiorna adesso" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" -msgstr "Eliminare MAC" +msgid "Installed Plugins" +msgstr "plugin installati" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" -msgstr "aggiornamento MAC" +msgid "Integrity Settings" +msgstr "Impostazioni di integrità" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" -msgstr "Impostazioni di sistema della nebbia" +msgid "Interface" +msgstr "Interfaccia" -#: lib/pages/fogconfigurationpage.class.php:2073 -msgid "This section allows you to customize or alter" -msgstr "Questa sezione consente di personalizzare o modificare " +msgid "Interface not ready, waiting for it to come up" +msgstr "Interfaccia non pronta, in attesa che venga visualizzata" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" -msgstr "il modo in cui funziona FOG" +msgid "Invalid" +msgstr "Non valido" -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "" -"Si prega di essere molto attenti a modificare una delle seguenti impostazioni" +msgid "Invalid Class" +msgstr "Classe non valido" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" -msgstr "poiché possono causare problemi difficili da risolvere" +msgid "Invalid File" +msgstr "File non valido" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" -msgstr "Espandi tutti" +msgid "Invalid Folder" +msgstr "cartella non valido" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 -msgid "Partclone Gzip" -msgstr "Partclone Gzip" +msgid "Invalid Host" +msgstr "Host non valido" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "Partclone Gzip diviso per 200MiB" +msgid "Invalid Host Colors" +msgstr "Colori host non validi" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" -msgstr " Partclone non compressa" +msgid "Invalid ID passed" +msgstr "ID non valido passato" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 -msgid "Partclone Uncompressed Split 200MiB" -msgstr "Partclone non compressa diviso per 200MiB" +msgid "Invalid IP" +msgstr "IP non valido" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 -msgid "Partclone Zstd" -msgstr "Partclone Zstd" +msgid "Invalid Login" +msgstr "Login non valido" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 -msgid "Partclone Zstd Split 200MiB" -msgstr "Partclone zstd diviso per 200MiB" +msgid "Invalid MAC Address!" +msgstr "Non valido Indirizzo MAC!" -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" -msgstr "Nessun immagine specificata" +msgid "Invalid Multicast Session" +msgstr "Sessione multicast non valida" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 -msgid "Reset Token" -msgstr "Reset Token" +msgid "Invalid Plugin Passed" +msgstr "Plugin non valido passato" -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" -msgstr "Nessuna immagine specificata" +msgid "Invalid Server Information!" +msgstr "Information Server non valido!" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." -msgstr "Larghezza deve essere di 650 pixel." +msgid "Invalid Snapin" +msgstr "Snapin non valido" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "Altezza deve essere di 120 pixel." +msgid "Invalid Snapin Tasking" +msgstr "Non valido Snapin Tasking" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 -msgid "Settings successfully stored!" -msgstr "Le impostazioni sono state memorizzate correttamente!" +msgid "Invalid Snapin Tasking object" +msgstr "Oggetto Snapin Tasking non valido" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 -msgid "Settings Update Success" -msgstr "Modifica Impostazioni completata" +msgid "Invalid Storage Group" +msgstr "Gruppo di archiviazione non valido" -#: lib/pages/fogconfigurationpage.class.php:2874 -msgid "Service Setting Update Success" -msgstr "Agiormaento Impostazioni del servizio completato" +msgid "Invalid Storage Node" +msgstr "Non valido Storage Node" -#: lib/pages/fogconfigurationpage.class.php:2878 -msgid "Rebranding element has been successfully updated!" -msgstr "L'elemento Rebranding è stato aggiornato con successo!" +msgid "Invalid Task Type" +msgstr "Non valido Tipo Task" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 -msgid "Settings Update Fail" -msgstr "Aggiornamento Impostazioni non riuscito" +#, fuzzy +msgid "Invalid Tasking" +msgstr "Compito non valido!" -#: lib/pages/fogconfigurationpage.class.php:2896 -msgid "Service Setting Update Failed" -msgstr "Aggiornamento impostazione servizio non riuscito" +msgid "Invalid Timeout Value" +msgstr "Non valido Valore Timeout" -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" -msgstr "Service master" +msgid "Invalid Type" +msgstr "Tipo non valido" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" -msgstr "Pianificatore" +msgid "Invalid data being parsed" +msgstr "Dati non validi parsati" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" -msgstr "immagine Replicator" +msgid "Invalid data found" +msgstr "Sono stati trovati dati non validi" -#: lib/pages/fogconfigurationpage.class.php:3052 -msgid "Image Size" -msgstr "Dimensioni immagine" +msgid "Invalid date" +msgstr "Data non valida" -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" -msgstr "Snapin Replicator" +msgid "Invalid image" +msgstr "immagine non valido" -#: lib/pages/fogconfigurationpage.class.php:3070 -msgid "Snapin Hash" -msgstr "Hash snap-in" +msgid "Invalid image assigned to host" +msgstr "immagine non valido assegnato ad ospitare" -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" -msgstr "Host ping" +msgid "Invalid key being added" +msgstr "chiave non valido viene aggiunto" -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" -msgstr "Immagine registro trasferimenti" +msgid "Invalid key being destroyed" +msgstr "Chiave non valida distrutta" -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" -msgstr "Snapin registro trasferimenti" +msgid "Invalid key being removed" +msgstr "Chiave non valida rimossa" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" -msgstr "FOG Log Viewer" +msgid "Invalid key being requested" +msgstr "chiave non valida richiesta" -#: lib/pages/fogconfigurationpage.class.php:3235 -msgid "Lines" -msgstr "Linee" +msgid "Invalid key being set" +msgstr "chiave non valido stato impostato" -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" -msgstr "Invertire il file: (più recente in alto)" +msgid "Invalid method called" +msgstr "metodo valido chiamato" -#: lib/pages/fogconfigurationpage.class.php:3251 -msgid "Pause" -msgstr "Pausa" +msgid "Invalid numeric entry" +msgstr "ingresso numerico non valido" -#: lib/pages/fogconfigurationpage.class.php:3270 -msgid "Configuration Import/Export" -msgstr "Configurazione Importazione/Esportazione" +msgid "Invalid object to try tasking" +msgstr "tipo di oggetto attività non valido" -#: lib/pages/fogconfigurationpage.class.php:3290 -msgid "Export Database?" -msgstr "Esporta database?" +msgid "Invalid object type passed" +msgstr "tipo di oggetto non valido passato" -#: lib/pages/fogconfigurationpage.class.php:3309 -msgid "Export Database" -msgstr "Esporta database" +msgid "Invalid operational mode" +msgstr "modalità operativa non valido" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 -msgid "Import Database?" -msgstr "Importa database?" +msgid "Invalid scheduling type" +msgstr "Tipo di scheduling non valido" -#: lib/pages/fogconfigurationpage.class.php:3351 -msgid "Import Database" -msgstr "Importa database" +msgid "Invalid snapin" +msgstr "Snapin non valido" -#: lib/pages/fogconfigurationpage.class.php:3399 -msgid "Import Successful" -msgstr "Importazione riuscita" +msgid "Invalid task" +msgstr "Attività non valida" -#: lib/pages/fogconfigurationpage.class.php:3403 -msgid "Database imported and added successfully!" -msgstr "Database importati e aggiunti con successo" +msgid "Invalid task id" +msgstr "ID attività non valido" -#: lib/pages/fogconfigurationpage.class.php:3414 -msgid "Import Failed" -msgstr "Importazione fallita" +msgid "Invalid task id sent" +msgstr "ID attività non valido inviato" -#: lib/pages/fogconfigurationpage.class.php:3418 -msgid "There were errors during import!" -msgstr "Si sono verificati errori durante l'importazione" +msgid "Invalid tasking type passed" +msgstr "È passato il tipo di attività non valido" -#: lib/pages/fogconfigurationpage.class.php:3427 -msgid "Database Reverted" -msgstr "Database ripristinato" +msgid "Invalid tasking!" +msgstr "Compito non valido!" -#: lib/pages/fogconfigurationpage.class.php:3430 -msgid "Database changes reverted!" -msgstr "Modifiche al database ripristinate" +msgid "Invalid token passed" +msgstr "Token non valido passato" -#: lib/pages/fogconfigurationpage.class.php:3437 -msgid "Database Failure" -msgstr "Fallimento del database" +#, fuzzy +msgid "Invalid token passed for host" +msgstr "Token non valido passato" -#: lib/pages/fogconfigurationpage.class.php:3441 -msgid "Errors on revert detected!" -msgstr "Errori su Revert rilevati" +msgid "Invalid type, merge to add, diff to remove" +msgstr "Tipo non valido, unione da aggiunta, differenza da rimuovere" -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" -msgstr "Nuovo gruppo" +msgid "Invalid user and/or channel passed" +msgstr "utente non valido e / o il canale passato" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" -msgstr "Nome del gruppo" +msgid "Inventory" +msgstr "Inventario" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" -msgstr "Descrizione del gruppo" +msgid "Inventory ID" +msgstr "ID inventario" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" -msgstr "Gruppo kernel" +msgid "Is Advanced" +msgstr "è avanzata" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" -msgstr "Argomenti Gruppo Kernel" +msgid "Is Enabled" +msgstr "È abilitato" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" -msgstr "Gruppo di dischi primario" +msgid "Is Graph Enabled" +msgstr "Viene attivato Grafico" -#: lib/pages/groupmanagementpage.class.php:298 -msgid "A group name is required!" -msgstr "È richiesto un nome di gruppo!" +msgid "Is Group" +msgstr "Il gruppo è" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 -msgid "A group already exists with this name!" -msgstr "Esiste già un gruppo con questo nome!" +msgid "Is Master Node" +msgstr "È padrone Nodo" -#: lib/pages/groupmanagementpage.class.php:313 -msgid "Add group failed!" -msgstr "Aggiunta gruppo non riuscito!" +msgid "Is Pack" +msgstr "È Pack" -#: lib/pages/groupmanagementpage.class.php:318 -msgid "Group added!" -msgstr "Gruppo aggiunto!" +msgid "Is Restricted User " +msgstr "È Utente Limitato" -#: lib/pages/groupmanagementpage.class.php:319 -msgid "Group Create Success" -msgstr "Creazione Gruppo completata" +msgid "Is a" +msgstr "È un" -#: lib/pages/groupmanagementpage.class.php:327 -msgid "Group Create Fail" -msgstr "Creazione Gruppo fallita" +msgid "Is restricted" +msgstr "È limitato" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" -msgstr "Product Key Group" +msgid "It can be used on Windows" +msgstr "Può essere utilizzato in Windows" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "Gruppo Bios Tipo Exit" +msgid "It is primarily geared for the smart installer methodology now" +msgstr "È destinato principalmente alla metodologia Smart Installer ora" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "Gruppo EFI Tipo Exit" +msgid "It operates by getting the max bandwidth setting of the node" +msgstr "" +"funziona ottenendo l'impostazione massima della larghezza di banda del nodo" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" -msgstr "Remposta dati crittografia" +msgid "It tells the client to download snapins from" +msgstr "indica al client di scaricare gli snapins da" -#: lib/pages/groupmanagementpage.class.php:562 -msgid "Group general" -msgstr "Gruppo Generale" +msgid "It will operate based on the fields the area typically requires" +msgstr "Funzionerà in base ai campi che l'area richiede in genere" -#: lib/pages/groupmanagementpage.class.php:611 -msgid "Group image" -msgstr "Immagine gruppo" +msgid "Item removed successfully!" +msgstr "Elemento rimosso con successo!" -#: lib/pages/groupmanagementpage.class.php:644 -msgid "Group image association" -msgstr "Associazione immagine di gruppo" +msgid "Items must be an array" +msgstr "Gli elementi devono essere un array" -#: lib/pages/groupmanagementpage.class.php:698 -msgid "Group Power Management Remove" -msgstr "Rimozione del gruppo di gestione energetica" +msgid "Job Create Date" +msgstr "Job Data di creazione" -#: lib/pages/groupmanagementpage.class.php:703 -msgid "Delete all PM tasks?" -msgstr "Cancellare tutte le attività PM?" +msgid "Job Create Time" +msgstr "Job creare il tempo" -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" -msgstr "stampante Alias" +msgid "Join Domain after deploy" +msgstr "Unire il dominio dopo deploy" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" -msgstr "Tipo stampante" +msgid "Kernel" +msgstr "nocciolo" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" -msgstr "TCP/IP" +msgid "Kernel Args" +msgstr "kernel Args" -#: lib/pages/groupmanagementpage.class.php:817 -msgid "Group Printers" -msgstr "Stampanti di gruppo" +msgid "Kernel Arguments" +msgstr "argomenti del kernel" -#: lib/pages/groupmanagementpage.class.php:827 -msgid "Printer Configuration" -msgstr "Configurazione della stampante" +msgid "Kernel Name" +msgstr "Nome kernel" -#: lib/pages/groupmanagementpage.class.php:832 -msgid "Select management level for these hosts" -msgstr "Seleziona il livello di gestione per questi host" +msgid "Kernel Update" +msgstr "Aggiornamento del kernel" -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" -msgstr "Questa impostazione disattiva tutta la gestione della stampante FOG" +msgid "Kernel Versions" +msgstr "versioni del kernel" -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" -msgstr "Anche se ci sono già diversi livelli" +msgid "Kernels/Inits from location" +msgstr "I kernel / INIT dalla posizione" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" -msgstr "Tra impostazioni host e globali" +msgid "Key" +msgstr "Chiave" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" -msgstr "questo è solo un altro per garantire la sicurezza" +msgid "Key Name" +msgstr "Nome chiave" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" -msgstr "Nessuna gestione della stampante" +msgid "Key field must be a string" +msgstr "Campo chiave deve essere una stringa" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." -msgstr "" -"Questa impostazione aggiunge e rimuove solo le stampanti gestite da FOG. Se " -"la stampante esiste nella gestione della stampante, ma non viene assegnata " -"ad un host, rimuoverà la stampante se esiste nell'host non firmato. " -"Aggiungerà le stampanti all'host assegnato." +msgid "Key must be a string" +msgstr "Chiave deve essere una stringa" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" -msgstr "Gestione Stampanti FOG" +msgid "Key must be a string or index" +msgstr "Chiave deve essere una stringa o un indice" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." -msgstr "" -"Questa impostazione consentirà solo che le stampanti FOG assegnate siano " -"aggiunte all'host. Qualsiasi stampante non assegnata verrà rimossa, incluse " -"le stampanti non gestite da FOG." +msgid "Key must be an array of keys or a string." +msgstr "Chiave deve essere un array o una stringa." -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" -msgstr "Solo stampanti assegnate" +msgid "Kill" +msgstr "Uccidere" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 -msgid "Update printer configuration" -msgstr "Aggiorna la configurazione della stampante" +msgid "LDAP Connection Name" +msgstr "Nome connessione LDAP" -#: lib/pages/groupmanagementpage.class.php:918 -msgid "Printer Associations" -msgstr "Associazioni stampanti" +msgid "LDAP Connection Name" +msgstr "Nome connessione LDAP" -#: lib/pages/groupmanagementpage.class.php:928 -msgid "Make Printer Changes" -msgstr "Effettuare le modifiche della stampante" +msgid "LDAP Create Fail" +msgstr "LDAP Creazione Fallita" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 -msgid "Add Printers" -msgstr "Aggiungi stampanti" +msgid "LDAP Create Success" +msgstr "LDAP Creazione Riusciata" -#: lib/pages/groupmanagementpage.class.php:945 -msgid "Update Default Printer" -msgstr "Aggiorna la stampante predefinita" +msgid "LDAP General" +msgstr "LDAP Generale" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 -msgid "Remove selected printers" -msgstr "Rimuovere le stampanti selezionate" +msgid "LDAP Management" +msgstr "Gestione LDAP" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" -msgstr "Nome Snapin" +#, fuzzy +msgid "LDAP Ports" +msgstr "Porta LDAP Server" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 -msgid "Snapin Created" -msgstr "Snapin creato" +msgid "LDAP Server" +msgstr "Server LDAP" -#: lib/pages/groupmanagementpage.class.php:1044 -msgid "Group Snapins" -msgstr "Gruppo Snapins" +msgid "LDAP Server Address" +msgstr "Indirizzo server LDAP" -#: lib/pages/groupmanagementpage.class.php:1054 -msgid "Available Snapins" -msgstr "Available Snapins" +msgid "LDAP Server Description" +msgstr "LDAP Server Descrizione" -#: lib/pages/groupmanagementpage.class.php:1064 -msgid "Make Snapin Changes" -msgstr "Effettuare le modifiche di Snapin" +msgid "LDAP Server Port" +msgstr "Porta LDAP Server" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 -msgid "Add selected snapins" -msgstr "Aggiungi snapins selezionati" +msgid "LDAP Server added!" +msgstr "LDAP Server aggiunto!" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" -msgstr "Rimuovere snapins selezionati" +msgid "LDAP Server updated!" +msgstr "LDAP Server modificato!" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 -msgid "This module is only used on the old client" -msgstr "Questo modulo viene utilizzato solo sul vecchio client" +msgid "LDAP Servers" +msgstr "LDAP Servers" -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" -msgstr "" -"Il vecchio cliente è quello che è stato distribuito con FOG 1.2.0 e " -"precedenti" +msgid "LDAP Update Fail" +msgstr "Aggiornamento LDAP non riuscito" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" -msgstr "Questo modulo non ha funzionato oltre Windows XP a causa di" +msgid "LDAP Update Success" +msgstr "Aggiornamento LDAP riuscito" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "UAC introdotto in Vista o superiore" +msgid "Language" +msgstr "Lingua" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "Il vecchio cliente è quello che è stato distribuito con" +msgid "Last Captured" +msgstr "Ultima cattura" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" -msgstr "FOG 1.2.0 e precedenti" +msgid "Last Deployed" +msgstr "Ultima Distribuita" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "Questo modulo è stato sostituito nel nuovo client" +msgid "Last Updated Time" +msgstr "Ultimo aggiornamento" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "E il modulo equivalente per quello Green" +msgid "Last captured" +msgstr "Ultima cattura" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" -msgstr "FOG did è ora chiamato Power Management" +msgid "Latest Development Version" +msgstr "Ultima versione di sviluppo" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" -msgstr "Questo è solo qui per mantenere le vecchie operazioni client" +msgid "Latest Version" +msgstr "Ultima versione" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" -msgstr "Questo modulo non funzionerà in Windows XP a causa di" +msgid "Level must be an integer" +msgstr "Livello deve essere una stringa" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" -msgstr "UAC introdotto in Vista e superiori" +msgid "License" +msgstr "Licenza" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" -msgstr "Questo modulo viene utilizzato solo" +msgid "Line" +msgstr "linea" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" -msgstr "con moduli e configurazioni" +msgid "Lines" +msgstr "Linee" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" -msgstr "sul vecchio client" +msgid "Link New Account" +msgstr "Link Nuovo Utente" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" -msgstr "Selezionare / deselezionare tutti" +msgid "Link Pushbullet Account" +msgstr "Conto di collegamento Pushbullet" -#: lib/pages/groupmanagementpage.class.php:1300 -msgid "Group FOG Client Module configuration" -msgstr "Configurazione Modulo di Gruppo FOG Client" +msgid "Link Pushbullet Account Fail" +msgstr "Connessione Pushbullet Account fallita" -#: lib/pages/groupmanagementpage.class.php:1310 -msgid "Group module settings" -msgstr "Impostazioni modulo del gruppo" +msgid "Link Pushbullet Account Success" +msgstr "Connessione Pushbullet Account completata" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -msgid "Update module configurations" -msgstr "Aggiorna le configurazioni del modulo" +msgid "Link Slack Account" +msgstr "Connettività Slack" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "Larghezza dello schermo (in pixel)" +msgid "Link Slack Account Fail" +msgstr "Connessione Account Slack fallita" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "Schermo Altezza (in pixel)" +msgid "Link Slack Account Success" +msgstr "Connessione Account Slack completata" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" -msgstr "Schermo Frequenza di aggiornamento (in Hz)" +msgid "Link must be a string" +msgstr "Collegamento deve essere una stringa" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" -msgstr "Gruppo risoluzione dello schermo" +msgid "Linux" +msgstr "Linux" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 -msgid "Update display resolution" -msgstr "Aggiorna la risoluzione dello schermo" +msgid "List" +msgstr "Elenca" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "Log Out Auto Tempo (in minuti)" +#, php-format +msgid "List All %s" +msgstr "Elencare tutti %s" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" -msgstr "Auto Logout di Groppo" +#, php-format +msgid "List all roles" +msgstr "Elenca tutti i ruoli" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 -msgid "Update auto-logout time" -msgstr "Aggiorna il tempo di auto-logout" +#, php-format +msgid "List all rules" +msgstr "Elencare tutte le regole" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" -msgstr "Esporta PDF" +msgid "Listener must be an array or an object" +msgstr "Listener deve essere un array o un oggetto" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" -msgstr "Memoria Host" +msgid "Load Average" +msgstr "Carico medio" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 -msgid "You must select an action to perform" -msgstr "È necessario selezionare un'azione da eseguire" +msgid "Load MAC Vendors" +msgstr "Caricare fornitori MAC" -#: lib/pages/groupmanagementpage.class.php:2099 -msgid "Group update failed!" -msgstr "Aggiornamento del gruppo non riuscito!" +msgid "Load failed" +msgstr "Caricamento non riuscito" -#: lib/pages/groupmanagementpage.class.php:2104 -msgid "Group updated!" -msgstr "Gruppo aggiornato!" +msgid "Loading data to field" +msgstr "Caricamento dei dati campo" -#: lib/pages/groupmanagementpage.class.php:2105 -msgid "Group Update Success" -msgstr "Aggiornamento del gruppo completato" +msgid "Location" +msgstr "Luogo" -#: lib/pages/groupmanagementpage.class.php:2113 -msgid "Group Update Fail" -msgstr "Aggiornamento gruppo non riuscito" +msgid "Location Association" +msgstr "Associazione Posizione" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" -msgstr "imaged" +msgid "Location Create Fail" +msgstr "Creazione posizione fallita" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" -msgstr "Immagine assegnata" +msgid "Location Create Success" +msgstr "Creazione posizione riuscita" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" -msgstr "Andare all'elenco delle attività" +msgid "Location General" +msgstr "Posizione generale" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" -msgstr "In attesa Lista Host" +msgid "Location Management" +msgstr "Gestione della posizione" -#: lib/pages/hostmanagementpage.class.php:333 -msgid "Approve selected hosts" -msgstr "Approvare host selezionati" +msgid "Location Name" +msgstr "Nome del luogo" -#: lib/pages/hostmanagementpage.class.php:338 -msgid "Delete selected hosts" -msgstr "Elimina host selezionati" +msgid "Location Update Fail" +msgstr "Aggiornamento posizione fallita" -#: lib/pages/hostmanagementpage.class.php:367 -msgid "Approve Success" -msgstr "Approva il successo" +msgid "Location Update Success" +msgstr "Modifica posizione riuscita" -#: lib/pages/hostmanagementpage.class.php:368 -msgid "Selected hosts approved successfully" -msgstr "Host selezionati approvati correttamente" +msgid "Location added!" +msgstr "Posizione aggiunta!" -#: lib/pages/hostmanagementpage.class.php:376 -msgid "Deleted Success" -msgstr "Eliminato con successo" +msgid "Location already Exists, please try again." +msgstr "Località esiste già, si prega di riprovare." -#: lib/pages/hostmanagementpage.class.php:377 -msgid "Selected hosts deleted successfully" -msgstr "Host selezionati eliminati correttamente" +msgid "Location is a plugin that allows your FOG Server" +msgstr "Luoghi è un plugin che consente al server FOG" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" -msgstr "Nuovo host" +msgid "Location update failed!" +msgstr "Aggiornamento posizione non riuscito" -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" -msgstr "Nome Host" +msgid "Location updated!" +msgstr "Posizione aggiornata!" -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" -msgstr "MAC primaria" +msgid "Location/Deployed" +msgstr "Posizione / Distribuzione" -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" -msgstr "Host Descrizione" +msgid "Locations" +msgstr "sedi" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" -msgstr "Host Product Key" +msgid "Log Viewer" +msgstr "Log Viewer" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" -msgstr "immagine host" +msgid "Login" +msgstr "Accesso" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" -msgstr "Host kernel" +msgid "Login History" +msgstr "Accesso Storia" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" -msgstr "Host argomenti del kernel" +msgid "Login Users" +msgstr "Login Utenti" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 -msgid "Host Init" -msgstr "Host Init" +#, fuzzy +msgid "Login accepted" +msgstr "Tempo di accesso" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" -msgstr "Host disco principale" +#, fuzzy +msgid "Login failed" +msgstr "Caricamento non riuscito" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "Host Bios Tipo Exit" +msgid "Login time" +msgstr "Tempo di accesso" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" -msgstr "Host EFI Tipo Exit" +msgid "Login with the FOG credentials and you will see the menu" +msgstr "Accedi con le credenziali FOG per vedere il menu" -#: lib/pages/hostmanagementpage.class.php:616 -msgid "A host name is required!" -msgstr "È richiesto un nome host!" +msgid "Logout" +msgstr "Disconnettersi" -#: lib/pages/hostmanagementpage.class.php:621 -msgid "A mac address is required!" -msgstr "È necessario un indirizzo MAC!" +msgid "Logout not found" +msgstr "Logout non trovato" -#: lib/pages/hostmanagementpage.class.php:626 -msgid "A host already exists with this name!" -msgstr "Un host già esiste con questo nome!" +msgid "MAC" +msgstr "MAC" + +msgid "MAC Address" +msgstr "Indirizzo MAC" + +msgid "MAC Address List" +msgstr "MAC Address List" + +msgid "MAC Address Manufacturer Listing" +msgstr "MAC Listing Indirizzo Produttore" -#: lib/pages/hostmanagementpage.class.php:631 msgid "MAC Format is invalid" msgstr "MAC Format non è valido" -#: lib/pages/hostmanagementpage.class.php:638 -msgid "A host with this mac already exists with name" -msgstr "Un host con questo MAC esiste già con il nome" +msgid "MAC address is already in use by another host" +msgstr "L'indirizzo MAC è già in uso da un altro host" -#: lib/pages/hostmanagementpage.class.php:673 -msgid "Add host failed!" -msgstr "Aggiunta host non riuscita!" +msgid "MB Asset" +msgstr "MB Asset" -#: lib/pages/hostmanagementpage.class.php:678 -msgid "Host added!" -msgstr "Host aggiunto!" +msgid "MB Manufacturer" +msgstr "MB Produttore" -#: lib/pages/hostmanagementpage.class.php:679 -msgid "Host Create Success" -msgstr "Creazione Host con successo" +msgid "MB Name" +msgstr "Nome MB" -#: lib/pages/hostmanagementpage.class.php:687 -msgid "Host Create Fail" -msgstr "Creazione Host fallita" +msgid "MB Serial" +msgstr "MB seriale" -#: lib/pages/hostmanagementpage.class.php:830 -msgid "Current Power Management settings" -msgstr "Impostazioni attuali Power Management" +msgid "MB Version" +msgstr "MB Versione" -#: lib/pages/hostmanagementpage.class.php:841 -msgid "Update PM Values" -msgstr "Aggiorna i valori PM" +msgid "MSI" +msgstr "MSI" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" -msgstr "rimuovere MAC" +msgid "Machine Details" +msgstr "Dettagli della macchina" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" -msgstr "Ignora MAC sul client" +msgid "Main Colors" +msgstr "Colori principali" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." -msgstr "I.M.C." +msgid "Main Menu" +msgstr "Menu principale" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -msgid "Ignore MAC on Image" -msgstr "Ignorare MAC sull'immagine" +msgid "Main fallback pairings" +msgstr "Abbinamenti principali fallback" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." -msgstr "I.M.I." +msgid "Main pairings" +msgstr "Accoppiamenti principali" -#: lib/pages/hostmanagementpage.class.php:968 -msgid "Approve MAC" -msgstr "Approva i MAC" +msgid "Make Changes" +msgstr "Applicare cambiamenti" -#: lib/pages/hostmanagementpage.class.php:981 -msgid "Approve all pending? " -msgstr "Approva tutto il sospeso?" +msgid "Make Changes?" +msgstr "Applicare cambiamenti?" -#: lib/pages/hostmanagementpage.class.php:987 -msgid "Approve all pending macs" -msgstr "Approvare tutti i MAC in sospeso" +msgid "Make Printer Changes" +msgstr "Effettuare le modifiche della stampante" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" -msgstr "Aggiungere MAC" +msgid "Make Snapin Changes" +msgstr "Effettuare le modifiche di Snapin" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "MAC aggiuntive" +msgid "Make changes?" +msgstr "Applicare cambiamenti?" -#: lib/pages/hostmanagementpage.class.php:1113 -msgid "Host description" -msgstr "Descrizione host" +msgid "Management" +msgstr "Gestione" -#: lib/pages/hostmanagementpage.class.php:1263 -msgid "Host general" -msgstr "Generale Host" +msgid "Management Login" +msgstr "Gestione Accesso" -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" -msgstr "Inserisci un hostname" +msgid "Management Password" +msgstr "Gestione delle password" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "Si prega di inserire un nome host valido" +msgid "Management Username" +msgstr "Gestione utente" -#: lib/pages/hostmanagementpage.class.php:1345 -msgid "Please use another hostname" -msgstr "Utilizza un altro hostname" +msgid "Master Node" +msgstr "Maestro Node" -#: lib/pages/hostmanagementpage.class.php:1349 -msgid "Please enter a mac address" -msgstr "Inserisci un indirizzo MAC" +msgid "Max" +msgstr "Massimo" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 -msgid "Please enter a valid mac address" -msgstr "Inserisci un indirizzo MAC valido" +msgid "Max Clients" +msgstr "clienti max" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" -msgstr "Impossibile modificare l'immagine durante l'attività" +msgid "Max Size" +msgstr "Dimensione massima" -#: lib/pages/hostmanagementpage.class.php:1485 -msgid "Host Printers" -msgstr "Stampanti host" +msgid "Members" +msgstr "Utenti" -#: lib/pages/hostmanagementpage.class.php:1495 -msgid "Host printer configuration" -msgstr "Configurazione della stampante host" +msgid "Membership" +msgstr "membri" -#: lib/pages/hostmanagementpage.class.php:1500 -msgid "Select management level for this host" -msgstr "Seleziona il livello di gestione per questo host" +msgid "Memory" +msgstr "Memoria" -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" -msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" +msgid "Menu Background File" +msgstr "File di sfondo menu" -#: lib/pages/hostmanagementpage.class.php:1617 -msgid "Add selected printers" -msgstr "Aggiungi stampanti selezionate" +msgid "Menu Hide/No Menu settings" +msgstr "Nascondi Menu/Nessuna impostazione del menu" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "Predefinito" +msgid "Menu Item" +msgstr "Elemento del menu:" -#: lib/pages/hostmanagementpage.class.php:1702 -msgid "Update/Remove printers" -msgstr "Aggiorna/Rimuovi stampanti" +msgid "Menu Item or title cannot be blank" +msgstr "Voce di menu o il titolo non può essere vuoto" -#: lib/pages/hostmanagementpage.class.php:1709 -msgid "Update default printer" -msgstr "Aggiornare la stampante predefinita" +msgid "Menu Show with" +msgstr "Mostra menu con:" -#: lib/pages/hostmanagementpage.class.php:1804 -msgid "Host Snapins" -msgstr "Host Snapins" +msgid "Menu Timeout" +msgstr "Timeout menu" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" -msgstr "Controlla qui per vedere quali snapins possono essere aggiunti" +msgid "Menu colors, pairings, settings" +msgstr "Colori del menu, accoppiamenti, impostazioni" -#: lib/pages/hostmanagementpage.class.php:1835 -msgid "Add Snapins" -msgstr "Aggiungi Snapins" +msgid "Message" +msgstr "Messaggio" -#: lib/pages/hostmanagementpage.class.php:1911 -msgid "Remove snapins" -msgstr "Rimuovi Snapin" +msgid "Method does not exist" +msgstr "Metodo non esiste" -#: lib/pages/hostmanagementpage.class.php:2127 -msgid "Host FOG Client Module configuration" -msgstr "Configurazione del modulo client Host FOG" +msgid "Microsoft AD" +msgstr "Microsoft AD" -#: lib/pages/hostmanagementpage.class.php:2137 -msgid "Host module settings" -msgstr "Impostazioni del modulo host" +msgid "Midnight" +msgstr "Mezzanotte" -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" -msgstr "Risoluzione dello schermo Host" +msgid "Mind you" +msgstr "Mente voi" -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" -msgstr "Auto Logout Host" +msgid "Minute value is not valid" +msgstr "valore dei minuti non è valido" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" -msgstr "Altro Tag # 1" +msgid "Miscellaneous" +msgstr "miscellaneo" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" -msgstr "Altro Tag # 2" +msgid "Missing a temporary folder" +msgstr "Manca una cartella temporanea" -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" -msgstr "Numero di serie del sistema" +msgid "Missing one or more extensions." +msgstr "Manca una o più estensioni." -#: lib/pages/hostmanagementpage.class.php:2454 -msgid "System UUID" -msgstr "UUID di sistema" +msgid "Mobile Group" +msgstr "Grouppo mobile" -#: lib/pages/hostmanagementpage.class.php:2459 -msgid "Motherboard Manufacturer" -msgstr "Scheda madre Produttore" +msgid "Mode" +msgstr "Modalità" -#: lib/pages/hostmanagementpage.class.php:2460 -msgid "Motherboard Product Name" -msgstr "Scheda madre Nome del prodotto" +msgid "Model" +msgstr "Modello" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "Scheda madre Version" +msgid "Module MD5" +msgstr "Modulo MD5" -#: lib/pages/hostmanagementpage.class.php:2462 -msgid "Motherboard Serial Number" -msgstr "Numero di serie della scheda madre" +msgid "Module Name" +msgstr "Nome Modulo" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "Scheda madre Asset Tag" +msgid "Module Type" +msgstr "Tipo di modulo" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" -msgstr "Velocità CPU Normale" +msgid "Module Update Fail" +msgstr "Aggiornamento modulo non riuscito" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" -msgstr "Modello Hard Disk" +msgid "Module Update Success" +msgstr "Aggiornamento del modulo completato" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" -msgstr "Hard Disk Firmware" +msgid "Module updated!" +msgstr "Modulo aggiornato!" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" -msgstr "Hard Disk Serial Number" +msgid "Modules added/updated successfully!" +msgstr "Moduli aggiunti/aggiornati con successo!" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" -msgstr "Host inventario hardware" +msgid "Month value is not valid" +msgstr "valore del mese non è valido" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" -msgstr "Virus Nome" +msgid "Monthly" +msgstr "Mensile" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" -msgstr "Quarantena" +msgid "Motherboard Asset Tag" +msgstr "Scheda madre Asset Tag" -#: lib/pages/hostmanagementpage.class.php:2619 -msgid "Host Virus History" -msgstr "Cronologia virus dell'host" +msgid "Motherboard Manufacturer" +msgstr "Scheda madre Produttore" -#: lib/pages/hostmanagementpage.class.php:2632 -msgid "Clear all history" -msgstr "Cancella tutta la cronologia" +msgid "Motherboard Product Name" +msgstr "Scheda madre Nome del prodotto" -#: lib/pages/hostmanagementpage.class.php:2642 -msgid "Virus Report" -msgstr "Report Virus" +msgid "Motherboard Serial Number" +msgstr "Numero di serie della scheda madre" -#: lib/pages/hostmanagementpage.class.php:2746 -msgid "Logout not found" -msgstr "Logout non trovato" +msgid "Motherboard Version" +msgstr "Scheda madre Version" -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" -msgstr "Impostare l'accesso a un secondo prima del login successivo" +msgid "Multicast" +msgstr "Multicast" -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" -msgstr "Host Accesso Storia" +msgid "Multicast Image" +msgstr "Immagine Multicast" -#: lib/pages/hostmanagementpage.class.php:2805 -msgid "View History For" -msgstr "Visualizza la cronologia per" +msgid "Multicast Quick Deploy" +msgstr "Multicast rapida Deploy" -#: lib/pages/hostmanagementpage.class.php:2815 -msgid "Selected Logins" -msgstr "Logini selezionati" +msgid "Multicast session created" +msgstr "sessione multicast creato" -#: lib/pages/hostmanagementpage.class.php:2825 -msgid "History Graph" -msgstr "Grafico storico" +msgid "Multicast tasks from groups" +msgstr "Attività multicast dai gruppi" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "Ingegnere" +msgid "MulticastTask" +msgstr "Attività Multicast" -#: lib/pages/hostmanagementpage.class.php:2859 -msgid "Imaged From" -msgstr "Immagini da" +msgid "Must be 0 through 23 for hours in a day." +msgstr "Deve essere tra 0 e 23 per le ore del giorno." -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "Inizio" +msgid "Must be 0 through 59 for minutes in an hour." +msgstr "Deve essere tra 0 e 59 per i minuti del giorno." -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "Fine" +msgid "Must be encrypted" +msgstr "Deve essere criptato" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "Durata" +msgid "Must have a name to create the table" +msgstr "Deve avere un nome per creare la tabella" -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" -msgstr "Host Imaging Storia" +msgid "Must have an image associated" +msgstr "Deve avere un'immagine associata" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" -msgstr "Ora di inizio" +msgid "Must use an" +msgstr "Deve usare un" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" -msgstr "Fine del tempo" +msgid "MySQL Administrator or by running" +msgstr "MySQL Administrator o eseguendo" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "Codice di ritorno" +msgid "N/A" +msgstr "N/D" -#: lib/pages/hostmanagementpage.class.php:3076 -msgid "Snapin task not completed" -msgstr "Il compito Snapin non è stato completato" +msgid "NAME" +msgstr "NOME" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" -msgstr "Nessun tempo completo registrato" +msgid "NOT" +msgstr "NON" -#: lib/pages/hostmanagementpage.class.php:3106 -msgid "Host Snapin History" -msgstr "Storia Snapin Host" +msgid "NOTE" +msgstr "NOTE" -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" -msgstr "Host approvato" +msgid "NOTICE" +msgstr "AVVISO" -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." -msgstr "approvazione Host riuscita." +msgid "Name" +msgstr "Nome" -#: lib/pages/hostmanagementpage.class.php:3158 -msgid "Approve Host" -msgstr "Approvare Host" +msgid "Name Change/AD Join Forced reboot" +msgstr "Cambio nome/unione AD Riavvio forzato" -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" -msgstr "Approvare questo host?" +msgid "Need more support" +msgstr "Hai bisogno di più supporto" -#: lib/pages/hostmanagementpage.class.php:3186 -msgid "Approved" -msgstr "Approvato" +msgid "Need the table name to drop" +msgstr "Necessario il nome tabella da cancellare" -#: lib/pages/hostmanagementpage.class.php:3213 -msgid "All Pending MACs approved" -msgstr "Tutti i MAC in sospeso approvati" +msgid "Needs a 256-bit key" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3665 -msgid "Virus items removed!" -msgstr "Elementi virus rimossi!" +msgid "Needs action string of ask, get, or list" +msgstr "Ha bisogno stringa di azione di chiedere, ottenere, o di un elenco" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" -msgstr "Aggiornamento Host riuscito" +msgid "Network Information" +msgstr "Informationi di rete" -#: lib/pages/hostmanagementpage.class.php:3693 -msgid "Host updated!" -msgstr "Host aggiornato!" +msgid "Network Installer" +msgstr "Installazione via rete" -#: lib/pages/hostmanagementpage.class.php:3694 -msgid "Host Update Success" -msgstr "Aggiornamento host completato!" +msgid "Network Printer" +msgstr "stampante di rete" -#: lib/pages/hostmanagementpage.class.php:3702 -msgid "Host Update Fail" -msgstr "Aggiornamento Host completato" +msgid "New" +msgstr "Nuovo" -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" -msgstr "Impossibile creare un nuovo gruppo" +msgid "New Broadcast Address" +msgstr "Nuova trasmissione Indirizzo" -#: lib/pages/hostmanagementpage.class.php:3747 -msgid "Successfully added selected hosts to the group!" -msgstr "Aggiunti host selezionati al gruppo!" +msgid "New Client and Utilities" +msgstr "Nuovo Cliente e utilità" -#: lib/pages/hostmanagementpage.class.php:3748 -msgid "Host Add to Group Success" -msgstr "Aggiunta host al gruppo completata" +msgid "New Event" +msgstr "Aggiungi evento" -#: lib/pages/hostmanagementpage.class.php:3755 -msgid "Host Add to Group Fail" -msgstr "Aggiunta host al gruppo fallita" +msgid "New Group" +msgstr "Nuovo gruppo" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" -msgstr "partimage" +msgid "New Host" +msgstr "Nuovo host" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" -msgstr "Partclone" +msgid "New Image" +msgstr "Nuova immagine" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" -msgstr "Gruppo di archiviazione primaria" +msgid "New LDAP Server" +msgstr "Nuovo server LDAP" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "Nome immagine" +msgid "New Location" +msgstr "Nuova sede" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" -msgstr "Dimensioni immagine: ON CLIENT" +msgid "New Role" +msgstr "Nuovo ruolo" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" -msgstr "Dimensioni immagine: SU SERVER" +msgid "New Rule" +msgstr "Nuova regola" -#: lib/pages/imagemanagementpage.class.php:151 -msgid "Captured" -msgstr "Catturato" +msgid "New Search" +msgstr "Nuova ricerca" -#: lib/pages/imagemanagementpage.class.php:170 -msgid "Last captured" -msgstr "Ultima cattura" +msgid "New Site" +msgstr "Nuovo Sito" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" -msgstr "Non impostato" +msgid "New Snapin" +msgstr "Nuovo Snapin" -#: lib/pages/imagemanagementpage.class.php:298 -msgid "Invalid date" -msgstr "Data non valida" +msgid "New Storage Group" +msgstr "Nuovo Gruppo di archiviazione" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -msgid "Not protected" -msgstr "Non protetto" +msgid "New Storage Node" +msgstr "Nuovo nodo di archiviazione" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" -msgstr "Protetta" +#, fuzzy +msgid "New Subnetgroup" +msgstr "Nuovo Gruppo di archiviazione" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 -msgid "Disabled" -msgstr "Disabilitato" +msgid "New Task State" +msgstr "Stato nuova attività" -#: lib/pages/imagemanagementpage.class.php:362 -msgid "Partclone Compressed" -msgstr "Partclone compressa" +msgid "New Task Type" +msgstr "Nuovo tipo di attività" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" -msgstr "Partclone compressa diviso per 200MiB" +msgid "New User" +msgstr "Nuovo utente" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" -msgstr "Partclone non compressa diviso per 200MiB" +msgid "New Windows Key" +msgstr "Nuova chiave di Windows" -#: lib/pages/imagemanagementpage.class.php:377 -msgid "ZSTD Compressed" -msgstr "ZSTD compressa" +msgid "New iPXE Menu" +msgstr "Nuovo menu iPXE" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" -msgstr "ZSTR compressa diviso per 200MiB" +msgid "New key must be a string" +msgstr "Nuova chiave deve essere una stringa" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" -msgstr "Nuova immagine" +msgid "New power management task" +msgstr "Nuova attività di gestione energetica" -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" -msgstr "Descrizione dell'immagine" +msgid "No" +msgstr "No" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "Sistema operativo" +msgid "No Active Snapin Jobs Found For Host" +msgstr "No Attivo Snapin processo trovato Per Host" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" -msgstr "Partizione" +msgid "No Active Task found for Host" +msgstr "Nessun compito attivo trovato per Host" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" -msgstr "immagine Abilitato" +msgid "No Data" +msgstr "Nessun dato" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" -msgstr "Replicare?" +#, fuzzy +msgid "No Data Available" +msgstr "Non disponibile" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" -msgstr "Compressione" +msgid "No FOGPage Class found for this node" +msgstr "Nessun FOGPage Classe trovato per questo nodo" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" -msgstr "Image manager" +msgid "No Host found for MAC Address" +msgstr "Nessun Host trovato per MAC Address" -#: lib/pages/imagemanagementpage.class.php:639 -msgid "Create Image" -msgstr "Crea immagina" +msgid "No Image specified" +msgstr "Nessuna immagine specificata" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" -msgstr "Un'immagine esiste già con questo nome!" +msgid "No Menu" +msgstr "Nessun Menu" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -msgid "Please choose a different name" -msgstr "Scegliere un nome diverso" +msgid "No Printer Management" +msgstr "Nessuna gestione della stampante" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -msgid "this one is reserved for FOG" -msgstr "questo è riservato per FOG" +msgid "No Site" +msgstr "Nessun Sito" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -msgid "Please choose a different path" -msgstr "Scegliere un percorso diverso" +msgid "No access is allowed" +msgstr "Nessun accesso è consentito" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" -msgstr "questo è gà in uso in un'altra immagine" +msgid "No activity information available for this group" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:744 -msgid "Add image failed!" -msgstr "Aggiuta immagine non riuscita!" +msgid "No class value sent" +msgstr "Nessun valore di classe inviato" -#: lib/pages/imagemanagementpage.class.php:754 -msgid "Image added!" -msgstr "Immagine aggiunta!" +msgid "No complete time recorded" +msgstr "Nessun tempo completo registrato" -#: lib/pages/imagemanagementpage.class.php:755 -msgid "Image Create Success" -msgstr "Creazione immagine riuscita" +msgid "No connection available" +msgstr "Nessuna connessione disponibile" -#: lib/pages/imagemanagementpage.class.php:763 -msgid "Image Create Fail" -msgstr "Creazione immagine fallita" +msgid "No connection to the database" +msgstr "Nessuna connessione al database" -#: lib/pages/imagemanagementpage.class.php:1041 -msgid "Image General" -msgstr "Immagine principale" +msgid "No data returned" +msgstr "Non ci sono dati restituiti" -#: lib/pages/imagemanagementpage.class.php:1132 -msgid "Image Storage Groups" -msgstr "Groppo di archiviazione immagini" +msgid "No data to insert" +msgstr "Nessun dato da inserire" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -msgid "Check here to see what storage groups can be added" -msgstr "" -"Controlla qui per vedere quali gruppi di archiviazione possono essere " -"aggiunti" +msgid "No database to work off" +msgstr "Nessun database di lavorare off" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 -msgid "Add Storage Groups" -msgstr "Aggiungi gruppo di archiviazione" +msgid "No directories defined to be cleaned up" +msgstr "Nessuna directory definita per essere pulita" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -msgid "Add selected storage groups" -msgstr "Aggiungi gruppo di archiviazione selezionato" +msgid "No fields passed" +msgstr "Nessun campo passato" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -msgid "Update/Remove Storage Groups" -msgstr "Aggiungi/rimuovi gruppo di archiviazione" +msgid "No file uploaded!" +msgstr "Nessun file caricato" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 -msgid "Update primary group" -msgstr "Aggiornamento gruppo primario" +msgid "No file was uploaded" +msgstr "Nessun file è stato caricato" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 -msgid "Remove selected groups" -msgstr "Rimuovi i gruppi selezionati" +msgid "No friendly name defined" +msgstr "Nessun nome amichevole definito" + +msgid "No groups defined, search will return all hosts." +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 msgid "No groups selected to be removed" msgstr "Nessun gruppo selezionato per la rimozione" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 -msgid "You must have at least one group associated" -msgstr "È necessaria l'associazione di almeno un gruppo di archiviazione" +msgid "No hosts available to task" +msgstr "Nessun host disponibile per task" -#: lib/pages/imagemanagementpage.class.php:1433 -msgid "Image update failed!" -msgstr "Modifica immagine fallita" +msgid "No hosts to task" +msgstr "Nessun host disponibile" -#: lib/pages/imagemanagementpage.class.php:1439 -msgid "Image updated!" -msgstr "immagine aggiornata" +msgid "No icons found" +msgstr "Nessuna icona trovato" -#: lib/pages/imagemanagementpage.class.php:1440 -msgid "Image Update Success" -msgstr "Modifica immagine riuscita" +msgid "No image specified" +msgstr "Nessun immagine specificata" -#: lib/pages/imagemanagementpage.class.php:1448 -msgid "Image Update Fail" -msgstr "Aggiornamento immagine fallito" +msgid "No images associated with this group as master" +msgstr "Nessuna immagine associata a questo gruppo come master" -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" -msgstr "Nome sessione" +msgid "No items found" +msgstr "Nessun elemento trovato" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" -msgstr "Conte client" +msgid "No key being requested" +msgstr "Nessuna chiave chiede il" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "Tempo scaduto" +msgid "No link established to the database" +msgstr "Nessun collegamento stabilito al database" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" -msgstr "minuti" +msgid "No master nodes are enabled to delete this image" +msgstr "Non nodi master sono abilitati per eliminare questa immagine" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" -msgstr "Seleziona Immagine" +msgid "No need to sync" +msgstr "Non è necessario sincronizzare" -#: lib/pages/imagemanagementpage.class.php:1524 -msgid "Start Session" -msgstr "Inizia sessione" +#, fuzzy +msgid "No new tasks found" +msgstr "Non sono stati trovati compiti validi" -#: lib/pages/imagemanagementpage.class.php:1548 -msgid "Multicast Image" -msgstr "Immagine Multicast" +msgid "No node associated" +msgstr "Nessun nodo associato" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" -msgstr "Inizia sessione multicast" +msgid "No node associated with any addresses of this system" +msgstr "Nessun nodo associato a nessun indirizzo di questo sistema" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" -msgstr "Nome attività" +msgid "No open slots" +msgstr "Nessuno slot aperti" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" -msgstr "clienti" +msgid "No query passed" +msgstr "Nessuna query inviata" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" -msgstr "Per cento" +msgid "No query result, use query() first" +msgstr "Nessun risultato della query, utilizzare query () prima" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" -msgstr "arresto Task" +msgid "No query sent" +msgstr "No query inviata" -#: lib/pages/imagemanagementpage.class.php:1647 -msgid "Current Sessions" -msgstr "Sessioni correnti" +msgid "No results found" +msgstr "nessun risultato trovato" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" -msgstr "Si prega di inserire un nome di sessione" +#, fuzzy +msgid "No role selected" +msgstr "Cancella selezionato" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" -msgstr "Scegliere un immagine" +#, fuzzy +msgid "No rule selected" +msgstr "Cancella selezionato" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" -msgstr "Sessione con questo nome esiste già" +msgid "No site" +msgstr "Nessun sito" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" -msgstr "nome della sessione non può essere la stessa di un nome host esistente" +msgid "No snapins associated with this group as master" +msgstr "Nessun snapins associato a questo gruppo come master" -#: lib/pages/imagemanagementpage.class.php:1710 -msgid "Please wait until a slot is open" -msgstr "Attendere l'apertura di uno slot" +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1711 -msgid "There are currently" -msgstr "Ci sono attualmente" +msgid "No valid Image defined for this host" +msgstr "Nessuna Imagine valida definita per questo host" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" -msgstr "attività in coda" +msgid "No valid class sent" +msgstr "Nessun classe valido inviato" -#: lib/pages/imagemanagementpage.class.php:1714 -msgid "Your server only allows" -msgstr "Il tuo server consente solo" +msgid "No valid hosts found and" +msgstr "Nessun host valido trovato e" -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" -msgstr "Impossibile creare Session" +msgid "No valid storage nodes found" +msgstr "Nessun nodo di archiviazione valido trovato" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" -msgstr "sessione multicast creato" +msgid "No valid tasks found" +msgstr "Non sono stati trovati compiti validi" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" -msgstr "è stato avviato sulla porta" +msgid "No values passed" +msgstr "Nessun valore passato" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" -msgstr "compito Annullato" +msgid "No viable macs to use" +msgstr "Nessun MAC valido da usare" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" -msgstr "Nome Plugin" +msgid "No viable storage groups found" +msgstr "Nessun gruppo di storage disponibile trovato" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." -msgstr "Impossibile determinare i dettagli plugin." +msgid "Node" +msgstr "Nodo" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" -msgstr "Plugin Descrizione" +msgid "Node Offline" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" -msgstr "Installazione Plugin" +msgid "Node Parent" +msgstr "Nodo Superiore" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "This plugin is not installed" -msgstr "Questo plugin non è attualmente installato" +#, fuzzy +msgid "Node is unavailable" +msgstr "Percorso non disponibile" -#: lib/pages/pluginmanagementpage.class.php:328 -msgid "would you like to install it now" -msgstr "ti piacerebbe installarlo ora" +msgid "Node must be a string" +msgstr "Nodo deve essere una stringa" -#: lib/pages/pluginmanagementpage.class.php:333 -msgid "Install Plugin" -msgstr "Installare plugin" +msgid "Nodes" +msgstr "Nodi" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" -msgstr "Riavvio dopo Deploy" +msgid "Normal Snapin" +msgstr "Snapin normale" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" -msgstr "Shutdown dopo Deploy" +msgid "Not Available" +msgstr "Non disponibile" -#: lib/pages/pluginmanagementpage.class.php:393 -msgid "Basic Settings" -msgstr "Impostazioni di base" +msgid "Not Registered Hosts" +msgstr "Host non registrati" -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" -msgstr "DMI campo" +msgid "Not Valid" +msgstr "Non valido" -#: lib/pages/pluginmanagementpage.class.php:431 -msgid "After image Action" -msgstr "Azione successiva per l'immagine" +msgid "Not a number" +msgstr "Non è un numero" -#: lib/pages/pluginmanagementpage.class.php:449 -msgid "Image Associations" -msgstr "Associazioni di immagini" +msgid "Not able to add" +msgstr "Non in grado di aggiungere" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" -msgstr "immagine Definizione" +msgid "Not all elements in filter or ports setting are integer" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" -msgstr "DMI Risultato" +msgid "Not allowed here" +msgstr "Non ammessi qui" -#: lib/pages/pluginmanagementpage.class.php:476 -msgid "Image to DMI Mappings" -msgstr "Immagine alle associazioni DMI" +msgid "Not found" +msgstr "Non trovato" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" -msgstr "Nome OS" +msgid "Not protected" +msgstr "Non protetto" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" -msgstr "DMI chiave" +msgid "Not set" +msgstr "Non impostato" -#: lib/pages/pluginmanagementpage.class.php:531 -msgid "Current Associations" -msgstr "Associazioni attuali" +msgid "Not syncing" +msgstr "Non sincronizzo" -#: lib/pages/pluginmanagementpage.class.php:555 -msgid "Remove Selected?" -msgstr "Rimuovi i selezionati" +msgid "Not syncing Image" +msgstr "Non sincronizzare l'immagine" -#: lib/pages/pluginmanagementpage.class.php:565 -msgid "Remove Associations" -msgstr "Rimuove le associazioni" +msgid "Not syncing Snapin" +msgstr "Non sincronizzazione gli Snapin" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" -msgstr "Plugin non valido passato" +msgid "Notes" +msgstr "Note" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" -msgstr "Impossibile installare plug-in" +msgid "Nothing passed to search for" +msgstr "Nessun risultato per la ricerca di" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" -msgstr "Impossibile salvare plug-in" +msgid "O/S" +msgstr "O / S" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" -msgstr "Plugin Installed!" +msgid "OS Name" +msgstr "Nome OS" -#: lib/pages/pluginmanagementpage.class.php:666 -msgid "Must have an image associated" -msgstr "Deve avere un'immagine associata" +msgid "Object" +msgstr "Oggetto" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" -msgstr "Impossibile salvare l'assegnazione" +msgid "Old clients are the clients that came with FOG" +msgstr "I vecchi client sono i client che si preventano con FOG" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" -msgstr "Assegnazione salvata" +msgid "Old key must be a string" +msgstr "Vecchia chiave deve essere una stringa" -#: lib/pages/pluginmanagementpage.class.php:691 -msgid "Destroyed assignments" -msgstr "Assegnamenti distrutti" +msgid "On Dashboard" +msgstr "sul cruscotto" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" -msgstr "Assegnazione distrutta" +msgid "On reboot we will try to find a new node" +msgstr "Al riavvio cercheremo di trovare un nuovo nodo" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" -msgstr "Nome stampante" +msgid "One or more macs are associated with a host" +msgstr "Uno o più MAC sono associati a questo host" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" -msgstr "Porta" +msgid "Only Assigned Printers" +msgstr "Solo stampanti assegnate" -#: lib/pages/printermanagementpage.class.php:89 -msgid "Config File" -msgstr "File di configurazione" +msgid "Only allowed to have" +msgstr "Permesso solo di avere" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 -msgid "Copy from existing" -msgstr "Copia da esistenti" +msgid "Open Source Computer Cloning Solution" +msgstr "Open Source Computer Clonazione Soluzione" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 -msgid "Printer Name/Alias" -msgstr "Nome della stampante/Alias" +msgid "Open VNC connection to" +msgstr "connessione VNC aperta a" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." -msgstr "es." +msgid "OpenLDAP" +msgstr "OpenLDAP" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" -msgstr "Descrizione della stampante" +msgid "Operating System" +msgstr "Sistema operativo" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" -msgstr "porta stampante" +msgid "Operation field not set" +msgstr "Campo operazione non impostato" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" -msgstr "Stampante INF File" +msgid "Option below enforces a login system" +msgstr "L'opzione sotto rafforza il sistema di login" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" -msgstr "IP della stampante" +msgid "Option sets if there will even" +msgstr "L'opzione si imposta se ci sarà anche" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" -msgstr "Modello stampante" +msgid "Option sets the ipxe keysequence to enter to gain menu" +msgstr "L'opzione imposta la sequenza di tasti ipxe per entrare nel menu" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -#, fuzzy -msgid "Printer Config File" -msgstr "Configurazione della stampante" +msgid "Option sets the key sequence" +msgstr "L'opzione imposta la sequenza di tasti" -#: lib/pages/printermanagementpage.class.php:459 -msgid "Create New Printer" -msgstr "Crea nuova stampante" +msgid "Option specifies the background file to use" +msgstr "L'opzione specifica il file di sfondo da utilizzare" -#: lib/pages/printermanagementpage.class.php:473 -msgid "Add New Printer" -msgstr "Aggiungi nuova stampante" +msgid "Option specifies the color settings of the main menu items" +msgstr "" +"Opzione consente di specificare le impostazioni di colore degli elementi " +"principali" -#: lib/pages/printermanagementpage.class.php:515 -msgid "A name must be set" -msgstr "Un nome deve essere impostato" +msgid "Option specifies the color text on the menu if the host" +msgstr "Opzione specifica il colore del testo se l'host" -#: lib/pages/printermanagementpage.class.php:518 -msgid "Printer name already exists" -msgstr "Nome stampante già esistente" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "" +"L'opzione specifica il metodo di uscite di boot di efi che utilizzerà ipxe" -#: lib/pages/printermanagementpage.class.php:545 -msgid "Add printer failed!" -msgstr "Aggiunta stampante non riuscita!" +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "L'opzione specifica il metodo di uscita boot legacy che utilizza ipxe" -#: lib/pages/printermanagementpage.class.php:551 -msgid "Printer added!" -msgstr "Stampante aggiunta" +msgid "Option specifies the menu timeout" +msgstr "L'opzione specifica il timeout del menu" -#: lib/pages/printermanagementpage.class.php:552 -msgid "Printer Create Success" -msgstr "Creazione stampante riuscita" +msgid "Option specifies the pairings after host checks" +msgstr "Opzione specifica le associazioni dopo controlli host" -#: lib/pages/printermanagementpage.class.php:560 -msgid "Printer Create Fail" -msgstr "Creazione stampante fallita" +msgid "Option specifies the pairings as a fallback" +msgstr "L'opzione specifica le accoppiamenti come fallback" -#: lib/pages/printermanagementpage.class.php:869 -msgid "Printer General" -msgstr "Stampante Generale" +msgid "Option specifies the pairings of colors to" +msgstr "Opzione specifica le accoppiamenti dei colori per" -#: lib/pages/printermanagementpage.class.php:936 -msgid "A printer name is required!" -msgstr "È richiesto un nome di stampante!" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "Opzione specifica il valore di timeout per il sistema di menu nascosto" -#: lib/pages/printermanagementpage.class.php:957 -msgid "A printer already exists with this name!" -msgstr "Nome stampante già esistente on questo nome!" +msgid "Or there was no number defined for joining session" +msgstr "Oppure non è stato definito alcun numero per l'accesso alla sessione" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" -msgstr "Aggiornamento della stampante non è riuscito!" +msgid "Organizational Unit" +msgstr "Unità organizzativa" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" -msgstr "aggiornato stampante!" +msgid "Other Tag #1" +msgstr "Altro Tag # 1" -#: lib/pages/printermanagementpage.class.php:996 -msgid "Printer Update Success" -msgstr "Aggiornamento stampante riuscito" +msgid "Other Tag #2" +msgstr "Altro Tag # 2" -#: lib/pages/printermanagementpage.class.php:1004 -msgid "Printer Update Fail" -msgstr "Aggiornamento della stampante non riuscito" +msgid "Other Tag 1" +msgstr "Altro Tag 1" -#: lib/pages/reportmanagementpage.class.php:158 -msgid "Import Reports" -msgstr "Importa Report" +msgid "Other Tag 2" +msgstr "Altro Tag 2" -#: lib/pages/reportmanagementpage.class.php:189 -msgid "Import FOG Reports" -msgstr "Importa FOG Report" +msgid "Otherwise it will just boot like normal" +msgstr "Altrimenti eseguirà il boot normalmente" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 -msgid "Import Report?" -msgstr "Importa Report?" +msgid "PC Check-out Agreement" +msgstr "PC accordo check-out" -#: lib/pages/reportmanagementpage.class.php:250 -msgid "This section allows you to uploade user" -msgstr "Questa sezione consente di caricare l'utente" +msgid "Parameters" +msgstr "parametri:" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" -msgstr "rapporti definiti che potrebbero non essere parte di esso" +msgid "Parent" +msgstr "Superiore" -#: lib/pages/reportmanagementpage.class.php:254 -msgid "the base FOG install" -msgstr "installare FOG di base" +msgid "Parent Node" +msgstr "Nodo superiore" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" -msgstr "Informazioni sui report FOG" +msgid "Partclone" +msgstr "Partclone" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" -msgstr "Esistono rapporti FOG per fornire informazioni su cosa" +msgid "Partclone Compressed" +msgstr "Partclone compressa" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" -msgstr "sta succedendo al tuo sistema FOG" +msgid "Partclone Compressed 200MiB split" +msgstr "Partclone compressa diviso per 200MiB" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" -msgstr "Per visualizzare un report, selezionare una voce dal menu" +msgid "Partclone Gzip" +msgstr "Partclone Gzip" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" -msgstr "Database Schema di installazione / aggiornamento" +msgid "Partclone Gzip Split 200MiB" +msgstr "Partclone Gzip diviso per 200MiB" -#: lib/pages/schemaupdaterpage.class.php:63 -msgid "Install/Update" -msgstr "Installa/Aggiorna" +msgid "Partclone Uncompressed" +msgstr " Partclone non compressa" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" -msgstr "Se vuoi eseguire il backup del tuo" +msgid "Partclone Uncompressed 200MiB split" +msgstr "Partclone non compressa diviso per 200MiB" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" -msgstr "FOG database è possibile farlo utilizzando" +msgid "Partclone Uncompressed Split 200MiB" +msgstr "Partclone non compressa diviso per 200MiB" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" -msgstr "MySQL Administrator o eseguendo" +msgid "Partclone Zstd" +msgstr "Partclone Zstd" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" -msgstr "il seguente comando in un terminale" +msgid "Partclone Zstd Split 200MiB" +msgstr "Partclone zstd diviso per 200MiB" -#: lib/pages/schemaupdaterpage.class.php:75 -msgid "window" -msgstr "finestra" +msgid "Partimage" +msgstr "partimage" -#: lib/pages/schemaupdaterpage.class.php:76 -msgid "Applications" -msgstr "Applicazioni" +msgid "Partition" +msgstr "Partizione" -#: lib/pages/schemaupdaterpage.class.php:77 -msgid "System Tools" -msgstr "Utilità di sistema" +msgid "Password" +msgstr "parola d'ordine" -#: lib/pages/schemaupdaterpage.class.php:78 -msgid "Terminal" -msgstr "Terminale" +msgid "Password reset requires a user account to reset" +msgstr "" +"reimpostazione della password richiede un account utente per ripristinare" -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "Questo salverà il backup nella tua" +msgid "Path" +msgstr "Percorso" -#: lib/pages/schemaupdaterpage.class.php:80 -msgid "directory" -msgstr "directory" +msgid "Path is unavailable" +msgstr "Percorso non disponibile" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" -msgstr "Il tuo schema di database FOG non è aggiornato" +msgid "Pause" +msgstr "Pausa" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" -msgstr "Sia perché hai aggiornato" +msgid "Pending Host List" +msgstr "In attesa Lista Host" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" -msgstr "o questa è una nuova installazione di FOG" +msgid "Pending Hosts" +msgstr "Host in sospeso" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" -msgstr "Se questo è un aggiornamento" +msgid "Pending MAC Actions" +msgstr "Azioni MAC in corso" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" -msgstr "Ci sarà un backup del database memorizzato sul tuo" +msgid "Pending MAC Export" +msgstr "In attesa MAC Export" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" -msgstr "server FOG per default nella cartella" +msgid "Pending MACs" +msgstr "sospeso MAC" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" -msgstr "Qualsiasi cosa andasse storto" +msgid "Pending Registered Hosts" +msgstr "In attesa di host registrati" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" -msgstr "Questo backup vi permetterà di ritornare alla" +msgid "Pending Registration created by FOG_CLIENT" +msgstr "In attesa di registrazione creato da FOG_CLIENT" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" -msgstr "installazione precedente se necessario" +msgid "Pending hosts" +msgstr "host in sospeso" -#: lib/pages/schemaupdaterpage.class.php:103 -msgid "Are you sure you wish to" -msgstr "Sei sicuro di voler" +msgid "Pending macs" +msgstr "Mac in attesa" -#: lib/pages/schemaupdaterpage.class.php:104 -msgid "install or update the FOG database" -msgstr "Installare o aggiornare il database FOG" +msgid "Pending..." +msgstr "In attesa di..." -#: lib/pages/schemaupdaterpage.class.php:115 -msgid "Install/Update Now" -msgstr "Installa/Aggiorna adesso" +msgid "Percent" +msgstr "Per cento" -#: lib/pages/schemaupdaterpage.class.php:125 -msgid "Database not available" -msgstr "Database non disponibile" +msgid "Perform Immediately?" +msgstr "Esegui immediatamente?" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" -msgstr "La connessione al database sembra non valida" +msgid "Perform search" +msgstr "Esegui ricerca" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" -msgstr "FOG non è in grado di comunicare con il database" +msgid "Personal Information" +msgstr "Informazione personale" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" -msgstr "Ci sono molte ragioni per cui questo potrebbe essere il caso" +msgid "Pick a template" +msgstr "Scegli un modello" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" -msgstr "Controlla le tue credenziali" +msgid "Ping Hosts" +msgstr "Host ping" -#: lib/pages/schemaupdaterpage.class.php:138 -msgid "Also confirm that the database is indeed running" -msgstr "Confermare anche che il database sia in esecuzione" +msgid "Please Enter an admin or mobile lookup name" +msgstr "Inserisci un nome di amministratore o di ricerca per cellulari" -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" -msgstr "Se le credenziali sono corrette" +msgid "Please Select an option" +msgstr "Per favore selezionate un'opzione" -#: lib/pages/schemaupdaterpage.class.php:140 -msgid "and if the Database service is running" -msgstr "e se il servizio Database è in esecuzione" +msgid "Please be very careful changing any of the following settings" +msgstr "" +"Si prega di essere molto attenti a modificare una delle seguenti impostazioni" -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" -msgstr "cerificare che il filesystem abbia spazio sufficiente" +msgid "Please check your credentials in" +msgstr "Controlla le tue credenziali" -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" -msgstr "Nessuna connessione disponibile" +msgid "Please choose a different name" +msgstr "Scegliere un nome diverso" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" -msgstr "Aggiornamento non richiesto!" +msgid "Please choose a different path" +msgstr "Scegliere un percorso diverso" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 -msgid "Function" -msgstr "Funzione" +msgid "Please choose an image" +msgstr "Scegliere un immagine" -#: lib/pages/schemaupdaterpage.class.php:230 -msgid "Database" -msgstr "Database" +msgid "Please confirm you want to delete" +msgstr "Conferma che desideri eliminare" -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" -msgstr "La variabile contiene" +msgid "Please enter a Group Member Attribute" +msgstr "Inserisci un attributo membro del gruppo" -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" -msgstr "Database SQL" +msgid "Please enter a LDAP server address" +msgstr "Si prega di inserire un indirizzo del server LDAP" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" -msgstr "Installare / Aggiornamento non riuscito!" +msgid "Please enter a Search Base DN" +msgstr "Inserisci un DN di base di ricerca" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" -msgstr "Si sono verificati i seguenti errori" +msgid "Please enter a User Name Attribute" +msgstr "Inserisci un attributo nome utente" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" -msgstr "Installare / Aggiornamento di successo!" +msgid "Please enter a hostname" +msgstr "Inserisci un hostname" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" -msgstr "il login" +msgid "Please enter a mac address" +msgstr "Inserisci un indirizzo MAC" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" -msgstr "I seguenti errori si è verificato" +msgid "Please enter a name for this LDAP server." +msgstr "Si prega di inserire un nome per questo server LDAP." -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" -msgstr "Modifica nodo" +msgid "Please enter a name for this location." +msgstr "Si prega di inserire un nome per questa posizione." -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" -msgstr "Hostname / IP" +#, fuzzy +msgid "Please enter a valid CIDR subnet." +msgstr "Si prega di inserire un nome host valido" -#: lib/pages/serverinfo.class.php:75 -msgid "Server information" -msgstr "Informazioni sul server" +#, fuzzy +msgid "Please enter a valid CIDR subnets comma separated list" +msgstr "Inserisci un indirizzo MAC valido" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" -msgstr "Information Server non valido!" +msgid "Please enter a valid hostname" +msgstr "Si prega di inserire un nome host valido" -#: lib/pages/serverinfo.class.php:94 -msgid "Unable to get server infromation!" -msgstr "Impossibile ottenere informazioni sul server!" +msgid "Please enter a valid ip" +msgstr "Si prega di inserire un IP valido" -#: lib/pages/serverinfo.class.php:145 -msgid "Unable to find basic information!" -msgstr "Impossibile trovare informazioni di base!" +msgid "Please enter a valid mac address" +msgstr "Inserisci un indirizzo MAC valido" -#: lib/pages/serverinfo.class.php:158 -msgid "TX" -msgstr "TX" +msgid "Please enter an access token" +msgstr "Si prega di inserire un token di accesso" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" -msgstr "RX" +msgid "Please input a session name" +msgstr "Si prega di inserire un nome di sessione" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "Dropped" +msgid "Please physically associate" +msgstr "Si prega di associare fisicamente" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" -msgstr "Informazione generale" +msgid "Please select a valid ldap port" +msgstr "Seleziona una porta ldap valida" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "uptime" +msgid "Please select an LDAP port to use" +msgstr "Seleziona una porta LDAP da utilizzare" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" -msgstr "Tipo CPU" +msgid "Please select an option" +msgstr "per favore selezionate un'opzione" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "Conte CPU" +msgid "Please select the snapin you want to install" +msgstr "Si prega di selezionare lo snap-in che si desidera installare" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" -msgstr "Modello CPU" +msgid "Please select the storage group this location relates to." +msgstr "" +"Si prega di selezionare il gruppo di archiviazione questa posizione si " +"riferisce a." -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "cache della CPU" +msgid "Please update your FOG Client, this is old and insecure" +msgstr "" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "Memoria totale" +msgid "Please use another hostname" +msgstr "Utilizza un altro hostname" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" -msgstr "memoria utilizzata" +msgid "Please wait until a slot is open" +msgstr "Attendere l'apertura di uno slot" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "Memoria libera" +msgid "Plugin" +msgstr "Collegare" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" -msgstr "File System Information" +#, fuzzy +msgid "Plugin Configuration" +msgstr "Configurazione della stampante" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "Spazio su disco totale" +msgid "Plugin Description" +msgstr "Plugin Descrizione" -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "Usato spazio su disco" +msgid "Plugin Installation" +msgstr "Installazione Plugin" -#: lib/pages/serverinfo.class.php:203 -msgid "Free Disk Space" -msgstr "Spazio libero su disco" +msgid "Plugin Installed!" +msgstr "Plugin Installed!" -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" -msgstr "Informationi di rete" +msgid "Plugin Management" +msgstr "Gestione Plugin" -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" -msgstr "Informazioni" +msgid "Plugin Name" +msgstr "Nome Plugin" -#: lib/pages/serviceconfigurationpage.class.php:133 -msgid "Service general" -msgstr "Servizio generale" +msgid "Plugins" +msgstr "Plugins" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "Ciò consentirà di configurare come servizi" +msgid "Port" +msgstr "Porta" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." -msgstr "funziona sui computer client." +msgid "Port is not valid ldap/ldaps port" +msgstr "La porta non è la porta ldap / ldaps valida" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." -msgstr "" -"Le impostazioni tendono ad essere le impostazioni globali che influenzano " -"tutti gli host" +msgid "Postfix requires an action of login" +msgstr "Postfix richiede un'azione di accesso" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "Se si desidera configurare le impostazioni di un host specifico" +msgid "Postfix requires an action of login, logout, or start to operate" +msgstr "Postfix richiede un'azione di login, logout, o iniziare a funzionare" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "Si prega di consultare la sezione di impostazioni del servizio host" +msgid "Power Management" +msgstr "Gestione energetica" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." -msgstr "Per iniziare, seleziona un elemento dal menu." +#, fuzzy +msgid "Power Management Task run time" +msgstr "Gestione energetica" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" -msgstr "FOG client Scarica" +msgid "Primary Group" +msgstr "Gruppo primario" -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "Utilizzare il seguente collegamento per accedere alla pagina client." +msgid "Primary MAC" +msgstr "MAC primaria" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "Qui è possibile scaricare programmi di utilità come FOG Prep" +msgid "Primary Storage Group" +msgstr "Gruppo di archiviazione primaria" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" -msgstr "FOG Crypt" +msgid "Primary User" +msgstr "Utente primario" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "ed entrambi i client FOG legacy e nuovi." +msgid "Printed" +msgstr "Stampato" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" -msgstr "Clicca qui" +msgid "Printer" +msgstr "Stampante" -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" -msgstr "Attivata come impostazione predefinita" +msgid "Printer Alias" +msgstr "stampante Alias" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" -msgstr "Stato servizio" +msgid "Printer Associations" +msgstr "Associazioni stampanti" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 -msgid "Current settings" -msgstr "Sessioni correnti" +#, fuzzy +msgid "Printer Config File" +msgstr "Configurazione della stampante" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "Predefinito disconnettersi tempo (in minuti)" +msgid "Printer Configuration" +msgstr "Configurazione della stampante" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 -msgid "This module is only used on the old client." -msgstr "Questo modulo viene utilizzato solo sul vecchio client." +msgid "Printer Create Fail" +msgstr "Creazione stampante fallita" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" -msgstr "Il vecchio cliente è stato distribuito con" +msgid "Printer Create Success" +msgstr "Creazione stampante riuscita" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." -msgstr "FOG 1.2.0 e precedenti" +msgid "Printer Description" +msgstr "Descrizione della stampante" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" -msgstr "Questo modulo non funziona oltre Windows XP" +msgid "Printer General" +msgstr "Stampante Generale" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." -msgstr "a causa di UAC introdotte in Vista e in su." +msgid "Printer INF File" +msgstr "Stampante INF File" -#: lib/pages/serviceconfigurationpage.class.php:463 -msgid "Directories" -msgstr "Cartelle" +msgid "Printer IP" +msgstr "IP della stampante" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" -msgstr "Aggiungere Directory" +#, fuzzy +msgid "Printer IP/Hostname" +msgstr "Nome stampante" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" -msgstr "Larghezza predefinita" +msgid "Printer Management" +msgstr "Printer Management" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "Altezza di default" +msgid "Printer Model" +msgstr "Modello stampante" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" -msgstr "Predefinito: frequenza aggiornamento" +msgid "Printer Name" +msgstr "Nome stampante" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." -msgstr "Il vecchio client è stato distribuito con FOG 1.2.0 e precedenti." +msgid "Printer Name/Alias" +msgstr "Nome della stampante/Alias" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." -msgstr "Questo modulo è stato sostituito da Power Management." +msgid "Printer Port" +msgstr "porta stampante" -#: lib/pages/serviceconfigurationpage.class.php:678 -msgid "New Event" -msgstr "Aggiungi evento" +msgid "Printer Type" +msgstr "Tipo stampante" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" -msgstr "Aggiungi evento" +msgid "Printer Update Fail" +msgstr "Aggiornamento della stampante non riuscito" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." -msgstr "" -"Questo modulo non funziona successivamente a Windows XP a causa di UAC." +msgid "Printer Update Success" +msgstr "Aggiornamento stampante riuscito" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" -msgstr "Aggiungi utente" +msgid "Printer added!" +msgstr "Stampante aggiunta" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." -msgstr "Deve essere tra 0 e 23 per le ore del giorno." +msgid "Printer name already exists" +msgstr "Nome stampante già esistente" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "Deve essere tra 0 e 59 per i minuti del giorno." +msgid "Printer update failed!" +msgstr "Aggiornamento della stampante non è riuscito!" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." -msgstr "È necessario utilizzare l'azione di riavvio o di arresto." +msgid "Printer updated!" +msgstr "aggiornato stampante!" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" -msgstr "aggiornamento del servizio non riuscito" +msgid "Printers" +msgstr "Stampanti" -#: lib/pages/serviceconfigurationpage.class.php:986 -msgid "Module updated!" -msgstr "Modulo aggiornato!" +msgid "Private key failed" +msgstr "Chiave privata non è riuscita" -#: lib/pages/serviceconfigurationpage.class.php:987 -msgid "Module Update Success" -msgstr "Aggiornamento del modulo completato" +msgid "Private key not found" +msgstr "Chiave privata non trovato" -#: lib/pages/serviceconfigurationpage.class.php:995 -msgid "Module Update Fail" -msgstr "Aggiornamento modulo non riuscito" +msgid "Private key not readable" +msgstr "chiave privata non leggibile" -#: lib/pages/snapinmanagementpage.class.php:134 -msgid "Filesize" -msgstr "Dimensione del file" +msgid "Private key path not found" +msgstr "Percorso chiave privata non trovata" -#: lib/pages/snapinmanagementpage.class.php:167 -msgid "Is Pack" -msgstr "È Pack" +msgid "Protected" +msgstr "Protetta" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "No" +msgid "Pushbullet Accounts" +msgstr "Pushbullet Conti" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "Sì" +#, fuzzy +msgid "Pushbullet Management" +msgstr "client Management" -#: lib/pages/snapinmanagementpage.class.php:397 -msgid "New Snapin" -msgstr "Nuovo Snapin" +msgid "Quarantine" +msgstr "Quarantena" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" -msgstr "Snapin Descrizione" +msgid "Queued" +msgstr "In coda" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 -msgid "Snapin Type" -msgstr "Snapin Tipo" +msgid "Quick" +msgstr "Veloce" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 -msgid "Normal Snapin" -msgstr "Snapin normale" +msgid "RX" +msgstr "RX" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 -msgid "Snapin Pack" -msgstr "Snapin Pack" +msgid "Reboot" +msgstr "Riavvio" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" -msgstr "Snapin Modello" +msgid "Reboot after deploy" +msgstr "Riavvio dopo Deploy" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 -msgid "Snapin Pack Template" -msgstr "Snapin Pack Modello" +msgid "Reboot after install" +msgstr "Riavvio dopo l'installazione" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" -msgstr "Snapin Avvia con" +msgid "Rebranding element has been successfully updated!" +msgstr "L'elemento Rebranding è stato aggiornato con successo!" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 -msgid "Snapin Pack File" -msgstr "Snapin Pack File" +msgid "Receive" +msgstr "Ricevere" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" -msgstr "Snap-Run con l'argomento" +msgid "Recommended" +msgstr "Consigliato" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 -msgid "Snapin Pack Arguments" -msgstr "Argomenti Snapin Pack" +msgid "Record not found" +msgstr "Record non trovato" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" -msgstr "File Snapin" +msgid "Register must be managed from hooks or events" +msgstr "Registro deve essere gestito da hook o eventi" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" -msgstr "File snap-in (esiste)" +msgid "Registered" +msgstr "Registrato" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" -msgstr "Argomenti Snapin" +msgid "Registered Hosts" +msgstr "host registrati" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" -msgstr "snap-Enabled" +msgid "Releasing Staff Initials" +msgstr "Il rilascio del personale Iniziali" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 -msgid "Snapin Arguments Hidden" -msgstr "Snapin Argomenti nascosti" +msgid "Remit Hello Interval" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 -msgid "Snapin Timeout (seconds)" -msgstr "Timeout Snapin (in secondi)" +msgid "Remote address attempting to login" +msgstr "Indirizzo remoto che cerca di accedere" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" -msgstr "Riavvio dopo l'installazione" +msgid "Remove" +msgstr "Rimuovere" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" -msgstr "Shutdown dopo l'installazione" +msgid "Remove " +msgstr "Rimuovere" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" -msgstr "Snapin comando" +#, fuzzy +msgid "Remove Accesscontrol Rules" +msgstr "Regole controllo accessi" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" -msgstr "sola lettura" +msgid "Remove Associations" +msgstr "Rimuove le associazioni" -#: lib/pages/snapinmanagementpage.class.php:668 -msgid "Create New Snapin" -msgstr "Crea nuovo snapin" +#, fuzzy +msgid "Remove Hosts" +msgstr "Rimuovere" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." -msgstr "Il file snap-in è troppo grande, aumenta post_max_size in php.ini." +#, fuzzy +msgid "Remove Images" +msgstr "Rimuovere" -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." -msgstr "La variabile $ _POST è vuota, controlla il log degli errori di apache." +msgid "Remove MAC" +msgstr "rimuovere MAC" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 -msgid "A snapin name is required!" -msgstr "È richiesto un nome di snapin!" +msgid "Remove Selected?" +msgstr "Rimuovi i selezionati" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 -msgid "A snapin already exists with this name!" -msgstr "Esiste già un snapin con questo nome!" +#, fuzzy +msgid "Remove Users" +msgstr "Rimuovere" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 -msgid "A file" -msgstr "Un file" +msgid "Remove failed" +msgstr "Rimozione fallita" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" -msgstr "già selezionati o caricati" +msgid "Remove selected " +msgstr "Rimuovi i selezionati" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -msgid "must be specified" -msgstr "deve essere specificato" +msgid "Remove selected groups" +msgstr "Rimuovi i gruppi selezionati" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" -msgstr "Connessione FTP non è riuscita" +#, fuzzy +msgid "Remove selected hosts" +msgstr "Rimuovi i selezionati" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -msgid "Failed to add snapin" -msgstr "Impossibile aggiungere lo snapin" +#, fuzzy +msgid "Remove selected images" +msgstr "Rimuovi i selezionati" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" -msgstr "Impossibile aggiungere / aggiornare il file snapin" +msgid "Remove selected printers" +msgstr "Rimuovere le stampanti selezionate" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" -msgstr "Aggiungi snapin non riuscito!" +#, fuzzy +msgid "Remove selected rules" +msgstr "Rimuovi i selezionati" -#: lib/pages/snapinmanagementpage.class.php:867 -msgid "Snapin added!" -msgstr "Snapin aggiunto!" +msgid "Remove selected snapins" +msgstr "Rimuovere snapins selezionati" -#: lib/pages/snapinmanagementpage.class.php:868 -msgid "Snapin Create Success" -msgstr "Creazione Snapin completata" +#, fuzzy +msgid "Remove selected users" +msgstr "Rimuovi i selezionati" -#: lib/pages/snapinmanagementpage.class.php:877 -msgid "Snapin Create Fail" -msgstr "Creazione Snapin fallita" +msgid "Remove snapins" +msgstr "Rimuovi Snapin" -#: lib/pages/snapinmanagementpage.class.php:904 -msgid "Snapin General" -msgstr "Generale Snapin" +msgid "Remove these items?" +msgstr "Rimuovere questi elementi?" -#: lib/pages/snapinmanagementpage.class.php:1123 -msgid "Snapin Protected" -msgstr "Snapin Protetto" +msgid "Removed" +msgstr "Rimosso" -#: lib/pages/snapinmanagementpage.class.php:1291 -msgid "Snapin Storage Groups" -msgstr "Gruppo di archiviazione Snapin" +msgid "Removing Key" +msgstr "Rimuovi chiave" -#: lib/pages/snapinmanagementpage.class.php:1701 -msgid "Snapin update failed!" -msgstr "Aggiornamento Snapin fallito!" +msgid "Replay from journal" +msgstr "Replay dal journal" -#: lib/pages/snapinmanagementpage.class.php:1706 -msgid "Snapin updated!" -msgstr "Snap-in aggiornato!" +msgid "Replicate?" +msgstr "Replicare?" -#: lib/pages/snapinmanagementpage.class.php:1707 -msgid "Snapin Update Success" -msgstr "Modifica Snapin riuscita" +msgid "Replicating" +msgstr "Replicando" -#: lib/pages/snapinmanagementpage.class.php:1716 -msgid "Snapin Update Fail" -msgstr "Aggiornamento Snapin fallito" +msgid "Replication Bandwidth" +msgstr "Larghezza di banda replica" -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" -msgstr "%s ID %s non è valido" +msgid "Replication already running with PID" +msgstr "Replica già in esecuzione con PID" -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "radice Web" +msgid "Report" +msgstr "rapporto" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "bitrate" +msgid "Report Management" +msgstr "Relazione sulla gestione" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" -msgstr "" +msgid "Reports" +msgstr "Rapporti" -#: lib/pages/storagemanagementpage.class.php:462 -msgid "Create Storage Node" -msgstr "Crea nodo di archiviazione" +msgid "Required database field is empty" +msgstr "campo del database richiesto è vuoto" -#: lib/pages/storagemanagementpage.class.php:483 -msgid "New Storage Node" -msgstr "Nuovo nodo di archiviazione" +msgid "Requires templates to process" +msgstr "Richiede modelli per elaborare" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" -msgstr "Larghezza di banda deve essere numerico e maggiore di 0" +msgid "Reset Encryption Data" +msgstr "Remposta dati crittografia" -#: lib/pages/storagemanagementpage.class.php:578 -msgid "Add storage node failed!" -msgstr "Aggiunta nodo di archiviazione fallita!" +msgid "Reset Token" +msgstr "Reset Token" -#: lib/pages/storagemanagementpage.class.php:603 -msgid "Storage Node added!" -msgstr "Nodo di archiviazione aggiunto!" +msgid "Result" +msgstr "Risultati" -#: lib/pages/storagemanagementpage.class.php:604 -msgid "Storage Node Create Success" -msgstr "Nodo di archiviazione creato con successo" +msgid "Results" +msgstr "risultati" -#: lib/pages/storagemanagementpage.class.php:612 -msgid "Storage Node Create Fail" -msgstr "Creazione nodo di archiviazione fallita" +msgid "Return Code" +msgstr "Codice di ritorno" -#: lib/pages/storagemanagementpage.class.php:686 -msgid "Storage Node General" -msgstr "Generale nodo di archiviazione" +msgid "Return Desc" +msgstr "ritorno Desc" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" -msgstr "" +msgid "Return code" +msgstr "Codice di ritorno" -#: lib/pages/storagemanagementpage.class.php:968 -msgid "Storage Node update failed!" -msgstr "Aggiornamento nodo di archiviazione fallito!" +msgid "Returning array within key" +msgstr "Tornando matrice all'interno chiave" -#: lib/pages/storagemanagementpage.class.php:993 -msgid "Storage Node updated!" -msgstr "Nodo di archiviazione aggiornato!" +msgid "Returning value of key" +msgstr "Tornando valore della chiave" -#: lib/pages/storagemanagementpage.class.php:994 -msgid "Storage Node Update Success" -msgstr "Aggiornamento nodo di archiviazione completato" +msgid "Reverse the file: (newest on top)" +msgstr "Invertire il file: (più recente in alto)" -#: lib/pages/storagemanagementpage.class.php:1002 -msgid "Storage Node Update Fail" -msgstr "Aggiornamento nodo di archiviazione fallito!" +msgid "Rexmit Hello Interval" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" -msgstr "Massimo" +msgid "Role" +msgstr "Regola" -#: lib/pages/storagemanagementpage.class.php:1250 -msgid "Create Storage Group" -msgstr "Creazione Gruppo di archiviazione" +msgid "Role Create Fail" +msgstr "Creazione ruolo fallita" -#: lib/pages/storagemanagementpage.class.php:1271 -msgid "New Storage Group" -msgstr "Nuovo Gruppo di archiviazione" +msgid "Role Create Success" +msgstr "Creazione ruolo riuscita" -#: lib/pages/storagemanagementpage.class.php:1311 -msgid "Storage Group Create Success" -msgstr "Gruppo di archiviazione creato con successo" +msgid "Role Description" +msgstr "Descrizione del ruolo" -#: lib/pages/storagemanagementpage.class.php:1319 -msgid "Storage Group Create Fail" -msgstr "Gruppo di archiviazione creazione fallita" +msgid "Role Name" +msgstr "Nome regola" -#: lib/pages/storagemanagementpage.class.php:1346 -msgid "Storage Group General" -msgstr "Gruppo di archiviazione Generale" +msgid "Role Update Fail" +msgstr "Aggiornamento ruolo non riuscito" -#: lib/pages/storagemanagementpage.class.php:1444 -msgid "Storage Group update failed!" -msgstr "Aggiornamento Gruppo di archiviazione fallito!" +msgid "Role Update Success" +msgstr "Aggiornamento ruolo completato" -#: lib/pages/storagemanagementpage.class.php:1449 -msgid "Storage Group updated!" -msgstr "Gruppo di archiviazione aggiornato!" +msgid "Role added!" +msgstr "Ruolo aggiunto!" -#: lib/pages/storagemanagementpage.class.php:1450 -msgid "Storage Group Update Success" -msgstr "Aggiornamento Gruppo di archiviazione completato" +msgid "Role update failed!" +msgstr "Aggiornamento ruolo non riuscito" -#: lib/pages/storagemanagementpage.class.php:1457 -msgid "Storage Group Update Fail" -msgstr "Aggiornamento Gruppo di archiviazione fallito" +msgid "Role updated!" +msgstr "Ruolo aggiornato!" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" -msgstr "Ordina per:" +msgid "Routes should be an array or an instance of Traversable" +msgstr "I percorsi devono essere un array o un'istanza di Traversable" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" -msgstr "Lavorare con il nodo" +msgid "Row" +msgstr "Riga" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" -msgstr "Task forzato a partire" +msgid "Row number not set properly" +msgstr "numero di riga non impostato correttamente" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" -msgstr "Task da forzare a partire" +#, fuzzy +msgid "Rule Associate Fail" +msgstr "Regole di associazione" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" -msgstr "tutti i gruppi" +#, fuzzy +msgid "Rule Associate Success" +msgstr "Regola eliminazione del successo" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" -msgstr "tipo di oggetto non valido passato" +msgid "Rule Association" +msgstr "Regole di associazione" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" -msgstr "Non valido Tipo Task" +#, fuzzy +msgid "Rule Create Fail" +msgstr "Creazione ruolo fallita" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" -msgstr "immagine non valido assegnato ad ospitare" +#, fuzzy +msgid "Rule Create Success" +msgstr "Creazione ruolo riuscita" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" -msgstr "è protetta" +#, fuzzy +msgid "Rule Delete Fail" +msgstr "Cancellare i file" -#: lib/pages/taskmanagementpage.class.php:550 -msgid "Quick" -msgstr "Veloce" +msgid "Rule Delete Success" +msgstr "Regola eliminazione del successo" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" -msgstr "Host non hanno la stessa immagine assegnato" +#, fuzzy +msgid "Rule Membership" +msgstr "membri" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" -msgstr "Multicast rapida Deploy" +msgid "Rule Name" +msgstr "Nome regola" -#: lib/pages/taskmanagementpage.class.php:564 -msgid "Group Quick Deploy" -msgstr "Rapida distribuzione di gruppo" +msgid "Rule Type" +msgstr "Tipo regola" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." -msgstr "" -"Assegnato con successo, fare clic su attività attive per visualizzare in " -"linea." +#, fuzzy +msgid "Rule Update Fail" +msgstr "Aggiornamento ruolo non riuscito" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" -msgstr "Attività non valida" +#, fuzzy +msgid "Rule Update Success" +msgstr "Aggiornamento ruolo completato" -#: lib/pages/taskmanagementpage.class.php:801 -msgid "Active Multi-cast Tasks" -msgstr "Attività multi-cast attive" +msgid "Rule Value" +msgstr "Valore regola" -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "Attività Multicast" +#, fuzzy +msgid "Rule added!" +msgstr "Ruolo aggiunto!" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" -msgstr "Impossibile annullare le attività in questo modo" +#, fuzzy +msgid "Rule associate success!" +msgstr "Regola eliminazione del successo" -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" -msgstr "Host / Nome gruppo" +#, fuzzy +msgid "Rule deleted successfully!" +msgstr "Regola eliminazione del successo" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" -msgstr "Il gruppo è" +msgid "Rule type" +msgstr "Tipo di regola" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" -msgstr "Tipo attività" +#, fuzzy +msgid "Rule updated!" +msgstr "Ruolo aggiornato!" -#: lib/pages/taskmanagementpage.class.php:1204 -msgid "All snapins" -msgstr "Tutti gli snap-in" +msgid "Rule value" +msgstr "Valore regola" -#: lib/pages/taskmanagementpage.class.php:1208 -msgid "Invalid snapin" -msgstr "Snapin non valido" +msgid "Running Windows" +msgstr "Running Windows" -#: lib/pages/taskmanagementpage.class.php:1210 -msgid "Snapin to be installed" -msgstr "Snapin da installare" +msgid "SQL Error" +msgstr "Errore SQL:" -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" -msgstr "gruppo" +msgid "SSL Path" +msgstr "Percorso SSL" -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" -msgstr "host" +msgid "Save Changes" +msgstr "Salva i cambiamenti" -#: lib/pages/usermanagementpage.class.php:52 -msgid "Change password" -msgstr "Cambia password" +msgid "Save Initrd" +msgstr "" -#: lib/pages/usermanagementpage.class.php:56 -msgid "API Settings" -msgstr "impostazioni API" +msgid "Save Kernel" +msgstr "Save Kernel" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 -msgid "Friendly Name" -msgstr "Nome amichevole" +msgid "Saving data for" +msgstr "Salvataggio dei dati per" -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" -msgstr "Nessun nome amichevole definito" +msgid "Schedule" +msgstr "Programmazione" -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" -msgstr "API?" +msgid "Schedule Power" +msgstr "Pianifica spegnimento" -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" -msgstr "Modifica utente" +msgid "Schedule as debug task" +msgstr "Pianifica come debug task" -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" -msgstr "Nuovo utente" +msgid "Schedule cron-style" +msgstr "Pianifica cron-style" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" -msgstr "Nome utente" +msgid "Schedule delayed" +msgstr "Programmazione ritardata" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" -msgstr "Password utente" +msgid "Schedule instant" +msgstr "Programma adesso" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" -msgstr "User Password (conferma)" +msgid "Schedule with shutdown" +msgstr "Programma con spegnimento" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 -msgid "User API Enabled" -msgstr "API Utente abilitate" +#, fuzzy +msgid "Scheduled Task run time" +msgstr "Attività pianificate" -#: lib/pages/usermanagementpage.class.php:223 -msgid "Create user?" -msgstr "Crea utente?" +msgid "Scheduled Tasks" +msgstr "Attività pianificate" -#: lib/pages/usermanagementpage.class.php:283 -msgid "A user name is required!" -msgstr "È richiesto un nome utente!" +msgid "Scheduled date is in the past" +msgstr "Data prevista è nel passato" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" -msgstr "Il nome utente non soddisfa i requisiti" +msgid "Scheduled tasks successfully created" +msgstr "Attività pianificate create con successo" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" -msgstr "Nome utente deve iniziare con un carattere alfabetico" +msgid "Scheduler" +msgstr "Pianificatore" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" -msgstr "Nome utente deve avere almeno 3 caratteri" +msgid "Screen Height (in pixels)" +msgstr "Schermo Altezza (in pixel)" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" -msgstr "Nome utente deve essere inferiore a 41 caratteri" +msgid "Screen Refresh Rate (in Hz)" +msgstr "Schermo Frequenza di aggiornamento (in Hz)" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" -msgstr "Il nome utente non può contenere caratteri speciali contigui" +msgid "Screen Width (in pixels)" +msgstr "Larghezza dello schermo (in pixel)" -#: lib/pages/usermanagementpage.class.php:304 -msgid "A username already exists with this name!" -msgstr "Esiste già un nome utente con questo nome!" +msgid "Search" +msgstr "Ricerca" -#: lib/pages/usermanagementpage.class.php:309 -msgid "A password is required!" -msgstr "Una password è richiesta!" +msgid "Search Base DN" +msgstr "Cerca Base DN" -#: lib/pages/usermanagementpage.class.php:321 -msgid "Add user failed!" -msgstr "Aggiunta utente fallita!" +msgid "Search DN" +msgstr "Search DN" -#: lib/pages/usermanagementpage.class.php:327 -msgid "User added!" -msgstr "Utente aggiunto!" +msgid "Search DN did not return any results" +msgstr "Ricerca DN non ha restituito alcun risultato" -#: lib/pages/usermanagementpage.class.php:328 -msgid "User Create Success" -msgstr "Creazione utente riuscita" +msgid "Search Method" +msgstr "Metodo di ricerca" -#: lib/pages/usermanagementpage.class.php:336 -msgid "User Create Fail" -msgstr "Creazione utente fallita" +msgid "Search Scope" +msgstr "Scope di ricerca" -#: lib/pages/usermanagementpage.class.php:363 -msgid "User General" -msgstr "Utente generale" +#, fuzzy +msgid "Search pattern" +msgstr "Scope di ricerca" -#: lib/pages/usermanagementpage.class.php:392 -msgid "Update General?" -msgstr "Aggiornamento generale?" +msgid "Search results returned false" +msgstr "Risultati di ricerca che restituiscono false" -#: lib/pages/usermanagementpage.class.php:455 -msgid "User Change Password" -msgstr "Cambia password utente" +msgid "Second paramater must be in array(class,function)" +msgstr "Il secondo parametro deve essere un array (classe, funzione)" -#: lib/pages/usermanagementpage.class.php:481 -msgid "Update Password?" -msgstr "Cambio Password?" +msgid "Select Image" +msgstr "Seleziona Immagine" -#: lib/pages/usermanagementpage.class.php:535 -msgid "User API Settings" -msgstr "Impostazioini User API" +msgid "Select User" +msgstr "Selezionare utente" -#: lib/pages/usermanagementpage.class.php:557 -msgid "User API Token" -msgstr "API Utente Token" +msgid "Select a cron type" +msgstr "Selezionare un tipo di cron" -#: lib/pages/usermanagementpage.class.php:573 -msgid "Update API?" -msgstr "Aggiornamento API?" +msgid "Select a valid image" +msgstr "Selezionare un'immagine valida" -#: lib/pages/usermanagementpage.class.php:667 -msgid "A user already exists with this name" -msgstr "Esiste già un utente con questo nome!" +msgid "Select management level for these hosts" +msgstr "Seleziona il livello di gestione per questi host" -#: lib/pages/usermanagementpage.class.php:728 -msgid "User update failed!" -msgstr "Aggiornamento utente non riuscita" +msgid "Select management level for this host" +msgstr "Seleziona il livello di gestione per questo host" -#: lib/pages/usermanagementpage.class.php:733 -msgid "User updated!" -msgstr "Utente aggiornato" +msgid "Select/Deselect All" +msgstr "Selezionare / deselezionare tutti" -#: lib/pages/usermanagementpage.class.php:734 -msgid "User Update Success" -msgstr "Utente aggiornato con successo" +msgid "Selected Logins" +msgstr "Logini selezionati" -#: lib/pages/usermanagementpage.class.php:742 -msgid "User Update Fail" -msgstr "Aggiornamento utente non riuscita" +msgid "Selected groups's current activity" +msgstr "Attività corrente del gruppo selezionato" -#: lib/pages/processlogin.class.php:161 -#, fuzzy -msgid "Login failed" -msgstr "Caricamento non riuscito" +msgid "Selected hosts approved successfully" +msgstr "Host selezionati approvati correttamente" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 -#, fuzzy -msgid "username" -msgstr "Nome utente" +msgid "Selected hosts deleted successfully" +msgstr "Host selezionati eliminati correttamente" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "non è riuscito a effettuare il login" +msgid "Selected node's disk usage" +msgstr "Utilizzo del disco del nodo selezionato" -#: lib/pages/processlogin.class.php:185 -#, fuzzy -msgid "Login accepted" -msgstr "Tempo di accesso" +msgid "Serial" +msgstr "Seriale" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" -msgstr "" +msgid "Serial Number" +msgstr "Numero di serie" -#: lib/pages/processlogin.class.php:246 -msgid "FOG Project" -msgstr "Progetto FOG" +msgid "Server Shell" +msgstr "Server Shell" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 -msgid "Access Controls" -msgstr "Controllo accessi" +msgid "Server information" +msgstr "Informazioni sul server" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 -msgid "Role" -msgstr "Regola" +msgid "Server information at a glance." +msgstr "Informazioni sul server in un colpo d'occhio." -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -msgid "User Access Control" -msgstr "User Access Control" +msgid "Service" +msgstr "Servizio" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -msgid "Export Accesscontrols" -msgstr "Esporta controllo accessi" +msgid "Service Configuration" +msgstr "Configurazione del servizio" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 -msgid "Import Accesscontrols" -msgstr "Importa controllo accessi" +msgid "Service Master" +msgstr "Service master" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 -msgid "Rule Association" -msgstr "Regole di associazione" +msgid "Service Setting Update Failed" +msgstr "Aggiornamento impostazione servizio non riuscito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 -msgid "Role Name" -msgstr "Nome regola" +msgid "Service Setting Update Success" +msgstr "Agiormaento Impostazioni del servizio completato" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -msgid "Rule type" -msgstr "Tipo di regola" +msgid "Service Start" +msgstr "Servizio avviato" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" -msgstr "Valore regola" +msgid "Service Status" +msgstr "Stato servizio" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 -msgid "Parent Node" -msgstr "Nodo superiore" +msgid "Service Tag" +msgstr "Etichetta di servizio" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, php-format -msgid "List all roles" -msgstr "Elenca tutti i ruoli" +msgid "Service general" +msgstr "Servizio generale" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, php-format -msgid "Add new role" -msgstr "Aggiungi nuovo ruolo" +msgid "Service update failed" +msgstr "aggiornamento del servizio non riuscito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, php-format -msgid "List all rules" -msgstr "Elencare tutte le regole" +msgid "Session Name" +msgstr "Nome sessione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, php-format -msgid "Add new rule" -msgstr "Aggiungi nuova regola" +msgid "Session altered improperly" +msgstr "Sessione alterato in modo improprio" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 -msgid "Role Description" -msgstr "Descrizione del ruolo" +msgid "Session name cannot be the same as an existing hostname" +msgstr "nome della sessione non può essere la stessa di un nome host esistente" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -msgid "New Role" -msgstr "Nuovo ruolo" +msgid "Session timeout" +msgstr "Timeout della sessione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -msgid "Create New Access Control Role" -msgstr "Crea nuovo ruolo di controllo accessi" +msgid "Session with that name already exists" +msgstr "Sessione con questo nome esiste già" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 -msgid "A name is required!" -msgstr "È richiesto un nome!" +msgid "Set Failed" +msgstr "Set fallito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -msgid "A role already exists with this name!" -msgstr "Esiste già un ruolo con questo nome!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -msgid "Add role failed!" -msgstr "Aggiunta ruolo non riuscita!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -msgid "Role added!" -msgstr "Ruolo aggiunto!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 -msgid "Role Create Success" -msgstr "Creazione ruolo riuscita" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 -msgid "Role Create Fail" -msgstr "Creazione ruolo fallita" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 -msgid "Access Control Role General" -msgstr "Ruolo controllo accessi Generale" +msgid "Set failed" +msgstr "Fallita impostazione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -msgid "Role update failed!" -msgstr "Aggiornamento ruolo non riuscito" +msgid "Setting Key" +msgstr "Impostazione chiave" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -msgid "Role updated!" -msgstr "Ruolo aggiornato!" +msgid "Setting logout to one second prior to next login" +msgstr "Impostare l'accesso a un secondo prima del login successivo" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 -msgid "Role Update Success" -msgstr "Aggiornamento ruolo completato" +msgid "Settings" +msgstr "impostazioni" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 -msgid "Role Update Fail" -msgstr "Aggiornamento ruolo non riuscito" +msgid "Settings Update Fail" +msgstr "Aggiornamento Impostazioni non riuscito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 -msgid "Access Control Rules" -msgstr "Regole controllo accessi" +msgid "Settings Update Success" +msgstr "Modifica Impostazioni completata" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -msgid "Parent" -msgstr "Superiore" +msgid "Settings successfully stored!" +msgstr "Le impostazioni sono state memorizzate correttamente!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 -#, fuzzy -msgid "Access Control Rule" -msgstr "Regole controllo accessi" +msgid "Should anything go wrong" +msgstr "Qualsiasi cosa andasse storto" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 -msgid "New Rule" -msgstr "Nuova regola" +msgid "Shutdown" +msgstr "Spegnimento" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 -msgid "Rule Type" -msgstr "Tipo regola" +msgid "Shutdown after deploy" +msgstr "Shutdown dopo Deploy" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 -msgid "Node Parent" -msgstr "Nodo Superiore" +msgid "Shutdown after install" +msgstr "Shutdown dopo l'installazione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 -msgid "Rule Value" -msgstr "Valore regola" +msgid "Signed" +msgstr "firmato" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 -msgid "Create Rule?" -msgstr "Crea ruolo?" +msgid "Site" +msgstr "Sito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 -#, fuzzy -msgid "A rule already exists with this name." -msgstr "Esiste già un ruolo con questo nome!" +msgid "Site Association" +msgstr "Associazione Sito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 #, fuzzy -msgid "Add rule failed!" -msgstr "Aggiunta ruolo non riuscita!" +msgid "Site Control Management" +msgstr "Gestione Access Control" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 #, fuzzy -msgid "Rule added!" -msgstr "Ruolo aggiunto!" +msgid "Site Create Fail" +msgstr "Creazione stampante fallita" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 #, fuzzy -msgid "Rule Create Success" -msgstr "Creazione ruolo riuscita" +msgid "Site Create Success" +msgstr "Creazione stampante riuscita" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 -#, fuzzy -msgid "Rule Create Fail" -msgstr "Creazione ruolo fallita" +msgid "Site Description" +msgstr "Descrizione Sito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 #, fuzzy -msgid "Access Control Rule General" -msgstr "Ruolo controllo accessi Generale" +msgid "Site General" +msgstr "Stampante Generale" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "Impossibile aggiornare" +msgid "Site Name" +msgstr "Nome sito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 #, fuzzy -msgid "Rule updated!" -msgstr "Ruolo aggiornato!" +msgid "Site Update Fail" +msgstr "Aggiornamento della stampante non riuscito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 #, fuzzy -msgid "Rule Update Success" -msgstr "Aggiornamento ruolo completato" +msgid "Site Update Success" +msgstr "Aggiornamento stampante riuscito" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 #, fuzzy -msgid "Rule Update Fail" -msgstr "Aggiornamento ruolo non riuscito" +msgid "Site Updated!" +msgstr "aggiornato stampante!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 #, fuzzy -msgid "Fail to destroy" -msgstr "Impossibile per distruggere" +msgid "Site added!" +msgstr "Stampante aggiunta" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 #, fuzzy -msgid "Rule deleted successfully!" -msgstr "Regola eliminazione del successo" +msgid "Site update failed!" +msgstr "Aggiornamento della stampante non è riuscito!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" -msgstr "Regola eliminazione del successo" +msgid "Sites" +msgstr "Siti" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 -#, fuzzy -msgid "Rule Delete Fail" -msgstr "Cancellare i file" +msgid "Size" +msgstr "Dimensione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 -msgid "Rule Name" -msgstr "Nome regola" +msgid "Slack Accounts" +msgstr "Slack Accounts" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 #, fuzzy -msgid "Rule Membership" -msgstr "membri" +msgid "Slack Management" +msgstr "Gestione dei compiti" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 -#, fuzzy -msgid "Check here to see what rules can be added" -msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" +msgid "Smart Installer" +msgstr "Smart Installer" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 -#, fuzzy -msgid "Add Rules" -msgstr "Aggiungi utente" +msgid "Snapin" +msgstr "Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 -#, fuzzy -msgid "Add selected rules" -msgstr "Aggiungi stampanti selezionate" +msgid "Snapin Args" +msgstr "Snapin Args" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 -#, fuzzy -msgid "Remove Accesscontrol Rules" -msgstr "Regole controllo accessi" +msgid "Snapin Arguments" +msgstr "Argomenti Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 -#, fuzzy -msgid "Remove selected rules" -msgstr "Rimuovi i selezionati" +msgid "Snapin Arguments Hidden" +msgstr "Snapin Argomenti nascosti" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 -#, fuzzy -msgid "No role selected" -msgstr "Cancella selezionato" +msgid "Snapin Client" +msgstr "snap-client" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 -#, fuzzy -msgid "No rule selected" -msgstr "Cancella selezionato" +msgid "Snapin Command" +msgstr "Snapin comando" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 -#, fuzzy -msgid "Associate rule failed!" -msgstr "Aggiunta ruolo non riuscita!" +msgid "Snapin Create Fail" +msgstr "Creazione Snapin fallita" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 -#, fuzzy -msgid "Rule associate success!" -msgstr "Regola eliminazione del successo" +msgid "Snapin Create Success" +msgstr "Creazione Snapin completata" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 -#, fuzzy -msgid "Rule Associate Success" -msgstr "Regola eliminazione del successo" +msgid "Snapin Created" +msgstr "Snapin creato" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 -#, fuzzy -msgid "Rule Associate Fail" -msgstr "Regole di associazione" +msgid "Snapin Creation Date" +msgstr "Snapin Data di creazione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 -#, fuzzy -msgid "User name" -msgstr "Nome utente" +msgid "Snapin Creation Time" +msgstr "Snap-in di creazione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 -#, fuzzy -msgid "Check here to see what users can be added" -msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" +msgid "Snapin Description" +msgstr "Snapin Descrizione" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -#, fuzzy -msgid "Add Users" -msgstr "Aggiungi utente" +msgid "Snapin Enabled" +msgstr "snap-Enabled" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -#, fuzzy -msgid "Add selected users" -msgstr "Aggiungi stampanti selezionate" +msgid "Snapin File" +msgstr "File Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 -#, fuzzy -msgid "Remove Users" -msgstr "Rimuovere" +msgid "Snapin File (exists)" +msgstr "File snap-in (esiste)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 -#, fuzzy -msgid "Remove selected users" -msgstr "Rimuovi i selezionati" +msgid "Snapin General" +msgstr "Generale Snapin" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" -msgstr "Capone Deploy" +msgid "Snapin Hash" +msgstr "Hash snap-in" -#: lib/plugins/ldap/class/ldap.class.php:107 -msgid "Function does not exist" -msgstr "La funzione non esiste" +msgid "Snapin History" +msgstr "Storia Snapin" -#: lib/plugins/ldap/class/ldap.class.php:147 -msgid "Port is not valid ldap/ldaps port" -msgstr "La porta non è la porta ldap / ldaps valida" +msgid "Snapin ID" +msgstr "Snapin ID" -#: lib/plugins/ldap/class/ldap.class.php:295 -msgid "We cannot connect to LDAP server" -msgstr "Non è possibile connettersi al server LDAP" +msgid "Snapin Locations" +msgstr "Snapin Luoghi" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" -msgstr "Utilizzo della funzione di corrispondenza gruppo" +msgid "Snapin Log" +msgstr "snap-Log" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" -msgstr "Ma la bind password non è impostata" +msgid "Snapin Management" +msgstr "Gestione Snapin" -#: lib/plugins/ldap/class/ldap.class.php:398 -msgid "Cannot bind to the LDAP server" -msgstr "Impossibile legare al server LDAP" +msgid "Snapin Name" +msgstr "Nome Snapin" -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" -msgstr "Risultati di ricerca che restituiscono false" +msgid "Snapin Pack" +msgstr "Snapin Pack" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 -msgid "Search DN" -msgstr "Search DN" +msgid "Snapin Pack Arguments" +msgstr "Argomenti Snapin Pack" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 -msgid "Filter" -msgstr "Filtro" - -#: lib/plugins/ldap/class/ldap.class.php:460 -msgid "User was not authorized by the LDAP server" -msgstr "L'utente non è stato autorizzato dal server LDAP" +msgid "Snapin Pack File" +msgstr "Snapin Pack File" -#: lib/plugins/ldap/class/ldap.class.php:461 -msgid "User DN" -msgstr "User DN" +msgid "Snapin Pack Template" +msgstr "Snapin Pack Modello" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" -msgstr "Tutti i metodi di associazione sono falliti" +msgid "Snapin Path" +msgstr "Percorso Snapin" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" -msgstr "Ricerca DN non ha restituito alcun risultato" +msgid "Snapin Protected" +msgstr "Snapin Protetto" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" -msgstr "Il livello di accesso è ancora 0 o falso" +msgid "Snapin Replicator" +msgstr "Snapin Replicator" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" -msgstr "Nessun accesso è consentito" +msgid "Snapin Return Code" +msgstr "Snapin Codice di ritorno" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" -msgstr "Ricerca nel gruppo DN non ha restituito alcun risultato" +msgid "Snapin Return Detail" +msgstr "Snapin ritorno Dettaglio" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 -msgid "Group Search DN" -msgstr "Ricerca gruppo DN" +msgid "Snapin Run With" +msgstr "Snapin Avvia con" -#: lib/plugins/ldap/class/ldap.class.php:848 -msgid "Search Method" -msgstr "Metodo di ricerca" +msgid "Snapin Run With Args" +msgstr "Snapin Run con Args" -#: lib/plugins/ldap/class/ldap.class.php:852 -msgid "Result" -msgstr "Risultati" +msgid "Snapin Run With Argument" +msgstr "Snap-Run con l'argomento" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 -msgid "LDAP Servers" -msgstr "LDAP Servers" +msgid "Snapin State" +msgstr "Snapin Stato" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" -msgstr "Gestione LDAP" +msgid "Snapin Storage Groups" +msgstr "Gruppo di archiviazione Snapin" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 -msgid "Export LDAPs" -msgstr "Esportare LDAP" +msgid "Snapin Task is invalid" +msgstr "L'attività Snapin non è valida" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 -msgid "Import LDAPs" -msgstr "Importare LDAP" +msgid "Snapin Template" +msgstr "Snapin Modello" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 -#, fuzzy -msgid "Plugin Configuration" -msgstr "Configurazione della stampante" +msgid "Snapin Timeout (seconds)" +msgstr "Timeout Snapin (in secondi)" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 -msgid "LDAP Connection Name" -msgstr "Nome connessione LDAP" +msgid "Snapin Transfer Log" +msgstr "Snapin registro trasferimenti" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" -msgstr "Indirizzo server LDAP" +msgid "Snapin Type" +msgstr "Snapin Tipo" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 -msgid "LDAP Connection Name" -msgstr "Nome connessione LDAP" +msgid "Snapin Update Fail" +msgstr "Aggiornamento Snapin fallito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" -msgstr "LDAP Server Descrizione" +msgid "Snapin Update Success" +msgstr "Modifica Snapin riuscita" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" -msgstr "Server LDAP" +msgid "Snapin Used" +msgstr "Usato Snapin" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 -msgid "Admin Group" -msgstr "Gruppo amministrativo" +msgid "Snapin added!" +msgstr "Snapin aggiunto!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" -msgstr "Nuovo server LDAP" +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "Il file snap-in è troppo grande, aumenta post_max_size in php.ini." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "Solo base" +msgid "Snapin is invalid" +msgstr "Snapin non è valido" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" -msgstr "Solo Sottoalbero" +msgid "Snapin is protected and cannot be deleted" +msgstr "Snapin è protetto e non può essere cancellato" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" -msgstr "Sottoalbero e inferiore" +msgid "Snapin task not completed" +msgstr "Il compito Snapin non è stato completato" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 -msgid "LDAP Server Port" -msgstr "Porta LDAP Server" +msgid "Snapin to be installed" +msgstr "Snapin da installare" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" -msgstr "Utilizza gruppo di corrispondenza (consigliato)" +msgid "Snapin update failed!" +msgstr "Aggiornamento Snapin fallito!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 -msgid "Search Base DN" -msgstr "Cerca Base DN" +msgid "Snapin updated!" +msgstr "Snap-in aggiornato!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 -msgid "Mobile Group" -msgstr "Grouppo mobile" +msgid "Snapins" +msgstr "snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -msgid "Initial Template" -msgstr "Modello iniziale" +msgid "Snapins Are already deployed to this host" +msgstr "Snapins già distribuiti a questo host" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 -msgid "Pick a template" -msgstr "Scegli un modello" +msgid "So if you are trying to transmit to remote node A" +msgstr "Quindi, se stai cercando di trasmettere al nodo remoto A" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "Microsoft AD" +msgid "Somebody will be able to help in some form" +msgstr "Qualcuno sarà in grado di aiutare in qualche modo" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" -msgstr "OpenLDAP" +msgid "Space variable must be boolean" +msgstr "La variabile spazio deve essere boolean" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" -msgstr "LDAP Generico" +msgid "Specified download URL not allowed!" +msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 -msgid "User Name Attribute" -msgstr "Attributo nome utente" +msgid "Start" +msgstr "Inizio" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" -msgstr "Attributo membro del gruppo" +msgid "Start Date" +msgstr "Data d'inizio" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 -msgid "Search Scope" -msgstr "Scope di ricerca" +msgid "Start Multicast Session" +msgstr "Inizia sessione multicast" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "Bind DN" +msgid "Start Session" +msgstr "Inizia sessione" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 -msgid "Bind Password" -msgstr "Bind Password" +msgid "Start Time" +msgstr "Ora di inizio" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 -msgid "Create New LDAP" -msgstr "Crea nuovo LDAP" +msgid "Started By:" +msgstr "Ordina per:" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "Non in grado di aggiungere" +msgid "Started sync for" +msgstr "Sincronizzazione iniziata per" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "Si prega di inserire un nome per questo server LDAP." +msgid "Starting Image Replication" +msgstr "Iniziare la replica dell'immagine" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "Si prega di inserire un indirizzo del server LDAP" +msgid "Starting Image Size Service" +msgstr "Avvio del servizio Dimensione immagine" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -msgid "Please enter a Search Base DN" -msgstr "Inserisci un DN di base di ricerca" +msgid "Starting Snapin Hashing Service" +msgstr "Avvio del servizio di Snapin Hashing" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 -msgid "Please select an LDAP port to use" -msgstr "Seleziona una porta LDAP da utilizzare" +msgid "Starting Snapin Replication" +msgstr "Avvio della replica Snapin" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 -msgid "Please select a valid ldap port" -msgstr "Seleziona una porta ldap valida" +msgid "Starting Sync Actions" +msgstr "Avviare le azioni di sincronizzazione" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -msgid "Please Enter an admin or mobile lookup name" -msgstr "Inserisci un nome di amministratore o di ricerca per cellulari" +msgid "Starting process" +msgstr "Avvio processo" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 -msgid "Please enter a User Name Attribute" -msgstr "Inserisci un attributo nome utente" +msgid "State" +msgstr "Stato" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 -msgid "Please enter a Group Member Attribute" -msgstr "Inserisci un attributo membro del gruppo" +msgid "Status" +msgstr "Stato" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 -msgid "A LDAP setup already exists with this name!" -msgstr "Un'impostazione LDAP esiste già con questo nome!" +msgid "Stop Task" +msgstr "arresto Task" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 -msgid "Add LDAP server failed!" -msgstr "Aggiunta LDAP server fallita!" +msgid "Storage" +msgstr "Conservazione" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 -msgid "LDAP Server added!" -msgstr "LDAP Server aggiunto!" +msgid "Storage Group" +msgstr "gruppo di archiviazione" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 -msgid "LDAP Create Success" -msgstr "LDAP Creazione Riusciata" +msgid "Storage Group Activity" +msgstr "Gruppo di archiviazione di attività" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 -msgid "LDAP Create Fail" -msgstr "LDAP Creazione Fallita" +msgid "Storage Group Already Exists" +msgstr "Gruppo di archiviazione già esistente" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 -msgid "LDAP General" -msgstr "LDAP Generale" +msgid "Storage Group Create Fail" +msgstr "Gruppo di archiviazione creazione fallita" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 -msgid "Update LDAP server failed!" -msgstr "Aggiornamento server LDAP non riuscito!" +msgid "Storage Group Create Success" +msgstr "Gruppo di archiviazione creato con successo" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 -msgid "LDAP Server updated!" -msgstr "LDAP Server modificato!" +msgid "Storage Group Created" +msgstr "Storage Group Creato" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 -msgid "LDAP Update Success" -msgstr "Aggiornamento LDAP riuscito" +msgid "Storage Group Description" +msgstr "Gruppo di archiviazione Descrizione" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 -msgid "LDAP Update Fail" -msgstr "Aggiornamento LDAP non riuscito" +msgid "Storage Group General" +msgstr "Gruppo di archiviazione Generale" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 -#, fuzzy -msgid "User Filter" -msgstr "Filtro" +msgid "Storage Group Name" +msgstr "Nome gruppo di archiviazione" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 -#, fuzzy -msgid "LDAP Ports" -msgstr "Porta LDAP Server" +msgid "Storage Group Update Fail" +msgstr "Aggiornamento Gruppo di archiviazione fallito" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" +msgid "Storage Group Update Success" +msgstr "Aggiornamento Gruppo di archiviazione completato" -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "Luoghi è un plugin che consente al server FOG" +msgid "Storage Group Updated" +msgstr "Storage Group Aggiornato" -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" -msgstr "per operare in un ambiente in cui ci possa essere" - -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" -msgstr "più posti per ottenere l'immagine" +msgid "Storage Group deleted" +msgstr "Storage Group cancellato" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" -msgstr "Ciò è particolarmente utile se si dispone di più" +msgid "Storage Group update failed!" +msgstr "Aggiornamento Gruppo di archiviazione fallito!" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" -msgstr "siti con client che si muovono avanti e indietro" +msgid "Storage Group updated!" +msgstr "Gruppo di archiviazione aggiornato!" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" -msgstr "tra diversi siti" +msgid "Storage Management" +msgstr "Storage Management" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 -msgid "Location Association" -msgstr "Associazione Posizione" +msgid "Storage Node" +msgstr "Storage Node" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" -msgstr "Posizione / Distribuzione" +msgid "Storage Node Create Fail" +msgstr "Creazione nodo di archiviazione fallita" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" -msgstr "Host Luoghi" +msgid "Storage Node Create Success" +msgstr "Nodo di archiviazione creato con successo" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 -msgid "This setting defines sending the" -msgstr "Questa impostazione definisce l'invio" +msgid "Storage Node Created" +msgstr "Storage Node Creato" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "Url di posizione basata sull'host che controlla e" +msgid "Storage Node Description" +msgstr "Storage Node Descrizione" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "indica al client di scaricare gli snapins da" +msgid "Storage Node Disk Usage" +msgstr "Utilizzo disco nodo di archiviazione" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "la posizione definita dall'host, se disponibile" +msgid "Storage Node General" +msgstr "Generale nodo di archiviazione" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 -msgid "Default is disabled" -msgstr "Il valore predefinito è disabilitato" +msgid "Storage Node IP" +msgstr "Storage Node IP" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 -msgid "Snapin Locations" -msgstr "Snapin Luoghi" +msgid "Storage Node Interface" +msgstr "Storage Node Interface" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "Questa area consentirà all'host di controllare di indicare" +msgid "Storage Node Max Clients" +msgstr "I clienti Storage Node Max" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 -msgid "where to download the snapin" -msgstr "dove scaricare lo snapin" +msgid "Storage Node Name" +msgstr "Nome Storage Node" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" -msgstr "Questo è utile nel caso di legami lenti tra" +msgid "Storage Node Password" +msgstr "Storage Node password" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" -msgstr "Il principale e l'host" +#, fuzzy +msgid "Storage Node Protocol" +msgstr "Storage Node IP" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" -msgstr "Abilita invio posizione " +msgid "Storage Node Update Fail" +msgstr "Aggiornamento nodo di archiviazione fallito!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 -msgid "Export Locations" -msgstr "Esporta luoghi" +msgid "Storage Node Update Success" +msgstr "Aggiornamento nodo di archiviazione completato" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 -msgid "Import Locations" -msgstr "Importa luoghi" +msgid "Storage Node Updated" +msgstr "Storage Node Aggiornato" -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" -msgstr "Nome del luogo" +msgid "Storage Node Username" +msgstr "Storage Node Nome utente" -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "I kernel / INIT dalla posizione" +msgid "Storage Node added!" +msgstr "Nodo di archiviazione aggiunto!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" -msgstr "Nuova sede" +msgid "Storage Node already exists" +msgstr "Storage Node esiste già" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "Utilizzare INIT e noccioli da questo nodo" +msgid "Storage Node deleted" +msgstr "Storage Node cancellato" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 -msgid "Create New Location" -msgstr "Crea nuova posizione" +msgid "Storage Node update failed!" +msgstr "Aggiornamento nodo di archiviazione fallito!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." -msgstr "Località esiste già, si prega di riprovare." +msgid "Storage Node updated!" +msgstr "Nodo di archiviazione aggiornato!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." -msgstr "Si prega di inserire un nome per questa posizione." +msgid "String must be a string" +msgstr "Stringa deve essere una stringa" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." -msgstr "" -"Si prega di selezionare il gruppo di archiviazione questa posizione si " -"riferisce a." +#, fuzzy +msgid "Subnet Groups" +msgstr "Grouppo mobile" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 -msgid "Add location failed!" -msgstr "Aggiunta posizione non riuscita!" +#, fuzzy +msgid "SubnetGroup General" +msgstr "Gruppo di archiviazione Generale" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 -msgid "Location added!" -msgstr "Posizione aggiunta!" +#, fuzzy +msgid "Subnetgroup Create Fail" +msgstr "Creazione Gruppo fallita" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 -msgid "Location Create Success" -msgstr "Creazione posizione riuscita" +#, fuzzy +msgid "Subnetgroup Create Success" +msgstr "Creazione Gruppo completata" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 -msgid "Location Create Fail" -msgstr "Creazione posizione fallita" +#, fuzzy +msgid "Subnetgroup Management" +msgstr "Direzione del Gruppo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 -msgid "Location General" -msgstr "Posizione generale" +#, fuzzy +msgid "Subnetgroup Update Fail" +msgstr "Aggiornamento gruppo non riuscito" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "Una posizione con questo nome esiste già." +#, fuzzy +msgid "Subnetgroup Update Success" +msgstr "Aggiornamento del gruppo completato" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -msgid "A group is required for a location" -msgstr "Un gruppo è necessario per un luogo" +#, fuzzy +msgid "Subnetgroup added!" +msgstr "Gruppo aggiunto!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -msgid "Location update failed!" -msgstr "Aggiornamento posizione non riuscito" +#, fuzzy +msgid "Subnetgroup update failed!" +msgstr "Aggiornamento del gruppo non riuscito!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 -msgid "Location updated!" -msgstr "Posizione aggiornata!" +#, fuzzy +msgid "Subnetgroup updated!" +msgstr "Gruppo aggiornato!" -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 -msgid "Location Update Success" -msgstr "Modifica posizione riuscita" +msgid "Subnets" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 -msgid "Location Update Fail" -msgstr "Aggiornamento posizione fallita" +msgid "Subree and Below" +msgstr "Sottoalbero e inferiore" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" -msgstr "Indirizzo remoto che cerca di accedere" +msgid "Subtree Only" +msgstr "Solo Sottoalbero" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" -msgstr "Pushbullet Conti" +msgid "Successful" +msgstr "Riuscito" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" -msgstr "Conto di collegamento Pushbullet" +msgid "Successfully added selected hosts to the group!" +msgstr "Aggiunti host selezionati al gruppo!" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" -msgstr "E-mail" +msgid "Successfully created" +msgstr "Creato con successo" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" -msgstr "Link Nuovo Utente" +#, fuzzy +msgid "Successfully deleted" +msgstr "Creato con successo" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" -msgstr "Token di accesso" +msgid "System Manufacturer" +msgstr "Sistema produttore" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 -msgid "Add Pushbullet Account" -msgstr "Aggiungi account Pushbullet" +msgid "System Overview" +msgstr "panoramica del sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" -msgstr "Account già collegato" +msgid "System Product" +msgstr "Sistema prodotto" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "Si prega di inserire un token di accesso" +msgid "System Serial" +msgstr "Sistema seriale" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "Impossibile creare" +msgid "System Serial Number" +msgstr "Numero di serie del sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 -msgid "Account successfully added!" -msgstr "Account aggiunto con successo!" +msgid "System Tools" +msgstr "Utilità di sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 -msgid "Link Pushbullet Account Success" -msgstr "Connessione Pushbullet Account completata" +msgid "System Type" +msgstr "Sistema tipo" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 -msgid "Link Pushbullet Account Fail" -msgstr "Connessione Pushbullet Account fallita" +msgid "System UUID" +msgstr "UUID di sistema" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 -msgid "Site Association" -msgstr "Associazione Sito" +msgid "System Uptime" +msgstr "sistema Uptime" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 -msgid "Site" -msgstr "Sito" +msgid "System Version" +msgstr "Sistema versione" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 -msgid "Associated Sites" -msgstr "Siti Associati" +msgid "TCP/IP" +msgstr "TCP/IP" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 -#, fuzzy -msgid "Host Site" -msgstr "Lista Host" +msgid "TCP/IP Port Printer" +msgstr "Porta TCP / IP della stampante" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 -msgid "Sites" -msgstr "Siti" +msgid "TX" +msgstr "TX" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 -msgid "Is restricted" -msgstr "È limitato" +msgid "Table not defined for this class" +msgstr "Tabella del database non definita per questa classe" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 -msgid "No site" -msgstr "Nessun sito" +msgid "Task" +msgstr "Compito" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " -msgstr "È Utente Limitato" +msgid "Task Checkin Date" +msgstr "Compito di arrivo Data" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 -msgid "No Site" -msgstr "Nessun Sito" +msgid "Task Checkin Time" +msgstr "Task Ora di Arrivo" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 -msgid "Export Sites" -msgstr "Esporta Siti" +msgid "Task Complete Date" +msgstr "Data completamento attività" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 -msgid "Import Sites" -msgstr "importa Siti" +msgid "Task Complete Time" +msgstr "Completamento attività" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 -msgid "Hosts Associated" -msgstr "Host Associati" +#, fuzzy +msgid "Task ID" +msgstr "Compito" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 -msgid "Host Associated" -msgstr "Host associato" +msgid "Task Management" +msgstr "Gestione dei compiti" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 -msgid "Site Name" -msgstr "Nome sito" +msgid "Task Name" +msgstr "Nome attività" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 -msgid "Site Description" -msgstr "Descrizione Sito" +msgid "Task Reboot" +msgstr "Task Reboot" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 -msgid "New Site" -msgstr "Nuovo Sito" +msgid "Task State" +msgstr "Stato attività" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 -#, fuzzy -msgid "Create Site" -msgstr "Creare" +msgid "Task State Create Fail" +msgstr "Creazione stato attività falita!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 -#, fuzzy -msgid "A site already exists with this name!" -msgstr "Un host già esiste con questo nome!" +msgid "Task State Create Success" +msgstr "Creazione stato attività riuscita!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 -#, fuzzy -msgid "Add site failed!" -msgstr "Aggiunta host non riuscita!" +msgid "Task State General" +msgstr "Stato attività Generale" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 #, fuzzy -msgid "Site added!" -msgstr "Stampante aggiunta" +msgid "Task State Management" +msgstr "Gestione dei compiti" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 -#, fuzzy -msgid "Site Create Success" -msgstr "Creazione stampante riuscita" +msgid "Task State Update Fail" +msgstr "Aggiunta stato attività fallito" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 -#, fuzzy -msgid "Site Create Fail" -msgstr "Creazione stampante fallita" +msgid "Task State Update Success" +msgstr "Aggiunta stato attività riuscito!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 -#, fuzzy -msgid "Site General" -msgstr "Stampante Generale" +msgid "Task State Updated!" +msgstr "Aggiunta stato attività aggiormato!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 -#, fuzzy -msgid "A site alread exists with this name!" -msgstr "Un host già esiste con questo nome!" +msgid "Task State added!" +msgstr "Stato attività aggiunto!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 -#, fuzzy -msgid "Site update failed!" -msgstr "Aggiornamento della stampante non è riuscito!" +msgid "Task States" +msgstr "Stati attività" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 -#, fuzzy -msgid "Site Updated!" -msgstr "aggiornato stampante!" +msgid "Task Type" +msgstr "Tipo attività" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -#, fuzzy -msgid "Site Update Success" -msgstr "Aggiornamento stampante riuscito" +msgid "Task Type Create Fail" +msgstr "Aggiunta tipo attività fallita" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 -#, fuzzy -msgid "Site Update Fail" -msgstr "Aggiornamento della stampante non riuscito" +msgid "Task Type Create Success" +msgstr "Aggiunta tipo attività riuscita" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -#, fuzzy -msgid "Host Membership" -msgstr "membri" +msgid "Task Type General" +msgstr "Tipo attività Generale" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 #, fuzzy -msgid "Check here to see what hosts can be added" -msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" +msgid "Task Type Management" +msgstr "Gestione dei compiti" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 -#, fuzzy -msgid "Add Hosts" -msgstr "tutti gli host" +msgid "Task Type Update Fail" +msgstr "Aggiornamento tipo attività fallita" -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 -#, fuzzy -msgid "Add selected hosts" -msgstr "Aggiungi stampanti selezionate" +msgid "Task Type Update Success" +msgstr "Aggiornamento tipo attività riuscita" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 -#, fuzzy -msgid "Remove Hosts" -msgstr "Rimuovere" +msgid "Task Type Updated!" +msgstr "Tipi di attività aggiornata!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -#, fuzzy -msgid "Remove selected hosts" -msgstr "Rimuovi i selezionati" +msgid "Task Type added!" +msgstr "Aggiunta tipo attività riuscita!" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" -msgstr "chiamata canale non è valido" +msgid "Task Type is not valid" +msgstr "Task Type non è valido" -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" -msgstr "chiamata dell'utente non è valido" +msgid "Task Types" +msgstr "Tipi di attività" -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" -msgstr "metodo valido chiamato" +msgid "Task forced to start" +msgstr "Task forzato a partire" -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 -msgid "Completed imaging" -msgstr "Imaging completato" +msgid "Task not created as there are no associated tasks" +msgstr "" -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" -msgstr "Slack Accounts" +msgid "Task sent to" +msgstr "Attività inviata a" -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" -msgstr "Account rimosso da FOG GUI a" +msgid "Task started" +msgstr "Attività iniziata" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" -msgstr "Connettività Slack" +#, fuzzy +msgid "Task started for" +msgstr "Attività avviate per" + +msgid "Task type is not valid" +msgstr "Tipo di attività non è valido" + +msgid "Tasked Successfully" +msgstr "Attività Completata" + +msgid "Tasked successfully, click active tasks to view in line." +msgstr "" +"Assegnato con successo, fare clic su attività attive per visualizzare in " +"linea." + +msgid "Tasking" +msgstr "Attività" + +msgid "Tasking Failed" +msgstr "Attività fallite" + +msgid "Tasks" +msgstr "Attività" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 msgid "Team" msgstr "Squadra" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "Creato da" +msgid "Terminal" +msgstr "Terminale" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" -msgstr "Utente / Nome canale" +msgid "Terms and Conditions" +msgstr "Termini e condizioni" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" -msgstr "Utente / canale per pubblicare a" +msgid "Text" +msgstr "Testo" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -msgid "Add Slack Account" -msgstr "Aggiungere un account Slack" +msgid "The 'Is Master Node' setting defines which" +msgstr "L'impostazione \"nodo master\" definisce quale" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" -msgstr "Deve usare un" +msgid "The assigned image is protected" +msgstr "L'immagine assegnata è protetta" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 -msgid "to signify if this is a user or channel to send to" -msgstr "Per indicare se si tratta di un utente o un canale da inviare" +msgid "The below items are only used for the old client." +msgstr "" +"Gli elementi riportati di seguito sono utilizzati solo per il vecchio client." -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" -msgstr "Token non valido passato" +msgid "The clients will checkin with the server from time" +msgstr "I clienti effettueranno il check-in con il server di tanto" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" -msgstr "utente non valido e / o il canale passato" +msgid "The following errors occured" +msgstr "I seguenti errori si è verificato" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" -msgstr "Account collegato alla nebbia GUI a" +msgid "The following errors occurred" +msgstr "Si sono verificati i seguenti errori" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 -msgid "Link Slack Account Success" -msgstr "Connessione Account Slack completata" +msgid "The image storage group assigned is not valid" +msgstr "Il gruppo di archiviazione immagine assegnato non è valido" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 -msgid "Link Slack Account Fail" -msgstr "Connessione Account Slack fallita" +msgid "The installers for the fog client" +msgstr "Installatori per fog client" -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 -#, fuzzy -msgid "Subnet Groups" -msgstr "Grouppo mobile" +msgid "The key will be assigned to registered hosts when a" +msgstr "La chiave verrà assegnata agli host registrati quando una" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 -#, fuzzy -msgid "Export Subnetgroups" -msgstr "Gruppi Export" +msgid "The node trying to be used is currently" +msgstr "Il nodo che si sta cercando di essere utilizzato è attualmente" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 -#, fuzzy -msgid "Import Subnetgroups" -msgstr "Gruppi di importazione" +msgid "The old client is what was distributed with" +msgstr "Il vecchio cliente è quello che è stato distribuito con" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" msgstr "" +"Il vecchio cliente è quello che è stato distribuito con FOG 1.2.0 e " +"precedenti" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -#, fuzzy -msgid "New Subnetgroup" -msgstr "Nuovo Gruppo di archiviazione" +msgid "The old client iswhat was distributed with" +msgstr "Il vecchio cliente è stato distribuito con" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 -#, fuzzy -msgid "Create New SubnetGroup?" -msgstr "Crea nuovo gruppo" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "Il vecchio client è stato distribuito con FOG 1.2.0 e precedenti." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 -#, fuzzy -msgid "A subnetgroup already exists with this name!" -msgstr "Esiste già un gruppo con questo nome!" +msgid "The primary mac associated is" +msgstr "Il MAC primario associato è" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 -#, fuzzy -msgid "A group is required!" -msgstr "È richiesto un nome di gruppo!" +msgid "The settings tend to be global which affects all hosts." +msgstr "" +"Le impostazioni tendono ad essere le impostazioni globali che influenzano " +"tutti gli host" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." +msgid "The storage groups associated storage node is not valid" msgstr "" +"Il nodo di archiviazione gruppi di archiviazione associato non è valido" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -#, fuzzy -msgid "Please enter a valid CIDR subnets comma separated list" -msgstr "Inserisci un indirizzo MAC valido" +msgid "The uploaded file exceeds the max_file_size" +msgstr "Il file caricato supera max_file_size" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -#, fuzzy -msgid "Add Subnetgroup failed!" -msgstr "Aggiunta gruppo non riuscito!" +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "Il file caricato supera upload_max_filesize" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -#, fuzzy -msgid "Subnetgroup added!" -msgstr "Gruppo aggiunto!" +msgid "The uploaded file was only partially uploaded" +msgstr "Il file caricato è stato solo parzialmente caricato" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 -#, fuzzy -msgid "Subnetgroup Create Success" -msgstr "Creazione Gruppo completata" +msgid "There are" +msgstr "Ci sono" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -#, fuzzy -msgid "Subnetgroup Create Fail" -msgstr "Creazione Gruppo fallita" +msgid "There are currently" +msgstr "Ci sono attualmente" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -#, fuzzy -msgid "SubnetGroup General" -msgstr "Gruppo di archiviazione Generale" +msgid "There are many reasons why this could be the case" +msgstr "Ci sono molte ragioni per cui questo potrebbe essere il caso" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -#, fuzzy -msgid "A subnet group already exists with this name!" -msgstr "Esiste già un gruppo con questo nome!" +msgid "There are no groups on this server" +msgstr "Non ci sono gruppi su questo server" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -#, fuzzy -msgid "A group must be selected." -msgstr "Un nome deve essere impostato" +msgid "There are no hosts to task in this group" +msgstr "Non ci sono host a cui affidare compiti in questo gruppo" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -#, fuzzy -msgid "Please enter a valid CIDR subnet." -msgstr "Si prega di inserire un nome host valido" +msgid "There are no images on this server" +msgstr "Non ci sono immagini su questo server" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "There are no locations on this server" +msgstr "Non ci sono posizioni su questo server" + +msgid "There are no other members to sync to" +msgstr "Non ci sono altri membri da sincronizzare" + +msgid "There are no snapins associated with this host" +msgstr "Non ci sono snapins associati con questo host" + +msgid "There are no snapins on this server" +msgstr "Non ci sono snapins su questo server" + +msgid "There are open slots" +msgstr "Ci sono slot aperti" + +msgid "There is a host in a tasking" +msgstr "C'è un host con un compito" + +msgid "There is nothing to replicate" +msgstr "Non c'è nulla da replicare" + +msgid "There were errors during import!" +msgstr "Si sono verificati errori durante l'importazione" + +msgid "There you can download utilities such as FOG Prep" +msgstr "Qui è possibile scaricare programmi di utilità come FOG Prep" + +msgid "This MAC Belongs to another host" +msgstr "Questo MAC appartiene a un altro host" + +msgid "This area will allow the host checking in to tell" +msgstr "Questa area consentirà all'host di controllare di indicare" + +msgid "This file will only work on Windows" +msgstr "Questo file funziona solo in Windows" + +msgid "This host already exists" +msgstr "Questo host esiste già" + +msgid "This installation process may take a few minutes" +msgstr "Questo processo di installazione impiegherà alcuni minuti" + +msgid "This is a cron style task that should not run now." msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -#, fuzzy -msgid "Subnetgroup update failed!" -msgstr "Aggiornamento del gruppo non riuscito!" +msgid "This is a cron style task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 -#, fuzzy -msgid "Subnetgroup updated!" -msgstr "Gruppo aggiornato!" +msgid "This is a single run task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 -#, fuzzy -msgid "Subnetgroup Update Success" -msgstr "Aggiornamento del gruppo completato" +msgid "This is a single run task that should run now." +msgstr "" + +msgid "This is especially useful if you have multiple" +msgstr "Ciò è particolarmente utile se si dispone di più" + +msgid "This is ipxe script commands to operate with" +msgstr "Questo è il comando ipxe script per operare con" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 #, fuzzy -msgid "Subnetgroup Update Fail" -msgstr "Aggiornamento gruppo non riuscito" +msgid "This is not the master for this group" +msgstr "Questo non è il gruppo primario" -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." -msgstr "Consente la modifica/creazione di Task States per FOG." +msgid "This is not the primary group" +msgstr "Questo non è il gruppo primario" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "Stati attività" +msgid "This is only here to maintain old client operations" +msgstr "Questo è solo qui per mantenere le vecchie operazioni client" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 -msgid "Export Task States" -msgstr "Esporta Stato delle attività" +msgid "This is set in seconds and causes the default option" +msgstr "Questo viene impostato in secondi e causa l'opzione predefinita" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -msgid "Import Task States" -msgstr "Importa Stato delle attività" +msgid "This is the recommended installer to use now" +msgstr "Questo è il programma di installazione consigliato da utilizzare ora" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "Stato attività" +msgid "This is useful in the case of slow links between" +msgstr "Questo è utile nel caso di legami lenti tra" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "Icona" +msgid "This item allows you to edit all of the iPXE Menu items as you" +msgstr "Questa voce consente di modificare tutte le voci di menu iPXE" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "Stato nuova attività" +msgid "This module did not work past Windows XP" +msgstr "Questo modulo non funziona oltre Windows XP" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" -msgstr "elementi di icone aggiuntive" +msgid "This module did not work past Windows XP due" +msgstr "Questo modulo non funzionerà in Windows XP a causa di" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 -msgid "Create Task state" -msgstr "Crea stato attività" +msgid "This module did not work past Windows XP due to" +msgstr "Questo modulo non ha funzionato oltre Windows XP a causa di" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 -msgid "A task state already exists with this name!" -msgstr "Uno stato di attività già esiste con questo nome!" +msgid "This module did not work past Windows XP due to UAC." +msgstr "" +"Questo modulo non funziona successivamente a Windows XP a causa di UAC." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -msgid "Add task state failed!" -msgstr "Aggiunta stato attività non riuscito!" +msgid "This module has been replaced in the new client" +msgstr "Questo modulo è stato sostituito nel nuovo client" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 -msgid "Task State added!" -msgstr "Stato attività aggiunto!" +msgid "This module has since been replaced with Power Management." +msgstr "Questo modulo è stato sostituito da Power Management." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 -msgid "Task State Create Success" -msgstr "Creazione stato attività riuscita!" +msgid "This module is only used" +msgstr "Questo modulo viene utilizzato solo" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 -msgid "Task State Create Fail" -msgstr "Creazione stato attività falita!" +msgid "This module is only used on the old client" +msgstr "Questo modulo viene utilizzato solo sul vecchio client" + +msgid "This module is only used on the old client." +msgstr "Questo modulo viene utilizzato solo sul vecchio client." + +msgid "This node does not appear to be online" +msgstr "" + +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "" +"Questa pagina ti consente di caricare un file CSV in FOG per facilitare" + +msgid "This plugin is not installed" +msgstr "Questo plugin non è attualmente installato" + +msgid "This section allows you to customize or alter" +msgstr "Questa sezione consente di personalizzare o modificare " + +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" +msgstr "" +"Questa sezione ti consente di importare produttori di indirizzi MAC " +"conosciuti nel database FOG per facilitare l'identificazione" + +msgid "This section allows you to update" +msgstr "Questa sezione ti consente di aggiornare" + +msgid "This section allows you to update the modules and" +msgstr "Questa sezione consente di aggiornare i moduli e" + +msgid "This section allows you to uploade user" +msgstr "Questa sezione consente di caricare l'utente" + +msgid "This servers ip(s)" +msgstr "IP di questo server" + +msgid "This setting" +msgstr "Questa impostazione" + +msgid "This setting defines sending the" +msgstr "Questa impostazione definisce l'invio" + +msgid "This setting limits the bandwidth for replication between nodes" +msgstr "" +"Questa impostazione limita la larghezza di banda per la replica tra i nodi" + +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." +msgstr "" +"Questa impostazione aggiunge e rimuove solo le stampanti gestite da FOG. Se " +"la stampante esiste nella gestione della stampante, ma non viene assegnata " +"ad un host, rimuoverà la stampante se esiste nell'host non firmato. " +"Aggiungerà le stampanti all'host assegnato." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 -msgid "Task State General" -msgstr "Stato attività Generale" +msgid "This setting turns off all FOG Printer Management" +msgstr "Questa impostazione disattiva tutta la gestione della stampante FOG" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 -msgid "Update task state failed!" -msgstr "Aggiornamento tipo attività fallita!" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." +msgstr "" +"Questa impostazione consentirà solo che le stampanti FOG assegnate siano " +"aggiunte all'host. Qualsiasi stampante non assegnata verrà rimossa, incluse " +"le stampanti non gestite da FOG." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 -msgid "Task State Updated!" -msgstr "Aggiunta stato attività aggiormato!" +msgid "This will allow you to configure how services" +msgstr "Ciò consentirà di configurare come servizi" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 -msgid "Task State Update Success" -msgstr "Aggiunta stato attività riuscito!" +msgid "Those images should be activated with the associated" +msgstr "Queste immagini devono essere attivate con le relative" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 -msgid "Task State Update Fail" -msgstr "Aggiunta stato attività fallito" +msgid "Time" +msgstr "Tempo" -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." -msgstr "Consente la modifica / creazione di tipi di attività FOG." +msgid "Time Already Exists" +msgstr "Ora esiste già" -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" -msgstr "Tipi di attività" +msgid "Timeout" +msgstr "Tempo scaduto" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 -msgid "Export Task Types" -msgstr "Esporta tipi di attività" +msgid "Title must be a string" +msgstr "Titolo deve essere una stringa" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -msgid "Import Task Types" -msgstr "Importa tipi di attività" +msgid "To be released only by" +msgstr "Per essere rilasciato solo da" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" -msgstr "Accesso" +msgid "To get started please select an item from the menu." +msgstr "Per iniziare, seleziona un elemento dal menu." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" -msgstr "kernel Args" +msgid "To perform an imaging task an image must be assigned" +msgstr "Per eseguire l'attività di immagine deve essere assegnata" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" -msgstr "Nuovo tipo di attività" +msgid "To view a report, select an item from the menu" +msgstr "Per visualizzare un report, selezionare una voce dal menu" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" -msgstr "argomenti del kernel" +msgid "Toggle Navigation" +msgstr "Attiva la navigazione" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 -msgid "Init" -msgstr "Init" +msgid "Too many MACs" +msgstr "Troppi MAC" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" -msgstr "è avanzata" +msgid "Total Disk Space" +msgstr "Spazio su disco totale" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" -msgstr "Si accede da" +msgid "Total Memory" +msgstr "Memoria totale" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -msgid "Create Task type" -msgstr "Crea tipo attività" +msgid "Total Rows" +msgstr "Righe totali" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -msgid "A task type already exists with this name!" -msgstr "Un tipo di attività esiste già con questo nome!" +msgid "Transmit" +msgstr "Trasmettere" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -msgid "Add task type failed!" -msgstr "Aggiunta tipo attività non riuscita!" +msgid "Trying Snapin hash for" +msgstr "Cercando hash di Snapin per" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 -msgid "Task Type added!" -msgstr "Aggiunta tipo attività riuscita!" +msgid "Trying image size for" +msgstr "Prova della dimensione dell'immagine per" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -msgid "Task Type Create Success" -msgstr "Aggiunta tipo attività riuscita" +msgid "Txt must be a string" +msgstr "Txt deve essere una stringa" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -msgid "Task Type Create Fail" -msgstr "Aggiunta tipo attività fallita" +msgid "Type" +msgstr "Tipo" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -msgid "Task Type General" -msgstr "Tipo attività Generale" +msgid "UAC introduced in Vista and up" +msgstr "UAC introdotto in Vista o superiore" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -msgid "Task Type Updated!" -msgstr "Tipi di attività aggiornata!" +#, fuzzy +msgid "Unable to Authenticate" +msgstr "Impossibile contattare il server" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 -msgid "Task Type Update Success" -msgstr "Aggiornamento tipo attività riuscita" +msgid "Unable to determine plugin details." +msgstr "Impossibile determinare i dettagli plugin." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 -msgid "Task Type Update Fail" -msgstr "Aggiornamento tipo attività fallita" +msgid "Unable to find basic information!" +msgstr "Impossibile trovare informazioni di base!" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" -msgstr "Tasti di Windows è un plugin che associa le chiavi di prodotto" +msgid "Unable to find master Storage Node" +msgstr "Impossibile trovare il Nodo Archiviazione master" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" -msgstr "per Microsoft Windows per immagini" +msgid "Unable to get server infromation!" +msgstr "Impossibile ottenere informazioni sul server!" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" -msgstr "Queste immagini devono essere attivate con le relative" +msgid "Unable to open file for reading" +msgstr "Impossibile aprire il file per la lettura" -#: lib/plugins/windowskey/config/plugin.config.php:31 -msgid "key" -msgstr "chiave" +msgid "Unauthorized" +msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" -msgstr "La chiave verrà assegnata agli host registrati quando una" +msgid "Unavailable" +msgstr "Non disponibile" -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" -msgstr "attività di distribuzione avviene per esso" +#, fuzzy +msgid "Unicaset" +msgstr "Unicast" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "Quando il plugin viene rimosso, il tasto assegnato rimarrà" +msgid "Unit of time must be a string" +msgstr "Unità di tempo deve essere una stringa" -#: lib/plugins/windowskey/config/plugin.config.php:36 -msgid "with the host" -msgstr "con l'host" +msgid "Unknown" +msgstr "Sconosciuto" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 -msgid "Windows Key for Image" -msgstr "Chiave di Windows per l'immagine" +msgid "Unknown upload error occurred" +msgstr "Si è verificato errore di caricamento sconosciuto" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 -msgid "Windows Keys" -msgstr "Chiave Windows" +msgid "Update" +msgstr "Aggiornare" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 -msgid "Export Windows Keys" -msgstr "Esporta chiavi Windows" +msgid "Update API?" +msgstr "Aggiornamento API?" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -msgid "Import Windows Keys" -msgstr "Importa chiavi Windows" +msgid "Update Default Printer" +msgstr "Aggiorna la stampante predefinita" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 -msgid "Key Name" -msgstr "Nome chiave" +msgid "Update General?" +msgstr "Aggiornamento generale?" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 -msgid "New Windows Key" -msgstr "Nuova chiave di Windows" +msgid "Update LDAP server failed!" +msgstr "Aggiornamento server LDAP non riuscito!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 -msgid "Windows Key Name" -msgstr "Nome chiave di Windows" +msgid "Update MACs" +msgstr "aggiornamento MAC" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 -msgid "Windows Key Description" -msgstr "Descrizione chiave di Windows" +msgid "Update PM Values" +msgstr "Aggiorna i valori PM" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 -msgid "Windows Key" -msgstr "Chiave di Windows" +msgid "Update Password?" +msgstr "Cambio Password?" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 #, fuzzy -msgid "Create New Key" -msgstr "Crea nuovo %s" +msgid "Update Windows Key failed!" +msgstr "Aggiornamento tipo attività fallita!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 -#, fuzzy -msgid "A Windows Key already exists with this name!" -msgstr "Un host già esiste con questo nome!" +msgid "Update auto-logout time" +msgstr "Aggiorna il tempo di auto-logout" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 -#, fuzzy -msgid "Add Windows Key failed!" -msgstr "Nome chiave di Windows" +msgid "Update default printer" +msgstr "Aggiornare la stampante predefinita" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 -#, fuzzy -msgid "Windows Key added!" -msgstr "Nome chiave di Windows" +msgid "Update display resolution" +msgstr "Aggiorna la risoluzione dello schermo" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 -#, fuzzy -msgid "Windows Key Create Success" -msgstr "Creazione utente riuscita" +msgid "Update module configurations" +msgstr "Aggiorna le configurazioni del modulo" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 -#, fuzzy -msgid "Windows Key Create Fail" -msgstr "Creazione utente fallita" +msgid "Update not required!" +msgstr "Aggiornamento non richiesto!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 -#, fuzzy -msgid "Windows Key General" -msgstr "Nome chiave di Windows" +msgid "Update primary group" +msgstr "Aggiornamento gruppo primario" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 -#, fuzzy -msgid "Update Windows Key failed!" -msgstr "Aggiornamento tipo attività fallita!" +msgid "Update printer configuration" +msgstr "Aggiorna la configurazione della stampante" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 -#, fuzzy -msgid "Windows Key updated!" -msgstr "Chiave di Windows Aggiornata" +msgid "Update task state failed!" +msgstr "Aggiornamento tipo attività fallita!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 -#, fuzzy -msgid "Windows Key Update Success" -msgstr "Chiave di Windows Aggiornata" +msgid "Update/Remove Storage Groups" +msgstr "Aggiungi/rimuovi gruppo di archiviazione" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 -#, fuzzy -msgid "Windows Key Update Fail" -msgstr "Chiave di Windows Aggiornata" +msgid "Update/Remove printers" +msgstr "Aggiorna/Rimuovi stampanti" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 -#, fuzzy -msgid "Image Membership" -msgstr "membri" +msgid "Upload Reports" +msgstr "Carica Report" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -#, fuzzy -msgid "Check here to see what images can be added" -msgstr "Controllare qui per vedere cosa è possibile aggiungere stampanti" +msgid "Upload file" +msgstr "Caricare un file" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 -#, fuzzy -msgid "Add selected images" -msgstr "Aggiungi stampanti selezionate" +msgid "Upload file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 -#, fuzzy -msgid "Remove Images" -msgstr "Rimuovere" +msgid "Uptime" +msgstr "uptime" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 -#, fuzzy -msgid "Remove selected images" -msgstr "Rimuovi i selezionati" +msgid "Use Group Matching (recommended)" +msgstr "Utilizza gruppo di corrispondenza (consigliato)" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 -msgid "WOL Broadcasts" -msgstr "Broadcast WOL" +msgid "Use extreme caution with this setting" +msgstr "Usa la massima attenzione con questa impostazione" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 -msgid "Export WOLBroadcasts" -msgstr "Esporta WOLBroadcasts" +msgid "Use inits and kernels from this node" +msgstr "Utilizzare INIT e noccioli da questo nodo" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 -msgid "Import WOLBroadcasts" -msgstr "Importa WOLBroadcasts" +msgid "Use the following link to go to the client page." +msgstr "Utilizzare il seguente collegamento per accedere alla pagina client." -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" -msgstr "Nome Broadcast" +msgid "Use the forums to post issues so others" +msgstr "Utilizza i forum per inviare problemi in modo da altri" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" -msgstr "Broadcast IP" +msgid "Use the links below if you need assistance" +msgstr "Utilizza i collegamenti qui sotto se ti serve assistenza" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" -msgstr "Nuova trasmissione Indirizzo" +msgid "Use this for network installs" +msgstr "Utilizzare questo per le installazioni di rete" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -msgid "Create WOL Broadcast?" -msgstr "Crea WOL Broadcasts?" +msgid "Used" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -msgid "A broadcast already exists with this name!" -msgstr "Un broadcast esiste già con questo nome!" +msgid "Used Disk Space" +msgstr "Usato spazio su disco" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 -msgid "A broadcast address is required" -msgstr "È necessario un indirizzo di broadcast" +msgid "Used Memory" +msgstr "memoria utilizzata" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" -msgstr "Si prega di inserire un IP valido" +msgid "User" +msgstr "Utente" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -msgid "Add broadcast failed!" -msgstr "Aggiunta broadcast non riuscita!" +msgid "User API Enabled" +msgstr "API Utente abilitate" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -msgid "Broadcast added!" -msgstr "Broadcast aggiunto!" +msgid "User API Settings" +msgstr "Impostazioini User API" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -msgid "Broadcast Create Success" -msgstr "Creazione Broadcast completata" +msgid "User API Token" +msgstr "API Utente Token" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 -msgid "Broadcast Create Fail" -msgstr "Creazione Broadcast fallita" +msgid "User Access Control" +msgstr "User Access Control" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -msgid "WOL Broadcast General" -msgstr "WOL Broadcast Generale" +msgid "User Agent Changed" +msgstr "User Agent cambiato" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -msgid "A broadcast already exists with this name" -msgstr "Un broadcast esiste già con questo nome" +msgid "User Already Exists" +msgstr "L'utente esiste già" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 -msgid "Broadcast update failed!" -msgstr "Aggiornamento Broadcast fallito!" +msgid "User Change Password" +msgstr "Cambia password utente" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 -msgid "Broadcast updated!" -msgstr "Broadcast aggiornato!" +msgid "User Cleanup" +msgstr "Cleanup utente" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 -msgid "Broadcast Update Success" -msgstr "Aggiornamento Broadcast completata" +msgid "User Create Fail" +msgstr "Creazione utente fallita" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 -msgid "Broadcast Update Fail" -msgstr "Aggiornamento Broadcast fallita" +msgid "User Create Success" +msgstr "Creazione utente riuscita" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." -msgstr "" +msgid "User DN" +msgstr "User DN" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 #, fuzzy -msgid "Host Ext" -msgstr "Lista Host" +msgid "User Filter" +msgstr "Filtro" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " -msgstr "" +msgid "User General" +msgstr "Utente generale" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 -#, fuzzy -msgid "External Links" -msgstr "Estensione" +msgid "User Management" +msgstr "Gestione utenti" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 -#, fuzzy -msgid "Export Host Exts" -msgstr "Host Export" +msgid "User Name" +msgstr "Nome utente" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 -#, fuzzy -msgid "Import Host Exts" -msgstr "Importa Host" +msgid "User Name Attribute" +msgstr "Attributo nome utente" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 -#, fuzzy -msgid "Host Ext Name" -msgstr "Nome Host" +msgid "User Password" +msgstr "Password utente" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 -#, fuzzy -msgid "Host Ext URL" -msgstr "Host AD OU" +msgid "User Password (confirm)" +msgstr "User Password (conferma)" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 -#, fuzzy -msgid "Host Ext Variable" -msgstr "Aggiornamento Host riuscito" +msgid "User Tracker" +msgstr "Tracker utente" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 -#, fuzzy -msgid "Create New Host Ext" -msgstr "Crea nuovo %s" +msgid "User Update Fail" +msgstr "Aggiornamento utente non riuscita" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 -#, fuzzy -msgid "A hostext already exists with this name!" -msgstr "Un host già esiste con questo nome!" +msgid "User Update Success" +msgstr "Utente aggiornato con successo" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -#, fuzzy -msgid "Add ou failed!" -msgstr "Aggiunta gruppo non riuscito!" +msgid "User added!" +msgstr "Utente aggiunto!" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 -#, fuzzy -msgid "Hostext added!" -msgstr "Host aggiunto!" +msgid "User call is invalid" +msgstr "chiamata dell'utente non è valido" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 #, fuzzy -msgid "Hostext Create Success" -msgstr "Creazione Host con successo" +msgid "User name" +msgstr "Nome utente" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 -#, fuzzy -msgid "Hostext Create Fail" -msgstr "Creazione Host fallita" +msgid "User update failed!" +msgstr "Aggiornamento utente non riuscita" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 -#, fuzzy -msgid "Hostext update failed!" -msgstr "Aggiornamento della stampante non è riuscito!" +msgid "User updated!" +msgstr "Utente aggiornato" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 -#, fuzzy -msgid "Hostext updated!" -msgstr "Host aggiornato!" +msgid "User was not authorized by the LDAP server" +msgstr "L'utente non è stato autorizzato dal server LDAP" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 -#, fuzzy -msgid "Hostext Update Success" -msgstr "Aggiornamento host completato!" +msgid "User/Channel Name" +msgstr "Utente / Nome canale" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 -#, fuzzy -msgid "Hostext Update Fail" -msgstr "Aggiornamento Host completato" +msgid "User/Channel to post to" +msgstr "Utente / canale per pubblicare a" -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" -msgstr "" +msgid "Username" +msgstr "Nome utente" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" -msgstr "Impossibile determinare i dettagli del plugin" +msgid "Username cannot contain contiguous special characters" +msgstr "Il nome utente non può contenere caratteri speciali contigui" -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" -msgstr "Nessun nodo associato a nessun indirizzo di questo sistema" +msgid "Username does not meet requirements" +msgstr "Il nome utente non soddisfa i requisiti" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" -msgstr "Associare i file sui nodi" +msgid "Username must be at least 3 characters" +msgstr "Nome utente deve avere almeno 3 caratteri" -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" -msgstr "e memorizza i loro rispettivi controlli" +msgid "Username must be less than 41 characters" +msgstr "Nome utente deve essere inferiore a 41 caratteri" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" -msgstr "date di mod" +msgid "Username must start with a word character" +msgstr "Nome utente deve iniziare con un carattere alfabetico" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" -msgstr "e la posizione del file su quel" +msgid "Users" +msgstr "utenti" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" -msgstr "particolare nodo" +msgid "Using the group match function" +msgstr "Utilizzo della funzione di corrispondenza gruppo" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 -msgid "Integrity Settings" -msgstr "Impostazioni di integrità" +msgid "VNC" +msgstr "VNC" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 -msgid "Export Checksums" -msgstr "Esporta Checksum" +msgid "Valid Host Colors" +msgstr "Colori host validi" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" -msgstr "Checksums" +msgid "Value" +msgstr "Valore" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" -msgstr "Checksum" +msgid "Variable contains" +msgstr "La variabile contiene" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 -msgid "Last Updated Time" -msgstr "Ultimo aggiornamento" +msgid "Version" +msgstr "Versione" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" -msgstr "Percorso / file in conflitto" +msgid "Version 1.2.0 and earlier" +msgstr "Versione 1.2.0. o precedente" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" -msgstr "" +msgid "View History For" +msgstr "Visualizza la cronologia per" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" -msgstr "" +msgid "View advanced tasks for this" +msgstr "Visualizza attività avanzate di questo" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" -msgstr "" +msgid "Virus History" +msgstr "Storia di virus" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" -msgstr "" +msgid "Virus Name" +msgstr "Virus Nome" -#: lib/plugins/hoststatus/config/plugin.config.php:19 -#, fuzzy -msgid "

Version 1.5.5" -msgstr "Versione" +msgid "Virus Report" +msgstr "Report Virus" + +msgid "Virus items removed!" +msgstr "Elementi virus rimossi!" + +msgid "WOL Broadcast General" +msgstr "WOL Broadcast Generale" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 #, fuzzy -msgid "Host Status" -msgstr "Stato" +msgid "WOL Broadcast Management" +msgstr "Gestione della posizione" -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" -msgstr "Creato da FOG Reg su" +msgid "WOL Broadcasts" +msgstr "Broadcast WOL" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" -msgstr "Già registrato come" +msgid "Wait time has changed to" +msgstr "Il tempo di attesa è cambiato" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" -msgstr "Impossibile creare Host" +msgid "Waiting for mysql to be available" +msgstr "In attesa di mysql sia disponibile" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" -msgstr "Fatto, senza imaging!" +msgid "Wake On Lan" +msgstr "Wake On LAN" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" -msgstr "Fatto, nessuna immagine assegnato!" +msgid "Wake on lan?" +msgstr "Wake On LAN?" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" -msgstr "Fatto, Impossibile creare tasking" +msgid "We are group ID" +msgstr "Siamo ID gruppo" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "Fatto, con l'imaging!" +msgid "We are group name" +msgstr "Siamo il nome del gruppo" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "Fatto" +msgid "We are node ID" +msgstr "Siamo ID nodo" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "Nessun compito attivo trovato per Host" +msgid "We are node name" +msgstr "Siamo il nome del nodo" -#: lib/reg-task/taskingelement.class.php:205 -msgid "Could not find a Storage Node in this group" -msgstr "Impossibile trovare un nodo di archiviazione in questo gruppo" +msgid "We cannot connect to LDAP server" +msgstr "Non è possibile connettersi al server LDAP" -#: lib/reg-task/taskingelement.class.php:206 -msgid "is there one enabled" -msgstr "C'è uno abilitato" +msgid "Web Server" +msgstr "Server web" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" -msgstr "è aperto" +msgid "Web root" +msgstr "radice Web" -#: lib/reg-task/taskingelement.class.php:233 -msgid "but has recently failed for this host" -msgstr "ma è fallito di recente per questo host" +msgid "Weekly" +msgstr "settimanalmente" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" -msgstr "Impossibile aggiornare compito" +msgid "When the plugin is removed, the assigned key will remain" +msgstr "Quando il plugin viene rimosso, il tasto assegnato rimarrà" -#: lib/reg-task/taskqueue.class.php:57 -msgid "Invalid Multicast Session" -msgstr "Sessione multicast non valida" +msgid "Where to get help" +msgstr "Dove ottenere aiuto" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" -msgstr "Impossibile aggiornare Session" +msgid "Width must be 650 pixels." +msgstr "Larghezza deve essere di 650 pixel." -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" -msgstr "Nessuno slot aperti" +msgid "Window size must be greater than 1" +msgstr "La finestra dati deve essere maggiore di 1" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" -msgstr "Ci sono" +msgid "Windows Key" +msgstr "Chiave di Windows" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" -msgstr "prima di me" +#, fuzzy +msgid "Windows Key Create Fail" +msgstr "Creazione utente fallita" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" -msgstr "Il nodo che si sta cercando di essere utilizzato è attualmente" +#, fuzzy +msgid "Windows Key Create Success" +msgstr "Creazione utente riuscita" -#: lib/reg-task/taskqueue.class.php:133 -msgid "unavailable" -msgstr "non disponibile" +msgid "Windows Key Description" +msgstr "Descrizione chiave di Windows" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" -msgstr "Al riavvio cercheremo di trovare un nuovo nodo" +#, fuzzy +msgid "Windows Key General" +msgstr "Nome chiave di Windows" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" -msgstr "automaticamente" +#, fuzzy +msgid "Windows Key Management" +msgstr "Nome chiave di Windows" -#: lib/reg-task/taskqueue.class.php:156 -msgid "There are open slots" -msgstr "Ci sono slot aperti" +msgid "Windows Key Name" +msgstr "Nome chiave di Windows" -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" -msgstr "ma" +#, fuzzy +msgid "Windows Key Update Fail" +msgstr "Chiave di Windows Aggiornata" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" -msgstr "prima di me su questo nodo" +#, fuzzy +msgid "Windows Key Update Success" +msgstr "Chiave di Windows Aggiornata" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" -msgstr "Impossibile aggiornare / creare log immagine" +#, fuzzy +msgid "Windows Key added!" +msgstr "Nome chiave di Windows" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" -msgstr "Impossibile aggiornare Task" +msgid "Windows Key for Image" +msgstr "Chiave di Windows per l'immagine" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" -msgstr "Impossibile aggiornare / creare registro dell'attività" +#, fuzzy +msgid "Windows Key updated!" +msgstr "Chiave di Windows Aggiornata" -#: lib/reg-task/taskqueue.class.php:301 -msgid "Machine Details" -msgstr "Dettagli della macchina" +msgid "Windows Keys" +msgstr "Chiave Windows" -#: lib/reg-task/taskqueue.class.php:303 -msgid "Computer Model" -msgstr "Modello di computer" +msgid "Windows keys is a plugin that associates product keys" +msgstr "Tasti di Windows è un plugin che associa le chiavi di prodotto" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "Numero di serie" +msgid "Working with node" +msgstr "Lavorare con il nodo" -#: lib/reg-task/taskqueue.class.php:305 -msgid "MAC Address" -msgstr "Indirizzo MAC" +#, fuzzy +msgid "Wrong file name!" +msgstr "Nessun file caricato" -#: lib/reg-task/taskqueue.class.php:307 -msgid "Image Used" -msgstr "Immagine utilizzata" +msgid "Yearly" +msgstr "Annuale" -#: lib/reg-task/taskqueue.class.php:308 -msgid "Snapin Used" -msgstr "Usato Snapin" +msgid "Yes" +msgstr "Sì" -#: lib/reg-task/taskqueue.class.php:310 -msgid "Imaged By" -msgstr "Imaged by" +msgid "You are only allowed to assign" +msgstr "È consentito soltanto per assegnare" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 -msgid "Imaged For" -msgstr "Immagini per" +msgid "You have version" +msgstr "Hai l'ultima versione" -#: lib/reg-task/taskqueue.class.php:312 -#, fuzzy -msgid "Imaging Started" -msgstr "Snapin Stato" +msgid "You must have at least one Storage Group" +msgstr "È necessario disporre di almeno un gruppo di archiviazione" -#: lib/reg-task/taskqueue.class.php:313 -#, fuzzy -msgid "Imaging Completed" -msgstr "Attività di immagine completata" +msgid "You must have at least one group associated" +msgstr "È necessaria l'associazione di almeno un gruppo di archiviazione" -#: lib/reg-task/taskqueue.class.php:314 -#, fuzzy -msgid "Imaging Duration" -msgstr "Imaging Log" +msgid "You must select an action to perform" +msgstr "È necessario selezionare un'azione da eseguire" -#: lib/reg-task/taskqueue.class.php:332 -msgid "Image Task Completed" -msgstr "Attività di immagine completata" +msgid "Your FOG database schema is not up to date" +msgstr "Il tuo schema di database FOG non è aggiornato" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" -msgstr "Chiamata" +msgid "Your Location Here" +msgstr "Qui la tua posizione" -#: lib/reg-task/taskqueue.class.php:461 -msgid "Failed to update Host" -msgstr "Impossibile aggiornare l'host" +msgid "Your database connection appears to be invalid" +msgstr "La connessione al database sembra non valida" -#: lib/reg-task/taskqueue.class.php:475 -msgid "Failed to update task log" -msgstr "Impossibile aggiornare il registro attività" +msgid "Your form is ready" +msgstr "Il modulo è pronto." -#: lib/reg-task/taskqueue.class.php:479 -msgid "Failed to update imaging log" -msgstr "Impossibile aggiornare il registro di imaging" +msgid "Your server only allows" +msgstr "Il tuo server consente solo" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" -msgstr "FOG Attrezzature prestito Modulo" +msgid "Your system PHP Version is not sufficient" +msgstr "La versione del sistema PHP non è sufficiente" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" -msgstr "Selezionare utente" +msgid "ZSTD Compressed" +msgstr "ZSTD compressa" -#: lib/reports/equipment_loan.report.php:66 -msgid "Create Report?" -msgstr "Crea Report?" +msgid "ZSTD Compressed 200MiB split" +msgstr "ZSTR compressa diviso per 200MiB" -#: lib/reports/equipment_loan.report.php:69 -msgid "Generate" -msgstr "Genera" +msgid "access to the hidden menu system" +msgstr "accesso al sistema di menu nascosto" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" -msgstr "di" +msgid "additional macs" +msgstr "MAC aggiuntivi" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" -msgstr "Stampato" +msgid "ago" +msgstr "fa" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" -msgstr "PC accordo check-out" +msgid "all current storage nodes" +msgstr "tutti i nodi di archiviazione attivi" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" -msgstr "Informazione personale" +msgid "and Mac OS X" +msgstr "e Mac OS X" -#: lib/reports/equipment_loan.report.php:162 -msgid "Your Location Here" -msgstr "Qui la tua posizione" +msgid "and agree to all the" +msgstr "e d'accordo a tutti" -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" -msgstr "Indirizzo di casa" +msgid "and both the legacy and new FOG clients." +msgstr "ed entrambi i client FOG legacy e nuovi." -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" -msgstr "Città stato CAP" +msgid "and cannot be captured" +msgstr "e non può essere catturato" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" -msgstr "Estensione" +msgid "and if the Database service is running" +msgstr "e se il servizio Database è in esecuzione" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" -msgstr "Telefono di casa" +msgid "and much easier on the server" +msgstr "e molto più facile sul server" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" -msgstr "Informazioni sul computer" +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "E il nodo A ha solo 5Mbps e si desidera la velocità" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" -msgstr "Etichetta di servizio" +msgid "and set it to master" +msgstr "ed imposta a master" -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "I numeri di codici a barre" +msgid "and stores their respective checksums" +msgstr "e memorizza i loro rispettivi controlli" -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" -msgstr "Data di cassa" +msgid "and the equivalent module for what Green" +msgstr "E il modulo equivalente per quello Green" -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" -msgstr "Note" +msgid "and the location of the file on that" +msgstr "e la posizione del file su quel" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "miscellaneo" +msgid "as FOG will attempt to go out to the internet" +msgstr "come FOG proverà ad andare in internet" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "Elementi inclusi" +msgid "as its primary group" +msgstr "come il suo gruppo primario" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" -msgstr "Il rilascio del personale Iniziali" +msgid "as they can cause issues that are difficult to troubleshoot" +msgstr "poiché possono causare problemi difficili da risolvere" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" -msgstr "Per essere rilasciato solo da" +msgid "automatically" +msgstr "automaticamente" -#: lib/reports/equipment_loan.report.php:219 -msgid "I have read" -msgstr "ho letto" +#, fuzzy +msgid "based task." +msgstr "un'attività in base" -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" -msgstr "inteso" +msgid "be the presence of a menu" +msgstr "c'è la presenza di un menu" -#: lib/reports/equipment_loan.report.php:221 -msgid "and agree to all the" -msgstr "e d'accordo a tutti" +msgid "before me" +msgstr "prima di me" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" -msgstr "Termini e condizioni" +msgid "before me on this node" +msgstr "prima di me su questo nodo" -#: lib/reports/equipment_loan.report.php:223 -msgid "on the following pages of this document" -msgstr "nelle pagine seguenti di questo documento" +msgid "between" +msgstr "fra" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "firmato" +msgid "between different sites" +msgstr "tra diversi siti" -#: lib/reports/equipment_loan.report.php:262 -msgid "Your form is ready" -msgstr "Il modulo è pronto." +msgid "between host and global settings" +msgstr "Tra impostazioni host e globali" -#: lib/reports/equipment_loan.report.php:266 -msgid "Form" -msgstr "Modulo" +msgid "boot the client computers" +msgstr "avvia i computer client" -#: lib/reports/history_report.report.php:26 -#, fuzzy -msgid "FOG History - Search" -msgstr "FOG Tracciamento degli utenti - Cerca" +msgid "but" +msgstr "ma" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 -#, fuzzy -msgid "Enter an user name to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "but bind password is not set" +msgstr "Ma la bind password non è impostata" -#: lib/reports/history_report.report.php:68 -#, fuzzy -msgid "Enter a term to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "but has recently failed for this host" +msgstr "ma è fallito di recente per questo host" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" -msgstr "Esegui ricerca" +msgid "check to ensure your filesystem has enough space" +msgstr "cerificare che il filesystem abbia spazio sufficiente" -#: lib/reports/history_report.report.php:111 -#, fuzzy -msgid "Full History Export" -msgstr "Inventario Export completa" +msgid "client" +msgstr "client" -#: lib/reports/history_report.report.php:166 #, fuzzy -msgid "History ID" -msgstr "Grafico storico" +msgid "clients" +msgstr "client" -#: lib/reports/history_report.report.php:167 -#, fuzzy -msgid "History Info" -msgstr "Visualizza la cronologia per" +msgid "config files that run on the client computers." +msgstr "file di configurazione eseguiti sui computer client." -#: lib/reports/history_report.report.php:168 #, fuzzy -msgid "History User" -msgstr "Grafico storico" +msgid "could not be cancelled" +msgstr "è stato cancellato" -#: lib/reports/history_report.report.php:169 #, fuzzy -msgid "History Time" -msgstr "Grafico storico" +msgid "could not be completed" +msgstr "Impossibile leggere il file temporaneo" -#: lib/reports/history_report.report.php:170 #, fuzzy -msgid "History IP" -msgstr "Grafico storico" +msgid "could not be killed" +msgstr "Impossibile leggere il file temporaneo" -#: lib/reports/host_list.report.php:33 -#, fuzzy -msgid "FOG Host - Search" -msgstr "FOG Tracciamento degli utenti - Cerca" +msgid "day" +msgstr "giorno" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -#, fuzzy -msgid "Enter a group name to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "day of month" +msgstr "giorno del mese" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -#, fuzzy -msgid "Enter a location name to search for" -msgstr "Inserisci un hostname da cercare" +msgid "day of week" +msgstr "giorno della settimana" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 -#, fuzzy -msgid "Enter a site name to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "defined reports that may not be a part of" +msgstr "rapporti definiti che potrebbero non essere parte di esso" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 -#, fuzzy -msgid "Search pattern" -msgstr "Scope di ricerca" +msgid "deleted" +msgstr "eliminata" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" -msgstr "Esportazione delle liste host" +msgid "deploy task occurs for it" +msgstr "attività di distribuzione avviene per esso" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" -msgstr "Host Creato" +msgid "directive in php.ini" +msgstr "direttiva in php.ini" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -msgid "Host AD Join" -msgstr "Host AD Join" +msgid "directive specified in the HTML form" +msgstr "direttiva indicata nel modulo HTML" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -msgid "Host AD OU" -msgstr "Host AD OU" +msgid "directory" +msgstr "directory" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -msgid "Host AD Domain" -msgstr "Host AD Dominio" +msgid "download the module and use it on the next" +msgstr "scaricare il modulo e utilizzarlo nella successiva" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 -msgid "Host HD Device" -msgstr "Host Dispositivo HD" +msgid "due to UAC introduced in Vista and up." +msgstr "a causa di UAC introdotte in Vista e in su." -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" -msgstr "ID immagine" +msgid "e.g." +msgstr "es." -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" -msgstr "immagine Desc" +msgid "either already selected or uploaded" +msgstr "già selezionati o caricati" -#: lib/reports/hosts_and_users.report.php:24 -#, fuzzy -msgid "FOG Host and Users - Search" -msgstr "Host nebbia e Accesso utenti" +msgid "either because you have updated" +msgstr "Sia perché hai aggiornato" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" -msgstr "Host nebbia e Accesso utenti" +#, fuzzy +msgid "failed to execute, image file: " +msgstr "Impossibile eliminare i file di immagine" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" -msgstr "AD Join" +msgid "failed to execute, port must be even and numeric" +msgstr "" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" -msgstr "AD OU" +msgid "failed to execute, there are no clients included" +msgstr "" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" -msgstr "AD Domain" +msgid "failed to login" +msgstr "non è riuscito a effettuare il login" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" -msgstr "dispositivo HD" +msgid "failed to start" +msgstr "non è riuscito a iniziare" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -msgid "Login Users" -msgstr "Login Utenti" +msgid "faster" +msgstr "veloce" -#: lib/reports/imaging_log.report.php:24 -#, fuzzy -msgid "FOG Imaging - Search" -msgstr "FOG Tracciamento degli utenti - Cerca" +msgid "filesize" +msgstr "dimensione del file" -#: lib/reports/imaging_log.report.php:105 -#, fuzzy -msgid "Enter an image name to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "for Microsoft Windows to images" +msgstr "per Microsoft Windows per immagini" -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" -msgstr "Inserisci un hostname da cercare" +msgid "for the advanced menu parameters" +msgstr "per i parametri di menu avanzati" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" -msgstr "FOG Imaging Log" +msgid "for the menu background" +msgstr "per il menu di sfondo" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" -msgstr "Data d'inizio" +msgid "found" +msgstr "trovato" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" -msgstr "Data di fine" +msgid "from" +msgstr "da" -#: lib/reports/imaging_log.report.php:214 -msgid "Deploy/Capture" -msgstr "Distribuire/catturare" +msgid "function on client computers." +msgstr "funziona sui computer client." -#: lib/reports/imaging_log.report.php:268 -msgid "Not Valid" -msgstr "Non valido" +msgid "group" +msgstr "gruppo" -#: lib/reports/inventory_report.report.php:24 -#, fuzzy -msgid "FOG Host Inventory - Search" -msgstr "FOG Tracciamento degli utenti - Cerca" +msgid "has been cancelled" +msgstr "è stato cancellato" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." -msgstr "" +msgid "has been completed" +msgstr "è stato completato" -#: lib/reports/inventory_report.report.php:129 #, fuzzy -msgid "Enter a model name to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "has been killed" +msgstr "è stato cancellato" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" -msgstr "Inventario Export completa" +msgid "has been started on port" +msgstr "è stato avviato sulla porta" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." -msgstr "Tutti i Mac in sospeso approvati." +msgid "has been successfully destroyed" +msgstr "è stato distrutta con successo" -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" -msgstr "In attesa MAC Export" +msgid "has been successfully updated" +msgstr "è stato aggiornato con successo" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" -msgstr "Host primario MAC" +msgid "has failed to destroy" +msgstr "è fallita la distruzione" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" -msgstr "Host attesa MAC" +msgid "has failed to save" +msgstr "fallito il salvataggio" -#: lib/reports/pending_mac_list.report.php:130 -msgid "Approve All Pending MACs for All Hosts" -msgstr "Approvare tutti i MAC in sospeso per tutti gli host" +msgid "has started" +msgstr "è iniziato" -#: lib/reports/pending_mac_list.report.php:154 -msgid "Pending MAC Actions" -msgstr "Azioni MAC in corso" +msgid "help with any aspect of FOG" +msgstr "Aiuto con qualsiasi aspetto di FOG" -#: lib/reports/pending_mac_list.report.php:160 -msgid "Approve Selected MACs" -msgstr "Approvare MAC selezionati" +msgid "here" +msgstr "qui" -#: lib/reports/pending_mac_list.report.php:165 -msgid "Approve" -msgstr "Approva" +msgid "host" +msgstr "host" -#: lib/reports/pending_mac_list.report.php:171 -msgid "Delete Selected MACs" -msgstr "Cancella MAC Selezionati" +msgid "hosts" +msgstr "hosts" -#: lib/reports/product_keys.report.php:31 -msgid "Host Product Keys" -msgstr "Tasti del prodotto host" +msgid "hour" +msgstr "ora" -#: lib/reports/snapin_log.report.php:18 -#, fuzzy -msgid "FOG Snapin - Search" -msgstr "FOG Tracciamento degli utenti - Cerca" +msgid "hr" +msgstr "ore" -#: lib/reports/snapin_log.report.php:82 -#, fuzzy -msgid "Enter a snapin name to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "iPXE General Configuration" +msgstr "Configurazione generale iPXE" -#: lib/reports/snapin_log.report.php:120 -#, fuzzy -msgid "Found snapin information" -msgstr "Trovato informazioni di accesso" +msgid "iPXE Item Create Fail" +msgstr "Creazione elemento iPXE non riuscita!" -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" -msgstr "ritorno Desc" +msgid "iPXE Item Create Success" +msgstr "Creazione elemento iPXE riuscita" -#: lib/reports/snapin_log.report.php:153 -msgid "Checkin Time" -msgstr "Orario Checkin" +msgid "iPXE Item Remove Success" +msgstr "Elemento iPXE rimosso con successo" -#: lib/reports/snapin_log.report.php:154 -msgid "Complete Time" -msgstr "Tempo completo" +msgid "iPXE Item Update Success" +msgstr "Elemento iPXE aggiornato con successo" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" -msgstr "Snapin ID" +msgid "iPXE Item added!" +msgstr "Elemento iPXE aggiunto!" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" -msgstr "Snapin Args" +msgid "iPXE Item create failed!" +msgstr "Creazione elemento iPXE non riuscita!" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" -msgstr "Snapin Run con Args" +msgid "iPXE Menu Customization" +msgstr "iPXE Personalizzazione menu" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" -msgstr "Snapin Stato" +msgid "iPXE Menu Item Settings" +msgstr "Menu iPXE impostazioni" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" -msgstr "Snapin Codice di ritorno" +msgid "iPXE Menu Settings" +msgstr "Impostazioni del menu iPXE" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" -msgstr "Snapin ritorno Dettaglio" +msgid "iPXE New Menu Entry" +msgstr "iPXE nuova voce di menu" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" -msgstr "Snapin Data di creazione" +msgid "iPXE Settings updated successfully!" +msgstr "Impostazioni iPXE aggiornate correttamente!" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" -msgstr "Snap-in di creazione" +msgid "iPXE Update Fail" +msgstr "Fallito iPXE Update" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" -msgstr "Job Data di creazione" +msgid "iPXE Update Success" +msgstr "Riuscito iPXE Update" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" -msgstr "Job creare il tempo" +msgid "iPXE syntax is very finicky when it comes to editing" +msgstr "La sintassi di iPXE è molto finicky quando si tratta di modifica" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" -msgstr "Compito di arrivo Data" +msgid "iPrint Printer" +msgstr "iPrint stampante" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" -msgstr "Task Ora di Arrivo" +msgid "if there is a task" +msgstr "Se c'è una attività" -#: lib/reports/snapin_log.report.php:194 -msgid "Task Complete Date" -msgstr "Data completamento attività" +msgid "if used incorrectly could potentially" +msgstr "se usato non correttamente può potenzialmente" -#: lib/reports/snapin_log.report.php:195 -msgid "Task Complete Time" -msgstr "Completamento attività" +msgid "image" +msgstr "Immagine" -#: lib/reports/user_tracking.report.php:31 -msgid "FOG User tracking - Search" -msgstr "FOG Tracciamento degli utenti - Cerca" +msgid "image file found, file: " +msgstr "" -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" -msgstr "Inserisci un nome utente da cercare" +msgid "image replication" +msgstr "replica dell'immagine" -#: lib/reports/user_tracking.report.php:132 -msgid "Found login information" -msgstr "Trovato informazioni di accesso" +msgid "images" +msgstr "immagini" -#: lib/reports/user_tracking.report.php:233 -msgid "FOG User tracking history" -msgstr "FOG Cronologia di monitoraggio degli utenti" +msgid "images to a storage group" +msgstr "Immagini in un gruppo di archiviazione" -#: lib/reports/user_tracking.report.php:290 -msgid "Service Start" -msgstr "Servizio avviato" +msgid "in seconds" +msgstr "in secondi" -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" -msgstr "Sommario FOG Virus" +msgid "install or update the FOG database" +msgstr "Installare o aggiornare il database FOG" -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" -msgstr "I percorsi devono essere un array o un'istanza di Traversable" +#, fuzzy +msgid "is already running with pid: " +msgstr "è già in esecuzione con pid" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" -msgstr "Impossibile ridichiarare il percorso" +msgid "is going on with your FOG System" +msgstr "sta succedendo al tuo sistema FOG" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 -msgid "Already created" -msgstr "Già creato" +msgid "is invalid" +msgstr "Non è valido" -#: lib/router/route.class.php:857 -msgid "Invalid tasking type passed" -msgstr "È passato il tipo di attività non valido" +msgid "is new" +msgstr "è nuovo" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" -msgstr "* La replica di immagini è globalmente disattivata" +msgid "is no longer running" +msgstr "non è più in esecuzione" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 -msgid "I am the group manager" -msgstr "Sono il responsabile del gruppo" +#, fuzzy +msgid "is now cancelled" +msgstr "è stato cancellato" -#: lib/service/imagereplicator.class.php:119 -msgid "Starting Image Replication" -msgstr "Iniziare la replica dell'immagine" +#, fuzzy +msgid "is now completed" +msgstr "è stato completato" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" -msgstr "Siamo ID gruppo" +msgid "is open" +msgstr "è aperto" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 -msgid "We are group name" -msgstr "Siamo il nome del gruppo" +msgid "is protected" +msgstr "è protetta" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" -msgstr "Siamo ID nodo" +msgid "is protected, removal not allowed" +msgstr "è protetta, la rimozione non consentita" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 -msgid "We are node name" -msgstr "Siamo il nome del nodo" +msgid "is required" +msgstr "è richiesto" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 -msgid "Attempting to perform" -msgstr "Tentativo di eseguire" +msgid "is there one enabled" +msgstr "C'è uno abilitato" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 -msgid "image replication" -msgstr "replica dell'immagine" +msgid "is valid" +msgstr "è valido" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "Non c'è nulla da replicare" +msgid "it boots to the first device" +msgstr "avvia dal primo dispositivo" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" -msgstr "Si prega di associare fisicamente" +msgid "it performs that task" +msgstr "esegue una attività" -#: lib/service/imagereplicator.class.php:207 -msgid "images to a storage group" -msgstr "Immagini in un gruppo di archiviazione" +msgid "it will distribute its store" +msgstr "Distribuirà i suoi dati" -#: lib/service/imagereplicator.class.php:241 -msgid "Replicating" -msgstr "Replicando" +msgid "it will enforce login to gain access to the advanced" +msgstr "attiverà il login per accedere alle avanzate" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" -msgstr "Non sincronizzare l'immagine" +msgid "it's transmitting to" +msgstr "sta trasmettendo a" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -msgid "This is not the primary group" -msgstr "Questo non è il gruppo primario" +#, fuzzy +msgid "kernel to boot the client computers" +msgstr "avvia i computer client" -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 -msgid "Nodes" -msgstr "Nodi" +msgid "key" +msgstr "chiave" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" -msgstr "Controllare se sono il responsabile del gruppo" +msgid "limited to 1Mbps on that node" +msgstr "limitata a 1Mbps su quel nodo" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" +msgid "location url based on the host that checks in" +msgstr "Url di posizione basata sull'host che controlla e" + +msgid "logged in" msgstr "" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" -msgstr "Oppure non è stato definito alcun numero per l'accesso alla sessione" +msgid "logout" +msgstr "disconnettersi" -#: lib/service/multicasttask.class.php:104 -#, fuzzy -msgid " | Unable to find image path" -msgstr "Impossibile trovare il Nodo Archiviazione master" +msgid "may see the issue and help and/or use the solutions" +msgstr "può vedere il problema e aiutare e / o utilizzare le soluzioni" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" -msgstr "* Gli host Ping sono disattivati a livello globale" +msgid "meaning a node that has no images on it" +msgstr "intendendo un nodo con nessuna immagine in esso" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "Io non sono il server web fog" +msgid "menu system" +msgstr "menu di sistema" -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" -msgstr "IP di questo server" +msgid "migration or mass import new items" +msgstr "migrazione o importazione di massa nuovi elementi" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" -msgstr "Il tentativo di ping" +msgid "min" +msgstr "minuti" -#: lib/service/pinghosts.class.php:147 -msgid "hosts" -msgstr "hosts" +msgid "minute" +msgstr "minuto" -#: lib/service/snapinhash.class.php:102 -msgid " * Snapin hash is globally disabled" -msgstr "* L'hash di Snapin è disattivato a livello globale" +msgid "minutes" +msgstr "minuti" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" -msgstr "Avvio del servizio di Snapin Hashing" +msgid "mod dates" +msgstr "date di mod" -#: lib/service/snapinhash.class.php:135 -msgid "Finding any snapins associated" -msgstr "Individuazione di eventuali snaps associati" +msgid "month" +msgstr "mese" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 -msgid "with this group" -msgstr "con questo gruppo" +msgid "more secure" +msgstr "più sicuro" -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 -msgid "as its primary group" -msgstr "come il suo gruppo primario" +msgid "multiple places to get your image" +msgstr "più posti per ottenere l'immagine" + +msgid "must be specified" +msgstr "deve essere specificato" + +msgid "n/a" +msgstr "n/d" -#: lib/service/snapinhash.class.php:158 -msgid "No snapins associated with this group as master" -msgstr "Nessun snapins associato a questo gruppo come master" +msgid "no database to" +msgstr "Nessun database a" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" -msgstr "Trovato" +msgid "no login will appear" +msgstr "nessun login appare" -#: lib/service/snapinhash.class.php:170 -msgid "snapins" -msgstr "snapins" +msgid "node is the distributor of the images" +msgstr "nodo è il distributore delle immagini" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" -msgstr "Per aggiornare i valori di hash come necessario" +msgid "nodes containing this image" +msgstr "nodi che contengono questa immagine" -#: lib/service/snapinhash.class.php:187 -msgid "Trying Snapin hash for" -msgstr "Cercando hash di Snapin per" +msgid "not found on this node" +msgstr "Non trovato su questo nodo" -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "Ottenere hash di snapin e dimensione per" +msgid "object" +msgstr "oggetto" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" -msgstr "Hash" +msgid "of" +msgstr "di" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" -msgstr "Completato" +msgid "on the following pages of this document" +msgstr "nelle pagine seguenti di questo documento" -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" -msgstr "* La replica Snapin è disattivata globalmente" +msgid "on the old client" +msgstr "sul vecchio client" -#: lib/service/snapinreplicator.class.php:118 -msgid "Starting Snapin Replication" -msgstr "Avvio della replica Snapin" +msgid "open" +msgstr "aperto" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 -msgid "snapin replication" -msgstr "Replica snapin" +msgid "or" +msgstr "o" -#: lib/service/snapinreplicator.class.php:206 -msgid "snapins to a storage group" -msgstr "Snap in un gruppo di archiviazione" +msgid "or no valid images specified" +msgstr "o una valida immagine specificata" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "Replica ssl senza chiave privata" +msgid "or start to operate" +msgstr "o iniziare ad operare" -#: lib/service/snapinreplicator.class.php:249 -msgid "Not syncing Snapin" -msgstr "Non sincronizzazione gli Snapin" +msgid "or this is a new FOG installation" +msgstr "o questa è una nuova installazione di FOG" -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" -msgstr " | Questo non è il nodo master" +msgid "particular node" +msgstr "particolare nodo" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" -msgstr "Interfaccia non pronta, in attesa che venga visualizzata" +msgid "per host" +msgstr "per host" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" -msgstr "In attesa di mysql sia disponibile" +msgid "please see the hosts service settings section." +msgstr "Si prega di consultare la sezione di impostazioni del servizio host" -#: lib/service/fogservice.class.php:356 #, fuzzy -msgid "This is not the master for this group" -msgstr "Questo non è il gruppo primario" +msgid "power management task(s) to run" +msgstr "Nuova attività di gestione energetica" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" -msgstr "" +msgid "present and where/how they need to display" +msgstr "presente e dove/come devono essere visualizzati" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" -msgstr "Non sincronizzo" +msgid "previous install if needed" +msgstr "installazione precedente se necessario" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" -msgstr "fra" +msgid "read-only" +msgstr "sola lettura" -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" -msgstr "Non ci sono altri membri da sincronizzare" +msgid "real insert time" +msgstr "Tempo reale di inserimento" -#: lib/service/fogservice.class.php:411 -msgid "to transfer to" -msgstr "Per trasferire a" +msgid "require all hosts have the same image" +msgstr "necessita che tutti gli host abbiano la stessa immagine" -#: lib/service/fogservice.class.php:482 -msgid "Replication already running with PID" -msgstr "Replica già in esecuzione con PID" +#, fuzzy +msgid "scheduled task(s) to run" +msgstr "Attività pianificate" -#: lib/service/fogservice.class.php:514 -msgid "File or path cannot be reached" -msgstr "Impossibile raggiungere il file o il percorso" +msgid "second" +msgstr "secondo" -#: lib/service/fogservice.class.php:530 -msgid "Cannot connect to" -msgstr "Impossibile connettersi" +msgid "seconds" +msgstr "secondi" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 -#, fuzzy -msgid "File does not exist" -msgstr "Il file non esiste" +msgid "see fit" +msgstr "Vedere la misura" -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" -msgstr "Errore di hash del file" +msgid "see the forums or lookup the commands and scripts available" +msgstr "Vedere i forum o la ricerca dei comandi e degli script disponibili" -#: lib/service/fogservice.class.php:735 #, fuzzy -msgid "File size mismatch" -msgstr "Errore di dimensioni del file" - -#: lib/service/fogservice.class.php:743 -msgid "Deleting remote file" -msgstr "Eliminazione di file remoti" - -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" -msgstr "Non è necessario sincronizzare" +msgid "sending on base port " +msgstr "Inviando sulla porta di base" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." -msgstr "Tutti i file sincronizzati per questo articolo." +msgid "sites with clients moving back and forth" +msgstr "siti con client che si muovono avanti e indietro" -#: lib/service/fogservice.class.php:780 -msgid "Starting Sync Actions" -msgstr "Avviare le azioni di sincronizzazione" +msgid "snapin" +msgstr "snapin" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" -msgstr "Sincronizzazione iniziata per" +msgid "snapin replication" +msgstr "Replica snapin" -#: lib/service/fogservice.class.php:868 -msgid "Task started" -msgstr "Attività iniziata" +msgid "snapins" +msgstr "snapins" -#: lib/service/imagesize.class.php:102 -msgid " * Image size is globally disabled" -msgstr "* La dimensione dell'immagine è disattivata globalmente" +msgid "snapins to a storage group" +msgstr "Snap in un gruppo di archiviazione" -#: lib/service/imagesize.class.php:111 -msgid "Starting Image Size Service" -msgstr "Avvio del servizio Dimensione immagine" +msgid "so if it seems like the process is hanging please be patient" +msgstr "se il processo sembra bloccato portate pazienza" -#: lib/service/imagesize.class.php:135 -msgid "Finding any images associated" -msgstr "Trovare tutte le immagini associate" +msgid "so if you are unable to boot a client you may wish to" +msgstr "pertanto se non si è in grado di abbiare un client tu puoi" -#: lib/service/imagesize.class.php:158 -msgid "No images associated with this group as master" -msgstr "Nessuna immagine associata a questo gruppo come master" +msgid "successfully removed!" +msgstr "rimosso con successo" -#: lib/service/imagesize.class.php:170 -msgid "images" -msgstr "immagini" +msgid "task found" +msgstr "compito trovato" -#: lib/service/imagesize.class.php:171 -msgid "image" -msgstr "Immagine" +msgid "tasks in queue" +msgstr "attività in coda" -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" -msgstr "Per aggiornare i valori di dimensione secondo necessità" +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" +msgstr "" -#: lib/service/imagesize.class.php:187 -msgid "Trying image size for" -msgstr "Prova della dimensione dell'immagine per" +msgid "the Initrd (initial ramdisk) which is used alongside the" +msgstr "" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -msgid "Path is unavailable" -msgstr "Percorso non disponibile" +msgid "the Linux kernel which is used to" +msgstr "il kernel Linux che verrà usato" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" -msgstr "Ottenere la dimensione dell'immagine per" +msgid "the advanced menu to use" +msgstr "Il menu avanzato da utilizzare" -#: lib/service/imagesize.class.php:225 -msgid "Size" -msgstr "Dimensione" +msgid "the base FOG install" +msgstr "installare FOG di base" -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" -msgstr "* Il servizio Multicast è disabilitato a livello globale" +msgid "the following command in a terminal" +msgstr "il seguente comando in un terminale" -#: lib/service/multicastmanager.class.php:222 -#, fuzzy -msgid "Task ID" -msgstr "Compito" +msgid "the host defined location where available" +msgstr "la posizione definita dall'host, se disponibile" -#: lib/service/multicastmanager.class.php:234 -#, fuzzy -msgid "No new tasks found" -msgstr "Non sono stati trovati compiti validi" +msgid "the main and the host" +msgstr "Il principale e l'host" -#: lib/service/multicastmanager.class.php:264 -#, fuzzy -msgid " No open slots " -msgstr "Nessuno slot aperti" +msgid "the way in which FOG operates" +msgstr "il modo in cui funziona FOG" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" -msgstr "" +msgid "there one enabled within this Storage Group" +msgstr "c'è uno abilitato all'interno di questo gruppo di archiviazione" -#: lib/service/multicastmanager.class.php:289 -#, fuzzy -msgid "failed to execute, image file: " -msgstr "Impossibile eliminare i file di immagine" +msgid "there will be a database backup stored on your" +msgstr "Ci sarà un backup del database memorizzato sul tuo" -#: lib/service/multicastmanager.class.php:291 -msgid "not found on this node" -msgstr "Non trovato su questo nodo" +msgid "this backup will enable you to return to the" +msgstr "Questo backup vi permetterà di ritornare alla" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" -msgstr "" +msgid "this is just another to ensure safety" +msgstr "questo è solo un altro per garantire la sicurezza" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" -msgstr "" +msgid "this kernel holds all the drivers for the client computer" +msgstr "questo kernel attende tutti i driver per il computre client" -#: lib/service/multicastmanager.class.php:327 -msgid "failed to start" -msgstr "non è riuscito a iniziare" +msgid "this one is already in use by another image" +msgstr "questo è gà in uso in un'altra immagine" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 -#, fuzzy -msgid "could not be killed" -msgstr "Impossibile leggere il file temporaneo" +msgid "this one is reserved for FOG" +msgstr "questo è riservato per FOG" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 -#, fuzzy -msgid "has been killed" -msgstr "è stato cancellato" +msgid "this will save the backup in your home" +msgstr "Questo salverà il backup nella tua" -#: lib/service/multicastmanager.class.php:363 -msgid "is new" -msgstr "è nuovo" +msgid "time the service is started." +msgstr "volta che il servizio viene avviato." -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -#, fuzzy -msgid "unable to be updated" -msgstr "Impossibile aggiornare" +msgid "to UAC introduced in Vista and up" +msgstr "UAC introdotto in Vista e superiori" -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " -msgstr "" +msgid "to all nodes in the group" +msgstr "a tutti i nodi del gruppo" -#: lib/service/multicastmanager.class.php:397 -msgid "client" -msgstr "client" +msgid "to be booted if no keys are pressed when the menu is" +msgstr "per essere avviato se non è premuto nessun tasto quando il menu è" -#: lib/service/multicastmanager.class.php:398 #, fuzzy -msgid "clients" -msgstr "client" +msgid "to get the requested Initrd" +msgstr "pr ottenere il Kernel richiesto" -#: lib/service/multicastmanager.class.php:401 -msgid "found" -msgstr "trovato" +msgid "to get the requested Kernel" +msgstr "pr ottenere il Kernel richiesto" -#: lib/service/multicastmanager.class.php:409 -#, fuzzy -msgid "sending on base port " -msgstr "Inviando sulla porta di base" +msgid "to login" +msgstr "il login" -#: lib/service/multicastmanager.class.php:416 -msgid "Command" -msgstr "Comando" +msgid "to operate in an environment where there may be" +msgstr "per operare in un ambiente in cui ci possa essere" -#: lib/service/multicastmanager.class.php:425 -msgid "has started" -msgstr "è iniziato" +msgid "to review." +msgstr "da revisionare" -#: lib/service/multicastmanager.class.php:490 -#, fuzzy -msgid "is already running with pid: " -msgstr "è già in esecuzione con pid" +msgid "to signify if this is a user or channel to send to" +msgstr "Per indicare se si tratta di un utente o un canale da inviare" -#: lib/service/multicastmanager.class.php:502 -msgid "is no longer running" -msgstr "non è più in esecuzione" +msgid "to the client systems" +msgstr "verso i sistemi client" -#: lib/service/multicastmanager.class.php:528 -msgid "has been completed" -msgstr "è stato completato" +msgid "to time to see if a new module is published." +msgstr "in tanto per vedere se è stato pubblicato un nuovo modulo." -#: lib/service/multicastmanager.class.php:539 -msgid "has been cancelled" -msgstr "è stato cancellato" +msgid "to transfer to" +msgstr "Per trasferire a" -#: lib/service/multicastmanager.class.php:584 -#, fuzzy -msgid "is now cancelled" -msgstr "è stato cancellato" +msgid "to update hash values as needed" +msgstr "Per aggiornare i valori di hash come necessario" -#: lib/service/multicastmanager.class.php:585 -#, fuzzy -msgid "could not be cancelled" -msgstr "è stato cancellato" +msgid "to update size values as needed" +msgstr "Per aggiornare i valori di dimensione secondo necessità" -#: lib/service/multicastmanager.class.php:600 #, fuzzy -msgid "is now completed" -msgstr "è stato completato" +msgid "unable to be updated" +msgstr "Impossibile aggiornare" -#: lib/service/multicastmanager.class.php:601 -#, fuzzy -msgid "could not be completed" -msgstr "Impossibile leggere il file temporaneo" +msgid "unavailable" +msgstr "non disponibile" -#: lib/service/multicastmanager.class.php:619 -msgid "Wait time has changed to" -msgstr "Il tempo di attesa è cambiato" +msgid "understood" +msgstr "inteso" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" -msgstr "secondi" +msgid "update to a newer kernel which may have more drivers built in" +msgstr "aggiornare ad un nuovo kernel che abbia maggiori driver built in" -#: lib/service/multicastmanager.class.php:624 -msgid "second" -msgstr "secondo" +msgid "used" +msgstr "" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" -msgstr "* Il task scheduler è disattivato a livello globale" +msgid "user failed to login" +msgstr "utente non connesso" -#: lib/service/taskscheduler.class.php:172 -#, fuzzy -msgid "scheduled task(s) to run" -msgstr "Attività pianificate" +msgid "user successfully logged in" +msgstr "utente connesso con successo" -#: lib/service/taskscheduler.class.php:179 #, fuzzy -msgid "power management task(s) to run" -msgstr "Nuova attività di gestione energetica" +msgid "username" +msgstr "Nome utente" -#: lib/service/taskscheduler.class.php:187 -#, fuzzy -msgid "Scheduled Task run time" -msgstr "Attività pianificate" +msgid "version" +msgstr "versione" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." -msgstr "" +msgid "we need a file name in the request" +msgstr "Abbiamo bisogno di un nome di file nella richiesta" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" -msgstr "È un" +msgid "where to download the snapin" +msgstr "dove scaricare lo snapin" -#: lib/service/taskscheduler.class.php:216 -#, fuzzy -msgid "based task." -msgstr "un'attività in base" +msgid "which is empty" +msgstr "che è vuoto" -#: lib/service/taskscheduler.class.php:224 -#, fuzzy -msgid "Unicaset" -msgstr "Unicast" +msgid "window" +msgstr "finestra" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" -msgstr "compito trovato" +msgid "wipe out all of your images stored on" +msgstr "cancellare tutte le immagini archiviate in" -#: lib/service/taskscheduler.class.php:252 -#, fuzzy -msgid "Task started for" -msgstr "Attività avviate per" +msgid "with modules and config" +msgstr "con moduli e configurazioni" -#: lib/service/taskscheduler.class.php:275 -#, fuzzy -msgid "Power Management Task run time" -msgstr "Gestione energetica" +msgid "with the host" +msgstr "con l'host" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." -msgstr "" +msgid "with this group" +msgstr "con questo gruppo" -#: lib/service/taskscheduler.class.php:294 -msgid "Task sent to" -msgstr "Attività inviata a" +msgid "would you like to install it now" +msgstr "ti piacerebbe installarlo ora" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" -msgstr "Attiva la navigazione" +msgid "you set the bandwidth field on that node to 1000" +msgstr "si imposti il campo di larghezza di banda su quel nodo a 1000" -#: management/other/index.php:167 -msgid "Credits" -msgstr "Credits" +#, fuzzy +#~ msgid "A hostext already exists with this name!" +#~ msgstr "Un host già esiste con questo nome!" -#: management/other/index.php:170 -msgid "FOG Client" -msgstr "FOG Client" +#, fuzzy +#~ msgid "Add ou failed!" +#~ msgstr "Aggiunta gruppo non riuscito!" -#: service/hostnameloop.php:36 -msgid "A host with that name already exists" -msgstr "Un nome host con questo nome esiste già" +#~ msgid "Could not read temp file" +#~ msgstr "Impossibile leggere il file temporaneo" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" -msgstr "Il MAC primario associato è" +#, fuzzy +#~ msgid "Create New Host Ext" +#~ msgstr "Crea nuovo %s" -#: service/inventory.php:90 -msgid "Failed to create inventory for this host" -msgstr "Fallita la creazione dell'inventario per questo host" +#~ msgid "DO NOT USE THIS IF YOU ARE USING THE NEW CLIENT" +#~ msgstr "NON UTILIZZARE QUESTO SE UTILIZZATE IL NUOVO CLIENT" -#: service/grouplisting.php:28 -msgid "There are no groups on this server" -msgstr "Non ci sono gruppi su questo server" +#, fuzzy +#~ msgid "Export Host Exts" +#~ msgstr "Host Export" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" -msgstr "Impossiible visualizzare nel browser" +#, fuzzy +#~ msgid "External Links" +#~ msgstr "Estensione" -#: service/hostinfo.php:31 -msgid "Invalid tasking!" -msgstr "Compito non valido!" +#~ msgid "FOG Snapin Log" +#~ msgstr "FOG Snapin Log" -#: service/imagelisting.php:28 -msgid "There are no images on this server" -msgstr "Non ci sono immagini su questo server" +#~ msgid "Hello FOG Client" +#~ msgstr "Ciao FOG client" -#: service/locationlisting.php:28 -msgid "There are no locations on this server" -msgstr "Non ci sono posizioni su questo server" +#, fuzzy +#~ msgid "Host Ext" +#~ msgstr "Lista Host" -#: service/progress.php:39 -msgid "Invalid image" -msgstr "immagine non valido" +#, fuzzy +#~ msgid "Host Ext Name" +#~ msgstr "Nome Host" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "Unità non valido passato" +#, fuzzy +#~ msgid "Host Ext URL" +#~ msgstr "Host AD OU" -#: service/Test.php:217 -msgid "Invalid Unit" -msgstr "Unità non valida" +#, fuzzy +#~ msgid "Host Ext Variable" +#~ msgstr "Aggiornamento Host riuscito" -#: service/av.php:25 -msgid "Invalid operational mode" -msgstr "modalità operativa non valido" +#, fuzzy +#~ msgid "Hostext Create Fail" +#~ msgstr "Creazione Host fallita" -#: service/av.php:38 -msgid "Accepted" -msgstr "Accettato" +#, fuzzy +#~ msgid "Hostext Create Success" +#~ msgstr "Creazione Host con successo" -#: service/snapinlisting.php:28 -msgid "There are no snapins on this server" -msgstr "Non ci sono snapins su questo server" +#, fuzzy +#~ msgid "Hostext Update Fail" +#~ msgstr "Aggiornamento Host completato" -#: status/bandwidth.php:40 -msgid "Device must be a string" -msgstr "Dispositivo deve essere una stringa" +#, fuzzy +#~ msgid "Hostext Update Success" +#~ msgstr "Aggiornamento host completato!" -#: status/getfiles.php:27 -msgid "Invalid" -msgstr "Non valido" +#, fuzzy +#~ msgid "Hostext added!" +#~ msgstr "Host aggiunto!" -#: status/logtoview.php:31 status/logtoview.php:130 -msgid "Invalid IP" -msgstr "IP non valido" +#, fuzzy +#~ msgid "Hostext update failed!" +#~ msgstr "Aggiornamento della stampante non è riuscito!" -#: status/logtoview.php:37 status/logtoview.php:136 -msgid "Invalid File" -msgstr "File non valido" +#, fuzzy +#~ msgid "Hostext updated!" +#~ msgstr "Host aggiornato!" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "cartella non valido" +#, fuzzy +#~ msgid "Import Host Exts" +#~ msgstr "Importa Host" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "Impossibile aprire il file per la lettura" +#~ msgid "Invalid Unit" +#~ msgstr "Unità non valida" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "IP Passato è corretto" +#~ msgid "Invalid unit passed" +#~ msgstr "Unità non valido passato" -#~ msgid "Hello FOG Client" -#~ msgstr "Ciao FOG client" +#~ msgid "Inventory Desc" +#~ msgstr "inventario Desc" -#~ msgid "FOG Snapin Log" -#~ msgstr "FOG Snapin Log" +#~ msgid "It is recommended to not use this file but" +#~ msgstr "Si raccomanda di non utilizzare questo file ma" #~ msgid "Legacy Client and Utilities" #~ msgstr "Client legacy e utilità" -#~ msgid "The old client and fogcrypt, deprecated" -#~ msgstr "Il vecchio client e fogcrypt, deprecata" +#~ msgid "Legacy FOG Client" +#~ msgstr "Legacy Client FOG" + +#~ msgid "Replicating ssl less private key" +#~ msgstr "Replica ssl senza chiave privata" #~ msgid "The legacy client and fog crypt utility for those" #~ msgstr "Il client legacy e l'utilità FOG crypt per quelli" -#~ msgid "that are not yet using the new client" -#~ msgstr "che non utilizzano ancora il nuovo client" +#~ msgid "The old client and fogcrypt, deprecated" +#~ msgstr "Il vecchio client e fogcrypt, deprecata" -#~ msgid "We highly recommend you make the switch for more" -#~ msgstr "Ti consigliamo di effettuare l'aggiornamento per maggiore" +#~ msgid "This client is not being developed any further so any issues" +#~ msgstr "Questo cliente non è più sviluppato così eventuali problemi" -#~ msgid "security and faster client communication and management" -#~ msgstr "sicurezza, comunicazione e gestione dei clienti più veloci" +#~ msgid "This file is used to encrypt the AD Password" +#~ msgstr "Questo file viene utilizzato per crittografare la password AD" #~ msgid "This is the file to install the legacy client" #~ msgstr "Questo è il file per installare il client legacy" -#~ msgid "It is recommended to not use this file but" -#~ msgstr "Si raccomanda di non utilizzare questo file ma" - -#~ msgid "you may do as you please" -#~ msgstr "si può fare come ti pare" +#~ msgid "Unable to determine plugin details" +#~ msgstr "Impossibile determinare i dettagli del plugin" -#~ msgid "This client is not being developed any further so any issues" -#~ msgstr "Questo cliente non è più sviluppato così eventuali problemi" +#~ msgid "We highly recommend you make the switch for more" +#~ msgstr "Ti consigliamo di effettuare l'aggiornamento per maggiore" -#~ msgid "you may find" -#~ msgstr "che puoi trovare" +#~ msgid "file to" +#~ msgstr "File con" #~ msgid "or features you may request" #~ msgstr "c le funzionalità che puoi richiedere" -#~ msgid "will not be added to this client" -#~ msgstr "von verranno aggiunte a questo client" - -#~ msgid "Legacy FOG Client" -#~ msgstr "Legacy Client FOG" +#~ msgid "security and faster client communication and management" +#~ msgstr "sicurezza, comunicazione e gestione dei clienti più veloci" -#~ msgid "This file is used to encrypt the AD Password" -#~ msgstr "Questo file viene utilizzato per crittografare la password AD" +#~ msgid "that are not yet using the new client" +#~ msgstr "che non utilizzano ancora il nuovo client" -#~ msgid "DO NOT USE THIS IF YOU ARE USING THE NEW CLIENT" -#~ msgstr "NON UTILIZZARE QUESTO SE UTILIZZATE IL NUOVO CLIENT" +#~ msgid "will not be added to this client" +#~ msgstr "von verranno aggiunte a questo client" -#~ msgid "Could not read temp file" -#~ msgstr "Impossibile leggere il file temporaneo" +#~ msgid "you may do as you please" +#~ msgstr "si può fare come ti pare" -#~ msgid "file to" -#~ msgstr "File con" +#~ msgid "you may find" +#~ msgstr "che puoi trovare" diff --git a/packages/web/management/languages/messages.pot b/packages/web/management/languages/messages.pot index 814586bf54..25148e1f3e 100644 --- a/packages/web/management/languages/messages.pot +++ b/packages/web/management/languages/messages.pot @@ -1,10103 +1,6776 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" +msgid " * Image replication is globally disabled" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-04 13:13-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: commons/text.php:22 -msgid "Display" + +msgid " * Image size is globally disabled" msgstr "" -#: commons/text.php:23 -msgid "Auto" +msgid " * Multicast service is globally disabled" msgstr "" -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" +msgid " * Ping hosts is globally disabled" msgstr "" -#: commons/text.php:25 -msgid "Inventory" +msgid " * Snapin hash is globally disabled" msgstr "" -#: commons/text.php:26 -msgid "O/S" +msgid " * Snapin replication is globally disabled" msgstr "" -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" +msgid " * Task Scheduler is globally disabled" msgstr "" -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" +msgid " Name" msgstr "" -#: commons/text.php:29 -msgid "Deleted" +msgid " No open slots " msgstr "" -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" +msgid " Task state has been updated, now the task is queued!" msgstr "" -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" +msgid " | This is not the master node" msgstr "" -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" +msgid " | Unable to find image path" msgstr "" -#: commons/text.php:33 -msgid "Storage" +msgid "$_POST variable is empty, check apache error log." msgstr "" -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" +#, php-format +msgid "%s ID %d is not valid" msgstr "" -#: commons/text.php:35 -msgid "Snapins" +#, php-format +msgid "%s ID %s is not valid" msgstr "" -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" +#, php-format +msgid "%s Manager" msgstr "" -#: commons/text.php:37 -msgid "Removed" +#, php-format +msgid "%s Menu" msgstr "" -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" +#, php-format +msgid "%s is required" msgstr "" -#: commons/text.php:39 -msgid "Management" +msgid "1 Hour" msgstr "" -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" +msgid "10 Minutes" msgstr "" -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" +msgid "2 Minutes" msgstr "" -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" +msgid "30 Minutes" msgstr "" -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" +msgid "

Dependencies: port TCP 445 open in the client side" msgstr "" -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" +msgid "

Possible status: Windows, Linux, FOS and Unknown" msgstr "" -#: commons/text.php:45 -msgid "Groups" +msgid "

Version 1.5.5" msgstr "" -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" +msgid "A LDAP setup already exists with this name!" msgstr "" -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" +msgid "A Windows Key already exists with this name!" msgstr "" -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" +msgid "A broadcast address is required" msgstr "" -#: commons/text.php:49 -msgid "Bandwidth" +msgid "A broadcast already exists with this name" msgstr "" -#: commons/text.php:50 -msgid "Replication Bandwidth" +msgid "A broadcast already exists with this name!" msgstr "" -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" +msgid "A description needs to be set" msgstr "" -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" +msgid "A file" msgstr "" -#: commons/text.php:55 -msgid "it's transmitting to" +msgid "A group already exists with this name!" msgstr "" -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" +msgid "A group is required for a location" msgstr "" -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" +msgid "A group is required!" msgstr "" -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" +msgid "A group must be selected." msgstr "" -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" +msgid "A group name is required!" msgstr "" -#: commons/text.php:61 -msgid "Transmit" +msgid "A host already exists with this name!" msgstr "" -#: commons/text.php:62 -msgid "Receive" +msgid "A host name is required!" msgstr "" -#: commons/text.php:63 -msgid "New" +msgid "A host with that name already exists" msgstr "" -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" +msgid "A host with this mac already exists with name" msgstr "" -#: commons/text.php:65 -msgid "Users" +msgid "A location with that name already exists." msgstr "" -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" +msgid "A mac address is required!" msgstr "" -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" +msgid "A name is required!" msgstr "" -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" +msgid "A name must be defined if using the \"name\" property" msgstr "" -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" +msgid "A name must be set" msgstr "" -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" +msgid "A password is required!" msgstr "" -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" +msgid "A printer already exists with this name!" msgstr "" -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" +msgid "A printer name is required!" msgstr "" -#: commons/text.php:73 -msgid "Text" +msgid "A role already exists with this name!" msgstr "" -#: commons/text.php:74 -msgid "Graphical" +msgid "A rule already exists with this name." msgstr "" -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" +msgid "A site alread exists with this name!" msgstr "" -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" +msgid "A site already exists with this name!" msgstr "" -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" +msgid "A snapin already exists with this name!" msgstr "" -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" +msgid "A snapin name is required!" msgstr "" -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" +msgid "A subnet group already exists with this name!" msgstr "" -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" +msgid "A subnet group is already using this group." msgstr "" -#: commons/text.php:81 -msgid "Printer" +msgid "A subnetgroup already exists with this name!" msgstr "" -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 -msgid "Power Management" +msgid "A task already exists for this host at the scheduled tasking" msgstr "" -#: commons/text.php:83 -msgid "Client" +msgid "A task state already exists with this name!" msgstr "" -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" +msgid "A task type already exists with this name!" msgstr "" -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" +msgid "A user already exists with this name" msgstr "" -#: commons/text.php:86 -msgid "Service" +msgid "A user name is required!" msgstr "" -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" +msgid "A username already exists with this name!" msgstr "" -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" +msgid "A valid database connection could not be made" msgstr "" -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" +msgid "AD Domain" msgstr "" -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" +msgid "AD Join" msgstr "" -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" +msgid "AD OU" msgstr "" -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" +msgid "API Settings" msgstr "" -#: commons/text.php:93 -msgid "NOT" +msgid "API?" msgstr "" -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" +msgid "About FOG Reports" msgstr "" -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" +msgid "Accepted" msgstr "" -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" +msgid "Access" msgstr "" -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" +msgid "Access Control Management" msgstr "" -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" +msgid "Access Control Role General" msgstr "" -#: commons/text.php:99 -msgid "Schedule" +msgid "Access Control Rule" msgstr "" -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" +msgid "Access Control Rule General" msgstr "" -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 -msgid "Capture" +msgid "Access Control Rules" msgstr "" -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" +msgid "Access Controls" msgstr "" -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" +msgid "Access Token" msgstr "" -#: commons/text.php:104 -msgid "Actions" +msgid "Access level is still 0 or false" msgstr "" -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" +msgid "Accessed By" msgstr "" -#: commons/text.php:107 -msgid "Kill" +msgid "Account already linked" msgstr "" -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" +msgid "Account linked to FOG GUI at" msgstr "" -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" +msgid "Account name to reset" msgstr "" -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" +msgid "Account removed from FOG GUI at" msgstr "" -#: commons/text.php:111 -msgid "Home" +msgid "Account successfully added!" msgstr "" -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" +msgid "Action" msgstr "" -#: commons/text.php:113 -msgid "Reports" +msgid "Actions" msgstr "" -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" +msgid "Activate Plugins" msgstr "" -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" +msgid "Active" msgstr "" -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" +msgid "Active Directory" msgstr "" -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" +msgid "Active Multi-cast Tasks" msgstr "" -#: commons/text.php:118 -msgid "Force" +msgid "Active Multicast Tasks" msgstr "" -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" +msgid "Active Snapin Tasks" msgstr "" -#: commons/text.php:120 -msgid "Settings" +msgid "Active Tasks" msgstr "" -#: commons/text.php:121 -msgid "FOG" +msgid "Add" msgstr "" -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 -msgid "Active" +msgid "Add Directory" msgstr "" -#: commons/text.php:123 -msgid "Printers" +msgid "Add Event" msgstr "" -#: commons/text.php:124 -msgid "Directory" +msgid "Add Hosts" msgstr "" -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 -msgid "Active Directory" +msgid "Add LDAP server failed!" msgstr "" -#: commons/text.php:126 -msgid "Virus History" +msgid "Add MAC" msgstr "" -#: commons/text.php:127 -msgid "Login History" +msgid "Add New Printer" msgstr "" -#: commons/text.php:128 -msgid "Image History" +msgid "Add Printers" msgstr "" -#: commons/text.php:129 -msgid "Snapin History" +msgid "Add Pushbullet Account" msgstr "" -#: commons/text.php:130 -msgid "Configuration" +msgid "Add Rules" msgstr "" -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" +msgid "Add Slack Account" msgstr "" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" +msgid "Add Snapins" msgstr "" -#: commons/text.php:134 -msgid "License" +msgid "Add Storage Group" msgstr "" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" +msgid "Add Storage Groups" msgstr "" -#: commons/text.php:136 -msgid "iPXE General Configuration" +msgid "Add Storage Node" msgstr "" -#: commons/text.php:137 -msgid "Client Updater" +msgid "Add Subnetgroup failed!" msgstr "" -#: commons/text.php:138 -msgid "Hostname Changer" +msgid "Add User" msgstr "" -#: commons/text.php:139 -msgid "Host Registration" +msgid "Add Users" msgstr "" -#: commons/text.php:140 -msgid "Snapin Client" +msgid "Add Windows Key failed!" msgstr "" -#: commons/text.php:141 -msgid "Task Reboot" +msgid "Add any custom text you would like" msgstr "" -#: commons/text.php:142 -msgid "User Cleanup" +msgid "Add broadcast failed!" msgstr "" -#: commons/text.php:143 -msgid "User Tracker" +msgid "Add failed" msgstr "" -#: commons/text.php:144 -#, php-format -msgid "%s Manager" +msgid "Add group failed!" msgstr "" -#: commons/text.php:145 -msgid "Green FOG" +msgid "Add host failed!" msgstr "" -#: commons/text.php:146 -msgid "Directory Cleaner" +msgid "Add image failed!" msgstr "" -#: commons/text.php:147 -msgid "MAC Address List" +msgid "Add location failed!" msgstr "" -#: commons/text.php:148 -msgid "FOG Settings" +#, php-format +msgid "Add new role" msgstr "" -#: commons/text.php:149 -msgid "Server Shell" +#, php-format +msgid "Add new rule" msgstr "" -#: commons/text.php:150 -msgid "Log Viewer" +msgid "Add printer failed!" msgstr "" -#: commons/text.php:151 -msgid "Configuration Save" +msgid "Add role failed!" msgstr "" -#: commons/text.php:152 -msgid "FOG Sourceforge Page" +msgid "Add rule failed!" msgstr "" -#: commons/text.php:153 -msgid "FOG Home Page" +msgid "Add selected hosts" msgstr "" -#: commons/text.php:154 -msgid "New Search" +msgid "Add selected images" msgstr "" -#: commons/text.php:155 -#, php-format -msgid "List All %s" +msgid "Add selected printers" msgstr "" -#: commons/text.php:156 -#, php-format -msgid "Create New %s" +msgid "Add selected rules" msgstr "" -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" +msgid "Add selected snapins" msgstr "" -#: commons/text.php:158 -msgid "Client Settings" +msgid "Add selected storage groups" msgstr "" -#: commons/text.php:159 -msgid "Plugins" +msgid "Add selected users" msgstr "" -#: commons/text.php:160 -msgid "Basic Tasks" +msgid "Add site failed!" msgstr "" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" +msgid "Add snapin failed!" msgstr "" -#: commons/text.php:162 -msgid "Image Association" +msgid "Add storage node failed!" msgstr "" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" +msgid "Add task state failed!" msgstr "" -#: commons/text.php:164 -msgid "Primary Group" +msgid "Add task type failed!" msgstr "" -#: commons/text.php:165 -msgid "All Storage Nodes" +msgid "Add to group" msgstr "" -#: commons/text.php:166 -msgid "Add Storage Node" +msgid "Add user failed!" msgstr "" -#: commons/text.php:167 -msgid "All Storage Groups" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" msgstr "" -#: commons/text.php:168 -msgid "Add Storage Group" +msgid "Adding Key" msgstr "" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" +msgid "Additional Icon elements" msgstr "" -#: commons/text.php:170 -msgid "Active Multicast Tasks" +msgid "Additional MACs" msgstr "" -#: commons/text.php:171 -msgid "Active Snapin Tasks" +msgid "Admin Group" msgstr "" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" +msgid "Advanced" msgstr "" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" +msgid "Advanced Actions" msgstr "" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" +msgid "Advanced Login Required" msgstr "" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" +msgid "Advanced Menu Login" msgstr "" -#: commons/text.php:176 -msgid "Export Configuration" +msgid "Advanced Menu settings" msgstr "" -#: commons/text.php:177 -msgid "Import Configuration" +msgid "Advanced Options" msgstr "" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" +msgid "Advanced Settings" msgstr "" -#: commons/text.php:179 -msgid "Invalid MAC Address!" +msgid "Advanced menu command" msgstr "" -#: commons/text.php:180 -msgid "iPXE Menu Item Settings" +msgid "After image Action" msgstr "" -#: commons/text.php:181 -msgid "iPXE Menu Customization" +msgid "Ago must be boolean" msgstr "" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" +msgid "All" msgstr "" -#: commons/text.php:183 -msgid "Save Changes" +msgid "All Groups" msgstr "" -#: commons/text.php:184 -msgid "Required database field is empty" +msgid "All Hosts" msgstr "" -#: commons/text.php:185 -msgid "No results found" +msgid "All Pending MACs approved" msgstr "" -#: commons/text.php:186 -#, php-format -msgid "%s is required" +msgid "All Pending MACs approved." msgstr "" -#: commons/text.php:188 -msgid "Host Management" +msgid "All Storage Groups" msgstr "" -#: commons/text.php:189 -msgid "Storage Management" +msgid "All Storage Nodes" msgstr "" -#: commons/text.php:190 -msgid "Task Management" +msgid "All files synced for this item." msgstr "" -#: commons/text.php:191 -msgid "Client Management" +msgid "All methods of binding have failed" msgstr "" -#: commons/text.php:192 -msgid "Dashboard" +msgid "All snapins" msgstr "" -#: commons/text.php:193 -msgid "Service Configuration" +msgid "Allows editing/creating of Task States fog currently has." msgstr "" -#: commons/text.php:194 -msgid "Report Management" +msgid "Allows editing/creating of Task Types fog currently has." msgstr "" -#: commons/text.php:195 -msgid "Printer Management" +msgid "Already created" msgstr "" -#: commons/text.php:196 -msgid "FOG Configuration" +msgid "Already registered as" msgstr "" -#: commons/text.php:197 -msgid "Group Management" +msgid "Also confirm that the database is indeed running" msgstr "" -#: commons/text.php:198 -msgid "Image Management" +msgid "Although there are multiple levels already" msgstr "" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" +msgid "An image already exists with this name!" msgstr "" -#: commons/text.php:200 -msgid "Hardware Information" +msgid "Annually" msgstr "" -#: commons/text.php:201 -msgid "Snapin Management" +msgid "Applications" msgstr "" -#: commons/text.php:202 -msgid "Plugin Management" +msgid "Approve" msgstr "" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" +msgid "Approve All Pending MACs for All Hosts" msgstr "" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" +msgid "Approve Host" msgstr "" -#: commons/text.php:206 -msgid "FOG General Help" +msgid "Approve MAC" msgstr "" -#: commons/text.php:208 -msgid "Pending Hosts" +msgid "Approve Selected MACs" msgstr "" -#: commons/text.php:209 -msgid "Last Deployed" +msgid "Approve Success" msgstr "" -#: commons/text.php:210 -msgid "Last Captured" +msgid "Approve all pending macs" msgstr "" -#: commons/text.php:211 -msgid "Deploy Method" +msgid "Approve all pending? " msgstr "" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" +msgid "Approve selected hosts" msgstr "" -#: commons/text.php:213 -msgid "Not Available" +msgid "Approve this host?" msgstr "" -#: commons/text.php:214 -msgid "Export Hosts" +msgid "Approved" msgstr "" -#: commons/text.php:215 -msgid "Import Hosts" +msgid "Are you sure you wish to" msgstr "" -#: commons/text.php:216 -msgid "Export Users" +msgid "Array" msgstr "" -#: commons/text.php:217 -msgid "Import Users" +msgid "Assigned Image" msgstr "" -#: commons/text.php:218 -msgid "Export Images" +msgid "Assignment saved successfully" msgstr "" -#: commons/text.php:219 -msgid "Import Images" +msgid "Associate rule failed!" msgstr "" -#: commons/text.php:220 -msgid "Export Groups" +msgid "Associated Sites" msgstr "" -#: commons/text.php:221 -msgid "Import Groups" +msgid "Associates the files on nodes" msgstr "" -#: commons/text.php:222 -msgid "Export Snapins" +msgid "Attempting to perform" msgstr "" -#: commons/text.php:223 -msgid "Import Snapins" +msgid "Attempting to ping" msgstr "" -#: commons/text.php:224 -msgid "Export Printers" +msgid "Auto" msgstr "" -#: commons/text.php:225 -msgid "Import Printers" +msgid "Auto Log Out Time (in minutes)" msgstr "" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" +msgid "Available Snapins" msgstr "" -#: commons/text.php:227 -msgid "Host List" +msgid "BIOS Date" msgstr "" -#: commons/text.php:228 -msgid "Imaging Log" +msgid "BIOS Vendor" msgstr "" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" +msgid "BIOS Version" msgstr "" -#: commons/text.php:230 -msgid "Snapin Log" +msgid "Bandwidth" msgstr "" -#: commons/text.php:231 -msgid "Upload Reports" +msgid "Bandwidth should be numeric and greater than 0" msgstr "" -#: commons/text.php:233 -msgid "Main Menu" +msgid "Barcode Numbers" msgstr "" -#: commons/text.php:235 -msgid "Invalid Login" +msgid "Base Only" msgstr "" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" +msgid "Basic Settings" msgstr "" -#: commons/text.php:237 -msgid "Management Login" +msgid "Basic Tasks" msgstr "" -#: commons/text.php:238 -msgid "Password" +msgid "Bind DN" msgstr "" -#: commons/text.php:239 -msgid "Estimated FOG Sites" +msgid "Bind Password" msgstr "" -#: commons/text.php:240 -msgid "Latest Version" +msgid "Bitrate" msgstr "" -#: commons/text.php:241 -msgid "Latest Development Version" +msgid "Blank for default" msgstr "" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" +msgid "Boot Exit settings" msgstr "" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" +msgid "Boot Key Sequence" msgstr "" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" +msgid "Boot Options" msgstr "" -#: commons/text.php:246 -msgid "Failed to delete image files" +msgid "Broadcast Create Fail" msgstr "" -#: commons/text.php:247 -msgid "Failed to delete file" +msgid "Broadcast Create Success" msgstr "" -#: commons/text.php:249 -msgid "Not Registered Hosts" +msgid "Broadcast IP" msgstr "" -#: commons/text.php:250 -msgid "Registered Hosts" +msgid "Broadcast Name" msgstr "" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" +msgid "Broadcast Update Fail" msgstr "" -#: commons/text.php:252 -msgid "Debug Options" +msgid "Broadcast Update Success" msgstr "" -#: commons/text.php:253 -msgid "Advanced Options" +msgid "Broadcast added!" msgstr "" -#: commons/text.php:254 -msgid "Advanced Login Required" +msgid "Broadcast update failed!" msgstr "" -#: commons/text.php:255 -msgid "Pending Registered Hosts" +msgid "Broadcast updated!" msgstr "" -#: commons/text.php:257 -msgid "n/a" +msgid "Browse" msgstr "" -#: commons/text.php:259 -msgid "Directory Already Exists" +msgid "CPU Cache" msgstr "" -#: commons/text.php:260 -msgid "Time Already Exists" +msgid "CPU Count" msgstr "" -#: commons/text.php:261 -msgid "User Already Exists" +msgid "CPU Manufacturer" msgstr "" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" +msgid "CPU Max Speed" msgstr "" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" +msgid "CPU Model" msgstr "" -#: commons/text.php:265 -msgid "Host is already a member of an active task" +msgid "CPU Normal Speed" msgstr "" -#: commons/text.php:266 -msgid "Host is not valid" +msgid "CPU Speed" msgstr "" -#: commons/text.php:267 -msgid "Group is not valid" +msgid "CPU Type" msgstr "" -#: commons/text.php:268 -msgid "Task Type is not valid" +msgid "CPU Version" msgstr "" -#: commons/text.php:269 -msgid "Image is not valid" +msgid "CUPS Printer" msgstr "" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" +msgid "Call" msgstr "" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" +msgid "Can be a comma seperated list." msgstr "" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" +msgid "Can not redeclare route" msgstr "" -#: commons/text.php:275 -msgid "Could not find a Storage Node is" +msgid "Cancelled due to new tasking." msgstr "" -#: commons/text.php:276 -msgid "there one enabled within this Storage Group" +msgid "Cancelled task" msgstr "" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" +msgid "Cannot add Primary mac as additional mac" msgstr "" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" +msgid "Cannot add a pre-existing primary mac" msgstr "" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" +msgid "Cannot bind to the LDAP server" msgstr "" -#: commons/text.php:287 -msgid "Minute value is not valid" +msgid "Cannot cancel tasks this way" msgstr "" -#: commons/text.php:288 -msgid "Hour value is not valid" +msgid "Cannot change image when in tasking" msgstr "" -#: commons/text.php:289 -msgid "Day of month value is not valid" +msgid "Cannot connect to" msgstr "" -#: commons/text.php:290 -msgid "Month value is not valid" +msgid "Cannot connect to database" msgstr "" -#: commons/text.php:291 -msgid "Day of week value is not valid" +msgid "Cannot connect to ftp server" msgstr "" -#: commons/text.php:293 -msgid "No Host found for MAC Address" +msgid "Cannot create tasking as image is not enabled" msgstr "" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" +msgid "Cannot set tasking as image is not enabled" msgstr "" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" +msgid "Cannot set tasking to invalid hosts" msgstr "" -#: commons/text.php:302 -msgid "Session timeout" +msgid "Cannot set tasking to pending hosts" msgstr "" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" +msgid "Cannot view from browser" msgstr "" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" +msgid "Capone Deploy" msgstr "" -#: commons/text.php:306 -msgid "Graph Enabled" +msgid "Capture" msgstr "" -#: commons/text.php:307 -msgid "Master Node" +msgid "Captured" msgstr "" -#: commons/text.php:308 -msgid "Is Master Node" +msgid "Change password" msgstr "" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" +msgid "Channel call is invalid" msgstr "" -#: commons/text.php:310 -msgid "Storage Node Description" +msgid "Chassis Asset" msgstr "" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" +msgid "Chassis Manufacturer" msgstr "" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" +msgid "Chassis Serial" msgstr "" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" +msgid "Chassis Version" msgstr "" -#: commons/text.php:314 -msgid "FTP Path" +msgid "Chat is also available on the forums for more realtime help" msgstr "" -#: commons/text.php:315 -msgid "Snapin Path" +msgid "Check here to see what hosts can be added" msgstr "" -#: commons/text.php:316 -msgid "SSL Path" +msgid "Check here to see what images can be added" msgstr "" -#: commons/text.php:317 -msgid "Interface" +msgid "Check here to see what printers can be added" msgstr "" -#: commons/text.php:318 -msgid "Is Enabled" +msgid "Check here to see what rules can be added" msgstr "" -#: commons/text.php:319 -msgid "Is Graph Enabled" +msgid "Check here to see what snapins can be added" msgstr "" -#: commons/text.php:320 -msgid "On Dashboard" +msgid "Check here to see what storage groups can be added" msgstr "" -#: commons/text.php:321 -msgid "Management Username" +msgid "Check here to see what users can be added" msgstr "" -#: commons/text.php:322 -msgid "Management Password" +msgid "Check that database is running" msgstr "" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" +msgid "Checkin Time" msgstr "" -#: commons/text.php:326 -msgid "This setting" +msgid "Checking if I am the group manager" msgstr "" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" +msgid "Checksum" msgstr "" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" +msgid "Checksums" msgstr "" -#: commons/text.php:329 -msgid "all current storage nodes" +msgid "City/State/Zip" msgstr "" -#: commons/text.php:330 -msgid "The 'Is Master Node' setting defines which" +msgid "Class" msgstr "" -#: commons/text.php:331 -msgid "node is the distributor of the images" +msgid "Class is not extended from FOGPage" msgstr "" -#: commons/text.php:332 -msgid "If you add a blank node" +msgid "Class must extend event" msgstr "" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" +msgid "Class must extend hook" msgstr "" -#: commons/text.php:334 -msgid "and set it to master" +msgid "Class name must be a string" msgstr "" -#: commons/text.php:335 -msgid "it will distribute its store" +msgid "Clear" msgstr "" -#: commons/text.php:336 -msgid "which is empty" +msgid "Clear Fields" msgstr "" -#: commons/text.php:337 -msgid "to all nodes in the group" +msgid "Clear all fields?" msgstr "" -#: commons/text.php:343 -msgid "Storage Node already exists" +msgid "Clear all history" msgstr "" -#: commons/text.php:346 -msgid "Storage Node IP" +msgid "Click" msgstr "" -#: commons/text.php:350 -msgid "Storage Node Max Clients" +msgid "Click Here" msgstr "" -#: commons/text.php:354 -msgid "Storage Node Interface" +msgid "Client" msgstr "" -#: commons/text.php:358 -msgid "Storage Node Username" +msgid "Client Count" msgstr "" -#: commons/text.php:362 -msgid "Storage Node Password" +msgid "Client Management" msgstr "" -#: commons/text.php:364 -msgid "Storage Node Created" +msgid "Client Modules Change Fail" msgstr "" -#: commons/text.php:365 -msgid "Storage Node Updated" +msgid "Client Modules Change Success" msgstr "" -#: commons/text.php:366 -msgid "Database Update Failed" +msgid "Client Settings" msgstr "" -#: commons/text.php:367 -msgid "Please confirm you want to delete" +msgid "Client Updater" msgstr "" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" +msgid "Client Version" msgstr "" -#: commons/text.php:369 -msgid "Storage Node deleted" +msgid "Clients" msgstr "" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" +msgid "Command" msgstr "" -#: commons/text.php:371 -msgid "Storage Group Description" +msgid "Complete" msgstr "" -#: commons/text.php:376 -msgid "Storage Group Already Exists" +msgid "Complete Time" msgstr "" -#: commons/text.php:377 -msgid "Storage Group Created" +msgid "Completed" msgstr "" -#: commons/text.php:378 -msgid "Storage Group Updated" +msgid "Completed imaging" msgstr "" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" +msgid "Compression" msgstr "" -#: commons/text.php:380 -msgid "Storage Group deleted" +msgid "Computer Information" msgstr "" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" +msgid "Computer Model" msgstr "" -#: commons/text.php:382 -msgid "Invalid Class" +msgid "Config File" msgstr "" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" +msgid "Configuration" msgstr "" -#: commons/text.php:384 -msgid "Do not list on menu" +msgid "Configuration Import/Export" msgstr "" -#: commons/text.php:386 -msgid "Language" +msgid "Configuration Save" msgstr "" -#: commons/init.php:433 -msgid "Missing one or more extensions." +msgid "Confirm tasking" msgstr "" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 -msgid "No valid tasks found" +msgid "Conflicting path/file" msgstr "" -#: lib/client/snapinclient.class.php:306 -msgid "Snapin is invalid" +msgid "Copy from existing" msgstr "" -#: lib/client/snapinclient.class.php:328 -msgid "Snapin Task is invalid" +msgid "Could not find a Storage Node in this group" msgstr "" -#: lib/client/snapinclient.class.php:411 -msgid "Invalid task id sent" +msgid "Could not find a Storage Node is" msgstr "" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" +msgid "Could not find any" msgstr "" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" +msgid "Could not find temp filename" msgstr "" -#: lib/client/snapinclient.class.php:500 -msgid "Invalid task id" +msgid "Could not notify" msgstr "" -#: lib/client/snapinclient.class.php:510 -msgid "Invalid Snapin Tasking object" +msgid "Could not read snapin file" msgstr "" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" +msgid "Could not read tmp file." msgstr "" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" +msgid "Could not register" msgstr "" -#: lib/client/snapinclient.class.php:587 -msgid "Cannot connect to ftp server" +msgid "Create" msgstr "" -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." +msgid "Create Image" msgstr "" -#: lib/client/snapinclient.class.php:628 -msgid "Could not read snapin file" +#, php-format +msgid "Create New %s" msgstr "" -#: lib/client/usertrack.class.php:67 -msgid "Postfix requires an action of login" +msgid "Create New Access Control Role" msgstr "" -#: lib/client/usertrack.class.php:68 -msgid "logout" +msgid "Create New Key" msgstr "" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" +msgid "Create New LDAP" msgstr "" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" +msgid "Create New Location" msgstr "" -#: lib/client/usertrack.class.php:139 -msgid "Replay from journal" +msgid "Create New Printer" msgstr "" -#: lib/client/usertrack.class.php:140 -msgid "real insert time" +msgid "Create New Snapin" msgstr "" -#: lib/client/usertrack.class.php:142 -msgid "Login time" +msgid "Create New SubnetGroup?" msgstr "" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" +msgid "Create New iPXE Menu Entry" msgstr "" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" +msgid "Create Report?" msgstr "" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 -msgid "Too many MACs" +msgid "Create Rule?" msgstr "" -#: lib/client/registerclient.class.php:110 -msgid "Only allowed to have" +msgid "Create Site" msgstr "" -#: lib/client/registerclient.class.php:112 -msgid "additional macs" +msgid "Create Storage Group" msgstr "" -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" +msgid "Create Storage Node" msgstr "" -#: lib/client/updateclient.class.php:70 -msgid "If action of ask or get" +msgid "Create Task state" msgstr "" -#: lib/client/updateclient.class.php:71 -msgid "we need a file name in the request" +msgid "Create Task type" msgstr "" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 -msgid "Invalid data found" +msgid "Create WOL Broadcast?" msgstr "" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" +msgid "Create new PM Schedule" msgstr "" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" +msgid "Create new group" msgstr "" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" +msgid "Create user?" msgstr "" -#: lib/db/mysql.class.php:70 -msgid "No query sent" +msgid "Created By" msgstr "" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" +msgid "Created Tasks For" msgstr "" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" +msgid "Created by FOG Reg on" msgstr "" -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" +msgid "Created file extension must be, jpg, jpeg, or png" msgstr "" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" +msgid "Credits" msgstr "" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" +msgid "Cron" msgstr "" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" +msgid "Cron Schedule" msgstr "" -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" +msgid "Cross platform" msgstr "" -#: lib/db/pdodb.class.php:114 -msgid "SQL Error" +msgid "Current Associations" msgstr "" -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" +msgid "Current Power Management settings" msgstr "" -#: lib/db/pdodb.class.php:208 -msgid "No link established to the database" +msgid "Current Records" msgstr "" -#: lib/db/pdodb.class.php:264 -msgid "No query passed" +msgid "Current Sessions" msgstr "" -#: lib/db/pdodb.class.php:290 -msgid "no database to" +msgid "Current files" msgstr "" -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" +msgid "Current settings" msgstr "" -#: lib/db/pdodb.class.php:426 -msgid "Error Code" +msgid "DMI Field" msgstr "" -#: lib/db/pdodb.class.php:430 -msgid "Debug" +msgid "DMI Key" msgstr "" -#: lib/db/pdodb.class.php:435 -msgid "Cannot connect to database" +msgid "DMI Result" msgstr "" -#: lib/db/pdodb.class.php:449 -msgid "Database connection unavailable" +msgid "Daily" msgstr "" -#: lib/fog/bootmenu.class.php:1498 -msgid "No valid storage nodes found" +msgid "Dashboard" msgstr "" -#: lib/fog/event.class.php:186 -msgid "Registered" +msgid "Data is blank" msgstr "" -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" +msgid "Data must be an array or a callable item." msgstr "" -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" +msgid "Database" msgstr "" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" +msgid "Database Failure" msgstr "" -#: lib/fog/eventmanager.class.php:76 -msgid "Second paramater must be in array(class,function)" +msgid "Database Reverted" msgstr "" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" +msgid "Database SQL" msgstr "" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" +msgid "Database Schema Installer / Updater" msgstr "" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" +msgid "Database Update Failed" msgstr "" -#: lib/fog/eventmanager.class.php:102 -msgid "Could not register" +msgid "Database changes reverted!" msgstr "" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 -msgid "Event" +msgid "Database connection unavailable" msgstr "" -#: lib/fog/eventmanager.class.php:107 -msgid "Class" +msgid "Database imported and added successfully!" msgstr "" -#: lib/fog/eventmanager.class.php:147 -msgid "Event Data must be an array" +msgid "Database not available" msgstr "" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" +msgid "Database save failed" msgstr "" -#: lib/fog/eventmanager.class.php:165 -msgid "Could not notify" +msgid "Date" msgstr "" -#: lib/fog/fogbase.class.php:443 -msgid "Class name must be a string" +msgid "Date and Time" msgstr "" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" +msgid "Date of checkout" msgstr "" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 -msgid "Key must be a string or index" +msgid "Day of month value is not valid" msgstr "" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." +msgid "Day of week value is not valid" msgstr "" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" +msgid "Debug" msgstr "" -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" +msgid "Debug Options" msgstr "" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" +msgid "Default" msgstr "" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" +msgid "Default Height" msgstr "" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" +msgid "Default Item" msgstr "" -#: lib/fog/fogbase.class.php:1347 -msgid "Unit of time must be a string" +msgid "Default Refresh Rate" msgstr "" -#: lib/fog/fogbase.class.php:1351 -msgid "In" +msgid "Default Width" msgstr "" -#: lib/fog/fogbase.class.php:1354 -msgid "ago" +msgid "Default is disabled" msgstr "" -#: lib/fog/fogbase.class.php:1382 -msgid "Old key must be a string" +msgid "Default log out time (in minutes)" msgstr "" -#: lib/fog/fogbase.class.php:1385 -msgid "New key must be a string" +msgid "Delayed" msgstr "" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" +msgid "Delayed Start" msgstr "" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" +msgid "Delete" msgstr "" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" +msgid "Delete Fail" msgstr "" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" +msgid "Delete MACs" msgstr "" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" +msgid "Delete Menu Item" msgstr "" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" +msgid "Delete Selected" msgstr "" -#: lib/fog/fogbase.class.php:1677 -msgid "Failed to decrypt data on server" +msgid "Delete Selected Items" msgstr "" -#: lib/fog/fogbase.class.php:1910 -msgid "Txt must be a string" +msgid "Delete Selected MACs" msgstr "" -#: lib/fog/fogbase.class.php:1913 -msgid "Level must be an integer" +msgid "Delete Success" msgstr "" -#: lib/fog/fogbase.class.php:1941 -msgid "String must be a string" +msgid "Delete all PM tasks?" msgstr "" -#: lib/fog/fogbase.class.php:2067 -msgid "Key must be a string" +msgid "Delete files" msgstr "" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" +msgid "Delete hosts within" msgstr "" -#: lib/fog/fogcontroller.class.php:129 -msgid "Table not defined for this class" +msgid "Delete selected" msgstr "" -#: lib/fog/fogcontroller.class.php:132 -msgid "Fields not defined for this class" +msgid "Delete selected hosts" msgstr "" -#: lib/fog/fogcontroller.class.php:145 -msgid "Record not found" +msgid "Deleted" msgstr "" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" +msgid "Deleted Success" msgstr "" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" +msgid "Deleting remote file" msgstr "" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" +msgid "Deploy" msgstr "" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" +msgid "Deploy Method" msgstr "" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" +msgid "Deploy/Capture" msgstr "" -#: lib/fog/fogcontroller.class.php:267 -msgid "Set failed" +msgid "Description" msgstr "" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 -msgid "Key" +msgid "Destroy failed" msgstr "" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" +msgid "Destroyed assignment" msgstr "" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" +msgid "Destroyed assignments" msgstr "" -#: lib/fog/fogcontroller.class.php:317 -msgid "Add failed" +msgid "Detailed documentation" msgstr "" -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" +msgid "Device must be a string" msgstr "" -#: lib/fog/fogcontroller.class.php:359 -msgid "Removing Key" +msgid "Diff parameter must be numeric" msgstr "" -#: lib/fog/fogcontroller.class.php:371 -msgid "Remove failed" +msgid "Directories" msgstr "" -#: lib/fog/fogcontroller.class.php:456 -msgid "Saving data for" +msgid "Directory" msgstr "" -#: lib/fog/fogcontroller.class.php:458 -msgid "object" +msgid "Directory Already Exists" msgstr "" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" +msgid "Directory Cleaner" msgstr "" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" +msgid "Disabled" msgstr "" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" +msgid "Display" msgstr "" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" +msgid "Do not list on menu" msgstr "" -#: lib/fog/fogcontroller.class.php:516 -msgid "Database save failed" +msgid "Domain Password" msgstr "" -#: lib/fog/fogcontroller.class.php:542 -msgid "Key field must be a string" +msgid "Domain Password Legacy" msgstr "" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 -msgid "Operation field not set" +msgid "Domain Username" msgstr "" -#: lib/fog/fogcontroller.class.php:588 -msgid "Loading data to field" +msgid "Domain name" msgstr "" -#: lib/fog/fogcontroller.class.php:606 -msgid "Load failed" +msgid "Donate to FOG" msgstr "" -#: lib/fog/fogcontroller.class.php:668 -msgid "Invalid key being destroyed" +msgid "Done" msgstr "" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 -msgid "has been successfully destroyed" +msgid "Done, Failed to create tasking" msgstr "" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 -msgid "has failed to destroy" +msgid "Done, with imaging!" msgstr "" -#: lib/fog/fogcontroller.class.php:750 -msgid "Destroy failed" +msgid "Done, without imaging!" msgstr "" -#: lib/fog/fogcontroller.class.php:831 -msgid "Invalid key being requested" +msgid "Done, without imaging! Invalid Login!" msgstr "" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" +msgid "Done, without imaging! No image assigned!" msgstr "" -#: lib/fog/fogcontroller.class.php:877 -msgid "Invalid ID passed" +msgid "Dot in Filename not allowed!" msgstr "" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" +msgid "Download Failed" msgstr "" -#: lib/fog/fogcore.class.php:40 -msgid "day" +msgid "Downloading Initrd" msgstr "" -#: lib/fog/fogcore.class.php:49 -msgid "hr" +msgid "Downloading Kernel" msgstr "" -#: lib/fog/fogcore.class.php:58 -msgid "min" +msgid "Dropped" msgstr "" -#: lib/fog/fogcore.class.php:76 -msgid "Running Windows" +msgid "Duration" msgstr "" -#: lib/fog/fogcore.class.php:88 -msgid "Unavailable" +msgid "ESC is defaulted" msgstr "" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" +msgid "Edit" msgstr "" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" +msgid "Edit Host" msgstr "" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" +msgid "Edit Image" msgstr "" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" +msgid "Edit Node" msgstr "" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" +msgid "Edit User" msgstr "" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" +msgid "Either reboot or shutdown action must be used." msgstr "" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" +msgid "Email" msgstr "" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" +msgid "Enable location Sending" msgstr "" -#: lib/fog/fogftp.class.php:219 -msgid "FTP connection failed" +msgid "Enabled" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" +msgid "Enabled as default" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" +msgid "End" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:603 -msgid "No data to insert" +msgid "End Date" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:909 -msgid "No items found" +msgid "End Time" msgstr "" -#: lib/fog/fogmanagercontroller.class.php:987 -msgid "Nothing passed to search for" +msgid "Engineer" msgstr "" -#: lib/fog/fogpage.class.php:236 -msgid "ID Must be set to edit" +msgid "Enter a group name to search for" msgstr "" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, php-format -msgid "%s ID %d is not valid" +msgid "Enter a hostname to search for" msgstr "" -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" +msgid "Enter a location name to search for" msgstr "" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" +msgid "Enter a model name to search for" msgstr "" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" +msgid "Enter a site name to search for" msgstr "" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" +msgid "Enter a snapin name to search for" msgstr "" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" +msgid "Enter a term to search for" msgstr "" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" +msgid "Enter a username to search for" msgstr "" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" +msgid "Enter an image name to search for" msgstr "" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" +msgid "Enter an user name to search for" msgstr "" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" +msgid "Equipment Loan" msgstr "" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" +msgid "Error" msgstr "" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" +msgid "Error Code" msgstr "" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" +msgid "Error Message" msgstr "" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" +msgid "Error Opening DB File" msgstr "" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" +msgid "Error multiple hosts returned for list of mac addresses" msgstr "" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" +msgid "Error performing query" msgstr "" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" +msgid "Error: Failed to download initrd" msgstr "" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" +msgid "Error: Failed to download kernel" msgstr "" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" +msgid "Error: Failed to open temp file" msgstr "" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" +msgid "Errors" msgstr "" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" +msgid "Errors on revert detected!" msgstr "" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" +msgid "Especially when your organization has many hosts" msgstr "" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" +msgid "Estimated FOG Sites" msgstr "" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" +msgid "Event" msgstr "" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" +msgid "Event Data must be an array" msgstr "" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" +msgid "Event and data are not set" msgstr "" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" +msgid "Event must be a string" msgstr "" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" +msgid "Exists item must be boolean" msgstr "" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" +msgid "Exit to Hard Drive Type" msgstr "" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" +msgid "Exit to Hard Drive Type(EFI)" msgstr "" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" +msgid "Expand All" msgstr "" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" +msgid "Export" msgstr "" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" +msgid "Export Accesscontrols" msgstr "" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" +msgid "Export CSV" msgstr "" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" +msgid "Export Checksums" msgstr "" -#: lib/fog/fogpage.class.php:643 -msgid "Group Associations" +msgid "Export Complete" msgstr "" -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" +msgid "Export Configuration" msgstr "" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" +msgid "Export Database" msgstr "" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 -msgid "Make changes?" +msgid "Export Database?" msgstr "" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 -msgid "Delete Selected" +msgid "Export Groups" msgstr "" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 -msgid "Delete selected" +msgid "Export Hosts" msgstr "" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" +msgid "Export Images" msgstr "" -#: lib/fog/fogpage.class.php:1019 -msgid "Cannot set tasking to invalid hosts" +msgid "Export LDAPs" msgstr "" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 -msgid "Cannot set tasking to pending hosts" +msgid "Export Locations" msgstr "" -#: lib/fog/fogpage.class.php:1034 -msgid "Invalid object to try tasking" +msgid "Export PDF" msgstr "" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" +msgid "Export Printers" msgstr "" -#: lib/fog/fogpage.class.php:1092 -msgid "Host Associated Snapins" +msgid "Export Sites" msgstr "" -#: lib/fog/fogpage.class.php:1119 -msgid "Host Unassociated Snapins" +msgid "Export Snapins" msgstr "" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" +msgid "Export Subnetgroups" msgstr "" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" +msgid "Export Task States" msgstr "" -#: lib/fog/fogpage.class.php:1218 -msgid "Confirm tasking" +msgid "Export Task Types" msgstr "" -#: lib/fog/fogpage.class.php:1223 -msgid "Image Associated: " +msgid "Export Users" msgstr "" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" +msgid "Export WOLBroadcasts" msgstr "" -#: lib/fog/fogpage.class.php:1243 -msgid "Please select the snapin you want to install" +msgid "Export Windows Keys" msgstr "" -#: lib/fog/fogpage.class.php:1253 -msgid "Account name to reset" -msgstr "" - -#: lib/fog/fogpage.class.php:1274 -msgid "Schedule with shutdown" +msgid "Extension" msgstr "" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" +msgid "FOG" msgstr "" -#: lib/fog/fogpage.class.php:1313 -msgid "Schedule as debug task" +msgid "FOG 1.2.0 and earlier" msgstr "" -#: lib/fog/fogpage.class.php:1323 -msgid "Schedule instant" +msgid "FOG 1.2.0 and earlier." msgstr "" -#: lib/fog/fogpage.class.php:1335 -msgid "Schedule delayed" +msgid "FOG Client" msgstr "" -#: lib/fog/fogpage.class.php:1340 -msgid "Date and Time" +msgid "FOG Client Download" msgstr "" -#: lib/fog/fogpage.class.php:1373 -msgid "Schedule cron-style" +msgid "FOG Client Installer" msgstr "" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" +msgid "FOG Client Service Updater" msgstr "" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" +msgid "FOG Client Wiki" msgstr "" -#: lib/fog/fogpage.class.php:1445 -msgid "Hosts in task" +msgid "FOG Client on Github" msgstr "" -#: lib/fog/fogpage.class.php:1556 -msgid "Invalid scheduling type" +msgid "FOG Configuration" msgstr "" -#: lib/fog/fogpage.class.php:1595 -msgid "minute" +msgid "FOG Crypt" msgstr "" -#: lib/fog/fogpage.class.php:1604 -msgid "hour" +msgid "FOG Equipment Loan Form" msgstr "" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" +msgid "FOG Forums" msgstr "" -#: lib/fog/fogpage.class.php:1622 -msgid "month" +msgid "FOG General Help" msgstr "" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" +msgid "FOG History - Search" msgstr "" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" +msgid "FOG Home Page" msgstr "" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" +msgid "FOG Host - Search" msgstr "" -#: lib/fog/fogpage.class.php:1663 -msgid "There are no hosts to task in this group" +msgid "FOG Host Inventory - Search" msgstr "" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" +msgid "FOG Host and Users - Search" msgstr "" -#: lib/fog/fogpage.class.php:1678 -msgid "Cannot create tasking as image is not enabled" +msgid "FOG Hosts and Users Login" msgstr "" -#: lib/fog/fogpage.class.php:1685 -msgid "The assigned image is protected" +msgid "FOG Imaging - Search" msgstr "" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" +msgid "FOG Imaging Log" msgstr "" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" +msgid "FOG License Information" msgstr "" -#: lib/fog/fogpage.class.php:1700 -msgid "Multicast tasks from groups" +msgid "FOG Log Viewer" msgstr "" -#: lib/fog/fogpage.class.php:1702 -msgid "require all hosts have the same image" +msgid "FOG Managed Printers" msgstr "" -#: lib/fog/fogpage.class.php:1722 -msgid "No valid hosts found and" +msgid "FOG PXE Boot Menu Configuration" msgstr "" -#: lib/fog/fogpage.class.php:1723 -msgid "or no valid images specified" +msgid "FOG Project" msgstr "" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 -msgid "Tasking Failed" +msgid "FOG Project on Github" msgstr "" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 -msgid "Failed to create tasking" +msgid "FOG Reports exist to give you information about what" msgstr "" -#: lib/fog/fogpage.class.php:1803 -msgid "Failed to create scheduled tasking" +msgid "FOG Settings" msgstr "" -#: lib/fog/fogpage.class.php:1806 -msgid "Scheduled tasks successfully created" +msgid "FOG Snapin - Search" msgstr "" -#: lib/fog/fogpage.class.php:1812 -msgid "Failed to start tasking type" +msgid "FOG Sourceforge Page" msgstr "" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" +msgid "FOG System Settings" msgstr "" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" +msgid "FOG User tracking - Search" msgstr "" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 -msgid "Tasked Successfully" +msgid "FOG User tracking history" msgstr "" -#: lib/fog/fogpage.class.php:1882 -msgid "Successfully created" +msgid "FOG Version" msgstr "" -#: lib/fog/fogpage.class.php:1889 -msgid "Created Tasks For" +msgid "FOG Version Information" msgstr "" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -msgid "Remove these items?" +msgid "FOG Virus Summary" msgstr "" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 -msgid "Unable to Authenticate" +msgid "FOG Wiki" msgstr "" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 -msgid "Successfully deleted" +msgid "FOG database you can do so using" msgstr "" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 -msgid "Delete Success" +msgid "FOG did is now called Power Management" msgstr "" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" +msgid "FOG is unable to communicate with the database" msgstr "" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" +msgid "FOG server defaulting under the folder" msgstr "" -#: lib/fog/fogpage.class.php:2314 -msgid "Clear all fields?" +msgid "FTP Connection has failed" msgstr "" -#: lib/fog/fogpage.class.php:2317 -msgid "Clear Fields" +msgid "FTP Path" msgstr "" -#: lib/fog/fogpage.class.php:2321 -msgid "Join Domain after deploy" +msgid "FTP connection failed" msgstr "" -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" +msgid "Fail to destroy" msgstr "" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" +msgid "Failed" msgstr "" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" +msgid "Failed to" msgstr "" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" msgstr "" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" +msgid "Failed to add snapin" msgstr "" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" +msgid "Failed to add/update snapin file" msgstr "" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" +msgid "Failed to connect" msgstr "" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" +msgid "Failed to create" msgstr "" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" +msgid "Failed to create Host" msgstr "" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" +msgid "Failed to create Session" msgstr "" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" +msgid "Failed to create Snapin Job" msgstr "" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" +msgid "Failed to create inventory for this host" msgstr "" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" +msgid "Failed to create new Group" msgstr "" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" +msgid "Failed to create scheduled tasking" msgstr "" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" +msgid "Failed to create task" msgstr "" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" +msgid "Failed to create tasking" msgstr "" -#: lib/fog/fogpage.class.php:2779 -msgid "Delete hosts within" +msgid "Failed to decrypt data on server" msgstr "" -#: lib/fog/fogpage.class.php:2788 -msgid "Delete files" +msgid "Failed to delete file" msgstr "" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" +msgid "Failed to delete image files" msgstr "" -#: lib/fog/fogpage.class.php:3289 msgid "Failed to destroy" msgstr "" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" +msgid "Failed to destroy Storage Group" msgstr "" -#: lib/fog/fogpage.class.php:3323 -msgid "Delete Fail" +msgid "Failed to destroy Storage Node" msgstr "" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 -msgid " Name" +msgid "Failed to install plugin" msgstr "" -#: lib/fog/fogpage.class.php:3600 -msgid "Remove " +msgid "Failed to save assignment" msgstr "" -#: lib/fog/fogpage.class.php:3607 -msgid "Remove selected " +msgid "Failed to save plugin" msgstr "" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 -msgid "Export CSV" +msgid "Failed to start tasking type" msgstr "" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" +msgid "Failed to update" msgstr "" -#: lib/fog/fogpage.class.php:3788 -msgid "List" +msgid "Failed to update Host" msgstr "" -#: lib/fog/fogpage.class.php:3806 -msgid "Import CSV" +msgid "Failed to update Session" msgstr "" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" +msgid "Failed to update Task" msgstr "" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" +msgid "Failed to update imaging log" msgstr "" -#: lib/fog/fogpage.class.php:3824 -msgid "Import CSV?" +msgid "Failed to update task" msgstr "" -#: lib/fog/fogpage.class.php:3852 -msgid "This page allows you to upload a CSV file into FOG to ease" +msgid "Failed to update task log" msgstr "" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" +msgid "Failed to update/create image log" msgstr "" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" +msgid "Failed to update/create task log" msgstr "" -#: lib/fog/fogpage.class.php:3888 -msgid "File must be a csv" +msgid "Failed to write file to disk" msgstr "" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" +msgid "Fields and types must have equal count" msgstr "" -#: lib/fog/fogpage.class.php:3929 -msgid "Invalid data being parsed" +msgid "Fields not defined for this class" msgstr "" -#: lib/fog/fogpage.class.php:3941 -msgid "One or more macs are associated with a host" +msgid "File" msgstr "" -#: lib/fog/fogpage.class.php:3966 -msgid "This host already exists" +msgid "File Integrity Management" msgstr "" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" +msgid "File System Information" msgstr "" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" +msgid "File does not exist" msgstr "" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" +msgid "File hash mismatch" msgstr "" -#: lib/fog/fogpage.class.php:4154 -msgid "Schedule Power" +msgid "File must be a csv" msgstr "" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" +msgid "File or path cannot be reached" msgstr "" -#: lib/fog/fogpage.class.php:4217 -msgid "Create new PM Schedule" +msgid "File size mismatch" msgstr "" -#: lib/fog/fogpage.class.php:4227 -msgid "New power management task" +msgid "File upload stopped by an extension" msgstr "" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" +msgid "Filesize" msgstr "" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" +msgid "Filter" msgstr "" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" +msgid "Finding any images associated" msgstr "" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" +msgid "Finding any snapins associated" msgstr "" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" +msgid "For example, a GPO policy to push" msgstr "" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" +msgid "Force" msgstr "" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" +msgid "Force task to start" msgstr "" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" +msgid "Form" msgstr "" -#: lib/fog/group.class.php:452 -msgid "No hosts to task" +msgid "Forums are the most common and fastest method of getting" msgstr "" -#: lib/fog/group.class.php:475 -msgid "No hosts available to task" +msgid "Found" msgstr "" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" +msgid "Found a scheduled task that should run." msgstr "" -#: lib/fog/group.class.php:502 -msgid "Unable to find master Storage Node" +msgid "Found a wake on lan task that should run." msgstr "" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" +msgid "Found login information" msgstr "" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" +msgid "Found snapin information" msgstr "" -#: lib/fog/host.class.php:498 -msgid "Cannot add a pre-existing primary mac" +msgid "Free" msgstr "" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." +msgid "Free Disk Space" msgstr "" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" +msgid "Free Memory" msgstr "" -#: lib/fog/host.class.php:1371 -msgid "Could not find any" +msgid "Friendly Name" msgstr "" -#: lib/fog/host.class.php:1372 -msgid "nodes containing this image" +msgid "Full History Export" msgstr "" -#: lib/fog/host.class.php:1538 -msgid "No valid Image defined for this host" +msgid "Full Inventory Export" msgstr "" -#: lib/fog/host.class.php:1689 -msgid "No viable macs to use" +msgid "Function" msgstr "" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" +msgid "Function does not exist" msgstr "" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 -msgid "snapin" +msgid "GNU Gneral Public License" msgstr "" -#: lib/fog/host.class.php:1768 -msgid "per host" +msgid "General" msgstr "" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" +msgid "General Information" msgstr "" -#: lib/fog/system.class.php:38 -msgid "Your system PHP Version is not sufficient" +msgid "Generate" msgstr "" -#: lib/fog/system.class.php:39 -msgid "You have version" +msgid "Generic LDAP" msgstr "" -#: lib/fog/system.class.php:41 -msgid "version" +msgid "Getting image size for" msgstr "" -#: lib/fog/system.class.php:43 -msgid "is required" +msgid "Getting snapin hash and size for" msgstr "" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" +msgid "Goto task list" msgstr "" -#: lib/fog/powermanagementmanager.class.php:112 -msgid "Wake On Lan" +msgid "Graph Enabled" msgstr "" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" +msgid "Graphical" msgstr "" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" +msgid "Green FOG" msgstr "" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" +msgid "Group" msgstr "" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" +msgid "Group Associations" msgstr "" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" +msgid "Group Auto Logout" msgstr "" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" +msgid "Group Bios Exit Type" msgstr "" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." +msgid "Group Create Fail" msgstr "" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" +msgid "Group Create Success" msgstr "" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" +msgid "Group Description" msgstr "" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" +msgid "Group EFI Exit Type" msgstr "" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" +msgid "Group FOG Client Module configuration" msgstr "" -#: lib/fog/schema.class.php:325 -msgid "Fields and types must have equal count" +msgid "Group Kernel" msgstr "" -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" +msgid "Group Kernel Arguments" msgstr "" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" +msgid "Group Management" msgstr "" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." +msgid "Group Member Attribute" msgstr "" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." +msgid "Group Name" msgstr "" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." +msgid "Group Power Management Remove" msgstr "" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." +msgid "Group Primary Disk" msgstr "" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" +msgid "Group Printers" msgstr "" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" +msgid "Group Product Key" msgstr "" -#: lib/fog/foggetset.class.php:73 -msgid "Array" +msgid "Group Quick Deploy" msgstr "" -#: lib/fog/foggetset.class.php:89 -msgid "Set Failed" +msgid "Group Screen Resolution" msgstr "" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" +msgid "Group Search DN" msgstr "" -#: lib/fog/reportmaker.class.php:157 -msgid "Invalid Type" +msgid "Group Search DN did not return any results" msgstr "" -#: lib/fog/reportmaker.class.php:333 -msgid "Export Complete" +msgid "Group Snapins" msgstr "" -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" +msgid "Group Update Fail" msgstr "" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" +msgid "Group Update Success" msgstr "" -#: lib/fog/uploadexception.class.php:50 -msgid "The uploaded file exceeds the upload_max_filesize" +msgid "Group added!" msgstr "" -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" +msgid "Group general" msgstr "" -#: lib/fog/uploadexception.class.php:57 -msgid "The uploaded file exceeds the max_file_size" +msgid "Group image" msgstr "" -#: lib/fog/uploadexception.class.php:58 -msgid "directive specified in the HTML form" +msgid "Group image association" msgstr "" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" +msgid "Group is not valid" msgstr "" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" +msgid "Group module settings" msgstr "" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" +msgid "Group update failed!" msgstr "" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" +msgid "Group updated!" msgstr "" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" +msgid "Groups" msgstr "" -#: lib/fog/uploadexception.class.php:79 -msgid "Unknown upload error occurred" +msgid "Groups are not allowed to schedule upload tasks" msgstr "" -#: lib/fog/uploadexception.class.php:80 -msgid "Return code" +msgid "HD Device" msgstr "" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" +msgid "HD Firmware" msgstr "" -#: lib/fog/user.class.php:312 -msgid "user failed to login" +msgid "HD Model" msgstr "" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" +msgid "HD Serial" msgstr "" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" +msgid "Hard Disk Firmware" msgstr "" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" +msgid "Hard Disk Model" msgstr "" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 -msgid "Node must be a string" +msgid "Hard Disk Serial Number" msgstr "" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" +msgid "Hardware Information" msgstr "" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." +msgid "Hash" msgstr "" -#: lib/fog/fogsubmenu.class.php:313 -msgid "Info" +msgid "Have not locked the host for access" msgstr "" -#: lib/fog/fogsubmenu.class.php:563 -msgid "Title must be a string" +msgid "Height must be 120 pixels." msgstr "" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 -msgid "Link must be a string" +msgid "Help and Guide" msgstr "" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" +msgid "Hide Menu" msgstr "" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" +msgid "Hide Menu Timeout" msgstr "" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" +msgid "History Graph" msgstr "" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" +msgid "History ID" msgstr "" -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" +msgid "History IP" msgstr "" -#: lib/pages/clientmanagementpage.class.php:87 -msgid "The installers for the fog client" +msgid "History Info" msgstr "" -#: lib/pages/clientmanagementpage.class.php:89 -msgid "Client Version" +msgid "History Time" msgstr "" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" +msgid "History User" msgstr "" -#: lib/pages/clientmanagementpage.class.php:98 -msgid "more secure" +msgid "Home" msgstr "" -#: lib/pages/clientmanagementpage.class.php:99 -msgid "faster" +msgid "Home Address" msgstr "" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" +msgid "Home Phone" msgstr "" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" +msgid "Host" msgstr "" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" +msgid "Host AD Domain" msgstr "" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" +msgid "Host AD Join" msgstr "" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" +msgid "Host AD OU" msgstr "" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" +msgid "Host Add to Group Fail" msgstr "" -#: lib/pages/clientmanagementpage.class.php:119 -msgid "Network Installer" +msgid "Host Add to Group Success" msgstr "" -#: lib/pages/clientmanagementpage.class.php:126 -msgid "This is the recommended installer to use now" +msgid "Host Associated" msgstr "" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" +msgid "Host Associated Snapins" msgstr "" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" +msgid "Host Auto Logout" msgstr "" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" +msgid "Host Bios Exit Type" msgstr "" -#: lib/pages/clientmanagementpage.class.php:130 -msgid "Smart Installer" +msgid "Host Create Fail" msgstr "" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" +msgid "Host Create Success" msgstr "" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" +msgid "Host Created" msgstr "" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" +msgid "Host Desc" msgstr "" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" +msgid "Host Description" msgstr "" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 -msgid "NOTE" +msgid "Host EFI Exit Type" msgstr "" -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" +msgid "Host FOG Client Module configuration" msgstr "" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" +msgid "Host HD Device" msgstr "" -#: lib/pages/clientmanagementpage.class.php:161 -msgid "Detailed documentation" +msgid "Host Hardware Inventory" msgstr "" -#: lib/pages/clientmanagementpage.class.php:162 -msgid "It is primarily geared for the smart installer methodology now" +msgid "Host ID" msgstr "" -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" +msgid "Host Image" msgstr "" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" +msgid "Host Imaging History" msgstr "" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" +msgid "Host Init" msgstr "" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" +msgid "Host Invalid" msgstr "" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" +msgid "Host Kernel" msgstr "" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" +msgid "Host Kernel Arguments" msgstr "" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" +msgid "Host List" msgstr "" -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" +msgid "Host Listing Export" msgstr "" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" +msgid "Host Location" msgstr "" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." +msgid "Host Login History" msgstr "" -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" +msgid "Host MAC" msgstr "" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" +msgid "Host Management" msgstr "" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" +msgid "Host Membership" msgstr "" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" +msgid "Host Memory" msgstr "" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" +msgid "Host Name" msgstr "" -#: lib/pages/dashboardpage.class.php:254 -msgid "Server information at a glance." +msgid "Host Pending MAC" msgstr "" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" +msgid "Host Primary Disk" msgstr "" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" +msgid "Host Primary MAC" msgstr "" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" +msgid "Host Printers" msgstr "" -#: lib/pages/dashboardpage.class.php:303 -msgid "Selected node's disk usage" +msgid "Host Product Key" msgstr "" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" +msgid "Host Product Keys" msgstr "" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" +msgid "Host Registration" msgstr "" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" +msgid "Host Screen Resolution" msgstr "" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" +msgid "Host Site" msgstr "" -#: lib/pages/dashboardpage.class.php:407 -msgid "1 Hour" +msgid "Host Snapin History" msgstr "" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" +msgid "Host Snapins" msgstr "" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" +msgid "Host Status" msgstr "" -#: lib/pages/dashboardpage.class.php:447 -msgid "No Data Available" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" msgstr "" -#: lib/pages/dashboardpage.class.php:477 -msgid "used" +msgid "Host Unassociated Snapins" msgstr "" -#: lib/pages/dashboardpage.class.php:481 -msgid "Node is unavailable" +msgid "Host Update Fail" msgstr "" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" +msgid "Host Update Failed" msgstr "" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" +msgid "Host Update Success" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" +msgid "Host Virus History" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" +msgid "Host added!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" +msgid "Host approval failed." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" +msgid "Host approved" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" +msgid "Host description" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" +msgid "Host general" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:145 -msgid "FOG Version" +msgid "Host is already a member of an active task" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" +msgid "Host is not valid" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" +msgid "Host module settings" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" +msgid "Host name" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" +msgid "Host pairings" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" +msgid "Host printer configuration" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:220 -msgid "In FOG" +msgid "Host token is currently in use" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" +msgid "Host updated!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" +msgid "Host/Group Name" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" +msgid "Hostname" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" +msgid "Hostname / IP" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" +msgid "Hostname Changer" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:226 -msgid "to get the requested Kernel" +msgid "Hosts" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" +msgid "Hosts Associated" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:279 -msgid "Downloading Kernel" +msgid "Hosts do not have the same image assigned" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:285 -msgid "Starting process" +msgid "Hosts in task" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:307 -msgid "Save Kernel" +msgid "Hot Key Enabled" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" +msgid "Hot Key to use" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:332 -msgid "Install Kernel" +msgid "Hour value is not valid" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 -msgid "Install" +msgid "Hourly" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" +msgid "I am not the fog web server" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" +msgid "I am the group manager" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:465 -msgid "Option specifies the color settings of the main menu items" +msgid "I have read" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:469 -msgid "Valid Host Colors" +msgid "I.M.C." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 -msgid "Option specifies the color text on the menu if the host" +msgid "I.M.I." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:479 -msgid "is valid" +msgid "ID" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:483 -msgid "Invalid Host Colors" +msgid "ID Must be set to edit" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:494 -msgid "is invalid" +msgid "IP" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:498 -msgid "Main pairings" +msgid "IP Address" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" +msgid "IP Address Changed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" +msgid "IP Passed is incorrect" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" +msgid "Icon" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" +msgid "Icon File not found" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:526 -msgid "Host pairings" +msgid "If a new module is published the client will" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" +msgid "If action of ask or get" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:538 -msgid "Menu Timeout" +msgid "If credentials are correct" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" +msgid "If none is specified" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:549 -msgid "Option specifies the menu timeout" +msgid "If off" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" +msgid "If on" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" +msgid "If there is not a task set" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" +msgid "If this is an upgrade" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" +msgid "If you add a blank node" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:567 -msgid "Option specifies the background file to use" +msgid "If you are looking to configure settings for a specific host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" +msgid "If you need help understanding what items are needed please" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 -msgid "Make Changes?" +msgid "If you would like to backup your" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:598 -msgid "iPXE Menu Settings" +msgid "Ignore MAC on Client" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" +msgid "Ignore MAC on Image" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" +msgid "Image" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" +msgid "Image Associated: " msgstr "" -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" +msgid "Image Association" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" +msgid "Image Associations" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:631 -msgid "If there is not a task set" +msgid "Image Create Fail" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" +msgid "Image Create Success" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:635 -msgid "if there is a task" +msgid "Image Definition" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" +msgid "Image Desc" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" +msgid "Image Description" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" +msgid "Image Enabled" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:649 -msgid "If none is specified" +msgid "Image General" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:651 -msgid "ESC is defaulted" +msgid "Image History" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" +msgid "Image ID" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" +msgid "Image Management" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" +msgid "Image Manager" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" +msgid "Image Membership" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" +msgid "Image Name" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" +msgid "Image Path" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:678 -msgid "access to the hidden menu system" +msgid "Image Replicator" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" +msgid "Image Size" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" +msgid "Image Size: ON CLIENT" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:721 -msgid "Option specifies the legacy boot exit method ipxe will use" +msgid "Image Size: ON SERVER" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" +msgid "Image Storage Groups" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:729 -msgid "Option specifies the efi boot exit method ipxe will use" +msgid "Image Task Completed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:758 -msgid "Boot Exit settings" +msgid "Image Transfer Log" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" +msgid "Image Type" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" +msgid "Image Update Fail" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" +msgid "Image Update Success" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" +msgid "Image Used" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" +msgid "Image added!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:782 -msgid "If on" +msgid "Image is not enabled" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" +msgid "Image is not valid" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:786 -msgid "menu system" +msgid "Image is protected and cannot be deleted" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:790 -msgid "Advanced menu command" +msgid "Image to DMI Mappings" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" +msgid "Image update failed!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:800 -msgid "the advanced menu to use" +msgid "Image updated!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" +msgid "Imaged" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:831 -msgid "Advanced Menu settings" +msgid "Imaged By" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" +msgid "Imaged For" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:974 -msgid "iPXE Settings updated successfully!" +msgid "Imaged From" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:975 -msgid "iPXE Update Success" +msgid "Images" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:982 -msgid "iPXE Update Fail" +msgid "Imaging Completed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" +msgid "Imaging Duration" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" +msgid "Imaging Log" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" +msgid "Imaging Over the last 30 days" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" +msgid "Imaging Started" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" +msgid "Import" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" +msgid "Import Accesscontrols" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1026 -msgid "from" +msgid "Import CSV" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 -msgid "Menu Item" +msgid "Import CSV?" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 -msgid "Parameters" +msgid "Import Configuration" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 -msgid "Boot Options" +msgid "Import Database" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 -msgid "Default Item" +msgid "Import Database?" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 -msgid "Hot Key Enabled" +msgid "Import FOG Reports" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 -msgid "Hot Key to use" +msgid "Import Failed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 -msgid "Menu Show with" +msgid "Import Groups" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1161 -msgid "Delete Menu Item" +msgid "Import Hosts" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1310 -msgid "iPXE Item Update Success" +msgid "Import Images" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1328 -msgid "successfully removed!" +msgid "Import LDAPs" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1329 -msgid "iPXE Item Remove Success" +msgid "Import Locations" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" +msgid "Import Printers" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1488 -msgid "New iPXE Menu" +msgid "Import Report?" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" +msgid "Import Reports" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" +msgid "Import Sites" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1559 -msgid "iPXE Item create failed!" +msgid "Import Snapins" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1575 -msgid "iPXE Item added!" +msgid "Import Subnetgroups" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1576 -msgid "iPXE Item Create Success" +msgid "Import Successful" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1584 -msgid "iPXE Item Create Fail" +msgid "Import Task States" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" +msgid "Import Task Types" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" +msgid "Import Users" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" +msgid "Import WOLBroadcasts" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" +msgid "Import Windows Keys" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1666 -msgid "Current files" +msgid "In" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 -msgid "NOTICE" +msgid "In FOG" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1672 -msgid "The below items are only used for the old client." +msgid "Included Items" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" +msgid "Info" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" +msgid "Information" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1678 -msgid "This section allows you to update the modules and" +msgid "Init" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." +msgid "Initial Template" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" +msgid "Initrd Name" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." +msgid "Initrd Update" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1686 -msgid "If a new module is published the client will" +msgid "Install" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" +msgid "Install / Update Failed!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." +msgid "Install / Update Successful!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1710 -msgid "Upload file" +msgid "Install Initrd" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 -msgid "Delete Selected Items" +msgid "Install Kernel" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 -msgid "Make Changes" +msgid "Install Plugin" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1795 -msgid "Item removed successfully!" +msgid "Install Plugins" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 -msgid "Client Modules Change Success" +msgid "Install/Update" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1803 -msgid "No file uploaded!" +msgid "Install/Update Now" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1849 -msgid "Modules added/updated successfully!" +msgid "Installed Plugins" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" +msgid "Integrity Settings" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" +msgid "Interface" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1881 -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" +msgid "Interface not ready, waiting for it to come up" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" +msgid "Invalid" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" +msgid "Invalid Class" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" +msgid "Invalid File" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" +msgid "Invalid Folder" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2073 -msgid "This section allows you to customize or alter" +msgid "Invalid Host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" +msgid "Invalid Host Colors" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" +msgid "Invalid ID passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" +msgid "Invalid IP" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" +msgid "Invalid Login" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 -msgid "Partclone Gzip" +msgid "Invalid MAC Address!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" +msgid "Invalid Multicast Session" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" +msgid "Invalid Plugin Passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 -msgid "Partclone Uncompressed Split 200MiB" +msgid "Invalid Server Information!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 -msgid "Partclone Zstd" +msgid "Invalid Snapin" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 -msgid "Partclone Zstd Split 200MiB" +msgid "Invalid Snapin Tasking" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" +msgid "Invalid Snapin Tasking object" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 -msgid "Reset Token" +msgid "Invalid Storage Group" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" +msgid "Invalid Storage Node" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." +msgid "Invalid Task Type" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." +msgid "Invalid Tasking" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 -msgid "Settings successfully stored!" +msgid "Invalid Timeout Value" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 -msgid "Settings Update Success" +msgid "Invalid Type" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2874 -msgid "Service Setting Update Success" +msgid "Invalid data being parsed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2878 -msgid "Rebranding element has been successfully updated!" +msgid "Invalid data found" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 -msgid "Settings Update Fail" +msgid "Invalid date" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:2896 -msgid "Service Setting Update Failed" +msgid "Invalid image" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" +msgid "Invalid image assigned to host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" +msgid "Invalid key being added" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" +msgid "Invalid key being destroyed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3052 -msgid "Image Size" +msgid "Invalid key being removed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" +msgid "Invalid key being requested" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3070 -msgid "Snapin Hash" +msgid "Invalid key being set" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" +msgid "Invalid method called" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" +msgid "Invalid numeric entry" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" +msgid "Invalid object to try tasking" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" +msgid "Invalid object type passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3235 -msgid "Lines" +msgid "Invalid operational mode" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" +msgid "Invalid scheduling type" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3251 -msgid "Pause" +msgid "Invalid snapin" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3270 -msgid "Configuration Import/Export" +msgid "Invalid task" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3290 -msgid "Export Database?" +msgid "Invalid task id" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3309 -msgid "Export Database" +msgid "Invalid task id sent" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 -msgid "Import Database?" +msgid "Invalid tasking type passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3351 -msgid "Import Database" +msgid "Invalid tasking!" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3399 -msgid "Import Successful" +msgid "Invalid token passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3403 -msgid "Database imported and added successfully!" +msgid "Invalid token passed for host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3414 -msgid "Import Failed" +msgid "Invalid type, merge to add, diff to remove" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3418 -msgid "There were errors during import!" +msgid "Invalid user and/or channel passed" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3427 -msgid "Database Reverted" +msgid "Inventory" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3430 -msgid "Database changes reverted!" +msgid "Inventory ID" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3437 -msgid "Database Failure" +msgid "Is Advanced" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:3441 -msgid "Errors on revert detected!" +msgid "Is Enabled" msgstr "" -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" +msgid "Is Graph Enabled" msgstr "" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" +msgid "Is Group" msgstr "" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" +msgid "Is Master Node" msgstr "" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" +msgid "Is Pack" msgstr "" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" +msgid "Is Restricted User " msgstr "" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" +msgid "Is a" msgstr "" -#: lib/pages/groupmanagementpage.class.php:298 -msgid "A group name is required!" +msgid "Is restricted" msgstr "" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 -msgid "A group already exists with this name!" +msgid "It can be used on Windows" msgstr "" -#: lib/pages/groupmanagementpage.class.php:313 -msgid "Add group failed!" +msgid "It is primarily geared for the smart installer methodology now" msgstr "" -#: lib/pages/groupmanagementpage.class.php:318 -msgid "Group added!" +msgid "It operates by getting the max bandwidth setting of the node" msgstr "" -#: lib/pages/groupmanagementpage.class.php:319 -msgid "Group Create Success" +msgid "It tells the client to download snapins from" msgstr "" -#: lib/pages/groupmanagementpage.class.php:327 -msgid "Group Create Fail" +msgid "It will operate based on the fields the area typically requires" msgstr "" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" +msgid "Item removed successfully!" msgstr "" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" +msgid "Items must be an array" msgstr "" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" +msgid "Job Create Date" msgstr "" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" +msgid "Job Create Time" msgstr "" -#: lib/pages/groupmanagementpage.class.php:562 -msgid "Group general" +msgid "Join Domain after deploy" msgstr "" -#: lib/pages/groupmanagementpage.class.php:611 -msgid "Group image" +msgid "Kernel" msgstr "" -#: lib/pages/groupmanagementpage.class.php:644 -msgid "Group image association" +msgid "Kernel Args" msgstr "" -#: lib/pages/groupmanagementpage.class.php:698 -msgid "Group Power Management Remove" +msgid "Kernel Arguments" msgstr "" -#: lib/pages/groupmanagementpage.class.php:703 -msgid "Delete all PM tasks?" +msgid "Kernel Name" msgstr "" -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" +msgid "Kernel Update" msgstr "" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" +msgid "Kernel Versions" msgstr "" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" +msgid "Kernels/Inits from location" msgstr "" -#: lib/pages/groupmanagementpage.class.php:817 -msgid "Group Printers" +msgid "Key" msgstr "" -#: lib/pages/groupmanagementpage.class.php:827 -msgid "Printer Configuration" +msgid "Key Name" msgstr "" -#: lib/pages/groupmanagementpage.class.php:832 -msgid "Select management level for these hosts" +msgid "Key field must be a string" msgstr "" -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" +msgid "Key must be a string" msgstr "" -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" +msgid "Key must be a string or index" msgstr "" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" +msgid "Key must be an array of keys or a string." msgstr "" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" +msgid "Kill" msgstr "" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" +msgid "LDAP Connection Name" msgstr "" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." +msgid "LDAP Connection Name" msgstr "" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" +msgid "LDAP Create Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." +msgid "LDAP Create Success" msgstr "" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" +msgid "LDAP General" msgstr "" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 -msgid "Update printer configuration" +msgid "LDAP Management" msgstr "" -#: lib/pages/groupmanagementpage.class.php:918 -msgid "Printer Associations" +msgid "LDAP Ports" msgstr "" -#: lib/pages/groupmanagementpage.class.php:928 -msgid "Make Printer Changes" +msgid "LDAP Server" msgstr "" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 -msgid "Add Printers" +msgid "LDAP Server Address" msgstr "" -#: lib/pages/groupmanagementpage.class.php:945 -msgid "Update Default Printer" +msgid "LDAP Server Description" msgstr "" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 -msgid "Remove selected printers" +msgid "LDAP Server Port" msgstr "" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" +msgid "LDAP Server added!" msgstr "" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 -msgid "Snapin Created" +msgid "LDAP Server updated!" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1044 -msgid "Group Snapins" +msgid "LDAP Servers" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1054 -msgid "Available Snapins" +msgid "LDAP Update Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1064 -msgid "Make Snapin Changes" +msgid "LDAP Update Success" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 -msgid "Add selected snapins" +msgid "Language" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" +msgid "Last Captured" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 -msgid "This module is only used on the old client" +msgid "Last Deployed" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgid "Last Updated Time" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" +msgid "Last captured" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" +msgid "Latest Development Version" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" +msgid "Latest Version" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" +msgid "Level must be an integer" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" +msgid "License" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" +msgid "Line" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" +msgid "Lines" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" +msgid "Link New Account" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" +msgid "Link Pushbullet Account" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" +msgid "Link Pushbullet Account Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" +msgid "Link Pushbullet Account Success" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" +msgid "Link Slack Account" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" +msgid "Link Slack Account Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" +msgid "Link Slack Account Success" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1300 -msgid "Group FOG Client Module configuration" +msgid "Link must be a string" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1310 -msgid "Group module settings" +msgid "Linux" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -msgid "Update module configurations" +msgid "List" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" +#, php-format +msgid "List All %s" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" +#, php-format +msgid "List all roles" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" +#, php-format +msgid "List all rules" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" +msgid "Listener must be an array or an object" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 -msgid "Update display resolution" +msgid "Load Average" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" +msgid "Load MAC Vendors" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" +msgid "Load failed" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 -msgid "Update auto-logout time" +msgid "Loading data to field" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" +msgid "Location" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" +msgid "Location Association" msgstr "" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 -msgid "You must select an action to perform" +msgid "Location Create Fail" msgstr "" -#: lib/pages/groupmanagementpage.class.php:2099 -msgid "Group update failed!" +msgid "Location Create Success" msgstr "" -#: lib/pages/groupmanagementpage.class.php:2104 -msgid "Group updated!" +msgid "Location General" msgstr "" -#: lib/pages/groupmanagementpage.class.php:2105 -msgid "Group Update Success" +msgid "Location Management" msgstr "" -#: lib/pages/groupmanagementpage.class.php:2113 -msgid "Group Update Fail" +msgid "Location Name" msgstr "" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" +msgid "Location Update Fail" msgstr "" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" +msgid "Location Update Success" msgstr "" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" +msgid "Location added!" msgstr "" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" +msgid "Location already Exists, please try again." msgstr "" -#: lib/pages/hostmanagementpage.class.php:333 -msgid "Approve selected hosts" +msgid "Location is a plugin that allows your FOG Server" msgstr "" -#: lib/pages/hostmanagementpage.class.php:338 -msgid "Delete selected hosts" +msgid "Location update failed!" msgstr "" -#: lib/pages/hostmanagementpage.class.php:367 -msgid "Approve Success" +msgid "Location updated!" msgstr "" -#: lib/pages/hostmanagementpage.class.php:368 -msgid "Selected hosts approved successfully" +msgid "Location/Deployed" msgstr "" -#: lib/pages/hostmanagementpage.class.php:376 -msgid "Deleted Success" +msgid "Locations" msgstr "" -#: lib/pages/hostmanagementpage.class.php:377 -msgid "Selected hosts deleted successfully" +msgid "Log Viewer" msgstr "" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" +msgid "Login" msgstr "" -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" +msgid "Login History" msgstr "" -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" +msgid "Login Users" msgstr "" -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" +msgid "Login accepted" msgstr "" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" +msgid "Login failed" msgstr "" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" +msgid "Login time" msgstr "" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" +msgid "Login with the FOG credentials and you will see the menu" msgstr "" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" +msgid "Logout" msgstr "" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 -msgid "Host Init" +msgid "Logout not found" msgstr "" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" +msgid "MAC" msgstr "" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" +msgid "MAC Address" msgstr "" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" +msgid "MAC Address List" msgstr "" -#: lib/pages/hostmanagementpage.class.php:616 -msgid "A host name is required!" +msgid "MAC Address Manufacturer Listing" msgstr "" -#: lib/pages/hostmanagementpage.class.php:621 -msgid "A mac address is required!" +msgid "MAC Format is invalid" msgstr "" -#: lib/pages/hostmanagementpage.class.php:626 -msgid "A host already exists with this name!" +msgid "MAC address is already in use by another host" msgstr "" -#: lib/pages/hostmanagementpage.class.php:631 -msgid "MAC Format is invalid" +msgid "MB Asset" msgstr "" -#: lib/pages/hostmanagementpage.class.php:638 -msgid "A host with this mac already exists with name" +msgid "MB Manufacturer" msgstr "" -#: lib/pages/hostmanagementpage.class.php:673 -msgid "Add host failed!" +msgid "MB Name" msgstr "" -#: lib/pages/hostmanagementpage.class.php:678 -msgid "Host added!" +msgid "MB Serial" msgstr "" -#: lib/pages/hostmanagementpage.class.php:679 -msgid "Host Create Success" +msgid "MB Version" msgstr "" -#: lib/pages/hostmanagementpage.class.php:687 -msgid "Host Create Fail" +msgid "MSI" msgstr "" -#: lib/pages/hostmanagementpage.class.php:830 -msgid "Current Power Management settings" +msgid "Machine Details" msgstr "" -#: lib/pages/hostmanagementpage.class.php:841 -msgid "Update PM Values" +msgid "Main Colors" msgstr "" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" +msgid "Main Menu" msgstr "" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" +msgid "Main fallback pairings" msgstr "" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." +msgid "Main pairings" msgstr "" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -msgid "Ignore MAC on Image" +msgid "Make Changes" msgstr "" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." +msgid "Make Changes?" msgstr "" -#: lib/pages/hostmanagementpage.class.php:968 -msgid "Approve MAC" +msgid "Make Printer Changes" msgstr "" -#: lib/pages/hostmanagementpage.class.php:981 -msgid "Approve all pending? " +msgid "Make Snapin Changes" msgstr "" -#: lib/pages/hostmanagementpage.class.php:987 -msgid "Approve all pending macs" +msgid "Make changes?" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" +msgid "Management" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" +msgid "Management Login" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1113 -msgid "Host description" +msgid "Management Password" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1263 -msgid "Host general" +msgid "Management Username" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" +msgid "Master Node" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" +msgid "Max" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1345 -msgid "Please use another hostname" +msgid "Max Clients" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1349 -msgid "Please enter a mac address" +msgid "Max Size" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 -msgid "Please enter a valid mac address" +msgid "Members" +msgstr "" + +msgid "Membership" +msgstr "" + +msgid "Memory" +msgstr "" + +msgid "Menu Background File" +msgstr "" + +msgid "Menu Hide/No Menu settings" +msgstr "" + +msgid "Menu Item" +msgstr "" + +msgid "Menu Item or title cannot be blank" +msgstr "" + +msgid "Menu Show with" +msgstr "" + +msgid "Menu Timeout" +msgstr "" + +msgid "Menu colors, pairings, settings" +msgstr "" + +msgid "Message" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" +msgid "Method does not exist" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1485 -msgid "Host Printers" +msgid "Microsoft AD" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1495 -msgid "Host printer configuration" +msgid "Midnight" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1500 -msgid "Select management level for this host" +msgid "Mind you" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" +msgid "Minute value is not valid" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1617 -msgid "Add selected printers" +msgid "Miscellaneous" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" +msgid "Missing a temporary folder" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1702 -msgid "Update/Remove printers" +msgid "Missing one or more extensions." msgstr "" -#: lib/pages/hostmanagementpage.class.php:1709 -msgid "Update default printer" +msgid "Mobile Group" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1804 -msgid "Host Snapins" +msgid "Mode" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" +msgid "Model" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1835 -msgid "Add Snapins" +msgid "Module MD5" msgstr "" -#: lib/pages/hostmanagementpage.class.php:1911 -msgid "Remove snapins" +msgid "Module Name" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2127 -msgid "Host FOG Client Module configuration" +msgid "Module Type" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2137 -msgid "Host module settings" +msgid "Module Update Fail" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" +msgid "Module Update Success" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" +msgid "Module updated!" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" +msgid "Modules added/updated successfully!" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" +msgid "Month value is not valid" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" +msgid "Monthly" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2454 -msgid "System UUID" +msgid "Motherboard Asset Tag" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2459 msgid "Motherboard Manufacturer" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2460 msgid "Motherboard Product Name" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "" - -#: lib/pages/hostmanagementpage.class.php:2462 msgid "Motherboard Serial Number" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "" - -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" +msgid "Motherboard Version" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" +msgid "Multicast" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" +msgid "Multicast Image" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" +msgid "Multicast Quick Deploy" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" +msgid "Multicast session created" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" +msgid "Multicast tasks from groups" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" +msgid "MulticastTask" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2619 -msgid "Host Virus History" +msgid "Must be 0 through 23 for hours in a day." msgstr "" -#: lib/pages/hostmanagementpage.class.php:2632 -msgid "Clear all history" +msgid "Must be 0 through 59 for minutes in an hour." msgstr "" -#: lib/pages/hostmanagementpage.class.php:2642 -msgid "Virus Report" +msgid "Must be encrypted" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2746 -msgid "Logout not found" +msgid "Must have a name to create the table" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" +msgid "Must have an image associated" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" +msgid "Must use an" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2805 -msgid "View History For" +msgid "MySQL Administrator or by running" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2815 -msgid "Selected Logins" +msgid "N/A" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2825 -msgid "History Graph" +msgid "NAME" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" +msgid "NOT" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2859 -msgid "Imaged From" +msgid "NOTE" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" +msgid "NOTICE" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" +msgid "Name" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" +msgid "Name Change/AD Join Forced reboot" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" +msgid "Need more support" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" +msgid "Need the table name to drop" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" +msgid "Needs a 256-bit key" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" +msgid "Needs action string of ask, get, or list" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3076 -msgid "Snapin task not completed" +msgid "Network Information" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" +msgid "Network Installer" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3106 -msgid "Host Snapin History" +msgid "Network Printer" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" +msgid "New" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." +msgid "New Broadcast Address" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3158 -msgid "Approve Host" +msgid "New Client and Utilities" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" +msgid "New Event" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3186 -msgid "Approved" +msgid "New Group" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3213 -msgid "All Pending MACs approved" +msgid "New Host" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3665 -msgid "Virus items removed!" +msgid "New Image" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" +msgid "New LDAP Server" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3693 -msgid "Host updated!" +msgid "New Location" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3694 -msgid "Host Update Success" +msgid "New Role" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3702 -msgid "Host Update Fail" +msgid "New Rule" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" +msgid "New Search" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3747 -msgid "Successfully added selected hosts to the group!" +msgid "New Site" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3748 -msgid "Host Add to Group Success" +msgid "New Snapin" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3755 -msgid "Host Add to Group Fail" +msgid "New Storage Group" msgstr "" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" +msgid "New Storage Node" msgstr "" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" +msgid "New Subnetgroup" msgstr "" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" +msgid "New Task State" msgstr "" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" +msgid "New Task Type" msgstr "" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" +msgid "New User" msgstr "" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" +msgid "New Windows Key" msgstr "" -#: lib/pages/imagemanagementpage.class.php:151 -msgid "Captured" +msgid "New iPXE Menu" msgstr "" -#: lib/pages/imagemanagementpage.class.php:170 -msgid "Last captured" +msgid "New key must be a string" msgstr "" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" +msgid "New power management task" msgstr "" -#: lib/pages/imagemanagementpage.class.php:298 -msgid "Invalid date" +msgid "No" msgstr "" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -msgid "Not protected" +msgid "No Active Snapin Jobs Found For Host" msgstr "" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" +msgid "No Active Task found for Host" msgstr "" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 -msgid "Disabled" +msgid "No Data" msgstr "" -#: lib/pages/imagemanagementpage.class.php:362 -msgid "Partclone Compressed" +msgid "No Data Available" msgstr "" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" +msgid "No FOGPage Class found for this node" msgstr "" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" +msgid "No Host found for MAC Address" msgstr "" -#: lib/pages/imagemanagementpage.class.php:377 -msgid "ZSTD Compressed" +msgid "No Image specified" msgstr "" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" +msgid "No Menu" msgstr "" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" +msgid "No Printer Management" msgstr "" -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" +msgid "No Site" msgstr "" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" +msgid "No access is allowed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" +msgid "No activity information available for this group" msgstr "" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" +msgid "No class value sent" msgstr "" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" +msgid "No complete time recorded" msgstr "" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" +msgid "No connection available" msgstr "" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" +msgid "No connection to the database" msgstr "" -#: lib/pages/imagemanagementpage.class.php:639 -msgid "Create Image" +msgid "No data returned" msgstr "" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" +msgid "No data to insert" msgstr "" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -msgid "Please choose a different name" +msgid "No database to work off" msgstr "" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -msgid "this one is reserved for FOG" +msgid "No directories defined to be cleaned up" msgstr "" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -msgid "Please choose a different path" +msgid "No fields passed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" +msgid "No file uploaded!" msgstr "" -#: lib/pages/imagemanagementpage.class.php:744 -msgid "Add image failed!" +msgid "No file was uploaded" msgstr "" -#: lib/pages/imagemanagementpage.class.php:754 -msgid "Image added!" +msgid "No friendly name defined" msgstr "" -#: lib/pages/imagemanagementpage.class.php:755 -msgid "Image Create Success" +msgid "No groups defined, search will return all hosts." msgstr "" -#: lib/pages/imagemanagementpage.class.php:763 -msgid "Image Create Fail" +msgid "No groups selected to be removed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1041 -msgid "Image General" +msgid "No hosts available to task" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1132 -msgid "Image Storage Groups" +msgid "No hosts to task" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -msgid "Check here to see what storage groups can be added" +msgid "No icons found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 -msgid "Add Storage Groups" +msgid "No image specified" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -msgid "Add selected storage groups" +msgid "No images associated with this group as master" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -msgid "Update/Remove Storage Groups" +msgid "No items found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 -msgid "Update primary group" +msgid "No key being requested" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 -msgid "Remove selected groups" +msgid "No link established to the database" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 -msgid "No groups selected to be removed" +msgid "No master nodes are enabled to delete this image" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 -msgid "You must have at least one group associated" +msgid "No need to sync" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1433 -msgid "Image update failed!" +msgid "No new tasks found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1439 -msgid "Image updated!" +msgid "No node associated" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1440 -msgid "Image Update Success" +msgid "No node associated with any addresses of this system" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1448 -msgid "Image Update Fail" +msgid "No open slots" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" +msgid "No query passed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" +msgid "No query result, use query() first" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" +msgid "No query sent" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" +msgid "No results found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" +msgid "No role selected" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1524 -msgid "Start Session" +msgid "No rule selected" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1548 -msgid "Multicast Image" +msgid "No site" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" +msgid "No snapins associated with this group as master" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" +msgid "No token passed to authenticate this host" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" +msgid "No valid Image defined for this host" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" +msgid "No valid class sent" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" +msgid "No valid hosts found and" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1647 -msgid "Current Sessions" +msgid "No valid storage nodes found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" +msgid "No valid tasks found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" +msgid "No values passed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" +msgid "No viable macs to use" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" +msgid "No viable storage groups found" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1710 -msgid "Please wait until a slot is open" +msgid "Node" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1711 -msgid "There are currently" +msgid "Node Offline" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" +msgid "Node Parent" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1714 -msgid "Your server only allows" +msgid "Node is unavailable" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" +msgid "Node must be a string" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" +msgid "Nodes" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" +msgid "Normal Snapin" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" +msgid "Not Available" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" +msgid "Not Registered Hosts" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." +msgid "Not Valid" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" +msgid "Not a number" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" +msgid "Not able to add" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "This plugin is not installed" +msgid "Not all elements in filter or ports setting are integer" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:328 -msgid "would you like to install it now" +msgid "Not allowed here" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:333 -msgid "Install Plugin" +msgid "Not found" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" +msgid "Not protected" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" +msgid "Not set" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:393 -msgid "Basic Settings" +msgid "Not syncing" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" +msgid "Not syncing Image" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:431 -msgid "After image Action" +msgid "Not syncing Snapin" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:449 -msgid "Image Associations" +msgid "Notes" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" +msgid "Nothing passed to search for" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" +msgid "O/S" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:476 -msgid "Image to DMI Mappings" +msgid "OS Name" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" +msgid "Object" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" +msgid "Old clients are the clients that came with FOG" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:531 -msgid "Current Associations" +msgid "Old key must be a string" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:555 -msgid "Remove Selected?" +msgid "On Dashboard" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:565 -msgid "Remove Associations" +msgid "On reboot we will try to find a new node" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" +msgid "One or more macs are associated with a host" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" +msgid "Only Assigned Printers" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" +msgid "Only allowed to have" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" +msgid "Open Source Computer Cloning Solution" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:666 -msgid "Must have an image associated" +msgid "Open VNC connection to" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" +msgid "OpenLDAP" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" +msgid "Operating System" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:691 -msgid "Destroyed assignments" +msgid "Operation field not set" msgstr "" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" +msgid "Option below enforces a login system" msgstr "" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" +msgid "Option sets if there will even" msgstr "" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" +msgid "Option sets the ipxe keysequence to enter to gain menu" msgstr "" -#: lib/pages/printermanagementpage.class.php:89 -msgid "Config File" +msgid "Option sets the key sequence" msgstr "" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 -msgid "Copy from existing" +msgid "Option specifies the background file to use" msgstr "" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 -msgid "Printer Name/Alias" +msgid "Option specifies the color settings of the main menu items" msgstr "" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." +msgid "Option specifies the color text on the menu if the host" msgstr "" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" +msgid "Option specifies the efi boot exit method ipxe will use" msgstr "" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" +msgid "Option specifies the legacy boot exit method ipxe will use" msgstr "" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" +msgid "Option specifies the menu timeout" msgstr "" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" +msgid "Option specifies the pairings after host checks" msgstr "" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" +msgid "Option specifies the pairings as a fallback" msgstr "" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -msgid "Printer Config File" +msgid "Option specifies the pairings of colors to" msgstr "" -#: lib/pages/printermanagementpage.class.php:459 -msgid "Create New Printer" +msgid "Option specifies the timeout value for the hidden menu system" msgstr "" -#: lib/pages/printermanagementpage.class.php:473 -msgid "Add New Printer" +msgid "Or there was no number defined for joining session" msgstr "" -#: lib/pages/printermanagementpage.class.php:515 -msgid "A name must be set" +msgid "Organizational Unit" msgstr "" -#: lib/pages/printermanagementpage.class.php:518 -msgid "Printer name already exists" +msgid "Other Tag #1" msgstr "" -#: lib/pages/printermanagementpage.class.php:545 -msgid "Add printer failed!" +msgid "Other Tag #2" msgstr "" -#: lib/pages/printermanagementpage.class.php:551 -msgid "Printer added!" +msgid "Other Tag 1" msgstr "" -#: lib/pages/printermanagementpage.class.php:552 -msgid "Printer Create Success" +msgid "Other Tag 2" msgstr "" -#: lib/pages/printermanagementpage.class.php:560 -msgid "Printer Create Fail" +msgid "Otherwise it will just boot like normal" msgstr "" -#: lib/pages/printermanagementpage.class.php:869 -msgid "Printer General" +msgid "PC Check-out Agreement" msgstr "" -#: lib/pages/printermanagementpage.class.php:936 -msgid "A printer name is required!" +msgid "Parameters" msgstr "" -#: lib/pages/printermanagementpage.class.php:957 -msgid "A printer already exists with this name!" +msgid "Parent" msgstr "" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" +msgid "Parent Node" msgstr "" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" +msgid "Partclone" msgstr "" -#: lib/pages/printermanagementpage.class.php:996 -msgid "Printer Update Success" +msgid "Partclone Compressed" msgstr "" -#: lib/pages/printermanagementpage.class.php:1004 -msgid "Printer Update Fail" +msgid "Partclone Compressed 200MiB split" msgstr "" -#: lib/pages/reportmanagementpage.class.php:158 -msgid "Import Reports" +msgid "Partclone Gzip" msgstr "" -#: lib/pages/reportmanagementpage.class.php:189 -msgid "Import FOG Reports" +msgid "Partclone Gzip Split 200MiB" msgstr "" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 -msgid "Import Report?" +msgid "Partclone Uncompressed" msgstr "" -#: lib/pages/reportmanagementpage.class.php:250 -msgid "This section allows you to uploade user" +msgid "Partclone Uncompressed 200MiB split" msgstr "" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" +msgid "Partclone Uncompressed Split 200MiB" msgstr "" -#: lib/pages/reportmanagementpage.class.php:254 -msgid "the base FOG install" +msgid "Partclone Zstd" msgstr "" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" +msgid "Partclone Zstd Split 200MiB" msgstr "" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" +msgid "Partimage" msgstr "" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" +msgid "Partition" msgstr "" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" +msgid "Password" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" +msgid "Password reset requires a user account to reset" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:63 -msgid "Install/Update" +msgid "Path" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" +msgid "Path is unavailable" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" +msgid "Pause" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" +msgid "Pending Host List" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" +msgid "Pending Hosts" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:75 -msgid "window" +msgid "Pending MAC Actions" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:76 -msgid "Applications" +msgid "Pending MAC Export" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:77 -msgid "System Tools" +msgid "Pending MACs" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:78 -msgid "Terminal" +msgid "Pending Registered Hosts" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" +msgid "Pending Registration created by FOG_CLIENT" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:80 -msgid "directory" +msgid "Pending hosts" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" +msgid "Pending macs" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" +msgid "Pending..." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" +msgid "Percent" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" +msgid "Perform Immediately?" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" +msgid "Perform search" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" +msgid "Personal Information" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" +msgid "Pick a template" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" +msgid "Ping Hosts" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" +msgid "Please Enter an admin or mobile lookup name" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:103 -msgid "Are you sure you wish to" +msgid "Please Select an option" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:104 -msgid "install or update the FOG database" +msgid "Please be very careful changing any of the following settings" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:115 -msgid "Install/Update Now" +msgid "Please check your credentials in" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:125 -msgid "Database not available" +msgid "Please choose a different name" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" +msgid "Please choose a different path" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" +msgid "Please choose an image" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" +msgid "Please confirm you want to delete" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" +msgid "Please enter a Group Member Attribute" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:138 -msgid "Also confirm that the database is indeed running" +msgid "Please enter a LDAP server address" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" +msgid "Please enter a Search Base DN" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:140 -msgid "and if the Database service is running" +msgid "Please enter a User Name Attribute" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" +msgid "Please enter a hostname" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" +msgid "Please enter a mac address" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" +msgid "Please enter a name for this LDAP server." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 -msgid "Function" +msgid "Please enter a name for this location." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:230 -msgid "Database" +msgid "Please enter a valid CIDR subnet." msgstr "" -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" +msgid "Please enter a valid CIDR subnets comma separated list" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" +msgid "Please enter a valid hostname" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" +msgid "Please enter a valid ip" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" +msgid "Please enter a valid mac address" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" +msgid "Please enter an access token" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" +msgid "Please input a session name" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" +msgid "Please physically associate" msgstr "" -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" +msgid "Please select a valid ldap port" msgstr "" -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" +msgid "Please select an LDAP port to use" msgstr "" -#: lib/pages/serverinfo.class.php:75 -msgid "Server information" +msgid "Please select an option" msgstr "" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" +msgid "Please select the snapin you want to install" msgstr "" -#: lib/pages/serverinfo.class.php:94 -msgid "Unable to get server infromation!" +msgid "Please select the storage group this location relates to." msgstr "" -#: lib/pages/serverinfo.class.php:145 -msgid "Unable to find basic information!" +msgid "Please update your FOG Client, this is old and insecure" msgstr "" -#: lib/pages/serverinfo.class.php:158 -msgid "TX" +msgid "Please use another hostname" msgstr "" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" +msgid "Please wait until a slot is open" msgstr "" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" +msgid "Plugin" msgstr "" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" +msgid "Plugin Configuration" msgstr "" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" +msgid "Plugin Description" msgstr "" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" +msgid "Plugin Installation" msgstr "" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" +msgid "Plugin Installed!" msgstr "" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" +msgid "Plugin Management" msgstr "" -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" +msgid "Plugin Name" msgstr "" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" +msgid "Plugins" msgstr "" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" +msgid "Port" msgstr "" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" +msgid "Port is not valid ldap/ldaps port" msgstr "" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" +msgid "Postfix requires an action of login" msgstr "" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" +msgid "Postfix requires an action of login, logout, or start to operate" msgstr "" -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" +msgid "Power Management" msgstr "" -#: lib/pages/serverinfo.class.php:203 -msgid "Free Disk Space" +msgid "Power Management Task run time" msgstr "" -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" +msgid "Primary Group" msgstr "" -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" +msgid "Primary MAC" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:133 -msgid "Service general" +msgid "Primary Storage Group" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" +msgid "Primary User" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." +msgid "Printed" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." +msgid "Printer" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" +msgid "Printer Alias" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." +msgid "Printer Associations" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." +msgid "Printer Config File" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" +msgid "Printer Configuration" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." +msgid "Printer Create Fail" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" +msgid "Printer Create Success" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" +msgid "Printer Description" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." +msgid "Printer General" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" +msgid "Printer INF File" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" +msgid "Printer IP" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" +msgid "Printer IP/Hostname" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 -msgid "Current settings" +msgid "Printer Management" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" +msgid "Printer Model" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 -msgid "This module is only used on the old client." +msgid "Printer Name" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" +msgid "Printer Name/Alias" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." +msgid "Printer Port" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" +msgid "Printer Type" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." +msgid "Printer Update Fail" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:463 -msgid "Directories" +msgid "Printer Update Success" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" +msgid "Printer added!" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" +msgid "Printer name already exists" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" +msgid "Printer update failed!" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" +msgid "Printer updated!" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgid "Printers" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." +msgid "Private key failed" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:678 -msgid "New Event" +msgid "Private key not found" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" +msgid "Private key not readable" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." +msgid "Private key path not found" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" +msgid "Protected" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." +msgid "Pushbullet Accounts" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." +msgid "Pushbullet Management" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." +msgid "Quarantine" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" +msgid "Queued" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:986 -msgid "Module updated!" +msgid "Quick" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:987 -msgid "Module Update Success" +msgid "RX" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:995 -msgid "Module Update Fail" +msgid "Reboot" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:134 -msgid "Filesize" +msgid "Reboot after deploy" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:167 -msgid "Is Pack" +msgid "Reboot after install" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" +msgid "Rebranding element has been successfully updated!" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" +msgid "Receive" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:397 -msgid "New Snapin" +msgid "Recommended" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" +msgid "Record not found" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 -msgid "Snapin Type" +msgid "Register must be managed from hooks or events" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 -msgid "Normal Snapin" +msgid "Registered" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 -msgid "Snapin Pack" +msgid "Registered Hosts" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" +msgid "Releasing Staff Initials" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 -msgid "Snapin Pack Template" +msgid "Remit Hello Interval" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" +msgid "Remote address attempting to login" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 -msgid "Snapin Pack File" +msgid "Remove" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" +msgid "Remove " msgstr "" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 -msgid "Snapin Pack Arguments" +msgid "Remove Accesscontrol Rules" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" +msgid "Remove Associations" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" +msgid "Remove Hosts" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" +msgid "Remove Images" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" +msgid "Remove MAC" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 -msgid "Snapin Arguments Hidden" +msgid "Remove Selected?" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 -msgid "Snapin Timeout (seconds)" +msgid "Remove Users" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" +msgid "Remove failed" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" +msgid "Remove selected " msgstr "" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" +msgid "Remove selected groups" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" +msgid "Remove selected hosts" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:668 -msgid "Create New Snapin" +msgid "Remove selected images" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." +msgid "Remove selected printers" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." +msgid "Remove selected rules" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 -msgid "A snapin name is required!" +msgid "Remove selected snapins" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 -msgid "A snapin already exists with this name!" +msgid "Remove selected users" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 -msgid "A file" +msgid "Remove snapins" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" +msgid "Remove these items?" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -msgid "must be specified" +msgid "Removed" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" +msgid "Removing Key" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -msgid "Failed to add snapin" +msgid "Replay from journal" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" +msgid "Replicate?" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" +msgid "Replicating" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:867 -msgid "Snapin added!" +msgid "Replication Bandwidth" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:868 -msgid "Snapin Create Success" +msgid "Replication already running with PID" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:877 -msgid "Snapin Create Fail" +msgid "Report" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:904 -msgid "Snapin General" +msgid "Report Management" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:1123 -msgid "Snapin Protected" +msgid "Reports" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:1291 -msgid "Snapin Storage Groups" +msgid "Required database field is empty" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:1701 -msgid "Snapin update failed!" +msgid "Requires templates to process" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:1706 -msgid "Snapin updated!" +msgid "Reset Encryption Data" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:1707 -msgid "Snapin Update Success" +msgid "Reset Token" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:1716 -msgid "Snapin Update Fail" +msgid "Result" msgstr "" -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" +msgid "Results" msgstr "" -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" +msgid "Return Code" msgstr "" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" +msgid "Return Desc" msgstr "" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" +msgid "Return code" msgstr "" -#: lib/pages/storagemanagementpage.class.php:462 -msgid "Create Storage Node" +msgid "Returning array within key" msgstr "" -#: lib/pages/storagemanagementpage.class.php:483 -msgid "New Storage Node" +msgid "Returning value of key" msgstr "" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" +msgid "Reverse the file: (newest on top)" msgstr "" -#: lib/pages/storagemanagementpage.class.php:578 -msgid "Add storage node failed!" +msgid "Rexmit Hello Interval" msgstr "" -#: lib/pages/storagemanagementpage.class.php:603 -msgid "Storage Node added!" +msgid "Role" msgstr "" -#: lib/pages/storagemanagementpage.class.php:604 -msgid "Storage Node Create Success" +msgid "Role Create Fail" msgstr "" -#: lib/pages/storagemanagementpage.class.php:612 -msgid "Storage Node Create Fail" +msgid "Role Create Success" msgstr "" -#: lib/pages/storagemanagementpage.class.php:686 -msgid "Storage Node General" +msgid "Role Description" msgstr "" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" +msgid "Role Name" msgstr "" -#: lib/pages/storagemanagementpage.class.php:968 -msgid "Storage Node update failed!" +msgid "Role Update Fail" msgstr "" -#: lib/pages/storagemanagementpage.class.php:993 -msgid "Storage Node updated!" +msgid "Role Update Success" msgstr "" -#: lib/pages/storagemanagementpage.class.php:994 -msgid "Storage Node Update Success" +msgid "Role added!" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1002 -msgid "Storage Node Update Fail" +msgid "Role update failed!" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" +msgid "Role updated!" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1250 -msgid "Create Storage Group" +msgid "Routes should be an array or an instance of Traversable" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1271 -msgid "New Storage Group" +msgid "Row" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1311 -msgid "Storage Group Create Success" +msgid "Row number not set properly" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1319 -msgid "Storage Group Create Fail" +msgid "Rule Associate Fail" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1346 -msgid "Storage Group General" +msgid "Rule Associate Success" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1444 -msgid "Storage Group update failed!" +msgid "Rule Association" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1449 -msgid "Storage Group updated!" +msgid "Rule Create Fail" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1450 -msgid "Storage Group Update Success" +msgid "Rule Create Success" msgstr "" -#: lib/pages/storagemanagementpage.class.php:1457 -msgid "Storage Group Update Fail" +msgid "Rule Delete Fail" msgstr "" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" +msgid "Rule Delete Success" msgstr "" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" +msgid "Rule Membership" msgstr "" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" +msgid "Rule Name" msgstr "" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" +msgid "Rule Type" msgstr "" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" +msgid "Rule Update Fail" msgstr "" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" +msgid "Rule Update Success" msgstr "" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" +msgid "Rule Value" msgstr "" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" +msgid "Rule added!" msgstr "" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" +msgid "Rule associate success!" msgstr "" -#: lib/pages/taskmanagementpage.class.php:550 -msgid "Quick" +msgid "Rule deleted successfully!" msgstr "" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" +msgid "Rule type" msgstr "" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" +msgid "Rule updated!" msgstr "" -#: lib/pages/taskmanagementpage.class.php:564 -msgid "Group Quick Deploy" +msgid "Rule value" msgstr "" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." +msgid "Running Windows" msgstr "" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" +msgid "SQL Error" msgstr "" -#: lib/pages/taskmanagementpage.class.php:801 -msgid "Active Multi-cast Tasks" +msgid "SSL Path" msgstr "" -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" +msgid "Save Changes" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" +msgid "Save Initrd" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" +msgid "Save Kernel" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" +msgid "Saving data for" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" +msgid "Schedule" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1204 -msgid "All snapins" +msgid "Schedule Power" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1208 -msgid "Invalid snapin" +msgid "Schedule as debug task" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1210 -msgid "Snapin to be installed" +msgid "Schedule cron-style" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" +msgid "Schedule delayed" msgstr "" -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" +msgid "Schedule instant" msgstr "" -#: lib/pages/usermanagementpage.class.php:52 -msgid "Change password" +msgid "Schedule with shutdown" msgstr "" -#: lib/pages/usermanagementpage.class.php:56 -msgid "API Settings" +msgid "Scheduled Task run time" msgstr "" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 -msgid "Friendly Name" +msgid "Scheduled Tasks" msgstr "" -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" +msgid "Scheduled date is in the past" msgstr "" -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" +msgid "Scheduled tasks successfully created" msgstr "" -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" +msgid "Scheduler" msgstr "" -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" +msgid "Screen Height (in pixels)" msgstr "" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" +msgid "Screen Refresh Rate (in Hz)" msgstr "" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" +msgid "Screen Width (in pixels)" msgstr "" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" +msgid "Search" msgstr "" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 -msgid "User API Enabled" +msgid "Search Base DN" msgstr "" -#: lib/pages/usermanagementpage.class.php:223 -msgid "Create user?" +msgid "Search DN" msgstr "" -#: lib/pages/usermanagementpage.class.php:283 -msgid "A user name is required!" +msgid "Search DN did not return any results" msgstr "" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" +msgid "Search Method" msgstr "" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" +msgid "Search Scope" msgstr "" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" +msgid "Search pattern" msgstr "" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" +msgid "Search results returned false" msgstr "" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" +msgid "Second paramater must be in array(class,function)" msgstr "" -#: lib/pages/usermanagementpage.class.php:304 -msgid "A username already exists with this name!" +msgid "Select Image" msgstr "" -#: lib/pages/usermanagementpage.class.php:309 -msgid "A password is required!" +msgid "Select User" msgstr "" -#: lib/pages/usermanagementpage.class.php:321 -msgid "Add user failed!" +msgid "Select a cron type" msgstr "" -#: lib/pages/usermanagementpage.class.php:327 -msgid "User added!" +msgid "Select a valid image" msgstr "" -#: lib/pages/usermanagementpage.class.php:328 -msgid "User Create Success" +msgid "Select management level for these hosts" msgstr "" -#: lib/pages/usermanagementpage.class.php:336 -msgid "User Create Fail" +msgid "Select management level for this host" msgstr "" -#: lib/pages/usermanagementpage.class.php:363 -msgid "User General" +msgid "Select/Deselect All" msgstr "" -#: lib/pages/usermanagementpage.class.php:392 -msgid "Update General?" +msgid "Selected Logins" msgstr "" -#: lib/pages/usermanagementpage.class.php:455 -msgid "User Change Password" +msgid "Selected groups's current activity" msgstr "" -#: lib/pages/usermanagementpage.class.php:481 -msgid "Update Password?" +msgid "Selected hosts approved successfully" msgstr "" -#: lib/pages/usermanagementpage.class.php:535 -msgid "User API Settings" +msgid "Selected hosts deleted successfully" msgstr "" -#: lib/pages/usermanagementpage.class.php:557 -msgid "User API Token" +msgid "Selected node's disk usage" msgstr "" -#: lib/pages/usermanagementpage.class.php:573 -msgid "Update API?" +msgid "Serial" msgstr "" -#: lib/pages/usermanagementpage.class.php:667 -msgid "A user already exists with this name" +msgid "Serial Number" msgstr "" -#: lib/pages/usermanagementpage.class.php:728 -msgid "User update failed!" +msgid "Server Shell" msgstr "" -#: lib/pages/usermanagementpage.class.php:733 -msgid "User updated!" +msgid "Server information" msgstr "" -#: lib/pages/usermanagementpage.class.php:734 -msgid "User Update Success" +msgid "Server information at a glance." msgstr "" -#: lib/pages/usermanagementpage.class.php:742 -msgid "User Update Fail" +msgid "Service" msgstr "" -#: lib/pages/processlogin.class.php:161 -msgid "Login failed" +msgid "Service Configuration" msgstr "" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 -msgid "username" +msgid "Service Master" msgstr "" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" +msgid "Service Setting Update Failed" msgstr "" -#: lib/pages/processlogin.class.php:185 -msgid "Login accepted" +msgid "Service Setting Update Success" msgstr "" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" +msgid "Service Start" msgstr "" -#: lib/pages/processlogin.class.php:246 -msgid "FOG Project" +msgid "Service Status" msgstr "" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 -msgid "Access Controls" +msgid "Service Tag" msgstr "" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 -msgid "Role" +msgid "Service general" msgstr "" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -msgid "User Access Control" +msgid "Service update failed" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -msgid "Export Accesscontrols" +msgid "Session Name" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 -msgid "Import Accesscontrols" +msgid "Session altered improperly" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 -msgid "Rule Association" +msgid "Session name cannot be the same as an existing hostname" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 -msgid "Role Name" +msgid "Session timeout" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -msgid "Rule type" +msgid "Session with that name already exists" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" +msgid "Set Failed" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 -msgid "Parent Node" +msgid "Set failed" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, php-format -msgid "List all roles" +msgid "Setting Key" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, php-format -msgid "Add new role" +msgid "Setting logout to one second prior to next login" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, php-format -msgid "List all rules" +msgid "Settings" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, php-format -msgid "Add new rule" +msgid "Settings Update Fail" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 -msgid "Role Description" +msgid "Settings Update Success" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -msgid "New Role" +msgid "Settings successfully stored!" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -msgid "Create New Access Control Role" +msgid "Should anything go wrong" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 -msgid "A name is required!" +msgid "Shutdown" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -msgid "A role already exists with this name!" +msgid "Shutdown after deploy" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -msgid "Add role failed!" +msgid "Shutdown after install" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -msgid "Role added!" +msgid "Signed" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 -msgid "Role Create Success" +msgid "Site" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 -msgid "Role Create Fail" +msgid "Site Association" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 -msgid "Access Control Role General" +msgid "Site Control Management" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -msgid "Role update failed!" +msgid "Site Create Fail" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -msgid "Role updated!" +msgid "Site Create Success" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 -msgid "Role Update Success" +msgid "Site Description" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 -msgid "Role Update Fail" +msgid "Site General" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 -msgid "Access Control Rules" +msgid "Site Name" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -msgid "Parent" +msgid "Site Update Fail" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 -msgid "Access Control Rule" +msgid "Site Update Success" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 -msgid "New Rule" +msgid "Site Updated!" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 -msgid "Rule Type" +msgid "Site added!" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 -msgid "Node Parent" +msgid "Site update failed!" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 -msgid "Rule Value" +msgid "Sites" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 -msgid "Create Rule?" +msgid "Size" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 -msgid "A rule already exists with this name." +msgid "Slack Accounts" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 -msgid "Add rule failed!" +msgid "Slack Management" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 -msgid "Rule added!" +msgid "Smart Installer" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 -msgid "Rule Create Success" +msgid "Snapin" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 -msgid "Rule Create Fail" +msgid "Snapin Args" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 -msgid "Access Control Rule General" +msgid "Snapin Arguments" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" +msgid "Snapin Arguments Hidden" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 -msgid "Rule updated!" +msgid "Snapin Client" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 -msgid "Rule Update Success" +msgid "Snapin Command" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 -msgid "Rule Update Fail" +msgid "Snapin Create Fail" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 -msgid "Fail to destroy" +msgid "Snapin Create Success" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 -msgid "Rule deleted successfully!" +msgid "Snapin Created" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" +msgid "Snapin Creation Date" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 -msgid "Rule Delete Fail" +msgid "Snapin Creation Time" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 -msgid "Rule Name" +msgid "Snapin Description" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 -msgid "Rule Membership" +msgid "Snapin Enabled" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 -msgid "Check here to see what rules can be added" +msgid "Snapin File" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 -msgid "Add Rules" +msgid "Snapin File (exists)" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 -msgid "Add selected rules" +msgid "Snapin General" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 -msgid "Remove Accesscontrol Rules" +msgid "Snapin Hash" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 -msgid "Remove selected rules" +msgid "Snapin History" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 -msgid "No role selected" +msgid "Snapin ID" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 -msgid "No rule selected" +msgid "Snapin Locations" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 -msgid "Associate rule failed!" +msgid "Snapin Log" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 -msgid "Rule associate success!" +msgid "Snapin Management" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 -msgid "Rule Associate Success" +msgid "Snapin Name" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 -msgid "Rule Associate Fail" +msgid "Snapin Pack" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 -msgid "User name" +msgid "Snapin Pack Arguments" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 -msgid "Check here to see what users can be added" +msgid "Snapin Pack File" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -msgid "Add Users" +msgid "Snapin Pack Template" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -msgid "Add selected users" +msgid "Snapin Path" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 -msgid "Remove Users" +msgid "Snapin Protected" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 -msgid "Remove selected users" +msgid "Snapin Replicator" msgstr "" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" +msgid "Snapin Return Code" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:107 -msgid "Function does not exist" +msgid "Snapin Return Detail" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:147 -msgid "Port is not valid ldap/ldaps port" +msgid "Snapin Run With" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:295 -msgid "We cannot connect to LDAP server" +msgid "Snapin Run With Args" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" +msgid "Snapin Run With Argument" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" +msgid "Snapin State" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:398 -msgid "Cannot bind to the LDAP server" +msgid "Snapin Storage Groups" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" +msgid "Snapin Task is invalid" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 -msgid "Search DN" +msgid "Snapin Template" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 -msgid "Filter" +msgid "Snapin Timeout (seconds)" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:460 -msgid "User was not authorized by the LDAP server" +msgid "Snapin Transfer Log" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:461 -msgid "User DN" +msgid "Snapin Type" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" +msgid "Snapin Update Fail" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" +msgid "Snapin Update Success" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" +msgid "Snapin Used" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" +msgid "Snapin added!" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" +msgid "Snapin file is too big, increase post_max_size in php.ini." msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 -msgid "Group Search DN" +msgid "Snapin is invalid" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:848 -msgid "Search Method" +msgid "Snapin is protected and cannot be deleted" msgstr "" -#: lib/plugins/ldap/class/ldap.class.php:852 -msgid "Result" +msgid "Snapin task not completed" msgstr "" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 -msgid "LDAP Servers" +msgid "Snapin to be installed" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" +msgid "Snapin update failed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 -msgid "Export LDAPs" +msgid "Snapin updated!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 -msgid "Import LDAPs" +msgid "Snapins" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 -msgid "Plugin Configuration" +msgid "Snapins Are already deployed to this host" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 -msgid "LDAP Connection Name" +msgid "So if you are trying to transmit to remote node A" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" +msgid "Somebody will be able to help in some form" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 -msgid "LDAP Connection Name" +msgid "Space variable must be boolean" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" +msgid "Specified download URL not allowed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" +msgid "Start" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 -msgid "Admin Group" +msgid "Start Date" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" +msgid "Start Multicast Session" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" +msgid "Start Session" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" +msgid "Start Time" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" +msgid "Started By:" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 -msgid "LDAP Server Port" +msgid "Started sync for" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" +msgid "Starting Image Replication" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 -msgid "Search Base DN" +msgid "Starting Image Size Service" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 -msgid "Mobile Group" +msgid "Starting Snapin Hashing Service" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -msgid "Initial Template" +msgid "Starting Snapin Replication" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 -msgid "Pick a template" +msgid "Starting Sync Actions" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" +msgid "Starting process" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" +msgid "State" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" +msgid "Status" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 -msgid "User Name Attribute" +msgid "Stop Task" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" +msgid "Storage" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 -msgid "Search Scope" +msgid "Storage Group" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" +msgid "Storage Group Activity" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 -msgid "Bind Password" +msgid "Storage Group Already Exists" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 -msgid "Create New LDAP" +msgid "Storage Group Create Fail" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" +msgid "Storage Group Create Success" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." +msgid "Storage Group Created" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" +msgid "Storage Group Description" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -msgid "Please enter a Search Base DN" +msgid "Storage Group General" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 -msgid "Please select an LDAP port to use" +msgid "Storage Group Name" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 -msgid "Please select a valid ldap port" +msgid "Storage Group Update Fail" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -msgid "Please Enter an admin or mobile lookup name" +msgid "Storage Group Update Success" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 -msgid "Please enter a User Name Attribute" +msgid "Storage Group Updated" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 -msgid "Please enter a Group Member Attribute" +msgid "Storage Group deleted" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 -msgid "A LDAP setup already exists with this name!" +msgid "Storage Group update failed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 -msgid "Add LDAP server failed!" +msgid "Storage Group updated!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 -msgid "LDAP Server added!" +msgid "Storage Management" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 -msgid "LDAP Create Success" +msgid "Storage Node" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 -msgid "LDAP Create Fail" +msgid "Storage Node Create Fail" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 -msgid "LDAP General" +msgid "Storage Node Create Success" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 -msgid "Update LDAP server failed!" +msgid "Storage Node Created" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 -msgid "LDAP Server updated!" +msgid "Storage Node Description" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 -msgid "LDAP Update Success" +msgid "Storage Node Disk Usage" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 -msgid "LDAP Update Fail" +msgid "Storage Node General" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 -msgid "User Filter" +msgid "Storage Node IP" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 -msgid "LDAP Ports" +msgid "Storage Node Interface" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" +msgid "Storage Node Max Clients" msgstr "" -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" +msgid "Storage Node Name" msgstr "" -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" +msgid "Storage Node Password" msgstr "" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" +msgid "Storage Node Protocol" msgstr "" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" +msgid "Storage Node Update Fail" msgstr "" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" +msgid "Storage Node Update Success" msgstr "" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" +msgid "Storage Node Updated" msgstr "" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 -msgid "Location Association" +msgid "Storage Node Username" msgstr "" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" +msgid "Storage Node added!" msgstr "" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" +msgid "Storage Node already exists" msgstr "" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 -msgid "This setting defines sending the" +msgid "Storage Node deleted" msgstr "" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" +msgid "Storage Node update failed!" msgstr "" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" +msgid "Storage Node updated!" msgstr "" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" +msgid "String must be a string" msgstr "" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 -msgid "Default is disabled" +msgid "Subnet Groups" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 -msgid "Snapin Locations" +msgid "SubnetGroup General" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" +msgid "Subnetgroup Create Fail" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 -msgid "where to download the snapin" +msgid "Subnetgroup Create Success" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" +msgid "Subnetgroup Management" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" +msgid "Subnetgroup Update Fail" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" +msgid "Subnetgroup Update Success" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 -msgid "Export Locations" +msgid "Subnetgroup added!" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 -msgid "Import Locations" +msgid "Subnetgroup update failed!" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" +msgid "Subnetgroup updated!" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" +msgid "Subnets" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" +msgid "Subree and Below" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" +msgid "Subtree Only" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 -msgid "Create New Location" +msgid "Successful" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." +msgid "Successfully added selected hosts to the group!" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." +msgid "Successfully created" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." +msgid "Successfully deleted" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 -msgid "Add location failed!" +msgid "System Manufacturer" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 -msgid "Location added!" +msgid "System Overview" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 -msgid "Location Create Success" +msgid "System Product" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 -msgid "Location Create Fail" +msgid "System Serial" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 -msgid "Location General" +msgid "System Serial Number" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." +msgid "System Tools" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -msgid "A group is required for a location" +msgid "System Type" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -msgid "Location update failed!" +msgid "System UUID" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 -msgid "Location updated!" +msgid "System Uptime" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 -msgid "Location Update Success" +msgid "System Version" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 -msgid "Location Update Fail" +msgid "TCP/IP" msgstr "" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" +msgid "TCP/IP Port Printer" msgstr "" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" +msgid "TX" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" +msgid "Table not defined for this class" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" +msgid "Task" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" +msgid "Task Checkin Date" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" +msgid "Task Checkin Time" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 -msgid "Add Pushbullet Account" +msgid "Task Complete Date" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" +msgid "Task Complete Time" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" +msgid "Task ID" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" +msgid "Task Management" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 -msgid "Account successfully added!" +msgid "Task Name" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 -msgid "Link Pushbullet Account Success" +msgid "Task Reboot" msgstr "" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 -msgid "Link Pushbullet Account Fail" +msgid "Task State" msgstr "" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 -msgid "Site Association" +msgid "Task State Create Fail" msgstr "" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 -msgid "Site" +msgid "Task State Create Success" msgstr "" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 -msgid "Associated Sites" +msgid "Task State General" msgstr "" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 -msgid "Host Site" +msgid "Task State Management" msgstr "" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 -msgid "Sites" +msgid "Task State Update Fail" msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 -msgid "Is restricted" +msgid "Task State Update Success" msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 -msgid "No site" +msgid "Task State Updated!" msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " +msgid "Task State added!" msgstr "" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 -msgid "No Site" +msgid "Task States" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 -msgid "Export Sites" +msgid "Task Type" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 -msgid "Import Sites" +msgid "Task Type Create Fail" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 -msgid "Hosts Associated" +msgid "Task Type Create Success" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 -msgid "Host Associated" +msgid "Task Type General" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 -msgid "Site Name" +msgid "Task Type Management" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 -msgid "Site Description" +msgid "Task Type Update Fail" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 -msgid "New Site" +msgid "Task Type Update Success" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 -msgid "Create Site" +msgid "Task Type Updated!" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 -msgid "A site already exists with this name!" +msgid "Task Type added!" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 -msgid "Add site failed!" +msgid "Task Type is not valid" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 -msgid "Site added!" +msgid "Task Types" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 -msgid "Site Create Success" +msgid "Task forced to start" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 -msgid "Site Create Fail" +msgid "Task not created as there are no associated tasks" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 -msgid "Site General" +msgid "Task sent to" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 -msgid "A site alread exists with this name!" +msgid "Task started" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 -msgid "Site update failed!" +msgid "Task started for" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 -msgid "Site Updated!" +msgid "Task type is not valid" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -msgid "Site Update Success" +msgid "Tasked Successfully" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 -msgid "Site Update Fail" +msgid "Tasked successfully, click active tasks to view in line." msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -msgid "Host Membership" +msgid "Tasking" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -msgid "Check here to see what hosts can be added" +msgid "Tasking Failed" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 -msgid "Add Hosts" +msgid "Tasks" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 -msgid "Add selected hosts" +msgid "Team" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 -msgid "Remove Hosts" +msgid "Terminal" msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -msgid "Remove selected hosts" +msgid "Terms and Conditions" msgstr "" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" +msgid "Text" msgstr "" -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" +msgid "The 'Is Master Node' setting defines which" msgstr "" -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" +msgid "The assigned image is protected" msgstr "" -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 -msgid "Completed imaging" +msgid "The below items are only used for the old client." msgstr "" -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" +msgid "The clients will checkin with the server from time" msgstr "" -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" +msgid "The following errors occured" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" +msgid "The following errors occurred" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" +msgid "The image storage group assigned is not valid" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" +msgid "The installers for the fog client" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" +msgid "The key will be assigned to registered hosts when a" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" +msgid "The node trying to be used is currently" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -msgid "Add Slack Account" +msgid "The old client is what was distributed with" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 -msgid "to signify if this is a user or channel to send to" +msgid "The old client iswhat was distributed with" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" +msgid "The old client was distributed with FOG 1.2.0 and earlier." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" +msgid "The primary mac associated is" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" +msgid "The settings tend to be global which affects all hosts." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 -msgid "Link Slack Account Success" +msgid "The storage groups associated storage node is not valid" msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 -msgid "Link Slack Account Fail" +msgid "The uploaded file exceeds the max_file_size" msgstr "" -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 -msgid "Subnet Groups" +msgid "The uploaded file exceeds the upload_max_filesize" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 -msgid "Export Subnetgroups" +msgid "The uploaded file was only partially uploaded" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 -msgid "Import Subnetgroups" +msgid "There are" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" +msgid "There are currently" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -msgid "New Subnetgroup" +msgid "There are many reasons why this could be the case" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 -msgid "Create New SubnetGroup?" +msgid "There are no groups on this server" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 -msgid "A subnetgroup already exists with this name!" +msgid "There are no hosts to task in this group" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 -msgid "A group is required!" +msgid "There are no images on this server" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." +msgid "There are no locations on this server" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -msgid "Please enter a valid CIDR subnets comma separated list" +msgid "There are no other members to sync to" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -msgid "Add Subnetgroup failed!" +msgid "There are no snapins associated with this host" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -msgid "Subnetgroup added!" +msgid "There are no snapins on this server" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 -msgid "Subnetgroup Create Success" +msgid "There are open slots" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -msgid "Subnetgroup Create Fail" +msgid "There is a host in a tasking" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -msgid "SubnetGroup General" +msgid "There is nothing to replicate" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -msgid "A subnet group already exists with this name!" +msgid "There were errors during import!" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -msgid "A group must be selected." +msgid "There you can download utilities such as FOG Prep" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -msgid "Please enter a valid CIDR subnet." +msgid "This MAC Belongs to another host" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "This area will allow the host checking in to tell" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -msgid "Subnetgroup update failed!" +msgid "This file will only work on Windows" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 -msgid "Subnetgroup updated!" +msgid "This host already exists" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 -msgid "Subnetgroup Update Success" +msgid "This installation process may take a few minutes" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 -msgid "Subnetgroup Update Fail" +msgid "This is a cron style task that should not run now." msgstr "" -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." +msgid "This is a cron style task that should run now." msgstr "" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" +msgid "This is a single run task that should not run now." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 -msgid "Export Task States" +msgid "This is a single run task that should run now." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -msgid "Import Task States" +msgid "This is especially useful if you have multiple" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" +msgid "This is ipxe script commands to operate with" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" +msgid "This is not the master for this group" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" +msgid "This is not the primary group" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" +msgid "This is only here to maintain old client operations" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 -msgid "Create Task state" +msgid "This is set in seconds and causes the default option" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 -msgid "A task state already exists with this name!" +msgid "This is the recommended installer to use now" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -msgid "Add task state failed!" +msgid "This is useful in the case of slow links between" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 -msgid "Task State added!" +msgid "This item allows you to edit all of the iPXE Menu items as you" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 -msgid "Task State Create Success" +msgid "This module did not work past Windows XP" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 -msgid "Task State Create Fail" +msgid "This module did not work past Windows XP due" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 -msgid "Task State General" +msgid "This module did not work past Windows XP due to" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 -msgid "Update task state failed!" +msgid "This module did not work past Windows XP due to UAC." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 -msgid "Task State Updated!" +msgid "This module has been replaced in the new client" msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 -msgid "Task State Update Success" +msgid "This module has since been replaced with Power Management." msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 -msgid "Task State Update Fail" +msgid "This module is only used" msgstr "" -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." +msgid "This module is only used on the old client" msgstr "" -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" +msgid "This module is only used on the old client." msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 -msgid "Export Task Types" +msgid "This node does not appear to be online" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -msgid "Import Task Types" +msgid "This page allows you to upload a CSV file into FOG to ease" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" +msgid "This plugin is not installed" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" +msgid "This section allows you to customize or alter" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" +msgid "This section allows you to update" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 -msgid "Init" +msgid "This section allows you to update the modules and" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" +msgid "This section allows you to uploade user" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" +msgid "This servers ip(s)" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -msgid "Create Task type" +msgid "This setting" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -msgid "A task type already exists with this name!" +msgid "This setting defines sending the" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -msgid "Add task type failed!" +msgid "This setting limits the bandwidth for replication between nodes" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 -msgid "Task Type added!" +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -msgid "Task Type Create Success" +msgid "This setting turns off all FOG Printer Management" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -msgid "Task Type Create Fail" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -msgid "Task Type General" +msgid "This will allow you to configure how services" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -msgid "Task Type Updated!" +msgid "Those images should be activated with the associated" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 -msgid "Task Type Update Success" +msgid "Time" msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 -msgid "Task Type Update Fail" +msgid "Time Already Exists" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" +msgid "Timeout" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" +msgid "Title must be a string" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" +msgid "To be released only by" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:31 -msgid "key" +msgid "To get started please select an item from the menu." msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" +msgid "To perform an imaging task an image must be assigned" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" +msgid "To view a report, select an item from the menu" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" +msgid "Toggle Navigation" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:36 -msgid "with the host" +msgid "Too many MACs" msgstr "" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 -msgid "Windows Key for Image" +msgid "Total Disk Space" msgstr "" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 -msgid "Windows Keys" +msgid "Total Memory" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 -msgid "Export Windows Keys" +msgid "Total Rows" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -msgid "Import Windows Keys" +msgid "Transmit" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 -msgid "Key Name" +msgid "Trying Snapin hash for" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 -msgid "New Windows Key" +msgid "Trying image size for" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 -msgid "Windows Key Name" +msgid "Txt must be a string" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 -msgid "Windows Key Description" +msgid "Type" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 -msgid "Windows Key" +msgid "UAC introduced in Vista and up" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 -msgid "Create New Key" +msgid "Unable to Authenticate" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 -msgid "A Windows Key already exists with this name!" +msgid "Unable to determine plugin details." msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 -msgid "Add Windows Key failed!" +msgid "Unable to find basic information!" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 -msgid "Windows Key added!" +msgid "Unable to find master Storage Node" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 -msgid "Windows Key Create Success" +msgid "Unable to get server infromation!" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 -msgid "Windows Key Create Fail" +msgid "Unable to open file for reading" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 -msgid "Windows Key General" +msgid "Unauthorized" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 -msgid "Update Windows Key failed!" +msgid "Unavailable" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 -msgid "Windows Key updated!" +msgid "Unicaset" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 -msgid "Windows Key Update Success" +msgid "Unit of time must be a string" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 -msgid "Windows Key Update Fail" +msgid "Unknown" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 -msgid "Image Membership" +msgid "Unknown upload error occurred" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -msgid "Check here to see what images can be added" +msgid "Update" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 -msgid "Add selected images" +msgid "Update API?" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 -msgid "Remove Images" +msgid "Update Default Printer" msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 -msgid "Remove selected images" +msgid "Update General?" msgstr "" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 -msgid "WOL Broadcasts" +msgid "Update LDAP server failed!" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 -msgid "Export WOLBroadcasts" +msgid "Update MACs" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 -msgid "Import WOLBroadcasts" +msgid "Update PM Values" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" +msgid "Update Password?" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" +msgid "Update Windows Key failed!" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" +msgid "Update auto-logout time" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -msgid "Create WOL Broadcast?" +msgid "Update default printer" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -msgid "A broadcast already exists with this name!" +msgid "Update display resolution" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 -msgid "A broadcast address is required" +msgid "Update module configurations" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" +msgid "Update not required!" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -msgid "Add broadcast failed!" +msgid "Update primary group" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -msgid "Broadcast added!" +msgid "Update printer configuration" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -msgid "Broadcast Create Success" +msgid "Update task state failed!" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 -msgid "Broadcast Create Fail" +msgid "Update/Remove Storage Groups" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -msgid "WOL Broadcast General" +msgid "Update/Remove printers" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -msgid "A broadcast already exists with this name" +msgid "Upload Reports" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 -msgid "Broadcast update failed!" +msgid "Upload file" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 -msgid "Broadcast updated!" +msgid "Upload file extension must be, jpg, jpeg, or png" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 -msgid "Broadcast Update Success" +msgid "Uptime" msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 -msgid "Broadcast Update Fail" +msgid "Use Group Matching (recommended)" msgstr "" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." +msgid "Use extreme caution with this setting" msgstr "" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 -msgid "Host Ext" +msgid "Use inits and kernels from this node" msgstr "" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " +msgid "Use the following link to go to the client page." msgstr "" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 -msgid "External Links" +msgid "Use the forums to post issues so others" msgstr "" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 -msgid "Export Host Exts" +msgid "Use the links below if you need assistance" msgstr "" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 -msgid "Import Host Exts" +msgid "Use this for network installs" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 -msgid "Host Ext Name" +msgid "Used" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 -msgid "Host Ext URL" +msgid "Used Disk Space" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 -msgid "Host Ext Variable" +msgid "Used Memory" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 -msgid "Create New Host Ext" +msgid "User" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 -msgid "A hostext already exists with this name!" +msgid "User API Enabled" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -msgid "Add ou failed!" +msgid "User API Settings" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 -msgid "Hostext added!" +msgid "User API Token" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 -msgid "Hostext Create Success" +msgid "User Access Control" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 -msgid "Hostext Create Fail" +msgid "User Agent Changed" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 -msgid "Hostext update failed!" +msgid "User Already Exists" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 -msgid "Hostext updated!" +msgid "User Change Password" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 -msgid "Hostext Update Success" +msgid "User Cleanup" msgstr "" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 -msgid "Hostext Update Fail" +msgid "User Create Fail" msgstr "" -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" +msgid "User Create Success" msgstr "" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" +msgid "User DN" msgstr "" -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" +msgid "User Filter" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" +msgid "User General" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" +msgid "User Management" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" +msgid "User Name" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" +msgid "User Name Attribute" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" +msgid "User Password" msgstr "" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 -msgid "Integrity Settings" +msgid "User Password (confirm)" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 -msgid "Export Checksums" +msgid "User Tracker" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" +msgid "User Update Fail" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" +msgid "User Update Success" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 -msgid "Last Updated Time" +msgid "User added!" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" +msgid "User call is invalid" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" +msgid "User name" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" +msgid "User update failed!" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgid "User updated!" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" +msgid "User was not authorized by the LDAP server" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:19 -msgid "

Version 1.5.5" +msgid "User/Channel Name" msgstr "" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 -msgid "Host Status" +msgid "User/Channel to post to" msgstr "" -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" +msgid "Username" msgstr "" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" +msgid "Username cannot contain contiguous special characters" msgstr "" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" +msgid "Username does not meet requirements" msgstr "" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" +msgid "Username must be at least 3 characters" msgstr "" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" +msgid "Username must be less than 41 characters" msgstr "" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" +msgid "Username must start with a word character" msgstr "" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" +msgid "Users" msgstr "" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" +msgid "Using the group match function" msgstr "" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" +msgid "VNC" msgstr "" -#: lib/reg-task/taskingelement.class.php:205 -msgid "Could not find a Storage Node in this group" +msgid "Valid Host Colors" msgstr "" -#: lib/reg-task/taskingelement.class.php:206 -msgid "is there one enabled" +msgid "Value" msgstr "" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" +msgid "Variable contains" msgstr "" -#: lib/reg-task/taskingelement.class.php:233 -msgid "but has recently failed for this host" +msgid "Version" msgstr "" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" +msgid "Version 1.2.0 and earlier" msgstr "" -#: lib/reg-task/taskqueue.class.php:57 -msgid "Invalid Multicast Session" +msgid "View History For" msgstr "" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" +msgid "View advanced tasks for this" msgstr "" -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" +msgid "Virus History" msgstr "" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" +msgid "Virus Name" msgstr "" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" +msgid "Virus Report" msgstr "" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" +msgid "Virus items removed!" msgstr "" -#: lib/reg-task/taskqueue.class.php:133 -msgid "unavailable" +msgid "WOL Broadcast General" msgstr "" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" +msgid "WOL Broadcast Management" msgstr "" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" +msgid "WOL Broadcasts" msgstr "" -#: lib/reg-task/taskqueue.class.php:156 -msgid "There are open slots" +msgid "Wait time has changed to" msgstr "" -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" +msgid "Waiting for mysql to be available" msgstr "" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" +msgid "Wake On Lan" msgstr "" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" +msgid "Wake on lan?" msgstr "" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" +msgid "We are group ID" msgstr "" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" +msgid "We are group name" msgstr "" -#: lib/reg-task/taskqueue.class.php:301 -msgid "Machine Details" +msgid "We are node ID" msgstr "" -#: lib/reg-task/taskqueue.class.php:303 -msgid "Computer Model" +msgid "We are node name" msgstr "" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" +msgid "We cannot connect to LDAP server" msgstr "" -#: lib/reg-task/taskqueue.class.php:305 -msgid "MAC Address" +msgid "Web Server" msgstr "" -#: lib/reg-task/taskqueue.class.php:307 -msgid "Image Used" +msgid "Web root" msgstr "" -#: lib/reg-task/taskqueue.class.php:308 -msgid "Snapin Used" +msgid "Weekly" msgstr "" -#: lib/reg-task/taskqueue.class.php:310 -msgid "Imaged By" +msgid "When the plugin is removed, the assigned key will remain" msgstr "" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 -msgid "Imaged For" +msgid "Where to get help" msgstr "" -#: lib/reg-task/taskqueue.class.php:312 -msgid "Imaging Started" +msgid "Width must be 650 pixels." msgstr "" -#: lib/reg-task/taskqueue.class.php:313 -msgid "Imaging Completed" +msgid "Window size must be greater than 1" msgstr "" -#: lib/reg-task/taskqueue.class.php:314 -msgid "Imaging Duration" +msgid "Windows Key" msgstr "" -#: lib/reg-task/taskqueue.class.php:332 -msgid "Image Task Completed" +msgid "Windows Key Create Fail" msgstr "" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" +msgid "Windows Key Create Success" msgstr "" -#: lib/reg-task/taskqueue.class.php:461 -msgid "Failed to update Host" +msgid "Windows Key Description" msgstr "" -#: lib/reg-task/taskqueue.class.php:475 -msgid "Failed to update task log" +msgid "Windows Key General" msgstr "" -#: lib/reg-task/taskqueue.class.php:479 -msgid "Failed to update imaging log" +msgid "Windows Key Management" msgstr "" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" +msgid "Windows Key Name" msgstr "" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" +msgid "Windows Key Update Fail" msgstr "" -#: lib/reports/equipment_loan.report.php:66 -msgid "Create Report?" +msgid "Windows Key Update Success" msgstr "" -#: lib/reports/equipment_loan.report.php:69 -msgid "Generate" +msgid "Windows Key added!" msgstr "" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" +msgid "Windows Key for Image" msgstr "" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" +msgid "Windows Key updated!" msgstr "" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" +msgid "Windows Keys" msgstr "" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" +msgid "Windows keys is a plugin that associates product keys" msgstr "" -#: lib/reports/equipment_loan.report.php:162 -msgid "Your Location Here" +msgid "Working with node" msgstr "" -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" +msgid "Wrong file name!" msgstr "" -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" +msgid "Yearly" msgstr "" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" +msgid "Yes" msgstr "" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" +msgid "You are only allowed to assign" msgstr "" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" +msgid "You have version" msgstr "" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" +msgid "You must have at least one Storage Group" msgstr "" -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" +msgid "You must have at least one group associated" msgstr "" -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" +msgid "You must select an action to perform" msgstr "" -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" +msgid "Your FOG database schema is not up to date" msgstr "" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" +msgid "Your Location Here" msgstr "" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" +msgid "Your database connection appears to be invalid" msgstr "" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" +msgid "Your form is ready" msgstr "" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" +msgid "Your server only allows" msgstr "" -#: lib/reports/equipment_loan.report.php:219 -msgid "I have read" +msgid "Your system PHP Version is not sufficient" msgstr "" -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" +msgid "ZSTD Compressed" msgstr "" -#: lib/reports/equipment_loan.report.php:221 -msgid "and agree to all the" +msgid "ZSTD Compressed 200MiB split" msgstr "" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" +msgid "access to the hidden menu system" msgstr "" -#: lib/reports/equipment_loan.report.php:223 -msgid "on the following pages of this document" +msgid "additional macs" msgstr "" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" +msgid "ago" msgstr "" -#: lib/reports/equipment_loan.report.php:262 -msgid "Your form is ready" +msgid "all current storage nodes" msgstr "" -#: lib/reports/equipment_loan.report.php:266 -msgid "Form" +msgid "and Mac OS X" msgstr "" -#: lib/reports/history_report.report.php:26 -msgid "FOG History - Search" +msgid "and agree to all the" msgstr "" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 -msgid "Enter an user name to search for" +msgid "and both the legacy and new FOG clients." msgstr "" -#: lib/reports/history_report.report.php:68 -msgid "Enter a term to search for" +msgid "and cannot be captured" msgstr "" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" +msgid "and if the Database service is running" msgstr "" -#: lib/reports/history_report.report.php:111 -msgid "Full History Export" +msgid "and much easier on the server" msgstr "" -#: lib/reports/history_report.report.php:166 -msgid "History ID" +msgid "and node A only has a 5Mbps and you want the speed" msgstr "" -#: lib/reports/history_report.report.php:167 -msgid "History Info" +msgid "and set it to master" msgstr "" -#: lib/reports/history_report.report.php:168 -msgid "History User" +msgid "and stores their respective checksums" msgstr "" -#: lib/reports/history_report.report.php:169 -msgid "History Time" +msgid "and the equivalent module for what Green" msgstr "" -#: lib/reports/history_report.report.php:170 -msgid "History IP" +msgid "and the location of the file on that" msgstr "" -#: lib/reports/host_list.report.php:33 -msgid "FOG Host - Search" +msgid "as FOG will attempt to go out to the internet" msgstr "" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -msgid "Enter a group name to search for" +msgid "as its primary group" msgstr "" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -msgid "Enter a location name to search for" +msgid "as they can cause issues that are difficult to troubleshoot" msgstr "" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 -msgid "Enter a site name to search for" +msgid "automatically" msgstr "" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 -msgid "Search pattern" +msgid "based task." msgstr "" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" +msgid "be the presence of a menu" msgstr "" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" +msgid "before me" msgstr "" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -msgid "Host AD Join" +msgid "before me on this node" msgstr "" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -msgid "Host AD OU" +msgid "between" msgstr "" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -msgid "Host AD Domain" +msgid "between different sites" msgstr "" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 -msgid "Host HD Device" +msgid "between host and global settings" msgstr "" -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" +msgid "boot the client computers" msgstr "" -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" +msgid "but" msgstr "" -#: lib/reports/hosts_and_users.report.php:24 -msgid "FOG Host and Users - Search" +msgid "but bind password is not set" msgstr "" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" +msgid "but has recently failed for this host" msgstr "" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" +msgid "check to ensure your filesystem has enough space" msgstr "" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" +msgid "client" msgstr "" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" +msgid "clients" msgstr "" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" +msgid "config files that run on the client computers." msgstr "" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -msgid "Login Users" +msgid "could not be cancelled" msgstr "" -#: lib/reports/imaging_log.report.php:24 -msgid "FOG Imaging - Search" +msgid "could not be completed" msgstr "" -#: lib/reports/imaging_log.report.php:105 -msgid "Enter an image name to search for" +msgid "could not be killed" msgstr "" -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" +msgid "day" msgstr "" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" +msgid "day of month" msgstr "" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" +msgid "day of week" msgstr "" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" +msgid "defined reports that may not be a part of" msgstr "" -#: lib/reports/imaging_log.report.php:214 -msgid "Deploy/Capture" +msgid "deleted" msgstr "" -#: lib/reports/imaging_log.report.php:268 -msgid "Not Valid" +msgid "deploy task occurs for it" msgstr "" -#: lib/reports/inventory_report.report.php:24 -msgid "FOG Host Inventory - Search" +msgid "directive in php.ini" msgstr "" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." +msgid "directive specified in the HTML form" msgstr "" -#: lib/reports/inventory_report.report.php:129 -msgid "Enter a model name to search for" +msgid "directory" msgstr "" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" +msgid "download the module and use it on the next" msgstr "" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." +msgid "due to UAC introduced in Vista and up." msgstr "" -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" +msgid "e.g." msgstr "" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" +msgid "either already selected or uploaded" msgstr "" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" +msgid "either because you have updated" msgstr "" -#: lib/reports/pending_mac_list.report.php:130 -msgid "Approve All Pending MACs for All Hosts" +msgid "failed to execute, image file: " msgstr "" -#: lib/reports/pending_mac_list.report.php:154 -msgid "Pending MAC Actions" +msgid "failed to execute, port must be even and numeric" msgstr "" -#: lib/reports/pending_mac_list.report.php:160 -msgid "Approve Selected MACs" +msgid "failed to execute, there are no clients included" msgstr "" -#: lib/reports/pending_mac_list.report.php:165 -msgid "Approve" +msgid "failed to login" msgstr "" -#: lib/reports/pending_mac_list.report.php:171 -msgid "Delete Selected MACs" +msgid "failed to start" msgstr "" -#: lib/reports/product_keys.report.php:31 -msgid "Host Product Keys" +msgid "faster" msgstr "" -#: lib/reports/snapin_log.report.php:18 -msgid "FOG Snapin - Search" +msgid "filesize" msgstr "" -#: lib/reports/snapin_log.report.php:82 -msgid "Enter a snapin name to search for" +msgid "for Microsoft Windows to images" msgstr "" -#: lib/reports/snapin_log.report.php:120 -msgid "Found snapin information" +msgid "for the advanced menu parameters" msgstr "" -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" +msgid "for the menu background" msgstr "" -#: lib/reports/snapin_log.report.php:153 -msgid "Checkin Time" +msgid "found" msgstr "" -#: lib/reports/snapin_log.report.php:154 -msgid "Complete Time" +msgid "from" msgstr "" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" +msgid "function on client computers." msgstr "" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" +msgid "group" msgstr "" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" +msgid "has been cancelled" msgstr "" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" +msgid "has been completed" msgstr "" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" +msgid "has been killed" msgstr "" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" +msgid "has been started on port" msgstr "" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" +msgid "has been successfully destroyed" msgstr "" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" +msgid "has been successfully updated" msgstr "" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" +msgid "has failed to destroy" msgstr "" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" +msgid "has failed to save" msgstr "" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" +msgid "has started" msgstr "" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" +msgid "help with any aspect of FOG" msgstr "" -#: lib/reports/snapin_log.report.php:194 -msgid "Task Complete Date" +msgid "here" msgstr "" -#: lib/reports/snapin_log.report.php:195 -msgid "Task Complete Time" +msgid "host" msgstr "" -#: lib/reports/user_tracking.report.php:31 -msgid "FOG User tracking - Search" +msgid "hosts" msgstr "" -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" +msgid "hour" msgstr "" -#: lib/reports/user_tracking.report.php:132 -msgid "Found login information" +msgid "hr" msgstr "" -#: lib/reports/user_tracking.report.php:233 -msgid "FOG User tracking history" +msgid "iPXE General Configuration" msgstr "" -#: lib/reports/user_tracking.report.php:290 -msgid "Service Start" +msgid "iPXE Item Create Fail" msgstr "" -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" +msgid "iPXE Item Create Success" msgstr "" -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" +msgid "iPXE Item Remove Success" msgstr "" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" +msgid "iPXE Item Update Success" msgstr "" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 -msgid "Already created" +msgid "iPXE Item added!" msgstr "" -#: lib/router/route.class.php:857 -msgid "Invalid tasking type passed" +msgid "iPXE Item create failed!" msgstr "" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" +msgid "iPXE Menu Customization" msgstr "" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 -msgid "I am the group manager" +msgid "iPXE Menu Item Settings" msgstr "" -#: lib/service/imagereplicator.class.php:119 -msgid "Starting Image Replication" +msgid "iPXE Menu Settings" msgstr "" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" +msgid "iPXE New Menu Entry" msgstr "" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 -msgid "We are group name" +msgid "iPXE Settings updated successfully!" msgstr "" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" +msgid "iPXE Update Fail" msgstr "" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 -msgid "We are node name" +msgid "iPXE Update Success" msgstr "" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 -msgid "Attempting to perform" +msgid "iPXE syntax is very finicky when it comes to editing" msgstr "" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 -msgid "image replication" +msgid "iPrint Printer" msgstr "" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" +msgid "if there is a task" msgstr "" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" +msgid "if used incorrectly could potentially" msgstr "" -#: lib/service/imagereplicator.class.php:207 -msgid "images to a storage group" +msgid "image" msgstr "" -#: lib/service/imagereplicator.class.php:241 -msgid "Replicating" +msgid "image file found, file: " msgstr "" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" +msgid "image replication" msgstr "" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -msgid "This is not the primary group" +msgid "images" msgstr "" -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 -msgid "Nodes" +msgid "images to a storage group" msgstr "" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" +msgid "in seconds" msgstr "" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" +msgid "install or update the FOG database" msgstr "" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" +msgid "is already running with pid: " msgstr "" -#: lib/service/multicasttask.class.php:104 -msgid " | Unable to find image path" +msgid "is going on with your FOG System" msgstr "" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" +msgid "is invalid" msgstr "" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" +msgid "is new" msgstr "" -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" +msgid "is no longer running" msgstr "" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" +msgid "is now cancelled" msgstr "" -#: lib/service/pinghosts.class.php:147 -msgid "hosts" +msgid "is now completed" msgstr "" -#: lib/service/snapinhash.class.php:102 -msgid " * Snapin hash is globally disabled" +msgid "is open" msgstr "" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" +msgid "is protected" msgstr "" -#: lib/service/snapinhash.class.php:135 -msgid "Finding any snapins associated" +msgid "is protected, removal not allowed" msgstr "" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 -msgid "with this group" +msgid "is required" msgstr "" -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 -msgid "as its primary group" +msgid "is there one enabled" msgstr "" -#: lib/service/snapinhash.class.php:158 -msgid "No snapins associated with this group as master" +msgid "is valid" msgstr "" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" +msgid "it boots to the first device" msgstr "" -#: lib/service/snapinhash.class.php:170 -msgid "snapins" +msgid "it performs that task" msgstr "" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" +msgid "it will distribute its store" msgstr "" -#: lib/service/snapinhash.class.php:187 -msgid "Trying Snapin hash for" +msgid "it will enforce login to gain access to the advanced" msgstr "" -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" +msgid "it's transmitting to" msgstr "" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" +msgid "kernel to boot the client computers" msgstr "" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" +msgid "key" msgstr "" -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" +msgid "limited to 1Mbps on that node" msgstr "" -#: lib/service/snapinreplicator.class.php:118 -msgid "Starting Snapin Replication" +msgid "location url based on the host that checks in" msgstr "" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 -msgid "snapin replication" +msgid "logged in" msgstr "" -#: lib/service/snapinreplicator.class.php:206 -msgid "snapins to a storage group" +msgid "logout" msgstr "" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" +msgid "may see the issue and help and/or use the solutions" msgstr "" -#: lib/service/snapinreplicator.class.php:249 -msgid "Not syncing Snapin" +msgid "meaning a node that has no images on it" msgstr "" -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" +msgid "menu system" msgstr "" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" +msgid "migration or mass import new items" msgstr "" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" +msgid "min" msgstr "" -#: lib/service/fogservice.class.php:356 -msgid "This is not the master for this group" +msgid "minute" msgstr "" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" +msgid "minutes" msgstr "" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" +msgid "mod dates" msgstr "" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" +msgid "month" msgstr "" -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" +msgid "more secure" msgstr "" -#: lib/service/fogservice.class.php:411 -msgid "to transfer to" +msgid "multiple places to get your image" msgstr "" -#: lib/service/fogservice.class.php:482 -msgid "Replication already running with PID" +msgid "must be specified" msgstr "" -#: lib/service/fogservice.class.php:514 -msgid "File or path cannot be reached" +msgid "n/a" msgstr "" -#: lib/service/fogservice.class.php:530 -msgid "Cannot connect to" +msgid "no database to" msgstr "" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 -msgid "File does not exist" +msgid "no login will appear" msgstr "" -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" +msgid "node is the distributor of the images" msgstr "" -#: lib/service/fogservice.class.php:735 -msgid "File size mismatch" +msgid "nodes containing this image" msgstr "" -#: lib/service/fogservice.class.php:743 -msgid "Deleting remote file" +msgid "not found on this node" msgstr "" -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" +msgid "object" msgstr "" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." +msgid "of" msgstr "" -#: lib/service/fogservice.class.php:780 -msgid "Starting Sync Actions" +msgid "on the following pages of this document" msgstr "" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" +msgid "on the old client" msgstr "" -#: lib/service/fogservice.class.php:868 -msgid "Task started" +msgid "open" msgstr "" -#: lib/service/imagesize.class.php:102 -msgid " * Image size is globally disabled" +msgid "or" msgstr "" -#: lib/service/imagesize.class.php:111 -msgid "Starting Image Size Service" +msgid "or no valid images specified" msgstr "" -#: lib/service/imagesize.class.php:135 -msgid "Finding any images associated" +msgid "or start to operate" msgstr "" -#: lib/service/imagesize.class.php:158 -msgid "No images associated with this group as master" +msgid "or this is a new FOG installation" msgstr "" -#: lib/service/imagesize.class.php:170 -msgid "images" +msgid "particular node" msgstr "" -#: lib/service/imagesize.class.php:171 -msgid "image" +msgid "per host" msgstr "" -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" +msgid "please see the hosts service settings section." msgstr "" -#: lib/service/imagesize.class.php:187 -msgid "Trying image size for" +msgid "power management task(s) to run" msgstr "" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -msgid "Path is unavailable" +msgid "present and where/how they need to display" msgstr "" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" +msgid "previous install if needed" msgstr "" -#: lib/service/imagesize.class.php:225 -msgid "Size" +msgid "read-only" msgstr "" -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" +msgid "real insert time" msgstr "" -#: lib/service/multicastmanager.class.php:222 -msgid "Task ID" +msgid "require all hosts have the same image" msgstr "" -#: lib/service/multicastmanager.class.php:234 -msgid "No new tasks found" +msgid "scheduled task(s) to run" msgstr "" -#: lib/service/multicastmanager.class.php:264 -msgid " No open slots " +msgid "second" msgstr "" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" +msgid "seconds" msgstr "" -#: lib/service/multicastmanager.class.php:289 -msgid "failed to execute, image file: " +msgid "see fit" msgstr "" -#: lib/service/multicastmanager.class.php:291 -msgid "not found on this node" +msgid "see the forums or lookup the commands and scripts available" msgstr "" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" +msgid "sending on base port " msgstr "" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" +msgid "sites with clients moving back and forth" msgstr "" -#: lib/service/multicastmanager.class.php:327 -msgid "failed to start" +msgid "snapin" msgstr "" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 -msgid "could not be killed" +msgid "snapin replication" msgstr "" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 -msgid "has been killed" +msgid "snapins" msgstr "" -#: lib/service/multicastmanager.class.php:363 -msgid "is new" +msgid "snapins to a storage group" msgstr "" -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -msgid "unable to be updated" +msgid "so if it seems like the process is hanging please be patient" msgstr "" -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " +msgid "so if you are unable to boot a client you may wish to" msgstr "" -#: lib/service/multicastmanager.class.php:397 -msgid "client" +msgid "successfully removed!" msgstr "" -#: lib/service/multicastmanager.class.php:398 -msgid "clients" +msgid "task found" msgstr "" -#: lib/service/multicastmanager.class.php:401 -msgid "found" +msgid "tasks in queue" msgstr "" -#: lib/service/multicastmanager.class.php:409 -msgid "sending on base port " +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" msgstr "" -#: lib/service/multicastmanager.class.php:416 -msgid "Command" +msgid "the Initrd (initial ramdisk) which is used alongside the" msgstr "" -#: lib/service/multicastmanager.class.php:425 -msgid "has started" +msgid "the Linux kernel which is used to" msgstr "" -#: lib/service/multicastmanager.class.php:490 -msgid "is already running with pid: " +msgid "the advanced menu to use" msgstr "" -#: lib/service/multicastmanager.class.php:502 -msgid "is no longer running" +msgid "the base FOG install" msgstr "" -#: lib/service/multicastmanager.class.php:528 -msgid "has been completed" +msgid "the following command in a terminal" msgstr "" -#: lib/service/multicastmanager.class.php:539 -msgid "has been cancelled" +msgid "the host defined location where available" msgstr "" -#: lib/service/multicastmanager.class.php:584 -msgid "is now cancelled" +msgid "the main and the host" msgstr "" -#: lib/service/multicastmanager.class.php:585 -msgid "could not be cancelled" +msgid "the way in which FOG operates" msgstr "" -#: lib/service/multicastmanager.class.php:600 -msgid "is now completed" +msgid "there one enabled within this Storage Group" msgstr "" -#: lib/service/multicastmanager.class.php:601 -msgid "could not be completed" +msgid "there will be a database backup stored on your" msgstr "" -#: lib/service/multicastmanager.class.php:619 -msgid "Wait time has changed to" +msgid "this backup will enable you to return to the" msgstr "" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" +msgid "this is just another to ensure safety" msgstr "" -#: lib/service/multicastmanager.class.php:624 -msgid "second" +msgid "this kernel holds all the drivers for the client computer" msgstr "" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" +msgid "this one is already in use by another image" msgstr "" -#: lib/service/taskscheduler.class.php:172 -msgid "scheduled task(s) to run" +msgid "this one is reserved for FOG" msgstr "" -#: lib/service/taskscheduler.class.php:179 -msgid "power management task(s) to run" +msgid "this will save the backup in your home" msgstr "" -#: lib/service/taskscheduler.class.php:187 -msgid "Scheduled Task run time" +msgid "time the service is started." msgstr "" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." +msgid "to UAC introduced in Vista and up" msgstr "" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" +msgid "to all nodes in the group" msgstr "" -#: lib/service/taskscheduler.class.php:216 -msgid "based task." +msgid "to be booted if no keys are pressed when the menu is" msgstr "" -#: lib/service/taskscheduler.class.php:224 -msgid "Unicaset" +msgid "to get the requested Initrd" msgstr "" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" +msgid "to get the requested Kernel" msgstr "" -#: lib/service/taskscheduler.class.php:252 -msgid "Task started for" +msgid "to login" msgstr "" -#: lib/service/taskscheduler.class.php:275 -msgid "Power Management Task run time" +msgid "to operate in an environment where there may be" msgstr "" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." +msgid "to review." msgstr "" -#: lib/service/taskscheduler.class.php:294 -msgid "Task sent to" +msgid "to signify if this is a user or channel to send to" msgstr "" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" +msgid "to the client systems" msgstr "" -#: management/other/index.php:167 -msgid "Credits" +msgid "to time to see if a new module is published." msgstr "" -#: management/other/index.php:170 -msgid "FOG Client" +msgid "to transfer to" msgstr "" -#: service/hostnameloop.php:36 -msgid "A host with that name already exists" +msgid "to update hash values as needed" msgstr "" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" +msgid "to update size values as needed" msgstr "" -#: service/inventory.php:90 -msgid "Failed to create inventory for this host" +msgid "unable to be updated" msgstr "" -#: service/grouplisting.php:28 -msgid "There are no groups on this server" +msgid "unavailable" msgstr "" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" +msgid "understood" msgstr "" -#: service/hostinfo.php:31 -msgid "Invalid tasking!" +msgid "update to a newer kernel which may have more drivers built in" msgstr "" -#: service/imagelisting.php:28 -msgid "There are no images on this server" +msgid "used" msgstr "" -#: service/locationlisting.php:28 -msgid "There are no locations on this server" +msgid "user failed to login" msgstr "" -#: service/progress.php:39 -msgid "Invalid image" +msgid "user successfully logged in" msgstr "" -#: service/Test.php:145 -msgid "Invalid unit passed" +msgid "username" msgstr "" -#: service/Test.php:217 -msgid "Invalid Unit" +msgid "version" msgstr "" -#: service/av.php:25 -msgid "Invalid operational mode" +msgid "we need a file name in the request" msgstr "" -#: service/av.php:38 -msgid "Accepted" +msgid "where to download the snapin" msgstr "" -#: service/snapinlisting.php:28 -msgid "There are no snapins on this server" +msgid "which is empty" msgstr "" -#: status/bandwidth.php:40 -msgid "Device must be a string" +msgid "window" msgstr "" -#: status/getfiles.php:27 -msgid "Invalid" +msgid "wipe out all of your images stored on" msgstr "" -#: status/logtoview.php:31 status/logtoview.php:130 -msgid "Invalid IP" +msgid "with modules and config" msgstr "" -#: status/logtoview.php:37 status/logtoview.php:136 -msgid "Invalid File" +msgid "with the host" msgstr "" -#: status/logtoview.php:81 -msgid "Invalid Folder" +msgid "with this group" msgstr "" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" +msgid "would you like to install it now" msgstr "" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" +msgid "you set the bandwidth field on that node to 1000" msgstr "" diff --git a/packages/web/management/languages/pt_BR.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/pt_BR.UTF-8/LC_MESSAGES/messages.po index 4c0bea588e..70a659b24c 100644 --- a/packages/web/management/languages/pt_BR.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/pt_BR.UTF-8/LC_MESSAGES/messages.po @@ -17,11127 +17,7905 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: commons/text.php:22 -msgid "Display" -msgstr "Exibição" - -#: commons/text.php:23 -msgid "Auto" -msgstr "Auto" - -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "Modelo" - -#: commons/text.php:25 -msgid "Inventory" -msgstr "Inventário" - -#: commons/text.php:26 -msgid "O/S" -msgstr "O / S" - -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "Editar" - -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "Excluir" - -#: commons/text.php:29 -msgid "Deleted" -msgstr "excluídos" - -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "Todos" - -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "Adicionar" - -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "Pesquisa" - -#: commons/text.php:33 -msgid "Storage" -msgstr "Armazenamento" - -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "Snapin" - -#: commons/text.php:35 -msgid "Snapins" -msgstr "snapins" - -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "Remover" - -#: commons/text.php:37 -msgid "Removed" -msgstr "Removido" - -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "ativado" - -#: commons/text.php:39 -msgid "Management" -msgstr "Gestão" - -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "Atualizar" - -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "Imagem" - -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "imagens" - -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "Nó" - -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "Grupo" - -#: commons/text.php:45 -msgid "Groups" -msgstr "grupos" - -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "Sair" - -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "Anfitrião" - -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "Hosts" - -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "Bandwidth" - -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "Bandwidth Replication" - -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" -msgstr "" - -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" -msgstr "" - -#: commons/text.php:55 -msgid "it's transmitting to" -msgstr "" - -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" -msgstr "" - -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "" - -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" -msgstr "" - -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" -msgstr "" - -#: commons/text.php:61 -msgid "Transmit" -msgstr "Transmite" - -#: commons/text.php:62 -msgid "Receive" -msgstr "Receber" - -#: commons/text.php:63 -msgid "New" -msgstr "Novo" - -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "Do utilizador" - -#: commons/text.php:65 -msgid "Users" -msgstr "usuários" - -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" -msgstr "Nome" - -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "Membros" - -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "avançado" - -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" -msgstr "hostname" - -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" - -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "MAC" - -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" -msgstr "Versão" - -#: commons/text.php:73 -msgid "Text" -msgstr "Texto" - -#: commons/text.php:74 -msgid "Graphical" -msgstr "Gráfico" - -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "Arquivo" - -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "Caminho" - -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "Desligar" - -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "reinicialização" - -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "Tempo" - -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "Açao" - -#: commons/text.php:81 -msgid "Printer" -msgstr "Impressora" - -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 -#, fuzzy -msgid "Power Management" -msgstr "Gerenciamento de usuários" - -#: commons/text.php:83 -msgid "Client" -msgstr "Cliente" - -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "Tarefa" - -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "Nome de usuário" - -#: commons/text.php:86 -msgid "Service" -msgstr "Serviço" - -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "Geral" - -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "Modo" - -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "Encontro" - -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "Claro" - -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "Descrição" - -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "Aqui" - -#: commons/text.php:93 -msgid "NOT" -msgstr "NÃO" - -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "ou" - -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "Linha" - -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "erros" - -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "Erro" - -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "Exportar" - -#: commons/text.php:99 -msgid "Schedule" -msgstr "Cronograma" - -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "implantar" - -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 -#, fuzzy -msgid "Capture" -msgstr "Crio" - -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "multicast" - -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "estado" - -#: commons/text.php:104 -msgid "Actions" -msgstr "Ações" - -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "Estado" - -#: commons/text.php:107 -msgid "Kill" -msgstr "Matar" - -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "Núcleo" - -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "Localização" - -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "N / D" - -#: commons/text.php:111 -msgid "Home" -msgstr "Casa" - -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "Relatório" - -#: commons/text.php:113 -msgid "Reports" -msgstr "Relatórios" - -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "Entrar" - -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "Enfileiradas" - -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "Completo" - -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "Desconhecido" - -#: commons/text.php:118 -msgid "Force" -msgstr "Força" - -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "Digitar" - -#: commons/text.php:120 -msgid "Settings" -msgstr "Configurações" - -#: commons/text.php:121 -msgid "FOG" -msgstr "NÉVOA" - -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 -msgid "Active" -msgstr "Ativo" - -#: commons/text.php:123 -msgid "Printers" -msgstr "impressoras" - -#: commons/text.php:124 -msgid "Directory" -msgstr "Diretório" - -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 -msgid "Active Directory" -msgstr "Active Directory" - -#: commons/text.php:126 -msgid "Virus History" -msgstr "Histórico de vírus" - -#: commons/text.php:127 -msgid "Login History" -msgstr "História de login" - -#: commons/text.php:128 -msgid "Image History" -msgstr "História imagem" - -#: commons/text.php:129 -msgid "Snapin History" -msgstr "História Snapin" - -#: commons/text.php:130 -msgid "Configuration" -msgstr "Configuração" - -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "Plugar" - -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "localizações" - -#: commons/text.php:134 -msgid "License" -msgstr "Licença" - -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "Kernel Atualização" - -#: commons/text.php:136 -#, fuzzy -msgid "iPXE General Configuration" -msgstr "Configuração do menu gpxe" - -#: commons/text.php:137 -msgid "Client Updater" -msgstr "Updater cliente" - -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "hostname Changer" - -#: commons/text.php:139 -msgid "Host Registration" -msgstr "Registro de acolhimento" - -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "cliente Snapin" - -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "Reiniciar tarefa" - -#: commons/text.php:142 -msgid "User Cleanup" -msgstr "Limpeza de usuário" - -#: commons/text.php:143 -msgid "User Tracker" -msgstr "User tracker" - -#: commons/text.php:144 -#, php-format -msgid "%s Manager" -msgstr "%s Gestor" - -#: commons/text.php:145 -msgid "Green FOG" -msgstr "FOG verde" - -#: commons/text.php:146 -msgid "Directory Cleaner" -msgstr "Cleaner diretório" - -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "Lista de endereços MAC" - -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "Configurações FOG" - -#: commons/text.php:149 -msgid "Server Shell" -msgstr "Shell servidor" - -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "Visualizador de log" - -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "Guardar configuração" - -#: commons/text.php:152 -msgid "FOG Sourceforge Page" -msgstr "FOG Sourceforge Página" - -#: commons/text.php:153 -msgid "FOG Home Page" -msgstr "FOG Página" - -#: commons/text.php:154 -msgid "New Search" -msgstr "Nova pesquisa" - -#: commons/text.php:155 -#, php-format -msgid "List All %s" -msgstr "Listar todos os %s" - -#: commons/text.php:156 -#, php-format -msgid "Create New %s" -msgstr "Criar novo %s" - -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "tarefas" - -#: commons/text.php:158 -#, fuzzy -msgid "Client Settings" -msgstr "Configurações" +msgid " * Image replication is globally disabled" +msgstr "" -#: commons/text.php:159 #, fuzzy -msgid "Plugins" -msgstr "Plugar" +msgid " * Image size is globally disabled" +msgstr "Snapin com esse nome já existe" -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "Tarefas básicas" +msgid " * Multicast service is globally disabled" +msgstr "" -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "Membership" +msgid " * Ping hosts is globally disabled" +msgstr "" -#: commons/text.php:162 -msgid "Image Association" -msgstr "Associação imagem" +#, fuzzy +msgid " * Snapin hash is globally disabled" +msgstr "Snapin com esse nome já existe" -#: commons/text.php:163 -#, php-format -msgid "%s Menu" -msgstr "%s menu" +msgid " * Snapin replication is globally disabled" +msgstr "" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "Grupo primário" +msgid " * Task Scheduler is globally disabled" +msgstr "" -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "Todos os nós de armazenamento" +#, fuzzy +msgid " Name" +msgstr "Nome" -#: commons/text.php:166 -msgid "Add Storage Node" -msgstr "Adicionar Nó de Armazenamento" +#, fuzzy +msgid " No open slots " +msgstr "Não há vagas abertas" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "Todos os grupos de armazenamento" +msgid " Task state has been updated, now the task is queued!" +msgstr "" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "Adicionar grupo de armazenamento" +msgid " | This is not the master node" +msgstr " | Este não é o nó mestre" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "Tarefas ativas" +#, fuzzy +msgid " | Unable to find image path" +msgstr "Falha ao destruir Storage Node" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "Tarefas Multicast ativos" +msgid "$_POST variable is empty, check apache error log." +msgstr "A variável $ _POST está vazia, verifique o log de erros do apache." -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "Tarefas Snapin ativos" +#, fuzzy, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %s não é válido" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "Atividades agendadas" +#, php-format +msgid "%s ID %s is not valid" +msgstr "%s ID %s não é válido" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "Plugins instalados" +#, php-format +msgid "%s Manager" +msgstr "%s Gestor" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "instalar Plugins" +#, php-format +msgid "%s Menu" +msgstr "%s menu" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "Ative Plugins" +#, php-format +msgid "%s is required" +msgstr "%s é necessária" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "Configuração de exportação" +#, fuzzy +msgid "1 Hour" +msgstr "1 hora" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "Importar Configuração" +msgid "10 Minutes" +msgstr "10 Minutos" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "Open Source Computer Clonagem Solution" +msgid "2 Minutes" +msgstr "2 minutos" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "Inválido Endereço MAC!" +msgid "30 Minutes" +msgstr "30 minutos" -#: commons/text.php:180 -#, fuzzy -msgid "iPXE Menu Item Settings" -msgstr "Configurações" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "" -#: commons/text.php:181 -msgid "iPXE Menu Customization" -msgstr "gpxe Menu Customization" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" -msgstr "gpxe nova opção no menu" +#, fuzzy +msgid "

Version 1.5.5" +msgstr "Versão" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "Salvar alterações" +#, fuzzy +msgid "A LDAP setup already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "campo de banco de dados necessário está vazio" +#, fuzzy +msgid "A Windows Key already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:185 -msgid "No results found" -msgstr "Nenhum resultado encontrado" +#, fuzzy +msgid "A broadcast address is required" +msgstr "MAC Address é necessária" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s é necessária" +#, fuzzy +msgid "A broadcast already exists with this name" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:188 -msgid "Host Management" -msgstr "Gestão de acolhimento" +#, fuzzy +msgid "A broadcast already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "Gerenciamento de armazenamento" +msgid "A description needs to be set" +msgstr "Uma descrição precisa ser definida" -#: commons/text.php:190 -msgid "Task Management" -msgstr "Gestão de tarefas" +#, fuzzy +msgid "A file" +msgstr "Arquivo" -#: commons/text.php:191 -msgid "Client Management" -msgstr "Gestão de Clientes" +#, fuzzy +msgid "A group already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "painel de instrumentos" +#, fuzzy +msgid "A group is required for a location" +msgstr "Um grupo de armazenamento é necessário!" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "Configuração de serviço" +#, fuzzy +msgid "A group is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:194 -msgid "Report Management" -msgstr "relatório de Gestão" +#, fuzzy +msgid "A group must be selected." +msgstr "Evento deve ser uma string" -#: commons/text.php:195 -msgid "Printer Management" -msgstr "Gerenciamento de impressora" +#, fuzzy +msgid "A group name is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "Configuração FOG" +#, fuzzy +msgid "A host already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:197 -msgid "Group Management" -msgstr "grupo de Gestão" +#, fuzzy +msgid "A host name is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:198 -msgid "Image Management" -msgstr "Gestão de imagem" +#, fuzzy +msgid "A host with that name already exists" +msgstr "Um nome de host com esse nome já existe." -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "Gerenciamento de usuários" +#, fuzzy +msgid "A host with this mac already exists with name" +msgstr "Um anfitrião com este MAC já existe com Hostname: %s" -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "Informações de hardware" +msgid "A location with that name already exists." +msgstr "Um local com esse nome já existe." -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "Gestão Snapin" +#, fuzzy +msgid "A mac address is required!" +msgstr "MAC Address é necessária" -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "Gestão Plugin" +#, fuzzy +msgid "A name is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "Gestão local" +msgid "A name must be defined if using the \"name\" property" +msgstr "" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "Gestão de Controle de Acesso" +#, fuzzy +msgid "A name must be set" +msgstr "Evento deve ser uma string" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "FOG Ajuda Geral" +#, fuzzy +msgid "A password is required!" +msgstr "%s é necessária" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "Anfitriões pendentes" +#, fuzzy +msgid "A printer already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "Última Implantado" +#, fuzzy +msgid "A printer name is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:210 #, fuzzy -msgid "Last Captured" -msgstr "host criado" +msgid "A role already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "Método Deploy" +#, fuzzy +msgid "A rule already exists with this name." +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "Tipo de imagem" +#, fuzzy +msgid "A site alread exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:213 -msgid "Not Available" -msgstr "Não disponível" +#, fuzzy +msgid "A site already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "Hosts de exportação" +#, fuzzy +msgid "A snapin already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "Hosts de importação" +#, fuzzy +msgid "A snapin name is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:216 -msgid "Export Users" -msgstr "Usuários de exportação" +#, fuzzy +msgid "A subnet group already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:217 -msgid "Import Users" -msgstr "importar usuários" +msgid "A subnet group is already using this group." +msgstr "" -#: commons/text.php:218 -msgid "Export Images" -msgstr "Exportar imagens" +#, fuzzy +msgid "A subnetgroup already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:219 -msgid "Import Images" -msgstr "Import Images" +msgid "A task already exists for this host at the scheduled tasking" +msgstr "Uma tarefa já existe para este anfitrião do tasking agendada" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "Grupos de exportação" +#, fuzzy +msgid "A task state already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:221 -msgid "Import Groups" -msgstr "Grupos de importação" +#, fuzzy +msgid "A task type already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "exportação Snapins" +#, fuzzy +msgid "A user already exists with this name" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "importação Snapins" +#, fuzzy +msgid "A user name is required!" +msgstr "Um nome de imagem é necessário!" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "Impressoras de exportação" +#, fuzzy +msgid "A username already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:225 -msgid "Import Printers" -msgstr "importação Impressoras" +msgid "A valid database connection could not be made" +msgstr "" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" -msgstr "equipamento Loan" +msgid "AD Domain" +msgstr "AD Domain" -#: commons/text.php:227 -msgid "Host List" -msgstr "Lista de Host" +msgid "AD Join" +msgstr "AD Junte-se" -#: commons/text.php:228 -msgid "Imaging Log" -msgstr "imagiologia Log" +msgid "AD OU" +msgstr "AD OU" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" -msgstr "pendentes MACs" +#, fuzzy +msgid "API Settings" +msgstr "Configurações" -#: commons/text.php:230 -msgid "Snapin Log" -msgstr "Snapin Log" +msgid "API?" +msgstr "" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "carregar relatórios" +msgid "About FOG Reports" +msgstr "Sobre os relatórios FOG" -#: commons/text.php:233 -msgid "Main Menu" -msgstr "Menu principal" +msgid "Accepted" +msgstr "Aceitaram" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "Login inválido" +msgid "Access" +msgstr "Acesso" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "Não permitido aqui" +msgid "Access Control Management" +msgstr "Gestão de Controle de Acesso" -#: commons/text.php:237 -msgid "Management Login" -msgstr "Acesso de Gestão" +#, fuzzy +msgid "Access Control Role General" +msgstr "Todos os controles de acesso" -#: commons/text.php:238 -msgid "Password" -msgstr "Senha" +#, fuzzy +msgid "Access Control Rule" +msgstr "Todos os controles de acesso" -#: commons/text.php:239 -msgid "Estimated FOG Sites" -msgstr "Sites FOG estimado" +#, fuzzy +msgid "Access Control Rule General" +msgstr "Todos os controles de acesso" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "Última versão" +#, fuzzy +msgid "Access Control Rules" +msgstr "Todos os controles de acesso" -#: commons/text.php:241 #, fuzzy -msgid "Latest Development Version" -msgstr "Última versão" +msgid "Access Controls" +msgstr "Todos os controles de acesso" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "A imagem está protegida e não pode ser excluído" +msgid "Access Token" +msgstr "token de acesso" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "Snapin está protegido e não pode ser excluído" +msgid "Access level is still 0 or false" +msgstr "" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "Nenhum nós mestre são habilitadas para apagar esta imagem" +msgid "Accessed By" +msgstr "acessada por" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "Falha ao excluir arquivos de imagem" +msgid "Account already linked" +msgstr "Conta já ligados" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "Falha ao excluir arquivo" +msgid "Account linked to FOG GUI at" +msgstr "Conta vinculada ao nevoeiro GUI em" -#: commons/text.php:249 -msgid "Not Registered Hosts" -msgstr "Hosts não registrada" +#, fuzzy +msgid "Account name to reset" +msgstr "Evento deve ser uma string" -#: commons/text.php:250 -msgid "Registered Hosts" -msgstr "hosts registrados" +msgid "Account removed from FOG GUI at" +msgstr "Conta removida de FOG GUI no" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "Todos os hosts" +#, fuzzy +msgid "Account successfully added!" +msgstr "atualizado com sucesso" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "Opções de depuração" +msgid "Action" +msgstr "Açao" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "Opções avançadas" +msgid "Actions" +msgstr "Ações" -#: commons/text.php:254 -msgid "Advanced Login Required" -msgstr "Avançada Login obrigatório" +msgid "Activate Plugins" +msgstr "Ative Plugins" -#: commons/text.php:255 -msgid "Pending Registered Hosts" -msgstr "Enquanto se aguarda hosts registrados" +msgid "Active" +msgstr "Ativo" -#: commons/text.php:257 -msgid "n/a" -msgstr "n / D" +msgid "Active Directory" +msgstr "Active Directory" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "Diretório já existe" +#, fuzzy +msgid "Active Multi-cast Tasks" +msgstr "Tarefas Multicast ativos" -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "Tempo já existe" +msgid "Active Multicast Tasks" +msgstr "Tarefas Multicast ativos" -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "Usuário já existe" +msgid "Active Snapin Tasks" +msgstr "Tarefas Snapin ativos" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "Não Ativo Snapin trabalho localizado Para o Host" +msgid "Active Tasks" +msgstr "Tarefas ativas" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "Falha ao criar tarefa" +msgid "Add" +msgstr "Adicionar" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "Host já é membro de uma tarefa ativa" +msgid "Add Directory" +msgstr "Adicionar Diretório" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "Host não é válido" +msgid "Add Event" +msgstr "Adicionar Evento" -#: commons/text.php:267 #, fuzzy -msgid "Group is not valid" -msgstr "Grupo é inválido" +msgid "Add Hosts" +msgstr "Todos os hosts" -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "Tipo de tarefa não é válido" +#, fuzzy +msgid "Add LDAP server failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "A imagem não é válida" +msgid "Add MAC" +msgstr "Adicionar MAC" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "O grupo de armazenamento de imagens atribuído não é válido" +#, fuzzy +msgid "Add New Printer" +msgstr "Impressora" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "Não há snapins associados a este alojamento" +#, fuzzy +msgid "Add Printers" +msgstr "Impressora" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Snapins já são implantados para este alojamento" +#, fuzzy +msgid "Add Pushbullet Account" +msgstr "Contas Pushbullet" -#: commons/text.php:275 #, fuzzy -msgid "Could not find a Storage Node is" -msgstr "Não foi possível encontrar temporário filename" +msgid "Add Rules" +msgstr "Adicionar usuário" -#: commons/text.php:276 #, fuzzy -msgid "there one enabled within this Storage Group" -msgstr "" -"Não foi possível encontrar um nó de armazenamento Existe um ativado dentro " -"deste grupo de armazenamento" +msgid "Add Slack Account" +msgstr "Contas Slack" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" -msgstr "O nó de armazenamento grupos de armazenamento associado não é válido" +#, fuzzy +msgid "Add Snapins" +msgstr "Adicionar Snapin (s)" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "Data prevista está no passado" +msgid "Add Storage Group" +msgstr "Adicionar grupo de armazenamento" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "Uma tarefa já existe para este anfitrião do tasking agendada" +#, fuzzy +msgid "Add Storage Groups" +msgstr "Adicionar grupo de armazenamento" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "valor do minuto não é válido" +msgid "Add Storage Node" +msgstr "Adicionar Nó de Armazenamento" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "valor da hora não é válido" +#, fuzzy +msgid "Add Subnetgroup failed!" +msgstr "Adicionar snap-in falhou!" + +msgid "Add User" +msgstr "Adicionar usuário" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "Dia do valor do mês não é válido" +#, fuzzy +msgid "Add Users" +msgstr "Adicionar usuário" -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "valor do mês não é válido" +#, fuzzy +msgid "Add Windows Key failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "Dia do valor semana não é válida" +msgid "Add any custom text you would like" +msgstr "" -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "Não foi encontrada para o endereço MAC do Host" +#, fuzzy +msgid "Add broadcast failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "Por favor selecione uma opção" +#, fuzzy +msgid "Add failed" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" -msgstr "Erro múltiplos hosts devolvido para lista de endereços MAC" +#, fuzzy +msgid "Add group failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:302 -msgid "Session timeout" -msgstr "Sessão expirada" +#, fuzzy +msgid "Add host failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "Nó de armazenamento" +#, fuzzy +msgid "Add image failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "Grupo de armazenamento" +#, fuzzy +msgid "Add location failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "gráfico Ativado" +#, fuzzy, php-format +msgid "Add new role" +msgstr "Adicionar nova conta de usuário" -#: commons/text.php:307 -msgid "Master Node" -msgstr "Nó mestre" +#, fuzzy, php-format +msgid "Add new rule" +msgstr "Adicionar nova conta de usuário" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "É Mestre Node" +#, fuzzy +msgid "Add printer failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "Nome Storage Node" +#, fuzzy +msgid "Add role failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "Nó de Armazenamento Descrição" +#, fuzzy +msgid "Add rule failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" -msgstr "Endereço de IP" +#, fuzzy +msgid "Add selected hosts" +msgstr "Impressora" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "Clientes Max" +#, fuzzy +msgid "Add selected images" +msgstr "Impressora" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" -msgstr "Caminho da imagem" +#, fuzzy +msgid "Add selected printers" +msgstr "Impressora" -#: commons/text.php:314 -msgid "FTP Path" -msgstr "Caminho FTP" +#, fuzzy +msgid "Add selected rules" +msgstr "Impressora" -#: commons/text.php:315 -msgid "Snapin Path" -msgstr "Caminho Snapin" +#, fuzzy +msgid "Add selected snapins" +msgstr "Impressora" -#: commons/text.php:316 -msgid "SSL Path" -msgstr "Caminho SSL" +#, fuzzy +msgid "Add selected storage groups" +msgstr "Impressora" -#: commons/text.php:317 -msgid "Interface" -msgstr "Interface" +#, fuzzy +msgid "Add selected users" +msgstr "Impressora" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "Está ativado" +#, fuzzy +msgid "Add site failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "Gráfico is enabled" +msgid "Add snapin failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:320 -msgid "On Dashboard" -msgstr "No Painel" +#, fuzzy +msgid "Add storage node failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:321 -msgid "Management Username" -msgstr "Gestão usuário" +#, fuzzy +msgid "Add task state failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:322 -msgid "Management Password" -msgstr "Gerenciamento de senha" +#, fuzzy +msgid "Add task type failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "" +msgid "Add to group" +msgstr "Adicionar ao grupo" -#: commons/text.php:326 #, fuzzy -msgid "This setting" -msgstr "Esta configuração define " +msgid "Add user failed!" +msgstr "Adicionar snap-in falhou!" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" +msgstr "Adicionando FOGPage: %s , nó: %s" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" -msgstr "" +msgid "Adding Key" +msgstr "adicionando Key" -#: commons/text.php:329 -#, fuzzy -msgid "all current storage nodes" -msgstr "nó de armazenamento inválido" +msgid "Additional Icon elements" +msgstr "Elementos adicionais Ícone" + +msgid "Additional MACs" +msgstr "MACs adicionais" -#: commons/text.php:330 #, fuzzy -msgid "The 'Is Master Node' setting defines which" -msgstr "Esta configuração define " +msgid "Admin Group" +msgstr "modificar Grupo" -#: commons/text.php:331 -msgid "node is the distributor of the images" -msgstr "" +msgid "Advanced" +msgstr "avançado" -#: commons/text.php:332 -msgid "If you add a blank node" -msgstr "" +msgid "Advanced Actions" +msgstr "ações avançadas" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" -msgstr "" +msgid "Advanced Login Required" +msgstr "Avançada Login obrigatório" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "" +msgid "Advanced Menu Login" +msgstr "Login avançado menu" -#: commons/text.php:335 -msgid "it will distribute its store" -msgstr "" +#, fuzzy +msgid "Advanced Menu settings" +msgstr "Configurações avançadas" -#: commons/text.php:336 -msgid "which is empty" -msgstr "" +msgid "Advanced Options" +msgstr "Opções avançadas" + +msgid "Advanced Settings" +msgstr "Configurações avançadas" -#: commons/text.php:337 #, fuzzy -msgid "to all nodes in the group" -msgstr "Excluir todos os hosts dentro do grupo" +msgid "Advanced menu command" +msgstr "Login avançado menu" -#: commons/text.php:343 -msgid "Storage Node already exists" -msgstr "Nó de armazenamento já existe" +#, fuzzy +msgid "After image Action" +msgstr "grupo Local" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "IP nó de armazenamento" +msgid "Ago must be boolean" +msgstr "" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "Clientes nó de armazenamento do Max" +msgid "All" +msgstr "Todos" -#: commons/text.php:354 -msgid "Storage Node Interface" -msgstr "Interface de Armazenamento Node" +msgid "All Groups" +msgstr "Todos os Grupos" -#: commons/text.php:358 -msgid "Storage Node Username" -msgstr "Nó de armazenamento do usuário" +msgid "All Hosts" +msgstr "Todos os hosts" -#: commons/text.php:362 -msgid "Storage Node Password" -msgstr "Nó de Armazenamento senha" +#, fuzzy +msgid "All Pending MACs approved" +msgstr "Todos os MACs pendentes aprovado." -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "Nó de Armazenamento Criado" +msgid "All Pending MACs approved." +msgstr "Todos os MACs pendentes aprovado." -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "Nó de Armazenamento Atualizado" +msgid "All Storage Groups" +msgstr "Todos os grupos de armazenamento" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "Atualização de banco de dados falhou" +msgid "All Storage Nodes" +msgstr "Todos os nós de armazenamento" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "Por favor, confirme que você deseja excluir" +msgid "All files synced for this item." +msgstr "Todos os arquivos sincronizados para este item." -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "Falha ao destruir Storage Node" +msgid "All methods of binding have failed" +msgstr "" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "Nó de Armazenamento excluído" +#, fuzzy +msgid "All snapins" +msgstr "Todos os snap-ins" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" -msgstr "Nome do grupo de armazenamento" +msgid "Allows editing/creating of Task States fog currently has." +msgstr "" -#: commons/text.php:371 -msgid "Storage Group Description" -msgstr "Grupo de Armazenamento Descrição" +msgid "Allows editing/creating of Task Types fog currently has." +msgstr "" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "Grupo de armazenamento já existe" +#, fuzzy +msgid "Already created" +msgstr "Já está registado como" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "Grupo de Armazenamento Criado" +msgid "Already registered as" +msgstr "Já está registado como" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "Grupo de armazenamento Atualizado" +#, fuzzy +msgid "Also confirm that the database is indeed running" +msgstr "Verifique o banco de dados está em execução" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "Você deve ter pelo menos um grupo de armazenamento" +msgid "Although there are multiple levels already" +msgstr "" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "Grupo de armazenamento excluído" +msgid "An image already exists with this name!" +msgstr "Uma imagem já existe com este nome!" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "Falha ao destruir Grupo de Armazenamento" +msgid "Annually" +msgstr "Anualmente" -#: commons/text.php:382 -msgid "Invalid Class" -msgstr "Classe inválida" +#, fuzzy +msgid "Applications" +msgstr "Ações" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" -msgstr "Classe não é alargado de FOGPage" +#, fuzzy +msgid "Approve" +msgstr "hospedar aprovado" -#: commons/text.php:384 -msgid "Do not list on menu" -msgstr "Não lista de menus" +#, fuzzy +msgid "Approve All Pending MACs for All Hosts" +msgstr "Aprovar todos os Macs pendente para todos os hosts" -#: commons/text.php:386 -msgid "Language" -msgstr "Língua" +#, fuzzy +msgid "Approve Host" +msgstr "Aprovar este anfitrião?" -#: commons/init.php:433 #, fuzzy -msgid "Missing one or more extensions." -msgstr "Extensões ausentes" +msgid "Approve MAC" +msgstr "Aprovar todos os Macs?" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 #, fuzzy -msgid "No valid tasks found" -msgstr "Nenhuma classe válida enviada" +msgid "Approve Selected MACs" +msgstr "Aprovar Hosts selecionados" -#: lib/client/snapinclient.class.php:306 #, fuzzy -msgid "Snapin is invalid" -msgstr "Snapin não é válido" +msgid "Approve Success" +msgstr "Aprovar este anfitrião?" -#: lib/client/snapinclient.class.php:328 #, fuzzy -msgid "Snapin Task is invalid" -msgstr "Snapin não é válido" +msgid "Approve all pending macs" +msgstr "Aprovar macs pendentes selecionados" -#: lib/client/snapinclient.class.php:411 #, fuzzy -msgid "Invalid task id sent" -msgstr "tarefa inválido" +msgid "Approve all pending? " +msgstr "Aprovar macs pendentes selecionados" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" -msgstr "Inválida Snapin Tasking" +#, fuzzy +msgid "Approve selected hosts" +msgstr "Aprovar Hosts selecionados" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "Snapin inválido" +msgid "Approve this host?" +msgstr "Aprovar este anfitrião?" -#: lib/client/snapinclient.class.php:500 #, fuzzy -msgid "Invalid task id" -msgstr "tarefa inválido" +msgid "Approved" +msgstr "hospedar aprovado" -#: lib/client/snapinclient.class.php:510 #, fuzzy -msgid "Invalid Snapin Tasking object" -msgstr "Inválida Snapin Tasking" +msgid "Are you sure you wish to" +msgstr "Tem certeza de que deseja remover estes itens" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" -msgstr "Grupo de armazenamento inválido" +msgid "Array" +msgstr "" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "Inválida Storage Node" +msgid "Assigned Image" +msgstr "imagem atribuída" -#: lib/client/snapinclient.class.php:587 -#, fuzzy -msgid "Cannot connect to ftp server" -msgstr "Não é possível conectar ao banco de dados" +msgid "Assignment saved successfully" +msgstr "Atribuição salvas com sucesso" -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." -msgstr "Pendente..." +#, fuzzy +msgid "Associate rule failed!" +msgstr "Adicionar snap-in falhou!" -#: lib/client/snapinclient.class.php:628 #, fuzzy -msgid "Could not read snapin file" -msgstr "Não foi possível ler o arquivo tmp." +msgid "Associated Sites" +msgstr "Sites FOG estimado" + +msgid "Associates the files on nodes" +msgstr "" -#: lib/client/usertrack.class.php:67 #, fuzzy -msgid "Postfix requires an action of login" -msgstr "Postfix requer uma ação de login, logout, ou começar a operar" +msgid "Attempting to perform" +msgstr "A tentativa de executar ping" + +msgid "Attempting to ping" +msgstr "A tentativa de executar ping" + +msgid "Auto" +msgstr "Auto" + +msgid "Auto Log Out Time (in minutes)" +msgstr "Auto Log Out Time (em minutos)" -#: lib/client/usertrack.class.php:68 #, fuzzy -msgid "logout" -msgstr "Sair" +msgid "Available Snapins" +msgstr "Todos os snap-ins" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" -msgstr "" +msgid "BIOS Date" +msgstr "data do BIOS" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" -msgstr "Postfix requer uma ação de login, logout, ou começar a operar" +msgid "BIOS Vendor" +msgstr "BIOS Vendor" + +msgid "BIOS Version" +msgstr "Versão do BIOS" + +msgid "Bandwidth" +msgstr "Bandwidth" + +msgid "Bandwidth should be numeric and greater than 0" +msgstr "A largura de banda deve ser numérico e maior do que 0" + +msgid "Barcode Numbers" +msgstr "Números de código de barras" + +msgid "Base Only" +msgstr "" -#: lib/client/usertrack.class.php:139 #, fuzzy -msgid "Replay from journal" -msgstr "Repetição do diário: tempo de inserção reais" +msgid "Basic Settings" +msgstr "Configurações" + +msgid "Basic Tasks" +msgstr "Tarefas básicas" + +msgid "Bind DN" +msgstr "" -#: lib/client/usertrack.class.php:140 #, fuzzy -msgid "real insert time" -msgstr "Repetição do diário: tempo de inserção reais" +msgid "Bind Password" +msgstr "senha de domínio" + +msgid "Bitrate" +msgstr "Bitrate" + +msgid "Blank for default" +msgstr "Em branco para o padrão" -#: lib/client/usertrack.class.php:142 #, fuzzy -msgid "Login time" -msgstr "Entrar" +msgid "Boot Exit settings" +msgstr "anfitrião Descrição" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "" +msgid "Boot Key Sequence" +msgstr "Bota Key Sequence" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "Na pendência de Registro criado por FOG_CLIENT" +#, fuzzy +msgid "Boot Options" +msgstr "Opções de inicialização:" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 #, fuzzy -msgid "Too many MACs" -msgstr "Hospedeiro primário MAC" +msgid "Broadcast Create Fail" +msgstr "Hospedar criar falha" -#: lib/client/registerclient.class.php:110 #, fuzzy -msgid "Only allowed to have" -msgstr "Você só está autorizado a transferir" +msgid "Broadcast Create Success" +msgstr "host criado" + +msgid "Broadcast IP" +msgstr "IP de transmissão" + +msgid "Broadcast Name" +msgstr "Nome transmissão" -#: lib/client/registerclient.class.php:112 #, fuzzy -msgid "additional macs" -msgstr "MACs adicionais" +msgid "Broadcast Update Fail" +msgstr "transmitido Atualizado" -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "Precisa de seqüência de perguntar, obter, ou lista de ações" +#, fuzzy +msgid "Broadcast Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/client/updateclient.class.php:70 #, fuzzy -msgid "If action of ask or get" -msgstr "Precisa de seqüência de perguntar, obter, ou lista de ações" +msgid "Broadcast added!" +msgstr "Nome transmissão" -#: lib/client/updateclient.class.php:71 #, fuzzy -msgid "we need a file name in the request" -msgstr "" -"Se a ação de pedir ou obter, precisamos de um nome de arquivo no pedido" +msgid "Broadcast update failed!" +msgstr "transmitido Atualizado" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 #, fuzzy -msgid "Invalid data found" -msgstr "Dados inválidos" +msgid "Broadcast updated!" +msgstr "transmitido Atualizado" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" +msgid "Browse" msgstr "" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" -msgstr "Falhou ao conectar" +msgid "CPU Cache" +msgstr "cache CPU" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" -msgstr "Falhei em" +msgid "CPU Count" +msgstr "Contagem de CPU" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "Sem consulta enviada" +msgid "CPU Manufacturer" +msgstr "CPU Fabricante" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" -msgstr "Nenhum banco de dados para trabalhar fora" +msgid "CPU Max Speed" +msgstr "CPU Max Speed" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "Nenhum resultado consulta, use query () primeiro" +msgid "CPU Model" +msgstr "Modelo CPU" -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" -msgstr "Nenhuma classe válida enviada" +msgid "CPU Normal Speed" +msgstr "CPU de velocidade normal" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" -msgstr "número da linha não definido adequadamente" +msgid "CPU Speed" +msgstr "velocidade da CPU" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" -msgstr "Não há dados retornados" +msgid "CPU Type" +msgstr "Tipo de CPU" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" -msgstr "Mensagem" +msgid "CPU Version" +msgstr "Versão CPU" + +msgid "CUPS Printer" +msgstr "CUPS Printer" + +msgid "Call" +msgstr "" + +msgid "Can be a comma seperated list." +msgstr "" -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" -msgstr "Verifique o banco de dados está em execução" +msgid "Can not redeclare route" +msgstr "" -#: lib/db/pdodb.class.php:114 -#, fuzzy -msgid "SQL Error" -msgstr "Erro SQL:" +msgid "Cancelled due to new tasking." +msgstr "Cancelado devido à nova tarefa." -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" -msgstr "Mensagem de erro" +msgid "Cancelled task" +msgstr "tarefa cancelada" -#: lib/db/pdodb.class.php:208 -#, fuzzy -msgid "No link established to the database" -msgstr "Sem conexão com o banco de dados" +msgid "Cannot add Primary mac as additional mac" +msgstr "Não é possível adicionar mac primária como mac adicional" -#: lib/db/pdodb.class.php:264 #, fuzzy -msgid "No query passed" -msgstr "Sem consulta enviada" +msgid "Cannot add a pre-existing primary mac" +msgstr "" +"Não é possível adicionar um MAC primária pré-existente como um MAC pendente" -#: lib/db/pdodb.class.php:290 #, fuzzy -msgid "no database to" -msgstr "Nenhum banco de dados para trabalhar fora" +msgid "Cannot bind to the LDAP server" +msgstr "Não é possível conectar ao banco de dados" -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" -msgstr "Sem conexão com o banco de dados" +msgid "Cannot cancel tasks this way" +msgstr "Não é possível cancelar tarefas desta forma" -#: lib/db/pdodb.class.php:426 -msgid "Error Code" -msgstr "Erro de código" +msgid "Cannot change image when in tasking" +msgstr "" -#: lib/db/pdodb.class.php:430 -msgid "Debug" -msgstr "Depurar" +#, fuzzy +msgid "Cannot connect to" +msgstr "Não é possível ligar para o nó." -#: lib/db/pdodb.class.php:435 msgid "Cannot connect to database" msgstr "Não é possível conectar ao banco de dados" -#: lib/db/pdodb.class.php:449 #, fuzzy -msgid "Database connection unavailable" -msgstr "atualização de banco de dados falhou" +msgid "Cannot connect to ftp server" +msgstr "Não é possível conectar ao banco de dados" -#: lib/fog/bootmenu.class.php:1498 #, fuzzy -msgid "No valid storage nodes found" -msgstr "nó de armazenamento inválido" +msgid "Cannot create tasking as image is not enabled" +msgstr "Não é possível definir tarefas como a imagem não está habilitado" -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "Registrado" +msgid "Cannot set tasking as image is not enabled" +msgstr "Não é possível definir tarefas como a imagem não está habilitado" -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "Evento deve ser uma string" +#, fuzzy +msgid "Cannot set tasking to invalid hosts" +msgstr "Não é possível definir taskings para pendente ou artigos inválidos" -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" +#, fuzzy +msgid "Cannot set tasking to pending hosts" +msgstr "Não é possível definir taskings para pendente ou artigos inválidos" + +msgid "Cannot view from browser" msgstr "" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "Classe deve estender evento" +msgid "Capone Deploy" +msgstr "Capone Deploy" -#: lib/fog/eventmanager.class.php:76 #, fuzzy -msgid "Second paramater must be in array(class,function)" -msgstr "" -"Segundo parâmetro deve estar no formato array (classe Hook, função a ser " -"executada)" +msgid "Capture" +msgstr "Crio" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "Classe deve estender gancho" +#, fuzzy +msgid "Captured" +msgstr "Criado" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "O método não existe" +#, fuzzy +msgid "Change password" +msgstr "Gerenciamento de senha" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" +msgid "Channel call is invalid" +msgstr "chamada de canal é inválido" + +msgid "Chassis Asset" +msgstr "chassis de ativos" + +msgid "Chassis Manufacturer" +msgstr "chassis Fabricante" + +msgid "Chassis Serial" +msgstr "chassis Serial" + +msgid "Chassis Version" +msgstr "chassis Versão" + +msgid "Chat is also available on the forums for more realtime help" msgstr "" -#: lib/fog/eventmanager.class.php:102 #, fuzzy -msgid "Could not register" -msgstr "Não foi possível criar impressora" +msgid "Check here to see what hosts can be added" +msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 #, fuzzy -msgid "Event" -msgstr "Adicionar Evento" +msgid "Check here to see what images can be added" +msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" -#: lib/fog/eventmanager.class.php:107 -#, fuzzy -msgid "Class" -msgstr "tarefas" +msgid "Check here to see what printers can be added" +msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" -#: lib/fog/eventmanager.class.php:147 #, fuzzy -msgid "Event Data must be an array" -msgstr "Evento deve ser uma string" +msgid "Check here to see what rules can be added" +msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "" +msgid "Check here to see what snapins can be added" +msgstr "Verifique aqui para ver o que snapins podem ser adicionadas" -#: lib/fog/eventmanager.class.php:165 #, fuzzy -msgid "Could not notify" -msgstr "Não foi possível ler o arquivo tmp." +msgid "Check here to see what storage groups can be added" +msgstr "Verifique aqui para ver o que snapins podem ser adicionadas" -#: lib/fog/fogbase.class.php:443 #, fuzzy -msgid "Class name must be a string" -msgstr "Evento deve ser uma string" +msgid "Check here to see what users can be added" +msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "Anfitrião inválido" +msgid "Check that database is running" +msgstr "Verifique o banco de dados está em execução" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 #, fuzzy -msgid "Key must be a string or index" -msgstr "Evento deve ser uma string" +msgid "Checkin Time" +msgstr "Tarefa Checkin Tempo" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." +msgid "Checking if I am the group manager" msgstr "" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" -msgstr "No Data" - -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" -msgstr "Não é um número" - -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" +msgid "Checksum" msgstr "" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" +msgid "Checksums" msgstr "" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" -msgstr "" +msgid "City/State/Zip" +msgstr "Cidade / Estado / CEP" -#: lib/fog/fogbase.class.php:1347 #, fuzzy -msgid "Unit of time must be a string" -msgstr "Evento deve ser uma string" +msgid "Class" +msgstr "tarefas" -#: lib/fog/fogbase.class.php:1351 -#, fuzzy -msgid "In" -msgstr "Dentro " +msgid "Class is not extended from FOGPage" +msgstr "Classe não é alargado de FOGPage" -#: lib/fog/fogbase.class.php:1354 -#, fuzzy -msgid "ago" -msgstr " atrás" +msgid "Class must extend event" +msgstr "Classe deve estender evento" + +msgid "Class must extend hook" +msgstr "Classe deve estender gancho" -#: lib/fog/fogbase.class.php:1382 #, fuzzy -msgid "Old key must be a string" +msgid "Class name must be a string" msgstr "Evento deve ser uma string" -#: lib/fog/fogbase.class.php:1385 +msgid "Clear" +msgstr "Claro" + #, fuzzy -msgid "New key must be a string" -msgstr "Evento deve ser uma string" +msgid "Clear Fields" +msgstr "Limpar histórico" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" -msgstr "" +#, fuzzy +msgid "Clear all fields?" +msgstr "Limpar histórico" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" -msgstr "" +#, fuzzy +msgid "Clear all history" +msgstr "Limpar histórico" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "caminho da chave privada não encontrados" +msgid "Click" +msgstr "Clique" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "chave privada não encontrados" +msgid "Click Here" +msgstr "Clique aqui" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" -msgstr "chave privada não pode ser lido" +msgid "Client" +msgstr "Cliente" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "chave privada falhou" +msgid "Client Count" +msgstr "Contagem de cliente" -#: lib/fog/fogbase.class.php:1677 -#, fuzzy -msgid "Failed to decrypt data on server" -msgstr "Falha ao descriptografar dados" +msgid "Client Management" +msgstr "Gestão de Clientes" -#: lib/fog/fogbase.class.php:1910 -#, fuzzy -msgid "Txt must be a string" -msgstr "Evento deve ser uma string" +msgid "Client Modules Change Fail" +msgstr "" -#: lib/fog/fogbase.class.php:1913 #, fuzzy -msgid "Level must be an integer" -msgstr "Evento deve ser uma string" +msgid "Client Modules Change Success" +msgstr "Impressora já existe" -#: lib/fog/fogbase.class.php:1941 #, fuzzy -msgid "String must be a string" -msgstr "Evento deve ser uma string" +msgid "Client Settings" +msgstr "Configurações" + +msgid "Client Updater" +msgstr "Updater cliente" -#: lib/fog/fogbase.class.php:2067 #, fuzzy -msgid "Key must be a string" -msgstr "Evento deve ser uma string" +msgid "Client Version" +msgstr "Versão CPU" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" -msgstr "Linha" +msgid "Clients" +msgstr "clientes" -#: lib/fog/fogcontroller.class.php:129 #, fuzzy -msgid "Table not defined for this class" -msgstr "Nenhuma tabela de banco de dados definidos para esta classe" +msgid "Command" +msgstr "Snapin Command" -#: lib/fog/fogcontroller.class.php:132 -#, fuzzy -msgid "Fields not defined for this class" -msgstr "Nenhum campo de banco de dados definidos para esta classe" +msgid "Complete" +msgstr "Completo" -#: lib/fog/fogcontroller.class.php:145 #, fuzzy -msgid "Record not found" -msgstr "Registro não encontrado, erro: %s" - -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" -msgstr "Retornando valor da chave" +msgid "Complete Time" +msgstr "Tarefa Checkin Tempo" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "Valor" +msgid "Completed" +msgstr "concluído" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" -msgstr "Nenhuma chave que está sendo solicitado" +#, fuzzy +msgid "Completed imaging" +msgstr "concluído" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" -msgstr "Chave inválida sendo definido" +msgid "Compression" +msgstr "Compressão" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" -msgstr "Definir Key" +msgid "Computer Information" +msgstr "Informações sobre o computador" -#: lib/fog/fogcontroller.class.php:267 #, fuzzy -msgid "Set failed" -msgstr "atualização do Service falhou" +msgid "Computer Model" +msgstr "Modelo de impressora" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 #, fuzzy -msgid "Key" -msgstr "DMI Key" +msgid "Config File" +msgstr "Printer Arquivo de Configuração" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "Chave inválida que está sendo adicionado" +msgid "Configuration" +msgstr "Configuração" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "adicionando Key" +#, fuzzy +msgid "Configuration Import/Export" +msgstr "Configuração" + +msgid "Configuration Save" +msgstr "Guardar configuração" -#: lib/fog/fogcontroller.class.php:317 #, fuzzy -msgid "Add failed" -msgstr "Adicionar snap-in falhou!" +msgid "Confirm tasking" +msgstr "tarefa inválido" -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" -msgstr "Chave inválida a ser removido" +msgid "Conflicting path/file" +msgstr "" -#: lib/fog/fogcontroller.class.php:359 #, fuzzy -msgid "Removing Key" -msgstr "Definir Key" +msgid "Copy from existing" +msgstr "Não foi possível criar impressora" -#: lib/fog/fogcontroller.class.php:371 #, fuzzy -msgid "Remove failed" -msgstr "Removido" +msgid "Could not find a Storage Node in this group" +msgstr "" +"Não foi possível encontrar um nó de armazenamento, há um ativado dentro " +"deste grupo?" -#: lib/fog/fogcontroller.class.php:456 #, fuzzy -msgid "Saving data for" -msgstr "Salvando dados para %s objeto" +msgid "Could not find a Storage Node is" +msgstr "Não foi possível encontrar temporário filename" -#: lib/fog/fogcontroller.class.php:458 #, fuzzy -msgid "object" -msgstr "Objeto" +msgid "Could not find any" +msgstr "Não foi possível encontrar temporário filename" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" -msgstr "identidade" +msgid "Could not find temp filename" +msgstr "Não foi possível encontrar temporário filename" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "" +#, fuzzy +msgid "Could not notify" +msgstr "Não foi possível ler o arquivo tmp." -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" -msgstr "foi atualizado com sucesso" +#, fuzzy +msgid "Could not read snapin file" +msgstr "Não foi possível ler o arquivo tmp." -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" -msgstr "não foi capaz de salvar" +msgid "Could not read tmp file." +msgstr "Não foi possível ler o arquivo tmp." -#: lib/fog/fogcontroller.class.php:516 #, fuzzy -msgid "Database save failed" -msgstr "atualização de banco de dados falhou" +msgid "Could not register" +msgstr "Não foi possível criar impressora" -#: lib/fog/fogcontroller.class.php:542 -#, fuzzy -msgid "Key field must be a string" -msgstr "Evento deve ser uma string" +msgid "Create" +msgstr "Crio" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 #, fuzzy -msgid "Operation field not set" -msgstr "Campo operação não definido: %s" +msgid "Create Image" +msgstr "Criar Data" + +#, php-format +msgid "Create New %s" +msgstr "Criar novo %s" -#: lib/fog/fogcontroller.class.php:588 #, fuzzy -msgid "Loading data to field" -msgstr "Carregamento de dados para o campo %s" +msgid "Create New Access Control Role" +msgstr "Todos os controles de acesso" -#: lib/fog/fogcontroller.class.php:606 #, fuzzy -msgid "Load failed" -msgstr "Carga falhou: %s" +msgid "Create New Key" +msgstr "Criar novo %s" -#: lib/fog/fogcontroller.class.php:668 #, fuzzy -msgid "Invalid key being destroyed" -msgstr "Chave inválida a ser removido" +msgid "Create New LDAP" +msgstr "Criar novo %s" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 #, fuzzy -msgid "has been successfully destroyed" -msgstr "foi atualizado com sucesso" +msgid "Create New Location" +msgstr "Criar novo %s" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 #, fuzzy -msgid "has failed to destroy" -msgstr "falhou para ser destruído" +msgid "Create New Printer" +msgstr "Criar novo %s" -#: lib/fog/fogcontroller.class.php:750 #, fuzzy -msgid "Destroy failed" -msgstr "Destrua falhou: %s" +msgid "Create New Snapin" +msgstr "Criar novo %s" -#: lib/fog/fogcontroller.class.php:831 #, fuzzy -msgid "Invalid key being requested" -msgstr "Chave inválida a ser removido" +msgid "Create New SubnetGroup?" +msgstr "Criar novo grupo" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" -msgstr "" +msgid "Create New iPXE Menu Entry" +msgstr "Criar Nova gpxe entrada do menu" -#: lib/fog/fogcontroller.class.php:877 #, fuzzy -msgid "Invalid ID passed" -msgstr "unidade inválido passado" +msgid "Create Report?" +msgstr "Criar relatório" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" -msgstr "fracassado" +#, fuzzy +msgid "Create Rule?" +msgstr "Criar usuário" -#: lib/fog/fogcore.class.php:40 -msgid "day" -msgstr "" +#, fuzzy +msgid "Create Site" +msgstr "Crio" -#: lib/fog/fogcore.class.php:49 #, fuzzy -msgid "hr" -msgstr "Aqui" +msgid "Create Storage Group" +msgstr "Nó de armazenamento" -#: lib/fog/fogcore.class.php:58 #, fuzzy -msgid "min" -msgstr "minutos" +msgid "Create Storage Node" +msgstr "Nó de armazenamento" -#: lib/fog/fogcore.class.php:76 #, fuzzy -msgid "Running Windows" -msgstr "executando a Versão" +msgid "Create Task state" +msgstr "Estado de Nova Tarefa" -#: lib/fog/fogcore.class.php:88 #, fuzzy -msgid "Unavailable" -msgstr "Não disponível" +msgid "Create Task type" +msgstr "Estado de Nova Tarefa" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" -msgstr "Selecione um tipo de cron" +#, fuzzy +msgid "Create WOL Broadcast?" +msgstr "todas as transmissões" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" -msgstr "Anual" +#, fuzzy +msgid "Create new PM Schedule" +msgstr "Criar novo %s" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" -msgstr "Anualmente" +msgid "Create new group" +msgstr "Criar novo grupo" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "Por mês" +#, fuzzy +msgid "Create user?" +msgstr "Criar usuário" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "Semanal" +msgid "Created By" +msgstr "Criado por" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" -msgstr "Diariamente" +#, fuzzy +msgid "Created Tasks For" +msgstr "Criar usuário" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" -msgstr "meia-noite" +msgid "Created by FOG Reg on" +msgstr "Criado por FOG Reg em" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" -msgstr "de hora em hora" +msgid "Created file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/fog/fogftp.class.php:219 #, fuzzy -msgid "FTP connection failed" -msgstr "Conexão FTP falhou" +msgid "Credits" +msgstr "Crio" -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" -msgstr "Nenhum campo passado" +msgid "Cron" +msgstr "cron" -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" -msgstr "Não há valores passados" +msgid "Cron Schedule" +msgstr "Horário cron" + +msgid "Cross platform" +msgstr "" -#: lib/fog/fogmanagercontroller.class.php:603 #, fuzzy -msgid "No data to insert" -msgstr "Não há dados retornados" +msgid "Current Associations" +msgstr "Associação imagem" -#: lib/fog/fogmanagercontroller.class.php:909 #, fuzzy -msgid "No items found" -msgstr "Nenhum ícone encontrado" +msgid "Current Power Management settings" +msgstr "Gerenciamento de usuários" + +msgid "Current Records" +msgstr "Registros atuais" -#: lib/fog/fogmanagercontroller.class.php:987 #, fuzzy -msgid "Nothing passed to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "Current Sessions" +msgstr "Associação imagem" -#: lib/fog/fogpage.class.php:236 #, fuzzy -msgid "ID Must be set to edit" -msgstr "Devem ser criptografados" +msgid "Current files" +msgstr "Registros atuais" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, fuzzy, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %s não é válido" +#, fuzzy +msgid "Current settings" +msgstr "Configurações" -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" -msgstr "ID de acolhimento" +msgid "DMI Field" +msgstr "DMI campo" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" -msgstr "nome do host" +msgid "DMI Key" +msgstr "DMI Key" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" -msgstr "hospedar MAC" +msgid "DMI Result" +msgstr "Resultado DMI" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" -msgstr "hospedar desconto" +msgid "Daily" +msgstr "Diariamente" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "ID Inventory" +msgid "Dashboard" +msgstr "painel de instrumentos" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "Desc Inventory" +msgid "Data is blank" +msgstr "" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" -msgstr "Usuário principal" +msgid "Data must be an array or a callable item." +msgstr "" + +#, fuzzy +msgid "Database" +msgstr "Encontro" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" -msgstr "Outros Tag 1" +#, fuzzy +msgid "Database Failure" +msgstr "Atualização de banco de dados falhou" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "Outros Tag 2" +#, fuzzy +msgid "Database Reverted" +msgstr "alterações banco de dados revertido" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" -msgstr "sistema Fabricante" +msgid "Database SQL" +msgstr "" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" -msgstr "sistema de Produto" +msgid "Database Schema Installer / Updater" +msgstr "Banco de dados de esquema Instalador / Updater" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" -msgstr "Versão do sistema" +msgid "Database Update Failed" +msgstr "Atualização de banco de dados falhou" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" -msgstr "Serial sistema" +#, fuzzy +msgid "Database changes reverted!" +msgstr "alterações banco de dados revertido" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" -msgstr "Tipo de sistema" +#, fuzzy +msgid "Database connection unavailable" +msgstr "atualização de banco de dados falhou" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" -msgstr "Versão do BIOS" +#, fuzzy +msgid "Database imported and added successfully!" +msgstr "Banco de dados importado e adicionado com sucesso" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "BIOS Vendor" +#, fuzzy +msgid "Database not available" +msgstr "atualização de banco de dados falhou" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" -msgstr "data do BIOS" +#, fuzzy +msgid "Database save failed" +msgstr "atualização de banco de dados falhou" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "MB Fabricante" +msgid "Date" +msgstr "Encontro" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "Nome MB" +#, fuzzy +msgid "Date and Time" +msgstr "Anfitrião Update Failed" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "MB Versão" +msgid "Date of checkout" +msgstr "Data de check-out" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "MB Serial" +msgid "Day of month value is not valid" +msgstr "Dia do valor do mês não é válido" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "MB de ativos" +msgid "Day of week value is not valid" +msgstr "Dia do valor semana não é válida" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" -msgstr "CPU Fabricante" +msgid "Debug" +msgstr "Depurar" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" -msgstr "Versão CPU" +msgid "Debug Options" +msgstr "Opções de depuração" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "velocidade da CPU" +msgid "Default" +msgstr "Padrão" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" -msgstr "CPU Max Speed" +msgid "Default Height" +msgstr "padrão Altura" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "Memória" +#, fuzzy +msgid "Default Item" +msgstr "Item padrão:" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" -msgstr "HD Modelo" +msgid "Default Refresh Rate" +msgstr "Padrão Refresh Rate" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" -msgstr "HD Firmware" +msgid "Default Width" +msgstr "Largura padrão" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "HD Serial" +#, fuzzy +msgid "Default is disabled" +msgstr "As doações são deficientes" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "chassis Fabricante" +msgid "Default log out time (in minutes)" +msgstr "Padrão log out tempo (em minutos)" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" -msgstr "chassis Versão" +msgid "Delayed" +msgstr "atrasado" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "chassis Serial" +msgid "Delayed Start" +msgstr "Início Programado" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "chassis de ativos" +msgid "Delete" +msgstr "Excluir" -#: lib/fog/fogpage.class.php:643 #, fuzzy -msgid "Group Associations" -msgstr "grupo Local" - -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "Criar novo grupo" +msgid "Delete Fail" +msgstr "Apagar dados de arquivo" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "Adicionar ao grupo" +msgid "Delete MACs" +msgstr "excluir MACs" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 #, fuzzy -msgid "Make changes?" -msgstr "Salvar alterações" +msgid "Delete Menu Item" +msgstr "Excluir todos os itens selecionados" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 msgid "Delete Selected" msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 #, fuzzy -msgid "Delete selected" +msgid "Delete Selected Items" +msgstr "Excluir todos os itens selecionados" + +#, fuzzy +msgid "Delete Selected MACs" msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" -msgstr "Requer modelos para processar" +#, fuzzy +msgid "Delete Success" +msgstr "usuário criado" -#: lib/fog/fogpage.class.php:1019 #, fuzzy -msgid "Cannot set tasking to invalid hosts" -msgstr "Não é possível definir taskings para pendente ou artigos inválidos" +msgid "Delete all PM tasks?" +msgstr "Excluir todos os selecionados %s s" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 #, fuzzy -msgid "Cannot set tasking to pending hosts" -msgstr "Não é possível definir taskings para pendente ou artigos inválidos" +msgid "Delete files" +msgstr "Apagar dados de arquivo" -#: lib/fog/fogpage.class.php:1034 #, fuzzy -msgid "Invalid object to try tasking" -msgstr "tipo de objeto inválido passado" +msgid "Delete hosts within" +msgstr "Excluir todos os hosts dentro do grupo" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" -msgstr "Não é possível definir tarefas como a imagem não está habilitado" +#, fuzzy +msgid "Delete selected" +msgstr "Delete Selected" -#: lib/fog/fogpage.class.php:1092 #, fuzzy -msgid "Host Associated Snapins" -msgstr "No nó associado" +msgid "Delete selected hosts" +msgstr "Excluir Hosts selecionados" + +msgid "Deleted" +msgstr "excluídos" -#: lib/fog/fogpage.class.php:1119 #, fuzzy -msgid "Host Unassociated Snapins" -msgstr "No nó associado" +msgid "Deleted Success" +msgstr "usuário criado" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" -msgstr "Editar Anfitrião" +#, fuzzy +msgid "Deleting remote file" +msgstr "Excluindo arquivo remoto" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" -msgstr "edição de imagem" +msgid "Deploy" +msgstr "implantar" + +msgid "Deploy Method" +msgstr "Método Deploy" -#: lib/fog/fogpage.class.php:1218 #, fuzzy -msgid "Confirm tasking" -msgstr "tarefa inválido" +msgid "Deploy/Capture" +msgstr "implantar" + +msgid "Description" +msgstr "Descrição" -#: lib/fog/fogpage.class.php:1223 #, fuzzy -msgid "Image Associated: " -msgstr "Associação imagem" +msgid "Destroy failed" +msgstr "Destrua falhou: %s" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "Configurações avançadas" +msgid "Destroyed assignment" +msgstr "atribuição destruída" -#: lib/fog/fogpage.class.php:1243 #, fuzzy -msgid "Please select the snapin you want to install" -msgstr "Por favor, selecione o snap-in que você deseja implantar" +msgid "Destroyed assignments" +msgstr "atribuição destruída" -#: lib/fog/fogpage.class.php:1253 #, fuzzy -msgid "Account name to reset" +msgid "Detailed documentation" +msgstr "Falha ao criar sessão" + +#, fuzzy +msgid "Device must be a string" msgstr "Evento deve ser uma string" -#: lib/fog/fogpage.class.php:1274 +msgid "Diff parameter must be numeric" +msgstr "" + #, fuzzy -msgid "Schedule with shutdown" -msgstr "Cronograma" +msgid "Directories" +msgstr "Diretório" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "Wake on LAN?" +msgid "Directory" +msgstr "Diretório" + +msgid "Directory Already Exists" +msgstr "Diretório já existe" + +msgid "Directory Cleaner" +msgstr "Cleaner diretório" + +#, fuzzy +msgid "Disabled" +msgstr "ativado" + +msgid "Display" +msgstr "Exibição" + +msgid "Do not list on menu" +msgstr "Não lista de menus" + +msgid "Domain Password" +msgstr "senha de domínio" + +msgid "Domain Password Legacy" +msgstr "Domínio senha Legado" + +msgid "Domain Username" +msgstr "domínio usuário" + +msgid "Domain name" +msgstr "Nome do domínio" + +msgid "Donate to FOG" +msgstr "Doe ao nevoeiro" + +msgid "Done" +msgstr "Feito" -#: lib/fog/fogpage.class.php:1313 -#, fuzzy -msgid "Schedule as debug task" -msgstr "Agendar tarefa como uma tarefa de depuração" +msgid "Done, Failed to create tasking" +msgstr "Feito, Falha ao criar tasking" -#: lib/fog/fogpage.class.php:1323 -#, fuzzy -msgid "Schedule instant" -msgstr "Cronograma" +msgid "Done, with imaging!" +msgstr "Feito, com a imagem!" -#: lib/fog/fogpage.class.php:1335 -#, fuzzy -msgid "Schedule delayed" -msgstr "Cronograma" +msgid "Done, without imaging!" +msgstr "Feito, sem imagem!" -#: lib/fog/fogpage.class.php:1340 #, fuzzy -msgid "Date and Time" -msgstr "Anfitrião Update Failed" +msgid "Done, without imaging! Invalid Login!" +msgstr "Feito, sem imagem!" -#: lib/fog/fogpage.class.php:1373 #, fuzzy -msgid "Schedule cron-style" -msgstr "Scheduler" +msgid "Done, without imaging! No image assigned!" +msgstr "Feito, nenhuma imagem atribuída!" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "Crio" +msgid "Dot in Filename not allowed!" +msgstr "" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" -msgstr "tasking" +msgid "Download Failed" +msgstr "Falha no download" -#: lib/fog/fogpage.class.php:1445 #, fuzzy -msgid "Hosts in task" -msgstr "Hotéis em Task" +msgid "Downloading Initrd" +msgstr "baixar" -#: lib/fog/fogpage.class.php:1556 #, fuzzy -msgid "Invalid scheduling type" -msgstr "tipo inválido" +msgid "Downloading Kernel" +msgstr "baixar" -#: lib/fog/fogpage.class.php:1595 -#, fuzzy -msgid "minute" -msgstr "minutos" +msgid "Dropped" +msgstr "Desistiu" + +msgid "Duration" +msgstr "Duração" -#: lib/fog/fogpage.class.php:1604 #, fuzzy -msgid "hour" -msgstr "1 hora" +msgid "ESC is defaulted" +msgstr "Ativado como padrão" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" -msgstr "" +msgid "Edit" +msgstr "Editar" -#: lib/fog/fogpage.class.php:1622 -#, fuzzy -msgid "month" -msgstr "Por mês" +msgid "Edit Host" +msgstr "Editar Anfitrião" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" -msgstr "" +msgid "Edit Image" +msgstr "edição de imagem" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "tipo de tarefa não é válido" +msgid "Edit Node" +msgstr "Editar Nó" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "redefinição de senha requer uma conta de usuário para redefinir" +msgid "Edit User" +msgstr "Editar usuário" -#: lib/fog/fogpage.class.php:1663 -#, fuzzy -msgid "There are no hosts to task in this group" -msgstr "Não existem grupos neste servidor." +msgid "Either reboot or shutdown action must be used." +msgstr "" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" +msgid "Email" +msgstr "O email" + +msgid "Enable location Sending" msgstr "" -#: lib/fog/fogpage.class.php:1678 -#, fuzzy -msgid "Cannot create tasking as image is not enabled" -msgstr "Não é possível definir tarefas como a imagem não está habilitado" +msgid "Enabled" +msgstr "ativado" -#: lib/fog/fogpage.class.php:1685 -#, fuzzy -msgid "The assigned image is protected" -msgstr "Nenhuma selecionada ou item é protegido" +msgid "Enabled as default" +msgstr "Ativado como padrão" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" -msgstr "" +msgid "End" +msgstr "Fim" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" -msgstr "" +msgid "End Date" +msgstr "Data final" -#: lib/fog/fogpage.class.php:1700 -#, fuzzy -msgid "Multicast tasks from groups" -msgstr "MulticastTask" +msgid "End Time" +msgstr "Fim do tempo" -#: lib/fog/fogpage.class.php:1702 -#, fuzzy -msgid "require all hosts have the same image" -msgstr "Hosts não tem a mesma imagem atribuídas" +msgid "Engineer" +msgstr "Engenheiro" -#: lib/fog/fogpage.class.php:1722 #, fuzzy -msgid "No valid hosts found and" -msgstr "Nenhuma classe válida enviada" +msgid "Enter a group name to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1723 -#, fuzzy -msgid "or no valid images specified" -msgstr "Nenhuma imagem especificada" +msgid "Enter a hostname to search for" +msgstr "Digite um nome de host para pesquisar" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 #, fuzzy -msgid "Tasking Failed" -msgstr "tasking" +msgid "Enter a location name to search for" +msgstr "Digite um nome de host para pesquisar" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 #, fuzzy -msgid "Failed to create tasking" -msgstr "Falha ao criar tarefa" +msgid "Enter a model name to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1803 #, fuzzy -msgid "Failed to create scheduled tasking" -msgstr "Falha ao criar tarefa" +msgid "Enter a site name to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1806 #, fuzzy -msgid "Scheduled tasks successfully created" -msgstr "foi atualizado com sucesso" +msgid "Enter a snapin name to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1812 #, fuzzy -msgid "Failed to start tasking type" -msgstr "Falha ao iniciar a tarefa de implantação" - -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "Horário cron" - -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" -msgstr "Início Programado" +msgid "Enter a term to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 -#, fuzzy -msgid "Tasked Successfully" -msgstr "Salvo com sucesso" +msgid "Enter a username to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1882 #, fuzzy -msgid "Successfully created" -msgstr "atualizado com sucesso" +msgid "Enter an image name to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:1889 #, fuzzy -msgid "Created Tasks For" -msgstr "Criar usuário" +msgid "Enter an user name to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -#, fuzzy -msgid "Remove these items?" -msgstr "Remover snapins selecionados" +msgid "Equipment Loan" +msgstr "equipamento Loan" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 -#, fuzzy -msgid "Unable to Authenticate" -msgstr "servidor entrar em contato com erro" +msgid "Error" +msgstr "Erro" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 -#, fuzzy -msgid "Successfully deleted" -msgstr "atualizado com sucesso" +msgid "Error Code" +msgstr "Erro de código" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 -#, fuzzy -msgid "Delete Success" -msgstr "usuário criado" +msgid "Error Message" +msgstr "Mensagem de erro" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "Ver tarefas avançadas desta" +msgid "Error Opening DB File" +msgstr "Erro abrir arquivo DB" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "ações avançadas" +msgid "Error multiple hosts returned for list of mac addresses" +msgstr "Erro múltiplos hosts devolvido para lista de endereços MAC" -#: lib/fog/fogpage.class.php:2314 -#, fuzzy -msgid "Clear all fields?" -msgstr "Limpar histórico" +msgid "Error performing query" +msgstr "consulta a realização de erro" -#: lib/fog/fogpage.class.php:2317 #, fuzzy -msgid "Clear Fields" -msgstr "Limpar histórico" +msgid "Error: Failed to download initrd" +msgstr "Erro: falha ao baixar do kernel" -#: lib/fog/fogpage.class.php:2321 -#, fuzzy -msgid "Join Domain after deploy" -msgstr "Junte-se ao domínio após a tarefa de imagem" +msgid "Error: Failed to download kernel" +msgstr "Erro: falha ao baixar do kernel" -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "Nome do domínio" +msgid "Error: Failed to open temp file" +msgstr "Erro: Falha ao abrir o arquivo temporário" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "Unidade organizacional" +msgid "Errors" +msgstr "erros" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "Em branco para o padrão" +#, fuzzy +msgid "Errors on revert detected!" +msgstr "Erros em revert detectado" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "domínio usuário" +msgid "Especially when your organization has many hosts" +msgstr "" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "senha de domínio" +msgid "Estimated FOG Sites" +msgstr "Sites FOG estimado" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "Domínio senha Legado" +#, fuzzy +msgid "Event" +msgstr "Adicionar Evento" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "Devem ser criptografados" +#, fuzzy +msgid "Event Data must be an array" +msgstr "Evento deve ser uma string" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" +msgid "Event and data are not set" msgstr "" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" +msgid "Event must be a string" +msgstr "Evento deve ser uma string" + +msgid "Exists item must be boolean" msgstr "" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" +msgid "Exit to Hard Drive Type" +msgstr "Sair para Tipo de disco rígido" + +msgid "Exit to Hard Drive Type(EFI)" +msgstr "Sair para Tipo de disco rígido (EFI)" + +msgid "Expand All" msgstr "" -#: lib/fog/fogpage.class.php:2588 -msgid "Error: Failed to open temp file" -msgstr "Erro: Falha ao abrir o arquivo temporário" +msgid "Export" +msgstr "Exportar" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" -msgstr "Erro: falha ao baixar do kernel" +#, fuzzy +msgid "Export Accesscontrols" +msgstr "Controle de acesso" -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "Falha no download" +msgid "Export CSV" +msgstr "CSV de exportação" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "tamanho do arquivo" +#, fuzzy +msgid "Export Checksums" +msgstr "Hosts de exportação" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "Coloque Vendors MAC" +#, fuzzy +msgid "Export Complete" +msgstr "Completo" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "Não encontrado" +msgid "Export Configuration" +msgstr "Configuração de exportação" -#: lib/fog/fogpage.class.php:2779 #, fuzzy -msgid "Delete hosts within" -msgstr "Excluir todos os hosts dentro do grupo" +msgid "Export Database" +msgstr "Encontro" -#: lib/fog/fogpage.class.php:2788 #, fuzzy -msgid "Delete files" -msgstr "Apagar dados de arquivo" +msgid "Export Database?" +msgstr "Encontro" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" -msgstr "é protegido, a remoção não permitidos" +msgid "Export Groups" +msgstr "Grupos de exportação" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" -msgstr "Falha ao destruir" +msgid "Export Hosts" +msgstr "Hosts de exportação" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" -msgstr "suprimido" +msgid "Export Images" +msgstr "Exportar imagens" -#: lib/fog/fogpage.class.php:3323 #, fuzzy -msgid "Delete Fail" -msgstr "Apagar dados de arquivo" +msgid "Export LDAPs" +msgstr "Export PDF" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 #, fuzzy -msgid " Name" -msgstr "Nome" +msgid "Export Locations" +msgstr "anfitrião Localização" -#: lib/fog/fogpage.class.php:3600 -#, fuzzy -msgid "Remove " -msgstr "Remover" +msgid "Export PDF" +msgstr "Export PDF" -#: lib/fog/fogpage.class.php:3607 -#, fuzzy -msgid "Remove selected " -msgstr "Remover snapins selecionados" +msgid "Export Printers" +msgstr "Impressoras de exportação" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 -msgid "Export CSV" -msgstr "CSV de exportação" +#, fuzzy +msgid "Export Sites" +msgstr "Impressoras de exportação" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" -msgstr "Importar" +msgid "Export Snapins" +msgstr "exportação Snapins" -#: lib/fog/fogpage.class.php:3788 #, fuzzy -msgid "List" -msgstr "Linha" +msgid "Export Subnetgroups" +msgstr "Grupos de exportação" -#: lib/fog/fogpage.class.php:3806 #, fuzzy -msgid "Import CSV" -msgstr "CSV de exportação" +msgid "Export Task States" +msgstr "Unidos Task" -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" -msgstr "Max Size" +#, fuzzy +msgid "Export Task Types" +msgstr "Tipos de tarefa" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" -msgstr "" +msgid "Export Users" +msgstr "Usuários de exportação" -#: lib/fog/fogpage.class.php:3824 #, fuzzy -msgid "Import CSV?" -msgstr "CSV de exportação" +msgid "Export WOLBroadcasts" +msgstr "anfitrião Localização" -#: lib/fog/fogpage.class.php:3852 #, fuzzy -msgid "This page allows you to upload a CSV file into FOG to ease" -msgstr "Esta configuração define o nome de usuário proxy para usar." +msgid "Export Windows Keys" +msgstr "Windows 8" -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" +msgid "Extension" +msgstr "Extensão" + +msgid "FOG" +msgstr "NÉVOA" + +msgid "FOG 1.2.0 and earlier" msgstr "" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" +msgid "FOG 1.2.0 and earlier." msgstr "" -#: lib/fog/fogpage.class.php:3888 #, fuzzy -msgid "File must be a csv" -msgstr "Evento deve ser uma string" +msgid "FOG Client" +msgstr "FOG Cliente Wiki" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" -msgstr "Não foi possível encontrar temporário filename" +msgid "FOG Client Download" +msgstr "FOG Download Client" -#: lib/fog/fogpage.class.php:3929 -#, fuzzy -msgid "Invalid data being parsed" -msgstr "Token inválido passado" +msgid "FOG Client Installer" +msgstr "FOG Cliente Installer" -#: lib/fog/fogpage.class.php:3941 -#, fuzzy -msgid "One or more macs are associated with a host" -msgstr "Erro, é uma imagem associada com este anfitrião" +msgid "FOG Client Service Updater" +msgstr "FOG Service Client Updater" -#: lib/fog/fogpage.class.php:3966 -#, fuzzy -msgid "This host already exists" -msgstr "Impressora já existe" +msgid "FOG Client Wiki" +msgstr "FOG Cliente Wiki" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" -msgstr "Resultados" +msgid "FOG Client on Github" +msgstr "Cliente FOG no Github" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" -msgstr "total de linhas" +msgid "FOG Configuration" +msgstr "Configuração FOG" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "Bem sucedido" +msgid "FOG Crypt" +msgstr "FOG Crypt" + +msgid "FOG Equipment Loan Form" +msgstr "FOG forma de empréstimo Equipment" + +msgid "FOG Forums" +msgstr "FOG Fóruns" + +msgid "FOG General Help" +msgstr "FOG Ajuda Geral" -#: lib/fog/fogpage.class.php:4154 #, fuzzy -msgid "Schedule Power" -msgstr "Scheduler" +msgid "FOG History - Search" +msgstr "FOG User Login História Resumo - Pesquisa" -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" -msgstr "" +msgid "FOG Home Page" +msgstr "FOG Página" -#: lib/fog/fogpage.class.php:4217 #, fuzzy -msgid "Create new PM Schedule" -msgstr "Criar novo %s" +msgid "FOG Host - Search" +msgstr "FOG User Login História Resumo - Pesquisa" -#: lib/fog/fogpage.class.php:4227 #, fuzzy -msgid "New power management task" -msgstr "Gerenciamento de usuários" +msgid "FOG Host Inventory - Search" +msgstr "FOG User Login História Resumo - Pesquisa" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "Sem FOGPage classe encontrada para este nó" +#, fuzzy +msgid "FOG Host and Users - Search" +msgstr "Hosts nevoeiro e Usuários Entrar" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "Falha ao renderizar a página: Nó %s , Erro: %s" +msgid "FOG Hosts and Users Login" +msgstr "Hosts nevoeiro e Usuários Entrar" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" -msgstr "Nenhum valor classe enviada" +#, fuzzy +msgid "FOG Imaging - Search" +msgstr "FOG User Login História Resumo - Pesquisa" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" -msgstr "No nó associado" +msgid "FOG Imaging Log" +msgstr "FOG imagem Log" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" -msgstr "Adicionando FOGPage: %s , nó: %s" +msgid "FOG License Information" +msgstr "Informações FOG License" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" -msgstr "" +msgid "FOG Log Viewer" +msgstr "FOG Visualizador de Log" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "Selecione uma imagem válida" +msgid "FOG Managed Printers" +msgstr "FOG Managed Impressoras" -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" -msgstr "Há uma série de tarefas" +msgid "FOG PXE Boot Menu Configuration" +msgstr "Configuração do menu FOG Boot PXE" -#: lib/fog/group.class.php:452 #, fuzzy -msgid "No hosts to task" -msgstr "Hotéis em Task" +msgid "FOG Project" +msgstr "Projeto FOG no Github" -#: lib/fog/group.class.php:475 -#, fuzzy -msgid "No hosts available to task" -msgstr "Hotéis em Task" +msgid "FOG Project on Github" +msgstr "Projeto FOG no Github" -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "A imagem não está habilitado" +msgid "FOG Reports exist to give you information about what" +msgstr "" + +msgid "FOG Settings" +msgstr "Configurações FOG" -#: lib/fog/group.class.php:502 #, fuzzy -msgid "Unable to find master Storage Node" -msgstr "Falha ao destruir Storage Node" +msgid "FOG Snapin - Search" +msgstr "FOG User Login História Resumo - Pesquisa" -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "Este MAC pertence para outro host" +msgid "FOG Sourceforge Page" +msgstr "FOG Sourceforge Página" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" -msgstr "Não é possível adicionar mac primária como mac adicional" +msgid "FOG System Settings" +msgstr "Configurações do sistema FOG" -#: lib/fog/host.class.php:498 #, fuzzy -msgid "Cannot add a pre-existing primary mac" +msgid "FOG User tracking - Search" +msgstr "FOG User Login História Resumo - Pesquisa" + +#, fuzzy +msgid "FOG User tracking history" +msgstr "FOG usuário Sumário Login História" + +#, fuzzy +msgid "FOG Version" +msgstr "Versão do BIOS" + +msgid "FOG Version Information" +msgstr "FOG Informação da versão" + +msgid "FOG Virus Summary" +msgstr "Resumo FOG Virus" + +msgid "FOG Wiki" +msgstr "FOG Wiki" + +msgid "FOG database you can do so using" msgstr "" -"Não é possível adicionar um MAC primária pré-existente como um MAC pendente" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." -msgstr "Cancelado devido à nova tarefa." +msgid "FOG did is now called Power Management" +msgstr "" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "Falha ao criar Snapin Job" +msgid "FOG is unable to communicate with the database" +msgstr "" + +msgid "FOG server defaulting under the folder" +msgstr "" + +msgid "FTP Connection has failed" +msgstr "Conexão FTP falhou" + +msgid "FTP Path" +msgstr "Caminho FTP" -#: lib/fog/host.class.php:1371 #, fuzzy -msgid "Could not find any" -msgstr "Não foi possível encontrar temporário filename" +msgid "FTP connection failed" +msgstr "Conexão FTP falhou" -#: lib/fog/host.class.php:1372 #, fuzzy -msgid "nodes containing this image" -msgstr "Não foi possível encontrar todos os nós que contêm esta imagem" +msgid "Fail to destroy" +msgstr "Falha ao destruir" -#: lib/fog/host.class.php:1538 -#, fuzzy -msgid "No valid Image defined for this host" -msgstr "Sem Imagem definida para este alojamento" +msgid "Failed" +msgstr "fracassado" -#: lib/fog/host.class.php:1689 -#, fuzzy -msgid "No viable macs to use" -msgstr "Não é capaz de atualizar" +msgid "Failed to" +msgstr "Falhei em" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "O endereço MAC já está sendo usado por outro host" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" +msgstr "Falha ao renderizar a página: Nó %s , Erro: %s" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 #, fuzzy -msgid "snapin" -msgstr "Snapin" +msgid "Failed to add snapin" +msgstr "Falha ao adicionar arquivo de snap-in / atualização" -#: lib/fog/host.class.php:1768 -#, fuzzy -msgid "per host" -msgstr "snap-in por host" +msgid "Failed to add/update snapin file" +msgstr "Falha ao adicionar arquivo de snap-in / atualização" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "Você só está autorizado a transferir" +msgid "Failed to connect" +msgstr "Falhou ao conectar" -#: lib/fog/system.class.php:38 -#, fuzzy -msgid "Your system PHP Version is not sufficient" -msgstr "" -"Sua versão sistemas PHP não é suficiente. Você tem a versão %s , versão %s é " -"necessária." +msgid "Failed to create" +msgstr "Falha ao criar" -#: lib/fog/system.class.php:39 -#, fuzzy -msgid "You have version" -msgstr "Última versão" +msgid "Failed to create Host" +msgstr "Falha ao criar o Host" -#: lib/fog/system.class.php:41 -#, fuzzy -msgid "version" -msgstr "Versão" +msgid "Failed to create Session" +msgstr "Falha ao criar sessão" + +msgid "Failed to create Snapin Job" +msgstr "Falha ao criar Snapin Job" -#: lib/fog/system.class.php:43 #, fuzzy -msgid "is required" -msgstr "%s é necessária" +msgid "Failed to create inventory for this host" +msgstr "Falha ao criar o inventário para este alojamento!" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "" +msgid "Failed to create new Group" +msgstr "Falha ao criar novo grupo" -#: lib/fog/powermanagementmanager.class.php:112 #, fuzzy -msgid "Wake On Lan" -msgstr "Wake on LAN?" +msgid "Failed to create scheduled tasking" +msgstr "Falha ao criar tarefa" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "Impressora TCP / IP" +msgid "Failed to create task" +msgstr "Falha ao criar tarefa" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" -msgstr "iPrint Printer" +#, fuzzy +msgid "Failed to create tasking" +msgstr "Falha ao criar tarefa" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" -msgstr "impressora de rede" +#, fuzzy +msgid "Failed to decrypt data on server" +msgstr "Falha ao descriptografar dados" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" -msgstr "CUPS Printer" +msgid "Failed to delete file" +msgstr "Falha ao excluir arquivo" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "cron" +msgid "Failed to delete image files" +msgstr "Falha ao excluir arquivos de imagem" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "atrasado" +msgid "Failed to destroy" +msgstr "Falha ao destruir" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "Não foi possível ler o arquivo tmp." +msgid "Failed to destroy Storage Group" +msgstr "Falha ao destruir Grupo de Armazenamento" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "Erro abrir arquivo DB" +msgid "Failed to destroy Storage Node" +msgstr "Falha ao destruir Storage Node" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "consulta a realização de erro" +msgid "Failed to install plugin" +msgstr "Falha ao instalar o plug-in" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "" +msgid "Failed to save assignment" +msgstr "Falha ao salvar a atribuição" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" -msgstr "" +msgid "Failed to save plugin" +msgstr "Falha ao salvar plug-in" -#: lib/fog/schema.class.php:325 #, fuzzy -msgid "Fields and types must have equal count" -msgstr "O campo e os valores não têm parâmetros iguais." - -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" -msgstr "" +msgid "Failed to start tasking type" +msgstr "Falha ao iniciar a tarefa de implantação" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" -msgstr "Por favor selecione uma opção" +msgid "Failed to update" +msgstr "Falha ao atualizar" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." -msgstr "" +#, fuzzy +msgid "Failed to update Host" +msgstr "Falha ao atualizar" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." -msgstr "" +msgid "Failed to update Session" +msgstr "Falha ao atualizar Session" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." -msgstr "" +msgid "Failed to update Task" +msgstr "Falha ao atualizar Task" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." -msgstr "" +#, fuzzy +msgid "Failed to update imaging log" +msgstr "Falha ao atualizar / criar o registo de imagem" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" -msgstr "entrada numérica inválida" +msgid "Failed to update task" +msgstr "Falha ao atualizar tarefa" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" -msgstr "Objeto" +#, fuzzy +msgid "Failed to update task log" +msgstr "Falha ao atualizar tarefa" -#: lib/fog/foggetset.class.php:73 -msgid "Array" -msgstr "" +msgid "Failed to update/create image log" +msgstr "Falha ao atualizar / criar o registo de imagem" -#: lib/fog/foggetset.class.php:89 -#, fuzzy -msgid "Set Failed" -msgstr "fracassado" +msgid "Failed to update/create task log" +msgstr "Falha ao atualizar / criar log tarefa" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" -msgstr "Voltando matriz dentro chave" +msgid "Failed to write file to disk" +msgstr "Falha ao gravar arquivo em disco" -#: lib/fog/reportmaker.class.php:157 #, fuzzy -msgid "Invalid Type" -msgstr "tipo inválido" +msgid "Fields and types must have equal count" +msgstr "O campo e os valores não têm parâmetros iguais." -#: lib/fog/reportmaker.class.php:333 #, fuzzy -msgid "Export Complete" -msgstr "Completo" - -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "Ícone do Arquivo não encontrado" +msgid "Fields not defined for this class" +msgstr "Nenhum campo de banco de dados definidos para esta classe" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "Nenhum ícone encontrado" +msgid "File" +msgstr "Arquivo" -#: lib/fog/uploadexception.class.php:50 #, fuzzy -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "O arquivo enviado excede a directiva upload_max_filesize em php.ini" - -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" -msgstr "" +msgid "File Integrity Management" +msgstr "Gerenciamento de impressora" -#: lib/fog/uploadexception.class.php:57 -#, fuzzy -msgid "The uploaded file exceeds the max_file_size" -msgstr "O arquivo enviado excede a directiva upload_max_filesize em php.ini" +msgid "File System Information" +msgstr "Informações sobre o arquivo do sistema" -#: lib/fog/uploadexception.class.php:58 #, fuzzy -msgid "directive specified in the HTML form" -msgstr "" -"O arquivo enviado excede a directiva max_file_size especificado no " -"formulário HTML" +msgid "File does not exist" +msgstr "Arquivo não existe" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" -msgstr "O arquivo enviado foi apenas parcialmente carregado" +msgid "File hash mismatch" +msgstr "Incompatibilidade de hash de arquivo" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "Nenhum arquivo foi transferido" +#, fuzzy +msgid "File must be a csv" +msgstr "Evento deve ser uma string" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" -msgstr "Faltando uma pasta temporária" +#, fuzzy +msgid "File or path cannot be reached" +msgstr " | Arquivo ou o caminho não pode ser alcançado" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" -msgstr "Falha ao gravar arquivo em disco" +#, fuzzy +msgid "File size mismatch" +msgstr "Incompatibilidade de tamanho de arquivo" -#: lib/fog/uploadexception.class.php:74 msgid "File upload stopped by an extension" msgstr "De upload de arquivos parado por uma extensão" -#: lib/fog/uploadexception.class.php:79 #, fuzzy -msgid "Unknown upload error occurred" -msgstr "Ocorreu um erro de upload desconhecido. Código de retorno: " +msgid "Filesize" +msgstr "tamanho do arquivo" -#: lib/fog/uploadexception.class.php:80 #, fuzzy -msgid "Return code" -msgstr "Código de retorno" +msgid "Filter" +msgstr "Arquivo" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" -msgstr "usuário conectado com sucesso em" +#, fuzzy +msgid "Finding any images associated" +msgstr "Não snapins associado" -#: lib/fog/user.class.php:312 -msgid "user failed to login" -msgstr "utilizador não conseguiu iniciar sessão" +#, fuzzy +msgid "Finding any snapins associated" +msgstr "Não snapins associado" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "Endereço IP Changed" +msgid "For example, a GPO policy to push" +msgstr "" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" -msgstr "User Agent Changed" +msgid "Force" +msgstr "Força" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" -msgstr "Sessão alterada indevidamente" +msgid "Force task to start" +msgstr "Força-tarefa para começar" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 #, fuzzy -msgid "Node must be a string" -msgstr "Evento deve ser uma string" +msgid "Form" +msgstr "Formato" + +msgid "Forums are the most common and fastest method of getting" +msgstr "" + +msgid "Found" +msgstr "" -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" +msgid "Found a scheduled task that should run." msgstr "" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." +msgid "Found a wake on lan task that should run." msgstr "" -#: lib/fog/fogsubmenu.class.php:313 #, fuzzy -msgid "Info" -msgstr "Dentro " +msgid "Found login information" +msgstr "FOG Informação da versão" -#: lib/fog/fogsubmenu.class.php:563 #, fuzzy -msgid "Title must be a string" -msgstr "Evento deve ser uma string" +msgid "Found snapin information" +msgstr "FOG Informação da versão" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 -#, fuzzy -msgid "Link must be a string" -msgstr "Evento deve ser uma string" +msgid "Free" +msgstr "" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" -msgstr "Serial" +#, fuzzy +msgid "Free Disk Space" +msgstr "Espaço em disco usado" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "Abre uma conexão VNC para" +msgid "Free Memory" +msgstr "Memoria livre" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" -msgstr "" +#, fuzzy +msgid "Friendly Name" +msgstr "Nome Kernel" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" -msgstr "FOG Cliente Installer" +#, fuzzy +msgid "Full History Export" +msgstr "Exportação inventário completo" -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" -msgstr "Novo Cliente e Utilities" +msgid "Full Inventory Export" +msgstr "Exportação inventário completo" -#: lib/pages/clientmanagementpage.class.php:87 #, fuzzy -msgid "The installers for the fog client" -msgstr "" -"Esta configuração define o nome de usuário utilizado para o cliente ssh." +msgid "Function" +msgstr "Açao" -#: lib/pages/clientmanagementpage.class.php:89 #, fuzzy -msgid "Client Version" -msgstr "Versão CPU" +msgid "Function does not exist" +msgstr "O método não existe" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" +msgid "GNU Gneral Public License" msgstr "" -#: lib/pages/clientmanagementpage.class.php:98 -#, fuzzy -msgid "more secure" -msgstr "importar usuários" +msgid "General" +msgstr "Geral" + +msgid "General Information" +msgstr "Informação geral" -#: lib/pages/clientmanagementpage.class.php:99 #, fuzzy -msgid "faster" -msgstr "Encontro" +msgid "Generate" +msgstr "Geral" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" +msgid "Generic LDAP" msgstr "" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" +msgid "Getting image size for" msgstr "" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" +msgid "Getting snapin hash and size for" msgstr "" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" +msgid "Goto task list" msgstr "" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "" +msgid "Graph Enabled" +msgstr "gráfico Ativado" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" +msgid "Graphical" +msgstr "Gráfico" + +msgid "Green FOG" +msgstr "FOG verde" + +msgid "Group" +msgstr "Grupo" + +#, fuzzy +msgid "Group Associations" +msgstr "grupo Local" + +msgid "Group Auto Logout" msgstr "" -#: lib/pages/clientmanagementpage.class.php:119 +msgid "Group Bios Exit Type" +msgstr "Grupo Bios Tipo Exit" + #, fuzzy -msgid "Network Installer" -msgstr "impressora de rede" +msgid "Group Create Fail" +msgstr "Grupo Criar falhou" -#: lib/pages/clientmanagementpage.class.php:126 #, fuzzy -msgid "This is the recommended installer to use now" -msgstr "" -"Este é o instalador recomendado o uso de agora. Ele pode ser usado no " -"Windows, Linux e Mac OS X." +msgid "Group Create Success" +msgstr "usuário criado" -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" -msgstr "" +msgid "Group Description" +msgstr "descrição do grupo" -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "Linux" +msgid "Group EFI Exit Type" +msgstr "Grupo EFI Tipo Exit" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" +#, fuzzy +msgid "Group FOG Client Module configuration" +msgstr "Host Configuration Printer" + +msgid "Group Kernel" +msgstr "grupo Kernel" + +msgid "Group Kernel Arguments" +msgstr "Argumentos Grupo Kernel" + +msgid "Group Management" +msgstr "grupo de Gestão" + +msgid "Group Member Attribute" msgstr "" -#: lib/pages/clientmanagementpage.class.php:130 +msgid "Group Name" +msgstr "Nome do grupo" + #, fuzzy -msgid "Smart Installer" -msgstr "Smart Installer (recomendado)" +msgid "Group Power Management Remove" +msgstr "Gerenciamento de usuários" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" -msgstr "" +msgid "Group Primary Disk" +msgstr "Primary Disk grupo" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "Ajuda e Guia" +#, fuzzy +msgid "Group Printers" +msgstr "Impressoras de exportação" -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" -msgstr "" +msgid "Group Product Key" +msgstr "Grupo de Chave de Produto" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" -msgstr "" +#, fuzzy +msgid "Group Quick Deploy" +msgstr "Implantação rápida" + +msgid "Group Screen Resolution" +msgstr "Resolução da tela Grupo" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 #, fuzzy -msgid "NOTE" -msgstr "NÃO" +msgid "Group Search DN" +msgstr "anfitrião Pesquisa" -#: lib/pages/clientmanagementpage.class.php:152 -msgid "Forums are the most common and fastest method of getting" +msgid "Group Search DN did not return any results" msgstr "" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" -msgstr "" +#, fuzzy +msgid "Group Snapins" +msgstr "exportação Snapins" -#: lib/pages/clientmanagementpage.class.php:161 #, fuzzy -msgid "Detailed documentation" -msgstr "Falha ao criar sessão" +msgid "Group Update Fail" +msgstr "Grupo Criar falhou" -#: lib/pages/clientmanagementpage.class.php:162 #, fuzzy -msgid "It is primarily geared for the smart installer methodology now" -msgstr "" -"A documentação detalhada. Ele é voltado principalmente para a metodologia " -"instalador inteligente agora." +msgid "Group Update Success" +msgstr "usuário criado" -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" -msgstr "FOG Cliente Wiki" +#, fuzzy +msgid "Group added!" +msgstr "grupo adicionado" -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" -msgstr "" +#, fuzzy +msgid "Group general" +msgstr "grupo Kernel" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" -msgstr "" +#, fuzzy +msgid "Group image" +msgstr "Nome do grupo" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "" +#, fuzzy +msgid "Group image association" +msgstr "grupo Local" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "" +#, fuzzy +msgid "Group is not valid" +msgstr "Grupo é inválido" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" -msgstr "" +#, fuzzy +msgid "Group module settings" +msgstr "anfitrião Descrição" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" -msgstr "FOG Fóruns" +#, fuzzy +msgid "Group update failed!" +msgstr "atualização do utilizador falhou" -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" -msgstr "anfitriões pendentes" +#, fuzzy +msgid "Group updated!" +msgstr "grupo adicionado" -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "Clique" +msgid "Groups" +msgstr "grupos" -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "rever." +msgid "Groups are not allowed to schedule upload tasks" +msgstr "" -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" -msgstr "macs pendentes" +msgid "HD Device" +msgstr "dispositivo HD" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" -msgstr "Servidor web" +msgid "HD Firmware" +msgstr "HD Firmware" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "Carga média" +msgid "HD Model" +msgstr "HD Modelo" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" -msgstr "Uptime sistema" +msgid "HD Serial" +msgstr "HD Serial" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" -msgstr "Visão geral do sistema" +msgid "Hard Disk Firmware" +msgstr "Hard Disk Firmware" -#: lib/pages/dashboardpage.class.php:254 -#, fuzzy -msgid "Server information at a glance." -msgstr "informações LDAP atualizado!" +msgid "Hard Disk Model" +msgstr "Modelo de disco rígido" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" -msgstr "Actividade do Grupo de Armazenamento" +msgid "Hard Disk Serial Number" +msgstr "Hard Disk Número de série" + +msgid "Hardware Information" +msgstr "Informações de hardware" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" +msgid "Hash" msgstr "" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" -msgstr "Uso nó de armazenamento do disco" - -#: lib/pages/dashboardpage.class.php:303 -#, fuzzy -msgid "Selected node's disk usage" -msgstr "o uso do disco de armazenamento de imagem do nó selecionado" +msgid "Have not locked the host for access" +msgstr "" -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" -msgstr "Imagem Ao longo dos últimos 30 dias" +msgid "Height must be 120 pixels." +msgstr "" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "2 minutos" +msgid "Help and Guide" +msgstr "Ajuda e Guia" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" -msgstr "10 Minutos" +msgid "Hide Menu" +msgstr "FECHAR" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "30 minutos" +msgid "Hide Menu Timeout" +msgstr "Timeout FECHAR" -#: lib/pages/dashboardpage.class.php:407 #, fuzzy -msgid "1 Hour" -msgstr "1 hora" +msgid "History Graph" +msgstr "Ver Histórico para" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" -msgstr "" +#, fuzzy +msgid "History ID" +msgstr "ID de acolhimento" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" -msgstr "" +#, fuzzy +msgid "History IP" +msgstr "Ver Histórico para" -#: lib/pages/dashboardpage.class.php:447 #, fuzzy -msgid "No Data Available" -msgstr "Não disponível" +msgid "History Info" +msgstr "Ver Histórico para" -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "" +#, fuzzy +msgid "History Time" +msgstr "Ver Histórico para" -#: lib/pages/dashboardpage.class.php:481 #, fuzzy -msgid "Node is unavailable" -msgstr "Nenhum de hash disponíveis" +msgid "History User" +msgstr "Ver Histórico para" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" -msgstr "" +msgid "Home" +msgstr "Casa" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" -msgstr "" +msgid "Home Address" +msgstr "Endereço residencial" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" -msgstr "Projeto FOG no Github" +msgid "Home Phone" +msgstr "Telefone residencial" -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" -msgstr "Cliente FOG no Github" +msgid "Host" +msgstr "Anfitrião" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" -msgstr "FOG Wiki" +#, fuzzy +msgid "Host AD Domain" +msgstr "AD Domain" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" -msgstr "Doe ao nevoeiro" +#, fuzzy +msgid "Host AD Join" +msgstr "AD Junte-se" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" -msgstr "FOG Informação da versão" +#, fuzzy +msgid "Host AD OU" +msgstr "ID de acolhimento" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" -msgstr "Versões do kernel" +#, fuzzy +msgid "Host Add to Group Fail" +msgstr "Adicionar ao grupo" -#: lib/pages/fogconfigurationpage.class.php:145 #, fuzzy -msgid "FOG Version" -msgstr "Versão do BIOS" +msgid "Host Add to Group Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" -msgstr "Informações FOG License" +#, fuzzy +msgid "Host Associated" +msgstr "No nó associado" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" -msgstr "" +#, fuzzy +msgid "Host Associated Snapins" +msgstr "No nó associado" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" +msgid "Host Auto Logout" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" -msgstr "" +msgid "Host Bios Exit Type" +msgstr "Hospedar Bios Tipo Exit" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" -msgstr "" +#, fuzzy +msgid "Host Create Fail" +msgstr "Hospedar criar falha" -#: lib/pages/fogconfigurationpage.class.php:220 #, fuzzy -msgid "In FOG" -msgstr "Dentro " +msgid "Host Create Success" +msgstr "host criado" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" -msgstr "" +msgid "Host Created" +msgstr "host criado" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" -msgstr "" +msgid "Host Desc" +msgstr "hospedar desconto" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" -msgstr "" +msgid "Host Description" +msgstr "anfitrião Descrição" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" -msgstr "" +msgid "Host EFI Exit Type" +msgstr "Hospedar EFI Tipo Exit" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" -msgstr "" +#, fuzzy +msgid "Host FOG Client Module configuration" +msgstr "Host Configuration Printer" -#: lib/pages/fogconfigurationpage.class.php:226 #, fuzzy -msgid "to get the requested Kernel" -msgstr "Nenhuma chave que está sendo solicitado" +msgid "Host HD Device" +msgstr "dispositivo HD" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" -msgstr "" +msgid "Host Hardware Inventory" +msgstr "Inventário de hardware de acolhimento" -#: lib/pages/fogconfigurationpage.class.php:279 -#, fuzzy -msgid "Downloading Kernel" -msgstr "baixar" +msgid "Host ID" +msgstr "ID de acolhimento" -#: lib/pages/fogconfigurationpage.class.php:285 -#, fuzzy -msgid "Starting process" -msgstr "processo a partir ..." +msgid "Host Image" +msgstr "Image Host" -#: lib/pages/fogconfigurationpage.class.php:307 -#, fuzzy -msgid "Save Kernel" -msgstr "Núcleo" +msgid "Host Imaging History" +msgstr "Hospedar História Imagiologia" -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" -msgstr "Nome Kernel" +#, fuzzy +msgid "Host Init" +msgstr "Lista de Host" -#: lib/pages/fogconfigurationpage.class.php:332 #, fuzzy -msgid "Install Kernel" +msgid "Host Invalid" +msgstr "Lista de Host" + +msgid "Host Kernel" msgstr "hospedar Kernel" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 -#, fuzzy -msgid "Install" -msgstr "Instalar / Atualizar Falha!" +msgid "Host Kernel Arguments" +msgstr "Hospedar argumentos do kernel" -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "Configuração do menu FOG Boot PXE" +msgid "Host List" +msgstr "Lista de Host" -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" -msgstr "" +msgid "Host Listing Export" +msgstr "Hospedar Listing Export" -#: lib/pages/fogconfigurationpage.class.php:465 -#, fuzzy -msgid "Option specifies the color settings of the main menu items" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "Host Location" +msgstr "anfitrião Localização" -#: lib/pages/fogconfigurationpage.class.php:469 -#, fuzzy -msgid "Valid Host Colors" -msgstr "Anfitrião inválido" +msgid "Host Login History" +msgstr "Hospedar Entrada História" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 -#, fuzzy -msgid "Option specifies the color text on the menu if the host" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "Host MAC" +msgstr "hospedar MAC" -#: lib/pages/fogconfigurationpage.class.php:479 -#, fuzzy -msgid "is valid" -msgstr "Dados são inválidos" +msgid "Host Management" +msgstr "Gestão de acolhimento" -#: lib/pages/fogconfigurationpage.class.php:483 #, fuzzy -msgid "Invalid Host Colors" -msgstr "Anfitrião inválido" +msgid "Host Membership" +msgstr "Membership" -#: lib/pages/fogconfigurationpage.class.php:494 -#, fuzzy -msgid "is invalid" -msgstr "Dados são inválidos" +msgid "Host Memory" +msgstr "Memória de acolhimento" -#: lib/pages/fogconfigurationpage.class.php:498 -msgid "Main pairings" -msgstr "" +msgid "Host Name" +msgstr "Nome do host" -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" -msgstr "" +msgid "Host Pending MAC" +msgstr "Hospedar Pendente MAC" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" -msgstr "" +msgid "Host Primary Disk" +msgstr "Hospedar rígido primário" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" -msgstr "" +msgid "Host Primary MAC" +msgstr "Hospedeiro primário MAC" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" -msgstr "" +#, fuzzy +msgid "Host Printers" +msgstr "Impressoras de exportação" + +msgid "Host Product Key" +msgstr "Hospedar de Chave de Produto" -#: lib/pages/fogconfigurationpage.class.php:526 #, fuzzy -msgid "Host pairings" +msgid "Host Product Keys" +msgstr "Hospedar de Chave de Produto" + +msgid "Host Registration" +msgstr "Registro de acolhimento" + +msgid "Host Screen Resolution" +msgstr "A resolução de tela de acolhimento" + +#, fuzzy +msgid "Host Site" msgstr "Lista de Host" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "" +#, fuzzy +msgid "Host Snapin History" +msgstr "História Snapin" + +#, fuzzy +msgid "Host Snapins" +msgstr "exportação Snapins" -#: lib/pages/fogconfigurationpage.class.php:538 #, fuzzy -msgid "Menu Timeout" -msgstr "Timeout FECHAR" +msgid "Host Status" +msgstr "estado" -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:549 #, fuzzy -msgid "Option specifies the menu timeout" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "Host Unassociated Snapins" +msgstr "No nó associado" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "" +#, fuzzy +msgid "Host Update Fail" +msgstr "Anfitrião Update Failed" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "" +msgid "Host Update Failed" +msgstr "Anfitrião Update Failed" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "" +#, fuzzy +msgid "Host Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" -msgstr "" +#, fuzzy +msgid "Host Virus History" +msgstr "Histórico de vírus" -#: lib/pages/fogconfigurationpage.class.php:567 #, fuzzy -msgid "Option specifies the background file to use" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "Host added!" +msgstr "hospedar acrescentou" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" -msgstr "" +msgid "Host approval failed." +msgstr "aprovação anfitrião falhou." + +msgid "Host approved" +msgstr "hospedar aprovado" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 #, fuzzy -msgid "Make Changes?" -msgstr "Salvar alterações" +msgid "Host description" +msgstr "anfitrião Descrição" -#: lib/pages/fogconfigurationpage.class.php:598 #, fuzzy -msgid "iPXE Menu Settings" -msgstr "Configurações" +msgid "Host general" +msgstr "hospedar Kernel" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "" +msgid "Host is already a member of an active task" +msgstr "Host já é membro de uma tarefa ativa" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" -msgstr "Sem menu" +msgid "Host is not valid" +msgstr "Host não é válido" -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" -msgstr "" +#, fuzzy +msgid "Host module settings" +msgstr "anfitrião Descrição" -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" -msgstr "" +msgid "Host name" +msgstr "nome do host" -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" -msgstr "" +#, fuzzy +msgid "Host pairings" +msgstr "Lista de Host" -#: lib/pages/fogconfigurationpage.class.php:631 #, fuzzy -msgid "If there is not a task set" -msgstr "Há uma série de tarefas" +msgid "Host printer configuration" +msgstr "Host Configuration Printer" -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" +msgid "Host token is currently in use" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:635 #, fuzzy -msgid "if there is a task" -msgstr "Há uma série de tarefas" +msgid "Host updated!" +msgstr "usuário atualizada" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" -msgstr "" +msgid "Host/Group Name" +msgstr "Nome do host / Grupo" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" -msgstr "FECHAR" +msgid "Hostname" +msgstr "hostname" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" -msgstr "" +msgid "Hostname / IP" +msgstr "Nome / IP" + +msgid "Hostname Changer" +msgstr "hostname Changer" + +msgid "Hosts" +msgstr "Hosts" -#: lib/pages/fogconfigurationpage.class.php:649 #, fuzzy -msgid "If none is specified" -msgstr "Nenhuma imagem especificada" +msgid "Hosts Associated" +msgstr "Não snapins associado" + +msgid "Hosts do not have the same image assigned" +msgstr "Hosts não tem a mesma imagem atribuídas" -#: lib/pages/fogconfigurationpage.class.php:651 #, fuzzy -msgid "ESC is defaulted" -msgstr "Ativado como padrão" +msgid "Hosts in task" +msgstr "Hotéis em Task" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" -msgstr "" +#, fuzzy +msgid "Hot Key Enabled" +msgstr "imagem Ativado" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" -msgstr "" +#, fuzzy +msgid "Hot Key to use" +msgstr "Não é capaz de atualizar" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" -msgstr "Timeout FECHAR" +msgid "Hour value is not valid" +msgstr "valor da hora não é válido" -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "Hourly" +msgstr "de hora em hora" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" -msgstr "Bota Key Sequence" +msgid "I am not the fog web server" +msgstr "Eu não sou o servidor web nevoeiro" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" -msgstr "" +#, fuzzy +msgid "I am the group manager" +msgstr " | Eu sou o único membro" -#: lib/pages/fogconfigurationpage.class.php:678 #, fuzzy -msgid "access to the hidden menu system" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "I have read" +msgstr "imagem criada" -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" +msgid "I.M.C." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" -msgstr "Sair para Tipo de disco rígido" - -#: lib/pages/fogconfigurationpage.class.php:721 -#, fuzzy -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" - -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "Sair para Tipo de disco rígido (EFI)" +msgid "I.M.I." +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:729 -#, fuzzy -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" +msgid "ID" +msgstr "identidade" -#: lib/pages/fogconfigurationpage.class.php:758 #, fuzzy -msgid "Boot Exit settings" -msgstr "anfitrião Descrição" - -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" -msgstr "Login avançado menu" +msgid "ID Must be set to edit" +msgstr "Devem ser criptografados" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" -msgstr "" +msgid "IP Address" +msgstr "Endereço de IP" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "" +msgid "IP Address Changed" +msgstr "Endereço IP Changed" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" -msgstr "" +msgid "IP Passed is incorrect" +msgstr "IP Passou está incorreta" -#: lib/pages/fogconfigurationpage.class.php:782 -#, fuzzy -msgid "If on" +msgid "Icon" msgstr "Ícone" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" -msgstr "" - -#: lib/pages/fogconfigurationpage.class.php:786 -#, fuzzy -msgid "menu system" -msgstr "Item do menu:" +msgid "Icon File not found" +msgstr "Ícone do Arquivo não encontrado" -#: lib/pages/fogconfigurationpage.class.php:790 #, fuzzy -msgid "Advanced menu command" -msgstr "Login avançado menu" - -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" +msgid "If a new module is published the client will" msgstr "" +"Esta configuração define o nome de usuário utilizado para o cliente ssh." -#: lib/pages/fogconfigurationpage.class.php:800 #, fuzzy -msgid "the advanced menu to use" -msgstr "Login avançado menu" +msgid "If action of ask or get" +msgstr "Precisa de seqüência de perguntar, obter, ou lista de ações" -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" +msgid "If credentials are correct" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:831 #, fuzzy -msgid "Advanced Menu settings" -msgstr "Configurações avançadas" - -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" -msgstr "Valor do Tempo Limite inválido" +msgid "If none is specified" +msgstr "Nenhuma imagem especificada" -#: lib/pages/fogconfigurationpage.class.php:974 -#, fuzzy -msgid "iPXE Settings updated successfully!" -msgstr "Instalar / Atualizar sucesso!" +msgid "If off" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:975 #, fuzzy -msgid "iPXE Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "If on" +msgstr "Ícone" -#: lib/pages/fogconfigurationpage.class.php:982 #, fuzzy -msgid "iPXE Update Fail" -msgstr "atualização Snapin falhou" - -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "" +msgid "If there is not a task set" +msgstr "Há uma série de tarefas" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" +msgid "If this is an upgrade" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" +msgid "If you add a blank node" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" +msgid "If you are looking to configure settings for a specific host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1022 msgid "If you need help understanding what items are needed please" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" +msgid "If you would like to backup your" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1026 -#, fuzzy -msgid "from" -msgstr "A partir de" - -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 -#, fuzzy -msgid "Menu Item" -msgstr "Item do menu:" - -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 -#, fuzzy -msgid "Parameters" -msgstr "parâmetros:" - -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 -#, fuzzy -msgid "Boot Options" -msgstr "Opções de inicialização:" - -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 -#, fuzzy -msgid "Default Item" -msgstr "Item padrão:" +msgid "Ignore MAC on Client" +msgstr "Ignorar MAC no cliente" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 #, fuzzy -msgid "Hot Key Enabled" -msgstr "imagem Ativado" +msgid "Ignore MAC on Image" +msgstr "Ignorar MAC for Imaging" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 -#, fuzzy -msgid "Hot Key to use" -msgstr "Não é capaz de atualizar" +msgid "Image" +msgstr "Imagem" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 #, fuzzy -msgid "Menu Show with" -msgstr "Menu Show com:" +msgid "Image Associated: " +msgstr "Associação imagem" -#: lib/pages/fogconfigurationpage.class.php:1161 -#, fuzzy -msgid "Delete Menu Item" -msgstr "Excluir todos os itens selecionados" +msgid "Image Association" +msgstr "Associação imagem" -#: lib/pages/fogconfigurationpage.class.php:1310 #, fuzzy -msgid "iPXE Item Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Image Associations" +msgstr "Associação imagem" -#: lib/pages/fogconfigurationpage.class.php:1328 #, fuzzy -msgid "successfully removed!" -msgstr "removido com sucesso" +msgid "Image Create Fail" +msgstr "usuário criado" -#: lib/pages/fogconfigurationpage.class.php:1329 #, fuzzy -msgid "iPXE Item Remove Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Image Create Success" +msgstr "usuário criado" -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "Criar Nova gpxe entrada do menu" +msgid "Image Definition" +msgstr "definição de imagem" -#: lib/pages/fogconfigurationpage.class.php:1488 -#, fuzzy -msgid "New iPXE Menu" -msgstr "novo menu" +msgid "Image Desc" +msgstr "imagem Desc" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "Artigo ou título de menu não pode ficar em branco" +msgid "Image Description" +msgstr "Descrição da imagem" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" -msgstr "Uma descrição precisa ser definida" +msgid "Image Enabled" +msgstr "imagem Ativado" -#: lib/pages/fogconfigurationpage.class.php:1559 #, fuzzy -msgid "iPXE Item create failed!" -msgstr "Menu Criar falhou" +msgid "Image General" +msgstr "Atualizar impressora" -#: lib/pages/fogconfigurationpage.class.php:1575 -#, fuzzy -msgid "iPXE Item added!" -msgstr "Nome da impressora" +msgid "Image History" +msgstr "História imagem" -#: lib/pages/fogconfigurationpage.class.php:1576 -#, fuzzy -msgid "iPXE Item Create Success" -msgstr "Impressora já existe" +msgid "Image ID" +msgstr "ID da imagem" -#: lib/pages/fogconfigurationpage.class.php:1584 -#, fuzzy -msgid "iPXE Item Create Fail" -msgstr "atualização da impressora falhou!" +msgid "Image Management" +msgstr "Gestão de imagem" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "FOG Service Client Updater" +msgid "Image Manager" +msgstr "image Manager" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" -msgstr "Nome do módulo" +#, fuzzy +msgid "Image Membership" +msgstr "Membership" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" -msgstr "módulo MD5" +msgid "Image Name" +msgstr "Nome da imagem" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" -msgstr "Tipo de módulo" +msgid "Image Path" +msgstr "Caminho da imagem" + +msgid "Image Replicator" +msgstr "Replicator imagem" -#: lib/pages/fogconfigurationpage.class.php:1666 #, fuzzy -msgid "Current files" -msgstr "Registros atuais" +msgid "Image Size" +msgstr "Nome da imagem" + +msgid "Image Size: ON CLIENT" +msgstr "Tamanho da imagem: ON CLIENT" + +msgid "Image Size: ON SERVER" +msgstr "Tamanho da imagem: no servidor" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 #, fuzzy -msgid "NOTICE" -msgstr "NÃO" +msgid "Image Storage Groups" +msgstr "Grupo de armazenamento" -#: lib/pages/fogconfigurationpage.class.php:1672 #, fuzzy -msgid "The below items are only used for the old client." -msgstr "" -"Esta configuração define o nome de usuário utilizado para o cliente ssh." +msgid "Image Task Completed" +msgstr "após a conclusão da tarefa" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" -msgstr "" +msgid "Image Transfer Log" +msgstr "Transferência de Imagem Log" -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" -msgstr "" +msgid "Image Type" +msgstr "Tipo de imagem" -#: lib/pages/fogconfigurationpage.class.php:1678 #, fuzzy -msgid "This section allows you to update the modules and" -msgstr "Esta configuração define o nome de usuário proxy para usar." - -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." -msgstr "" +msgid "Image Update Fail" +msgstr "imagem atualizada" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" -msgstr "" +#, fuzzy +msgid "Image Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." -msgstr "" +#, fuzzy +msgid "Image Used" +msgstr "fotografada" -#: lib/pages/fogconfigurationpage.class.php:1686 #, fuzzy -msgid "If a new module is published the client will" -msgstr "" -"Esta configuração define o nome de usuário utilizado para o cliente ssh." +msgid "Image added!" +msgstr "Nome da imagem" -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" -msgstr "" +msgid "Image is not enabled" +msgstr "A imagem não está habilitado" -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." -msgstr "" +msgid "Image is not valid" +msgstr "A imagem não é válida" -#: lib/pages/fogconfigurationpage.class.php:1710 -#, fuzzy -msgid "Upload file" -msgstr "Subir arquivo" +msgid "Image is protected and cannot be deleted" +msgstr "A imagem está protegida e não pode ser excluído" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 #, fuzzy -msgid "Delete Selected Items" -msgstr "Excluir todos os itens selecionados" +msgid "Image to DMI Mappings" +msgstr "Adicionar Imagem para Associações DMI" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 #, fuzzy -msgid "Make Changes" -msgstr "Salvar alterações" +msgid "Image update failed!" +msgstr "imagem atualizada" -#: lib/pages/fogconfigurationpage.class.php:1795 #, fuzzy -msgid "Item removed successfully!" -msgstr "Salvo com sucesso" +msgid "Image updated!" +msgstr "imagem atualizada" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 -#, fuzzy -msgid "Client Modules Change Success" -msgstr "Impressora já existe" +msgid "Imaged" +msgstr "fotografada" -#: lib/pages/fogconfigurationpage.class.php:1803 #, fuzzy -msgid "No file uploaded!" -msgstr "No arquivo carregado" +msgid "Imaged By" +msgstr "fotografada" -#: lib/pages/fogconfigurationpage.class.php:1849 #, fuzzy -msgid "Modules added/updated successfully!" -msgstr "Módulos adicionado / atualizado" +msgid "Imaged For" +msgstr "fotografada" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" -msgstr "" +#, fuzzy +msgid "Imaged From" +msgstr "fotografada" -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" -msgstr "MAC Listing Endereço Fabricante" +msgid "Images" +msgstr "imagens" -#: lib/pages/fogconfigurationpage.class.php:1881 #, fuzzy -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" -msgstr "" -"Esta seção permite que você importe os fabricantes de endereço MAC " -"conhecidos na névoa banco de dados para facilitar a identificação." - -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" -msgstr "Registros atuais" +msgid "Imaging Completed" +msgstr "após a conclusão da tarefa" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" -msgstr "excluir MACs" +#, fuzzy +msgid "Imaging Duration" +msgstr "imagiologia Log" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" -msgstr "Atualizar MACs" +msgid "Imaging Log" +msgstr "imagiologia Log" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" -msgstr "Configurações do sistema FOG" +msgid "Imaging Over the last 30 days" +msgstr "Imagem Ao longo dos últimos 30 dias" -#: lib/pages/fogconfigurationpage.class.php:2073 #, fuzzy -msgid "This section allows you to customize or alter" -msgstr "Esta configuração define o nome de usuário proxy para usar." - -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" -msgstr "" - -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "" +msgid "Imaging Started" +msgstr "Estado Snapin" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" -msgstr "" +msgid "Import" +msgstr "Importar" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" -msgstr "" +#, fuzzy +msgid "Import Accesscontrols" +msgstr "Controle de acesso" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 #, fuzzy -msgid "Partclone Gzip" -msgstr "partclone" +msgid "Import CSV" +msgstr "CSV de exportação" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "" +#, fuzzy +msgid "Import CSV?" +msgstr "CSV de exportação" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" -msgstr "" +msgid "Import Configuration" +msgstr "Importar Configuração" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 #, fuzzy -msgid "Partclone Uncompressed Split 200MiB" -msgstr "partclone" +msgid "Import Database" +msgstr "Encontro" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 #, fuzzy -msgid "Partclone Zstd" -msgstr "partclone" +msgid "Import Database?" +msgstr "Encontro" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 #, fuzzy -msgid "Partclone Zstd Split 200MiB" -msgstr "partclone" - -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" -msgstr "Nenhuma imagem especificada" +msgid "Import FOG Reports" +msgstr "Hosts de importação" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 #, fuzzy -msgid "Reset Token" -msgstr "token de acesso" +msgid "Import Failed" +msgstr "importação Impressoras" -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" -msgstr "Sem Imagem do especificado" +msgid "Import Groups" +msgstr "Grupos de importação" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." -msgstr "" +msgid "Import Hosts" +msgstr "Hosts de importação" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "" +msgid "Import Images" +msgstr "Import Images" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 #, fuzzy -msgid "Settings successfully stored!" -msgstr "foi atualizado com sucesso" +msgid "Import LDAPs" +msgstr "Importar" -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 #, fuzzy -msgid "Settings Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Import Locations" +msgstr "anfitrião Localização" -#: lib/pages/fogconfigurationpage.class.php:2874 -#, fuzzy -msgid "Service Setting Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Import Printers" +msgstr "importação Impressoras" -#: lib/pages/fogconfigurationpage.class.php:2878 #, fuzzy -msgid "Rebranding element has been successfully updated!" -msgstr "foi atualizado com sucesso" +msgid "Import Report?" +msgstr "Hosts de importação" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 #, fuzzy -msgid "Settings Update Fail" -msgstr "Configurações atualizadas" +msgid "Import Reports" +msgstr "Hosts de importação" -#: lib/pages/fogconfigurationpage.class.php:2896 #, fuzzy -msgid "Service Setting Update Failed" -msgstr "Configurações atualizadas" - -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" -msgstr "Mestre serviço" +msgid "Import Sites" +msgstr "importação Impressoras" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" -msgstr "Scheduler" +msgid "Import Snapins" +msgstr "importação Snapins" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" -msgstr "Replicator imagem" +#, fuzzy +msgid "Import Subnetgroups" +msgstr "Grupos de importação" -#: lib/pages/fogconfigurationpage.class.php:3052 #, fuzzy -msgid "Image Size" -msgstr "Nome da imagem" +msgid "Import Successful" +msgstr "Bem sucedido" -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" -msgstr "Snapin Replicator" +#, fuzzy +msgid "Import Task States" +msgstr "Unidos Task" -#: lib/pages/fogconfigurationpage.class.php:3070 #, fuzzy -msgid "Snapin Hash" -msgstr "Caminho Snapin" +msgid "Import Task Types" +msgstr "Tipos de tarefa" -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" -msgstr "Hosts Ping" +msgid "Import Users" +msgstr "importar usuários" -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" -msgstr "Transferência de Imagem Log" +#, fuzzy +msgid "Import WOLBroadcasts" +msgstr "anfitrião Localização" -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" -msgstr "Snapin Transferência de Log" +#, fuzzy +msgid "Import Windows Keys" +msgstr "Windows 8" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" -msgstr "FOG Visualizador de Log" +#, fuzzy +msgid "In" +msgstr "Dentro " -#: lib/pages/fogconfigurationpage.class.php:3235 #, fuzzy -msgid "Lines" -msgstr "Linha" +msgid "In FOG" +msgstr "Dentro " -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" -msgstr "Reverter o arquivo: (a mais recente no topo)" +msgid "Included Items" +msgstr "Itens incluídos" -#: lib/pages/fogconfigurationpage.class.php:3251 #, fuzzy -msgid "Pause" -msgstr "Do utilizador" +msgid "Info" +msgstr "Dentro " -#: lib/pages/fogconfigurationpage.class.php:3270 -#, fuzzy -msgid "Configuration Import/Export" -msgstr "Configuração" +msgid "Information" +msgstr "Em formação" -#: lib/pages/fogconfigurationpage.class.php:3290 #, fuzzy -msgid "Export Database?" -msgstr "Encontro" +msgid "Init" +msgstr "Dentro " -#: lib/pages/fogconfigurationpage.class.php:3309 #, fuzzy -msgid "Export Database" -msgstr "Encontro" +msgid "Initial Template" +msgstr "Template Snapin" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 #, fuzzy -msgid "Import Database?" -msgstr "Encontro" +msgid "Initrd Name" +msgstr "Nome da impressora" -#: lib/pages/fogconfigurationpage.class.php:3351 #, fuzzy -msgid "Import Database" -msgstr "Encontro" +msgid "Initrd Update" +msgstr "tipo inválido" -#: lib/pages/fogconfigurationpage.class.php:3399 #, fuzzy -msgid "Import Successful" -msgstr "Bem sucedido" +msgid "Install" +msgstr "Instalar / Atualizar Falha!" -#: lib/pages/fogconfigurationpage.class.php:3403 -#, fuzzy -msgid "Database imported and added successfully!" -msgstr "Banco de dados importado e adicionado com sucesso" +msgid "Install / Update Failed!" +msgstr "Instalar / Atualizar Falha!" -#: lib/pages/fogconfigurationpage.class.php:3414 -#, fuzzy -msgid "Import Failed" -msgstr "importação Impressoras" +msgid "Install / Update Successful!" +msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/fogconfigurationpage.class.php:3418 #, fuzzy -msgid "There were errors during import!" -msgstr "Ocorreram erros durante a importação" +msgid "Install Initrd" +msgstr "Instalar / Atualizar Falha!" -#: lib/pages/fogconfigurationpage.class.php:3427 #, fuzzy -msgid "Database Reverted" -msgstr "alterações banco de dados revertido" +msgid "Install Kernel" +msgstr "hospedar Kernel" -#: lib/pages/fogconfigurationpage.class.php:3430 #, fuzzy -msgid "Database changes reverted!" -msgstr "alterações banco de dados revertido" +msgid "Install Plugin" +msgstr "instalar Plugins" + +msgid "Install Plugins" +msgstr "instalar Plugins" -#: lib/pages/fogconfigurationpage.class.php:3437 #, fuzzy -msgid "Database Failure" -msgstr "Atualização de banco de dados falhou" +msgid "Install/Update" +msgstr "Instalar / Atualizar Falha!" -#: lib/pages/fogconfigurationpage.class.php:3441 #, fuzzy -msgid "Errors on revert detected!" -msgstr "Erros em revert detectado" +msgid "Install/Update Now" +msgstr "Instalar / Atualizar agora" -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" -msgstr "Novo grupo" +msgid "Installed Plugins" +msgstr "Plugins instalados" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" -msgstr "Nome do grupo" +#, fuzzy +msgid "Integrity Settings" +msgstr "Configurações" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" -msgstr "descrição do grupo" +msgid "Interface" +msgstr "Interface" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" -msgstr "grupo Kernel" +msgid "Interface not ready, waiting for it to come up" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" -msgstr "Argumentos Grupo Kernel" +#, fuzzy +msgid "Invalid" +msgstr "ID Inválido" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" -msgstr "Primary Disk grupo" +msgid "Invalid Class" +msgstr "Classe inválida" -#: lib/pages/groupmanagementpage.class.php:298 #, fuzzy -msgid "A group name is required!" -msgstr "Um nome de imagem é necessário!" +msgid "Invalid File" +msgstr "pasta inválida" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 -#, fuzzy -msgid "A group already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Invalid Folder" +msgstr "pasta inválida" + +msgid "Invalid Host" +msgstr "Anfitrião inválido" -#: lib/pages/groupmanagementpage.class.php:313 #, fuzzy -msgid "Add group failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Invalid Host Colors" +msgstr "Anfitrião inválido" -#: lib/pages/groupmanagementpage.class.php:318 #, fuzzy -msgid "Group added!" -msgstr "grupo adicionado" +msgid "Invalid ID passed" +msgstr "unidade inválido passado" -#: lib/pages/groupmanagementpage.class.php:319 #, fuzzy -msgid "Group Create Success" -msgstr "usuário criado" +msgid "Invalid IP" +msgstr "ID Inválido" + +msgid "Invalid Login" +msgstr "Login inválido" + +msgid "Invalid MAC Address!" +msgstr "Inválido Endereço MAC!" -#: lib/pages/groupmanagementpage.class.php:327 #, fuzzy -msgid "Group Create Fail" -msgstr "Grupo Criar falhou" +msgid "Invalid Multicast Session" +msgstr "Iniciar Sessão Multicast" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" -msgstr "Grupo de Chave de Produto" +msgid "Invalid Plugin Passed" +msgstr "Plugin inválido passado" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "Grupo Bios Tipo Exit" +msgid "Invalid Server Information!" +msgstr "Informações servidor inválido!" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "Grupo EFI Tipo Exit" +msgid "Invalid Snapin" +msgstr "Snapin inválido" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" -msgstr "" +msgid "Invalid Snapin Tasking" +msgstr "Inválida Snapin Tasking" -#: lib/pages/groupmanagementpage.class.php:562 #, fuzzy -msgid "Group general" -msgstr "grupo Kernel" +msgid "Invalid Snapin Tasking object" +msgstr "Inválida Snapin Tasking" + +msgid "Invalid Storage Group" +msgstr "Grupo de armazenamento inválido" + +msgid "Invalid Storage Node" +msgstr "Inválida Storage Node" + +msgid "Invalid Task Type" +msgstr "Tipo de Tarefa inválida" -#: lib/pages/groupmanagementpage.class.php:611 #, fuzzy -msgid "Group image" -msgstr "Nome do grupo" +msgid "Invalid Tasking" +msgstr "tarefa inválido" + +msgid "Invalid Timeout Value" +msgstr "Valor do Tempo Limite inválido" -#: lib/pages/groupmanagementpage.class.php:644 #, fuzzy -msgid "Group image association" -msgstr "grupo Local" +msgid "Invalid Type" +msgstr "tipo inválido" -#: lib/pages/groupmanagementpage.class.php:698 #, fuzzy -msgid "Group Power Management Remove" -msgstr "Gerenciamento de usuários" +msgid "Invalid data being parsed" +msgstr "Token inválido passado" + +#, fuzzy +msgid "Invalid data found" +msgstr "Dados inválidos" -#: lib/pages/groupmanagementpage.class.php:703 #, fuzzy -msgid "Delete all PM tasks?" -msgstr "Excluir todos os selecionados %s s" +msgid "Invalid date" +msgstr "tipo inválido" -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" -msgstr "Printer Alias" +msgid "Invalid image" +msgstr "imagem inválido" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" -msgstr "Tipo de impressora" +msgid "Invalid image assigned to host" +msgstr "imagem inválido atribuído a hospedar" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" -msgstr "TCP / IP" +msgid "Invalid key being added" +msgstr "Chave inválida que está sendo adicionado" -#: lib/pages/groupmanagementpage.class.php:817 #, fuzzy -msgid "Group Printers" -msgstr "Impressoras de exportação" +msgid "Invalid key being destroyed" +msgstr "Chave inválida a ser removido" -#: lib/pages/groupmanagementpage.class.php:827 -#, fuzzy -msgid "Printer Configuration" -msgstr "Configuração de serviço" +msgid "Invalid key being removed" +msgstr "Chave inválida a ser removido" -#: lib/pages/groupmanagementpage.class.php:832 #, fuzzy -msgid "Select management level for these hosts" -msgstr "Selecione Nível de Gestão para este alojamento" - -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" -msgstr "" - -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" -msgstr "" +msgid "Invalid key being requested" +msgstr "Chave inválida a ser removido" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" -msgstr "" +msgid "Invalid key being set" +msgstr "Chave inválida sendo definido" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" -msgstr "" +msgid "Invalid method called" +msgstr "Método inválido chamada" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" -msgstr "Sem gerenciamento de impressoras" +msgid "Invalid numeric entry" +msgstr "entrada numérica inválida" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 #, fuzzy -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." -msgstr "" -"Esta definição só adiciona e remove as impressoras que são gerenciados pelo " -"nevoeiro. Se a impressora existe na gestão da impressora, mas não é " -"atribuído a um host, ele irá remover a impressora se ela existir no host não " -"atribuído. Ele irá adicionar impressoras para o host que são atribuídos." - -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" -msgstr "FOG Managed Impressoras" +msgid "Invalid object to try tasking" +msgstr "tipo de objeto inválido passado" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." -msgstr "" -"Essa configuração só irá permitir impressoras FOG Designado para ser " -"adicionado ao host. Qualquer impressora que não é atribuído serão removidos " -"incluindo impressoras gerenciadas não nevoeiro." +msgid "Invalid object type passed" +msgstr "tipo de objeto inválido passado" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" -msgstr "Impressoras Só Assigned" +msgid "Invalid operational mode" +msgstr "modo operacional inválido" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 #, fuzzy -msgid "Update printer configuration" -msgstr "Host Configuration Printer" +msgid "Invalid scheduling type" +msgstr "tipo inválido" -#: lib/pages/groupmanagementpage.class.php:918 #, fuzzy -msgid "Printer Associations" -msgstr "Descrição Printer" +msgid "Invalid snapin" +msgstr "Snapin inválido" + +msgid "Invalid task" +msgstr "tarefa inválido" -#: lib/pages/groupmanagementpage.class.php:928 #, fuzzy -msgid "Make Printer Changes" -msgstr "Salvar alterações" +msgid "Invalid task id" +msgstr "tarefa inválido" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 #, fuzzy -msgid "Add Printers" -msgstr "Impressora" +msgid "Invalid task id sent" +msgstr "tarefa inválido" -#: lib/pages/groupmanagementpage.class.php:945 #, fuzzy -msgid "Update Default Printer" -msgstr "Atualizar impressora" +msgid "Invalid tasking type passed" +msgstr "tipo de objeto inválido passado" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 #, fuzzy -msgid "Remove selected printers" -msgstr "Remover snapins selecionados" +msgid "Invalid tasking!" +msgstr "tarefa inválido" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" -msgstr "Nome Snapin" +msgid "Invalid token passed" +msgstr "Token inválido passado" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 #, fuzzy -msgid "Snapin Created" -msgstr "Snapin atualizada" +msgid "Invalid token passed for host" +msgstr "Token inválido passado" -#: lib/pages/groupmanagementpage.class.php:1044 -#, fuzzy -msgid "Group Snapins" -msgstr "exportação Snapins" +msgid "Invalid type, merge to add, diff to remove" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:1054 -#, fuzzy -msgid "Available Snapins" -msgstr "Todos os snap-ins" +msgid "Invalid user and/or channel passed" +msgstr "usuário e / ou canal inválido passado" -#: lib/pages/groupmanagementpage.class.php:1064 -#, fuzzy -msgid "Make Snapin Changes" -msgstr "Salvar alterações" +msgid "Inventory" +msgstr "Inventário" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 -#, fuzzy -msgid "Add selected snapins" -msgstr "Impressora" +msgid "Inventory ID" +msgstr "ID Inventory" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" -msgstr "Remover snapins selecionados" +msgid "Is Advanced" +msgstr "é avançado" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 -#, fuzzy -msgid "This module is only used on the old client" -msgstr "" -"Esta configuração define o nome de usuário utilizado para o cliente ssh." +msgid "Is Enabled" +msgstr "Está ativado" -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" -msgstr "" +msgid "Is Graph Enabled" +msgstr "Gráfico is enabled" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" -msgstr "" +msgid "Is Group" +msgstr "Grupo está" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "" +msgid "Is Master Node" +msgstr "É Mestre Node" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "" +#, fuzzy +msgid "Is Pack" +msgstr "É uma" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" +msgid "Is Restricted User " msgstr "" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "" +msgid "Is a" +msgstr "É uma" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "" +#, fuzzy +msgid "Is restricted" +msgstr "tarefa iniciada" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" +msgid "It can be used on Windows" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" +#, fuzzy +msgid "It is primarily geared for the smart installer methodology now" msgstr "" +"A documentação detalhada. Ele é voltado principalmente para a metodologia " +"instalador inteligente agora." -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" +msgid "It operates by getting the max bandwidth setting of the node" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" +msgid "It tells the client to download snapins from" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" +msgid "It will operate based on the fields the area typically requires" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" -msgstr "" +#, fuzzy +msgid "Item removed successfully!" +msgstr "Salvo com sucesso" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" +msgid "Items must be an array" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" -msgstr "Selecionar / desmarcar todas" +msgid "Job Create Date" +msgstr "Job Criar Data" -#: lib/pages/groupmanagementpage.class.php:1300 -#, fuzzy -msgid "Group FOG Client Module configuration" -msgstr "Host Configuration Printer" +msgid "Job Create Time" +msgstr "Job Criar Tempo" -#: lib/pages/groupmanagementpage.class.php:1310 #, fuzzy -msgid "Group module settings" -msgstr "anfitrião Descrição" +msgid "Join Domain after deploy" +msgstr "Junte-se ao domínio após a tarefa de imagem" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -#, fuzzy -msgid "Update module configurations" -msgstr "Host Configuration Printer" +msgid "Kernel" +msgstr "Núcleo" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "Largura da tela (em pixels)" +msgid "Kernel Args" +msgstr "Kernel Args" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "Tela Altura (em pixels)" +msgid "Kernel Arguments" +msgstr "Argumentos de kernel" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" -msgstr "Tela Taxa de atualização (em Hz)" +msgid "Kernel Name" +msgstr "Nome Kernel" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" -msgstr "Resolução da tela Grupo" +msgid "Kernel Update" +msgstr "Kernel Atualização" + +msgid "Kernel Versions" +msgstr "Versões do kernel" + +msgid "Kernels/Inits from location" +msgstr "Kernels / inits de local" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 #, fuzzy -msgid "Update display resolution" -msgstr "Grupo primário de actualização" +msgid "Key" +msgstr "DMI Key" -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "Auto Log Out Time (em minutos)" +#, fuzzy +msgid "Key Name" +msgstr "Nome Kernel" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" -msgstr "" +#, fuzzy +msgid "Key field must be a string" +msgstr "Evento deve ser uma string" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 #, fuzzy -msgid "Update auto-logout time" -msgstr "Atualizar impressora" +msgid "Key must be a string" +msgstr "Evento deve ser uma string" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" -msgstr "Export PDF" +#, fuzzy +msgid "Key must be a string or index" +msgstr "Evento deve ser uma string" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" -msgstr "Memória de acolhimento" +msgid "Key must be an array of keys or a string." +msgstr "" + +msgid "Kill" +msgstr "Matar" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 #, fuzzy -msgid "You must select an action to perform" -msgstr "Você deve especificar o alias e porta" +msgid "LDAP Connection Name" +msgstr "Localização Nome" -#: lib/pages/groupmanagementpage.class.php:2099 #, fuzzy -msgid "Group update failed!" -msgstr "atualização do utilizador falhou" +msgid "LDAP Connection Name" +msgstr "Localização Nome" -#: lib/pages/groupmanagementpage.class.php:2104 #, fuzzy -msgid "Group updated!" -msgstr "grupo adicionado" +msgid "LDAP Create Fail" +msgstr "usuário criado" -#: lib/pages/groupmanagementpage.class.php:2105 #, fuzzy -msgid "Group Update Success" +msgid "LDAP Create Success" msgstr "usuário criado" -#: lib/pages/groupmanagementpage.class.php:2113 #, fuzzy -msgid "Group Update Fail" -msgstr "Grupo Criar falhou" +msgid "LDAP General" +msgstr "Geral" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" -msgstr "fotografada" +msgid "LDAP Management" +msgstr "Gestão LDAP" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" -msgstr "imagem atribuída" +#, fuzzy +msgid "LDAP Ports" +msgstr "Servidor LDAP" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" -msgstr "" +msgid "LDAP Server" +msgstr "Servidor LDAP" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" -msgstr "Enquanto se aguarda a lista de hosts" +msgid "LDAP Server Address" +msgstr "Endereço do servidor LDAP" + +msgid "LDAP Server Description" +msgstr "LDAP Server Descrição" -#: lib/pages/hostmanagementpage.class.php:333 #, fuzzy -msgid "Approve selected hosts" -msgstr "Aprovar Hosts selecionados" +msgid "LDAP Server Port" +msgstr "Servidor LDAP" -#: lib/pages/hostmanagementpage.class.php:338 #, fuzzy -msgid "Delete selected hosts" -msgstr "Excluir Hosts selecionados" +msgid "LDAP Server added!" +msgstr "Nome do servidor LDAP" -#: lib/pages/hostmanagementpage.class.php:367 #, fuzzy -msgid "Approve Success" -msgstr "Aprovar este anfitrião?" +msgid "LDAP Server updated!" +msgstr "Nome do servidor LDAP" -#: lib/pages/hostmanagementpage.class.php:368 #, fuzzy -msgid "Selected hosts approved successfully" -msgstr "Salvo com sucesso" +msgid "LDAP Servers" +msgstr "Servidor LDAP" -#: lib/pages/hostmanagementpage.class.php:376 #, fuzzy -msgid "Deleted Success" -msgstr "usuário criado" +msgid "LDAP Update Fail" +msgstr "atualização Snapin falhou" -#: lib/pages/hostmanagementpage.class.php:377 #, fuzzy -msgid "Selected hosts deleted successfully" +msgid "LDAP Update Success" msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" -msgstr "novo host" - -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" -msgstr "Nome do host" - -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" -msgstr "MAC primária" - -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" -msgstr "anfitrião Descrição" +msgid "Language" +msgstr "Língua" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" -msgstr "Hospedar de Chave de Produto" +#, fuzzy +msgid "Last Captured" +msgstr "host criado" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" -msgstr "Image Host" +msgid "Last Deployed" +msgstr "Última Implantado" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" -msgstr "hospedar Kernel" +#, fuzzy +msgid "Last Updated Time" +msgstr "Anfitrião Update Failed" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" -msgstr "Hospedar argumentos do kernel" +#, fuzzy +msgid "Last captured" +msgstr "host criado" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 #, fuzzy -msgid "Host Init" -msgstr "Lista de Host" +msgid "Latest Development Version" +msgstr "Última versão" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" -msgstr "Hospedar rígido primário" +msgid "Latest Version" +msgstr "Última versão" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "Hospedar Bios Tipo Exit" +#, fuzzy +msgid "Level must be an integer" +msgstr "Evento deve ser uma string" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" -msgstr "Hospedar EFI Tipo Exit" +msgid "License" +msgstr "Licença" -#: lib/pages/hostmanagementpage.class.php:616 -#, fuzzy -msgid "A host name is required!" -msgstr "Um nome de imagem é necessário!" +msgid "Line" +msgstr "Linha" -#: lib/pages/hostmanagementpage.class.php:621 #, fuzzy -msgid "A mac address is required!" -msgstr "MAC Address é necessária" +msgid "Lines" +msgstr "Linha" -#: lib/pages/hostmanagementpage.class.php:626 -#, fuzzy -msgid "A host already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Link New Account" +msgstr "Fazer a ligação Nova Conta" -#: lib/pages/hostmanagementpage.class.php:631 -msgid "MAC Format is invalid" -msgstr "Formato MAC é inválido" +msgid "Link Pushbullet Account" +msgstr "Conta ligação Pushbullet" -#: lib/pages/hostmanagementpage.class.php:638 #, fuzzy -msgid "A host with this mac already exists with name" -msgstr "Um anfitrião com este MAC já existe com Hostname: %s" +msgid "Link Pushbullet Account Fail" +msgstr "Conta ligação Pushbullet" -#: lib/pages/hostmanagementpage.class.php:673 #, fuzzy -msgid "Add host failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Link Pushbullet Account Success" +msgstr "Conta ligação Pushbullet" -#: lib/pages/hostmanagementpage.class.php:678 -#, fuzzy -msgid "Host added!" -msgstr "hospedar acrescentou" +msgid "Link Slack Account" +msgstr "Link Conta Slack" -#: lib/pages/hostmanagementpage.class.php:679 #, fuzzy -msgid "Host Create Success" -msgstr "host criado" +msgid "Link Slack Account Fail" +msgstr "Link Conta Slack" -#: lib/pages/hostmanagementpage.class.php:687 #, fuzzy -msgid "Host Create Fail" -msgstr "Hospedar criar falha" +msgid "Link Slack Account Success" +msgstr "Link Conta Slack" -#: lib/pages/hostmanagementpage.class.php:830 #, fuzzy -msgid "Current Power Management settings" -msgstr "Gerenciamento de usuários" +msgid "Link must be a string" +msgstr "Evento deve ser uma string" -#: lib/pages/hostmanagementpage.class.php:841 -#, fuzzy -msgid "Update PM Values" -msgstr "Imagens de atualização" +msgid "Linux" +msgstr "Linux" -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" -msgstr "Remover MAC" +#, fuzzy +msgid "List" +msgstr "Linha" -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" -msgstr "Ignorar MAC no cliente" +#, php-format +msgid "List All %s" +msgstr "Listar todos os %s" -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." -msgstr "" +#, fuzzy, php-format +msgid "List all roles" +msgstr "Listar todos os %s" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 -#, fuzzy -msgid "Ignore MAC on Image" -msgstr "Ignorar MAC for Imaging" +#, fuzzy, php-format +msgid "List all rules" +msgstr "Listar todos os %s" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." +msgid "Listener must be an array or an object" msgstr "" -#: lib/pages/hostmanagementpage.class.php:968 -#, fuzzy -msgid "Approve MAC" -msgstr "Aprovar todos os Macs?" +msgid "Load Average" +msgstr "Carga média" -#: lib/pages/hostmanagementpage.class.php:981 -#, fuzzy -msgid "Approve all pending? " -msgstr "Aprovar macs pendentes selecionados" +msgid "Load MAC Vendors" +msgstr "Coloque Vendors MAC" -#: lib/pages/hostmanagementpage.class.php:987 #, fuzzy -msgid "Approve all pending macs" -msgstr "Aprovar macs pendentes selecionados" +msgid "Load failed" +msgstr "Carga falhou: %s" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" -msgstr "Adicionar MAC" +#, fuzzy +msgid "Loading data to field" +msgstr "Carregamento de dados para o campo %s" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "MACs adicionais" +msgid "Location" +msgstr "Localização" -#: lib/pages/hostmanagementpage.class.php:1113 #, fuzzy -msgid "Host description" -msgstr "anfitrião Descrição" +msgid "Location Association" +msgstr "Associação imagem" -#: lib/pages/hostmanagementpage.class.php:1263 #, fuzzy -msgid "Host general" -msgstr "hospedar Kernel" - -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" -msgstr "Por favor, indique um nome de host" - -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "Por favor insira um nome de host válido" +msgid "Location Create Fail" +msgstr "Snapin atualizada" -#: lib/pages/hostmanagementpage.class.php:1345 #, fuzzy -msgid "Please use another hostname" -msgstr "Por favor, indique um nome de host" +msgid "Location Create Success" +msgstr "Snapin atualizada" -#: lib/pages/hostmanagementpage.class.php:1349 #, fuzzy -msgid "Please enter a mac address" -msgstr "Por favor insira um endereço IP válido" +msgid "Location General" +msgstr "Snapin Ativado" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 -#, fuzzy -msgid "Please enter a valid mac address" -msgstr "Por favor insira um endereço IP válido" +msgid "Location Management" +msgstr "Gestão local" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" -msgstr "" +msgid "Location Name" +msgstr "Localização Nome" -#: lib/pages/hostmanagementpage.class.php:1485 #, fuzzy -msgid "Host Printers" -msgstr "Impressoras de exportação" +msgid "Location Update Fail" +msgstr "Localização Atualizado" -#: lib/pages/hostmanagementpage.class.php:1495 #, fuzzy -msgid "Host printer configuration" -msgstr "Host Configuration Printer" +msgid "Location Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/hostmanagementpage.class.php:1500 #, fuzzy -msgid "Select management level for this host" -msgstr "Selecione Nível de Gestão para este alojamento" - -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" -msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" +msgid "Location added!" +msgstr "Localização Nome" -#: lib/pages/hostmanagementpage.class.php:1617 -#, fuzzy -msgid "Add selected printers" -msgstr "Impressora" +msgid "Location already Exists, please try again." +msgstr "Localização já existe, por favor tente novamente." -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "Padrão" +msgid "Location is a plugin that allows your FOG Server" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:1702 #, fuzzy -msgid "Update/Remove printers" -msgstr "Remover impressoras selecionadas" +msgid "Location update failed!" +msgstr "atualização Snapin falhou" -#: lib/pages/hostmanagementpage.class.php:1709 #, fuzzy -msgid "Update default printer" -msgstr "Atualizar impressora" +msgid "Location updated!" +msgstr "Localização Atualizado" -#: lib/pages/hostmanagementpage.class.php:1804 -#, fuzzy -msgid "Host Snapins" -msgstr "exportação Snapins" +msgid "Location/Deployed" +msgstr "Localização / Implantado" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" -msgstr "Verifique aqui para ver o que snapins podem ser adicionadas" +msgid "Locations" +msgstr "localizações" -#: lib/pages/hostmanagementpage.class.php:1835 -#, fuzzy -msgid "Add Snapins" -msgstr "Adicionar Snapin (s)" +msgid "Log Viewer" +msgstr "Visualizador de log" + +msgid "Login" +msgstr "Entrar" + +msgid "Login History" +msgstr "História de login" -#: lib/pages/hostmanagementpage.class.php:1911 #, fuzzy -msgid "Remove snapins" -msgstr "Remover snap-in (s)" +msgid "Login Users" +msgstr "Entrar" -#: lib/pages/hostmanagementpage.class.php:2127 #, fuzzy -msgid "Host FOG Client Module configuration" -msgstr "Host Configuration Printer" +msgid "Login accepted" +msgstr "Entrar" -#: lib/pages/hostmanagementpage.class.php:2137 #, fuzzy -msgid "Host module settings" -msgstr "anfitrião Descrição" +msgid "Login failed" +msgstr "Carga falhou: %s" -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" -msgstr "A resolução de tela de acolhimento" +#, fuzzy +msgid "Login time" +msgstr "Entrar" -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" +msgid "Login with the FOG credentials and you will see the menu" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" -msgstr "Outros Tag # 1" - -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" -msgstr "Outros Tag # 2" - -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" -msgstr "Número de série do sistema" +msgid "Logout" +msgstr "Sair" -#: lib/pages/hostmanagementpage.class.php:2454 #, fuzzy -msgid "System UUID" -msgstr "Uptime sistema" - -#: lib/pages/hostmanagementpage.class.php:2459 -msgid "Motherboard Manufacturer" -msgstr "Placa-mãe Fabricante" +msgid "Logout not found" +msgstr "Registro não encontrado, erro: %s" -#: lib/pages/hostmanagementpage.class.php:2460 -msgid "Motherboard Product Name" -msgstr "Placa-mãe Nome do produto" +msgid "MAC" +msgstr "MAC" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "Placa-mãe Versão" +#, fuzzy +msgid "MAC Address" +msgstr "Lista de endereços MAC" -#: lib/pages/hostmanagementpage.class.php:2462 -msgid "Motherboard Serial Number" -msgstr "Número de série da placa-mãe" +msgid "MAC Address List" +msgstr "Lista de endereços MAC" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "Asset Tag placa-mãe" +msgid "MAC Address Manufacturer Listing" +msgstr "MAC Listing Endereço Fabricante" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" -msgstr "CPU de velocidade normal" +msgid "MAC Format is invalid" +msgstr "Formato MAC é inválido" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" -msgstr "Modelo de disco rígido" +msgid "MAC address is already in use by another host" +msgstr "O endereço MAC já está sendo usado por outro host" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" -msgstr "Hard Disk Firmware" +msgid "MB Asset" +msgstr "MB de ativos" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" -msgstr "Hard Disk Número de série" +msgid "MB Manufacturer" +msgstr "MB Fabricante" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" -msgstr "Inventário de hardware de acolhimento" +msgid "MB Name" +msgstr "Nome MB" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" -msgstr "Nome vírus" +msgid "MB Serial" +msgstr "MB Serial" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" -msgstr "Quarentena" +msgid "MB Version" +msgstr "MB Versão" -#: lib/pages/hostmanagementpage.class.php:2619 -#, fuzzy -msgid "Host Virus History" -msgstr "Histórico de vírus" +msgid "MSI" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2632 #, fuzzy -msgid "Clear all history" -msgstr "Limpar histórico" +msgid "Machine Details" +msgstr "Detalhe Snapin Retorno" -#: lib/pages/hostmanagementpage.class.php:2642 -#, fuzzy -msgid "Virus Report" -msgstr "Relatório" +msgid "Main Colors" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2746 -#, fuzzy -msgid "Logout not found" -msgstr "Registro não encontrado, erro: %s" +msgid "Main Menu" +msgstr "Menu principal" -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" +msgid "Main fallback pairings" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" -msgstr "Hospedar Entrada História" +msgid "Main pairings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2805 #, fuzzy -msgid "View History For" -msgstr "Ver Histórico para" +msgid "Make Changes" +msgstr "Salvar alterações" -#: lib/pages/hostmanagementpage.class.php:2815 #, fuzzy -msgid "Selected Logins" -msgstr "Impressora" +msgid "Make Changes?" +msgstr "Salvar alterações" -#: lib/pages/hostmanagementpage.class.php:2825 #, fuzzy -msgid "History Graph" -msgstr "Ver Histórico para" +msgid "Make Printer Changes" +msgstr "Salvar alterações" -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "Engenheiro" +#, fuzzy +msgid "Make Snapin Changes" +msgstr "Salvar alterações" -#: lib/pages/hostmanagementpage.class.php:2859 #, fuzzy -msgid "Imaged From" -msgstr "fotografada" +msgid "Make changes?" +msgstr "Salvar alterações" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "Começar" +msgid "Management" +msgstr "Gestão" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "Fim" +msgid "Management Login" +msgstr "Acesso de Gestão" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "Duração" +msgid "Management Password" +msgstr "Gerenciamento de senha" -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" -msgstr "Hospedar História Imagiologia" +msgid "Management Username" +msgstr "Gestão usuário" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" -msgstr "start Time" +msgid "Master Node" +msgstr "Nó mestre" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" -msgstr "Fim do tempo" +msgid "Max" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "Código de retorno" +msgid "Max Clients" +msgstr "Clientes Max" -#: lib/pages/hostmanagementpage.class.php:3076 -#, fuzzy -msgid "Snapin task not completed" -msgstr "Snapin não é válido" +msgid "Max Size" +msgstr "Max Size" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" +msgid "Members" +msgstr "Membros" + +msgid "Membership" +msgstr "Membership" + +msgid "Memory" +msgstr "Memória" + +msgid "Menu Background File" +msgstr "" + +msgid "Menu Hide/No Menu settings" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3106 #, fuzzy -msgid "Host Snapin History" -msgstr "História Snapin" +msgid "Menu Item" +msgstr "Item do menu:" -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" -msgstr "hospedar aprovado" +msgid "Menu Item or title cannot be blank" +msgstr "Artigo ou título de menu não pode ficar em branco" -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." -msgstr "aprovação anfitrião falhou." +#, fuzzy +msgid "Menu Show with" +msgstr "Menu Show com:" -#: lib/pages/hostmanagementpage.class.php:3158 #, fuzzy -msgid "Approve Host" -msgstr "Aprovar este anfitrião?" +msgid "Menu Timeout" +msgstr "Timeout FECHAR" -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" -msgstr "Aprovar este anfitrião?" +msgid "Menu colors, pairings, settings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3186 -#, fuzzy -msgid "Approved" -msgstr "hospedar aprovado" +msgid "Message" +msgstr "Mensagem" + +msgid "Method does not exist" +msgstr "O método não existe" + +msgid "Microsoft AD" +msgstr "" + +msgid "Midnight" +msgstr "meia-noite" + +msgid "Mind you" +msgstr "" + +msgid "Minute value is not valid" +msgstr "valor do minuto não é válido" + +msgid "Miscellaneous" +msgstr "Variado" + +msgid "Missing a temporary folder" +msgstr "Faltando uma pasta temporária" -#: lib/pages/hostmanagementpage.class.php:3213 #, fuzzy -msgid "All Pending MACs approved" -msgstr "Todos os MACs pendentes aprovado." +msgid "Missing one or more extensions." +msgstr "Extensões ausentes" -#: lib/pages/hostmanagementpage.class.php:3665 #, fuzzy -msgid "Virus items removed!" -msgstr "vírus apuradas" +msgid "Mobile Group" +msgstr "modificar Grupo" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" -msgstr "Anfitrião Update Failed" +msgid "Mode" +msgstr "Modo" -#: lib/pages/hostmanagementpage.class.php:3693 -#, fuzzy -msgid "Host updated!" -msgstr "usuário atualizada" +msgid "Model" +msgstr "Modelo" -#: lib/pages/hostmanagementpage.class.php:3694 -#, fuzzy -msgid "Host Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Module MD5" +msgstr "módulo MD5" -#: lib/pages/hostmanagementpage.class.php:3702 -#, fuzzy -msgid "Host Update Fail" -msgstr "Anfitrião Update Failed" +msgid "Module Name" +msgstr "Nome do módulo" -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" -msgstr "Falha ao criar novo grupo" +msgid "Module Type" +msgstr "Tipo de módulo" -#: lib/pages/hostmanagementpage.class.php:3747 #, fuzzy -msgid "Successfully added selected hosts to the group!" -msgstr "Hosts com sucesso associado ao grupo " +msgid "Module Update Fail" +msgstr "Grupo Criar falhou" -#: lib/pages/hostmanagementpage.class.php:3748 #, fuzzy -msgid "Host Add to Group Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Module Update Success" +msgstr "usuário criado" -#: lib/pages/hostmanagementpage.class.php:3755 #, fuzzy -msgid "Host Add to Group Fail" -msgstr "Adicionar ao grupo" +msgid "Module updated!" +msgstr "grupo adicionado" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" -msgstr "Partimage" +#, fuzzy +msgid "Modules added/updated successfully!" +msgstr "Módulos adicionado / atualizado" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" -msgstr "partclone" +msgid "Month value is not valid" +msgstr "valor do mês não é válido" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" -msgstr "Grupo de armazenamento primário" +msgid "Monthly" +msgstr "Por mês" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "Nome da imagem" +msgid "Motherboard Asset Tag" +msgstr "Asset Tag placa-mãe" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" -msgstr "Tamanho da imagem: ON CLIENT" +msgid "Motherboard Manufacturer" +msgstr "Placa-mãe Fabricante" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" -msgstr "Tamanho da imagem: no servidor" +msgid "Motherboard Product Name" +msgstr "Placa-mãe Nome do produto" -#: lib/pages/imagemanagementpage.class.php:151 -#, fuzzy -msgid "Captured" -msgstr "Criado" +msgid "Motherboard Serial Number" +msgstr "Número de série da placa-mãe" -#: lib/pages/imagemanagementpage.class.php:170 -#, fuzzy -msgid "Last captured" -msgstr "host criado" +msgid "Motherboard Version" +msgstr "Placa-mãe Versão" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" -msgstr "Não configurado" +msgid "Multicast" +msgstr "multicast" -#: lib/pages/imagemanagementpage.class.php:298 #, fuzzy -msgid "Invalid date" -msgstr "tipo inválido" +msgid "Multicast Image" +msgstr "multicast" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -#, fuzzy -msgid "Not protected" -msgstr "não protegido" +msgid "Multicast Quick Deploy" +msgstr "Multicast de Implantação Rápida" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" -msgstr "Protegido" +msgid "Multicast session created" +msgstr "sessão multicast criado" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 #, fuzzy -msgid "Disabled" -msgstr "ativado" +msgid "Multicast tasks from groups" +msgstr "MulticastTask" -#: lib/pages/imagemanagementpage.class.php:362 -#, fuzzy -msgid "Partclone Compressed" -msgstr "partclone" +msgid "MulticastTask" +msgstr "MulticastTask" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" +msgid "Must be 0 through 23 for hours in a day." msgstr "" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" +msgid "Must be 0 through 59 for minutes in an hour." msgstr "" -#: lib/pages/imagemanagementpage.class.php:377 -#, fuzzy -msgid "ZSTD Compressed" -msgstr "partclone" +msgid "Must be encrypted" +msgstr "Devem ser criptografados" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" +msgid "Must have a name to create the table" msgstr "" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" -msgstr "Nova imagem" - -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" -msgstr "Descrição da imagem" +#, fuzzy +msgid "Must have an image associated" +msgstr "Deve ter Snapin associado a um grupo" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "Sistema operacional" +msgid "Must use an" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" -msgstr "divisória" +msgid "MySQL Administrator or by running" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" -msgstr "imagem Ativado" +msgid "N/A" +msgstr "N / D" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" -msgstr "Replicar?" +msgid "NAME" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" -msgstr "Compressão" +msgid "NOT" +msgstr "NÃO" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" -msgstr "image Manager" +#, fuzzy +msgid "NOTE" +msgstr "NÃO" -#: lib/pages/imagemanagementpage.class.php:639 #, fuzzy -msgid "Create Image" -msgstr "Criar Data" +msgid "NOTICE" +msgstr "NÃO" -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Name" +msgstr "Nome" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 -#, fuzzy -msgid "Please choose a different name" -msgstr "Por favor, escolha uma imagem" +msgid "Name Change/AD Join Forced reboot" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -#, fuzzy -msgid "this one is reserved for FOG" -msgstr "Por favor, escolha um nome diferente, este é reservado para FOG." +msgid "Need more support" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -#, fuzzy -msgid "Please choose a different path" -msgstr "Por favor, escolha uma imagem" +msgid "Need the table name to drop" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" +msgid "Needs a 256-bit key" msgstr "" -#: lib/pages/imagemanagementpage.class.php:744 -#, fuzzy -msgid "Add image failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Needs action string of ask, get, or list" +msgstr "Precisa de seqüência de perguntar, obter, ou lista de ações" -#: lib/pages/imagemanagementpage.class.php:754 -#, fuzzy -msgid "Image added!" -msgstr "Nome da imagem" +msgid "Network Information" +msgstr "Informações de rede" -#: lib/pages/imagemanagementpage.class.php:755 #, fuzzy -msgid "Image Create Success" -msgstr "usuário criado" +msgid "Network Installer" +msgstr "impressora de rede" -#: lib/pages/imagemanagementpage.class.php:763 -#, fuzzy -msgid "Image Create Fail" -msgstr "usuário criado" +msgid "Network Printer" +msgstr "impressora de rede" -#: lib/pages/imagemanagementpage.class.php:1041 -#, fuzzy -msgid "Image General" -msgstr "Atualizar impressora" +msgid "New" +msgstr "Novo" -#: lib/pages/imagemanagementpage.class.php:1132 -#, fuzzy -msgid "Image Storage Groups" -msgstr "Grupo de armazenamento" +msgid "New Broadcast Address" +msgstr "Novo Endereço de Difusão" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -#, fuzzy -msgid "Check here to see what storage groups can be added" -msgstr "Verifique aqui para ver o que snapins podem ser adicionadas" +msgid "New Client and Utilities" +msgstr "Novo Cliente e Utilities" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 #, fuzzy -msgid "Add Storage Groups" -msgstr "Adicionar grupo de armazenamento" +msgid "New Event" +msgstr "Adicionar Evento" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -#, fuzzy -msgid "Add selected storage groups" -msgstr "Impressora" +msgid "New Group" +msgstr "Novo grupo" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -#, fuzzy -msgid "Update/Remove Storage Groups" -msgstr "Remover impressoras selecionadas" +msgid "New Host" +msgstr "novo host" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 -#, fuzzy -msgid "Update primary group" -msgstr "Grupo primário de actualização" +msgid "New Image" +msgstr "Nova imagem" + +msgid "New LDAP Server" +msgstr "Novo servidor LDAP" + +msgid "New Location" +msgstr "Nova localização" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 #, fuzzy -msgid "Remove selected groups" -msgstr "Remover snapins selecionados" +msgid "New Role" +msgstr "novo menu" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 #, fuzzy -msgid "No groups selected to be removed" -msgstr "Nenhum grupo selecionado e nenhum novo nome do grupo entrou" +msgid "New Rule" +msgstr "novo menu" + +msgid "New Search" +msgstr "Nova pesquisa" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 #, fuzzy -msgid "You must have at least one group associated" -msgstr "Você deve ter pelo menos um grupo de armazenamento" +msgid "New Site" +msgstr "Adicionar novo Snapin" -#: lib/pages/imagemanagementpage.class.php:1433 #, fuzzy -msgid "Image update failed!" -msgstr "imagem atualizada" +msgid "New Snapin" +msgstr "Adicionar novo Snapin" -#: lib/pages/imagemanagementpage.class.php:1439 #, fuzzy -msgid "Image updated!" -msgstr "imagem atualizada" +msgid "New Storage Group" +msgstr "Grupo de armazenamento" -#: lib/pages/imagemanagementpage.class.php:1440 #, fuzzy -msgid "Image Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "New Storage Node" +msgstr "Nó de armazenamento" -#: lib/pages/imagemanagementpage.class.php:1448 #, fuzzy -msgid "Image Update Fail" -msgstr "imagem atualizada" - -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" -msgstr "Nome da sessão" +msgid "New Subnetgroup" +msgstr "Grupo de armazenamento" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" -msgstr "Contagem de cliente" +msgid "New Task State" +msgstr "Estado de Nova Tarefa" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "Tempo esgotado" +msgid "New Task Type" +msgstr "Novo tipo de tarefa" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" -msgstr "minutos" +msgid "New User" +msgstr "Novo usuário" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" -msgstr "Selecionar imagem" +#, fuzzy +msgid "New Windows Key" +msgstr "Windows 8" -#: lib/pages/imagemanagementpage.class.php:1524 #, fuzzy -msgid "Start Session" -msgstr "Iniciar Sessão Multicast" +msgid "New iPXE Menu" +msgstr "novo menu" -#: lib/pages/imagemanagementpage.class.php:1548 #, fuzzy -msgid "Multicast Image" -msgstr "multicast" +msgid "New key must be a string" +msgstr "Evento deve ser uma string" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" -msgstr "Iniciar Sessão Multicast" +#, fuzzy +msgid "New power management task" +msgstr "Gerenciamento de usuários" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" -msgstr "Nome da tarefa" +msgid "No" +msgstr "Não" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" -msgstr "clientes" +msgid "No Active Snapin Jobs Found For Host" +msgstr "Não Ativo Snapin trabalho localizado Para o Host" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" -msgstr "Por cento" +msgid "No Active Task found for Host" +msgstr "Nenhuma tarefa ativa encontrada para o Host" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" -msgstr "Parar Tarefa" +msgid "No Data" +msgstr "No Data" -#: lib/pages/imagemanagementpage.class.php:1647 #, fuzzy -msgid "Current Sessions" -msgstr "Associação imagem" +msgid "No Data Available" +msgstr "Não disponível" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" -msgstr "Por favor, insira um nome de sessão" +msgid "No FOGPage Class found for this node" +msgstr "Sem FOGPage classe encontrada para este nó" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" -msgstr "Por favor, escolha uma imagem" +msgid "No Host found for MAC Address" +msgstr "Não foi encontrada para o endereço MAC do Host" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" -msgstr "Sessão com esse nome já existe" +msgid "No Image specified" +msgstr "Sem Imagem do especificado" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" -msgstr "O nome da sessão não pode ser o mesmo que um nome de host existente" +msgid "No Menu" +msgstr "Sem menu" -#: lib/pages/imagemanagementpage.class.php:1710 -#, fuzzy -msgid "Please wait until a slot is open" -msgstr "Por favor, indique um token de acesso" +msgid "No Printer Management" +msgstr "Sem gerenciamento de impressoras" -#: lib/pages/imagemanagementpage.class.php:1711 #, fuzzy -msgid "There are currently" -msgstr "tem" +msgid "No Site" +msgstr "Não configurado" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" +msgid "No access is allowed" msgstr "" -#: lib/pages/imagemanagementpage.class.php:1714 -#, fuzzy -msgid "Your server only allows" -msgstr "Você só está autorizado a transferir" +msgid "No activity information available for this group" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" -msgstr "Falha ao criar sessão" +msgid "No class value sent" +msgstr "Nenhum valor classe enviada" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" -msgstr "sessão multicast criado" +msgid "No complete time recorded" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" -msgstr "foi iniciado na porta" +msgid "No connection available" +msgstr "Nenhuma conexão disponível" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" -msgstr "tarefa cancelada" +msgid "No connection to the database" +msgstr "Sem conexão com o banco de dados" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" -msgstr "Nome Plugin" +msgid "No data returned" +msgstr "Não há dados retornados" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." -msgstr "Não foi possível determinar detalhes plugin." +#, fuzzy +msgid "No data to insert" +msgstr "Não há dados retornados" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" -msgstr "Plugin Descrição" +msgid "No database to work off" +msgstr "Nenhum banco de dados para trabalhar fora" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" -msgstr "Instalação Plugin" +msgid "No directories defined to be cleaned up" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:326 -#, fuzzy -msgid "This plugin is not installed" -msgstr "Este plugin não está instalado, você gostaria de instalá-lo agora?" +msgid "No fields passed" +msgstr "Nenhum campo passado" -#: lib/pages/pluginmanagementpage.class.php:328 #, fuzzy -msgid "would you like to install it now" -msgstr "Este plugin não está instalado, você gostaria de instalá-lo agora?" +msgid "No file uploaded!" +msgstr "No arquivo carregado" -#: lib/pages/pluginmanagementpage.class.php:333 -#, fuzzy -msgid "Install Plugin" -msgstr "instalar Plugins" +msgid "No file was uploaded" +msgstr "Nenhum arquivo foi transferido" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" -msgstr "Reinicialização após deploy" +msgid "No friendly name defined" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" -msgstr "Shutdown após deploy" +msgid "No groups defined, search will return all hosts." +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:393 #, fuzzy -msgid "Basic Settings" -msgstr "Configurações" - -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" -msgstr "DMI campo" +msgid "No groups selected to be removed" +msgstr "Nenhum grupo selecionado e nenhum novo nome do grupo entrou" -#: lib/pages/pluginmanagementpage.class.php:431 #, fuzzy -msgid "After image Action" -msgstr "grupo Local" +msgid "No hosts available to task" +msgstr "Hotéis em Task" -#: lib/pages/pluginmanagementpage.class.php:449 #, fuzzy -msgid "Image Associations" -msgstr "Associação imagem" +msgid "No hosts to task" +msgstr "Hotéis em Task" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" -msgstr "definição de imagem" +msgid "No icons found" +msgstr "Nenhum ícone encontrado" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" -msgstr "Resultado DMI" +msgid "No image specified" +msgstr "Nenhuma imagem especificada" -#: lib/pages/pluginmanagementpage.class.php:476 #, fuzzy -msgid "Image to DMI Mappings" -msgstr "Adicionar Imagem para Associações DMI" +msgid "No images associated with this group as master" +msgstr "Não há snapins associados a este alojamento" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" -msgstr "Nome OS" +#, fuzzy +msgid "No items found" +msgstr "Nenhum ícone encontrado" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" -msgstr "DMI Key" +msgid "No key being requested" +msgstr "Nenhuma chave que está sendo solicitado" -#: lib/pages/pluginmanagementpage.class.php:531 #, fuzzy -msgid "Current Associations" -msgstr "Associação imagem" +msgid "No link established to the database" +msgstr "Sem conexão com o banco de dados" -#: lib/pages/pluginmanagementpage.class.php:555 -#, fuzzy -msgid "Remove Selected?" -msgstr "Remover snapins selecionados" +msgid "No master nodes are enabled to delete this image" +msgstr "Nenhum nós mestre são habilitadas para apagar esta imagem" -#: lib/pages/pluginmanagementpage.class.php:565 -#, fuzzy -msgid "Remove Associations" -msgstr "Associação imagem" +msgid "No need to sync" +msgstr "Não há necessidade de sincronizar" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" -msgstr "Plugin inválido passado" +#, fuzzy +msgid "No new tasks found" +msgstr "Nenhuma classe válida enviada" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" -msgstr "Falha ao instalar o plug-in" +msgid "No node associated" +msgstr "No nó associado" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" -msgstr "Falha ao salvar plug-in" +msgid "No node associated with any addresses of this system" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" -msgstr "Plugin instalado!" +msgid "No open slots" +msgstr "Não há vagas abertas" -#: lib/pages/pluginmanagementpage.class.php:666 #, fuzzy -msgid "Must have an image associated" -msgstr "Deve ter Snapin associado a um grupo" +msgid "No query passed" +msgstr "Sem consulta enviada" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" -msgstr "Falha ao salvar a atribuição" +msgid "No query result, use query() first" +msgstr "Nenhum resultado consulta, use query () primeiro" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" -msgstr "Atribuição salvas com sucesso" +msgid "No query sent" +msgstr "Sem consulta enviada" -#: lib/pages/pluginmanagementpage.class.php:691 -#, fuzzy -msgid "Destroyed assignments" -msgstr "atribuição destruída" +msgid "No results found" +msgstr "Nenhum resultado encontrado" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" -msgstr "atribuição destruída" +#, fuzzy +msgid "No role selected" +msgstr "Delete Selected" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" -msgstr "Nome da impressora" +#, fuzzy +msgid "No rule selected" +msgstr "Delete Selected" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" -msgstr "Porta" +#, fuzzy +msgid "No site" +msgstr "Não configurado" -#: lib/pages/printermanagementpage.class.php:89 #, fuzzy -msgid "Config File" -msgstr "Printer Arquivo de Configuração" +msgid "No snapins associated with this group as master" +msgstr "Não há snapins associados a este alojamento" + +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 #, fuzzy -msgid "Copy from existing" -msgstr "Não foi possível criar impressora" +msgid "No valid Image defined for this host" +msgstr "Sem Imagem definida para este alojamento" + +msgid "No valid class sent" +msgstr "Nenhuma classe válida enviada" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 #, fuzzy -msgid "Printer Name/Alias" -msgstr "Printer Alias" +msgid "No valid hosts found and" +msgstr "Nenhuma classe válida enviada" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." -msgstr "" +#, fuzzy +msgid "No valid storage nodes found" +msgstr "nó de armazenamento inválido" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" -msgstr "Descrição Printer" +#, fuzzy +msgid "No valid tasks found" +msgstr "Nenhuma classe válida enviada" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" -msgstr "Porta de impressora" +msgid "No values passed" +msgstr "Não há valores passados" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" -msgstr "Printer Arquivo INF" +#, fuzzy +msgid "No viable macs to use" +msgstr "Não é capaz de atualizar" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" -msgstr "IP da impressora" +msgid "No viable storage groups found" +msgstr "" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" -msgstr "Modelo de impressora" +msgid "Node" +msgstr "Nó" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 -#, fuzzy -msgid "Printer Config File" -msgstr "Configuração de serviço" +msgid "Node Offline" +msgstr "" -#: lib/pages/printermanagementpage.class.php:459 #, fuzzy -msgid "Create New Printer" -msgstr "Criar novo %s" +msgid "Node Parent" +msgstr "Por cento" -#: lib/pages/printermanagementpage.class.php:473 #, fuzzy -msgid "Add New Printer" -msgstr "Impressora" +msgid "Node is unavailable" +msgstr "Nenhum de hash disponíveis" -#: lib/pages/printermanagementpage.class.php:515 #, fuzzy -msgid "A name must be set" +msgid "Node must be a string" msgstr "Evento deve ser uma string" -#: lib/pages/printermanagementpage.class.php:518 #, fuzzy -msgid "Printer name already exists" -msgstr "Impressora já existe" +msgid "Nodes" +msgstr "Nó" -#: lib/pages/printermanagementpage.class.php:545 #, fuzzy -msgid "Add printer failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Normal Snapin" +msgstr "Snapin inválido" -#: lib/pages/printermanagementpage.class.php:551 -#, fuzzy -msgid "Printer added!" -msgstr "Nome da impressora" +msgid "Not Available" +msgstr "Não disponível" -#: lib/pages/printermanagementpage.class.php:552 -#, fuzzy -msgid "Printer Create Success" -msgstr "Impressora já existe" +msgid "Not Registered Hosts" +msgstr "Hosts não registrada" -#: lib/pages/printermanagementpage.class.php:560 #, fuzzy -msgid "Printer Create Fail" -msgstr "atualização da impressora falhou!" +msgid "Not Valid" +msgstr "Dados inválidos" -#: lib/pages/printermanagementpage.class.php:869 -#, fuzzy -msgid "Printer General" -msgstr "Modelo de impressora" +msgid "Not a number" +msgstr "Não é um número" -#: lib/pages/printermanagementpage.class.php:936 -#, fuzzy -msgid "A printer name is required!" -msgstr "Um nome de imagem é necessário!" +msgid "Not able to add" +msgstr "Não é capaz de adicionar" -#: lib/pages/printermanagementpage.class.php:957 -#, fuzzy -msgid "A printer already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Not all elements in filter or ports setting are integer" +msgstr "" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" -msgstr "atualização da impressora falhou!" +msgid "Not allowed here" +msgstr "Não permitido aqui" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" -msgstr "Impressora atualizado!" +msgid "Not found" +msgstr "Não encontrado" -#: lib/pages/printermanagementpage.class.php:996 #, fuzzy -msgid "Printer Update Success" -msgstr "Impressora atualizado!" +msgid "Not protected" +msgstr "não protegido" -#: lib/pages/printermanagementpage.class.php:1004 -#, fuzzy -msgid "Printer Update Fail" -msgstr "atualização da impressora falhou!" +msgid "Not set" +msgstr "Não configurado" -#: lib/pages/reportmanagementpage.class.php:158 -#, fuzzy -msgid "Import Reports" -msgstr "Hosts de importação" +msgid "Not syncing" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:189 -#, fuzzy -msgid "Import FOG Reports" -msgstr "Hosts de importação" +msgid "Not syncing Image" +msgstr "" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 #, fuzzy -msgid "Import Report?" -msgstr "Hosts de importação" +msgid "Not syncing Snapin" +msgstr "Sem conexão para obter Snapin" + +msgid "Notes" +msgstr "notas" -#: lib/pages/reportmanagementpage.class.php:250 #, fuzzy -msgid "This section allows you to uploade user" -msgstr "Esta configuração define o nome de usuário proxy para usar." +msgid "Nothing passed to search for" +msgstr "Digite um nome de usuário para procurar" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" +msgid "O/S" +msgstr "O / S" + +msgid "OS Name" +msgstr "Nome OS" + +msgid "Object" +msgstr "Objeto" + +msgid "Old clients are the clients that came with FOG" msgstr "" -#: lib/pages/reportmanagementpage.class.php:254 #, fuzzy -msgid "the base FOG install" -msgstr "Reinicialização após a instalação" +msgid "Old key must be a string" +msgstr "Evento deve ser uma string" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" -msgstr "Sobre os relatórios FOG" +msgid "On Dashboard" +msgstr "No Painel" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" +msgid "On reboot we will try to find a new node" msgstr "" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" -msgstr "" +#, fuzzy +msgid "One or more macs are associated with a host" +msgstr "Erro, é uma imagem associada com este anfitrião" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" +msgid "Only Assigned Printers" +msgstr "Impressoras Só Assigned" + +#, fuzzy +msgid "Only allowed to have" +msgstr "Você só está autorizado a transferir" + +msgid "Open Source Computer Cloning Solution" +msgstr "Open Source Computer Clonagem Solution" + +msgid "Open VNC connection to" +msgstr "Abre uma conexão VNC para" + +msgid "OpenLDAP" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" -msgstr "Banco de dados de esquema Instalador / Updater" +msgid "Operating System" +msgstr "Sistema operacional" -#: lib/pages/schemaupdaterpage.class.php:63 #, fuzzy -msgid "Install/Update" -msgstr "Instalar / Atualizar Falha!" +msgid "Operation field not set" +msgstr "Campo operação não definido: %s" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" +msgid "Option below enforces a login system" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" +msgid "Option sets if there will even" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" +msgid "Option sets the ipxe keysequence to enter to gain menu" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" +msgid "Option sets the key sequence" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:75 #, fuzzy -msgid "window" -msgstr "Windows 7" +msgid "Option specifies the background file to use" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/pages/schemaupdaterpage.class.php:76 #, fuzzy -msgid "Applications" -msgstr "Ações" +msgid "Option specifies the color settings of the main menu items" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/pages/schemaupdaterpage.class.php:77 #, fuzzy -msgid "System Tools" -msgstr "Tipo de sistema" +msgid "Option specifies the color text on the menu if the host" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/pages/schemaupdaterpage.class.php:78 #, fuzzy -msgid "Terminal" -msgstr "Serial" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "" +#, fuzzy +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/pages/schemaupdaterpage.class.php:80 #, fuzzy -msgid "directory" -msgstr "Diretório" +msgid "Option specifies the menu timeout" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" +msgid "Option specifies the pairings after host checks" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" +msgid "Option specifies the pairings as a fallback" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" +msgid "Option specifies the pairings of colors to" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" + +msgid "Or there was no number defined for joining session" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" +msgid "Organizational Unit" +msgstr "Unidade organizacional" + +msgid "Other Tag #1" +msgstr "Outros Tag # 1" + +msgid "Other Tag #2" +msgstr "Outros Tag # 2" + +msgid "Other Tag 1" +msgstr "Outros Tag 1" + +msgid "Other Tag 2" +msgstr "Outros Tag 2" + +msgid "Otherwise it will just boot like normal" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" +msgid "PC Check-out Agreement" +msgstr "PC Acordo Check-out" + +#, fuzzy +msgid "Parameters" +msgstr "parâmetros:" + +#, fuzzy +msgid "Parent" +msgstr "Por cento" + +#, fuzzy +msgid "Parent Node" +msgstr "Modelo de impressora" + +msgid "Partclone" +msgstr "partclone" + +#, fuzzy +msgid "Partclone Compressed" +msgstr "partclone" + +msgid "Partclone Compressed 200MiB split" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" +#, fuzzy +msgid "Partclone Gzip" +msgstr "partclone" + +msgid "Partclone Gzip Split 200MiB" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" +msgid "Partclone Uncompressed" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" +msgid "Partclone Uncompressed 200MiB split" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:103 #, fuzzy -msgid "Are you sure you wish to" -msgstr "Tem certeza de que deseja remover estes itens" +msgid "Partclone Uncompressed Split 200MiB" +msgstr "partclone" -#: lib/pages/schemaupdaterpage.class.php:104 #, fuzzy -msgid "install or update the FOG database" -msgstr "Tem certeza de que deseja instalar ou atualizar o banco de dados FOG?" +msgid "Partclone Zstd" +msgstr "partclone" -#: lib/pages/schemaupdaterpage.class.php:115 #, fuzzy -msgid "Install/Update Now" -msgstr "Instalar / Atualizar agora" +msgid "Partclone Zstd Split 200MiB" +msgstr "partclone" -#: lib/pages/schemaupdaterpage.class.php:125 -#, fuzzy -msgid "Database not available" -msgstr "atualização de banco de dados falhou" +msgid "Partimage" +msgstr "Partimage" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" -msgstr "" +msgid "Partition" +msgstr "divisória" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" -msgstr "" +msgid "Password" +msgstr "Senha" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" -msgstr "" +msgid "Password reset requires a user account to reset" +msgstr "redefinição de senha requer uma conta de usuário para redefinir" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" -msgstr "" +msgid "Path" +msgstr "Caminho" -#: lib/pages/schemaupdaterpage.class.php:138 #, fuzzy -msgid "Also confirm that the database is indeed running" -msgstr "Verifique o banco de dados está em execução" - -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" -msgstr "" +msgid "Path is unavailable" +msgstr "Nenhum de hash disponíveis" -#: lib/pages/schemaupdaterpage.class.php:140 #, fuzzy -msgid "and if the Database service is running" -msgstr "Verifique o banco de dados está em execução" - -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" -msgstr "" - -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" -msgstr "Nenhuma conexão disponível" +msgid "Pause" +msgstr "Do utilizador" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" -msgstr "Atualize não é necessário!" +msgid "Pending Host List" +msgstr "Enquanto se aguarda a lista de hosts" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 -#, fuzzy -msgid "Function" -msgstr "Açao" +msgid "Pending Hosts" +msgstr "Anfitriões pendentes" -#: lib/pages/schemaupdaterpage.class.php:230 #, fuzzy -msgid "Database" -msgstr "Encontro" +msgid "Pending MAC Actions" +msgstr "pendentes MACs" -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" -msgstr "" +msgid "Pending MAC Export" +msgstr "Pendente MAC Exportação" -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" -msgstr "" +msgid "Pending MACs" +msgstr "pendentes MACs" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" -msgstr "Instalar / Atualizar Falha!" +msgid "Pending Registered Hosts" +msgstr "Enquanto se aguarda hosts registrados" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" -msgstr "Ocorreram os seguintes erros" +msgid "Pending Registration created by FOG_CLIENT" +msgstr "Na pendência de Registro criado por FOG_CLIENT" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" -msgstr "Instalar / Atualizar sucesso!" +msgid "Pending hosts" +msgstr "anfitriões pendentes" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" -msgstr "Entrar" +msgid "Pending macs" +msgstr "macs pendentes" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" -msgstr "Os seguintes erros ocorreram" +msgid "Pending..." +msgstr "Pendente..." -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" -msgstr "Editar Nó" +msgid "Percent" +msgstr "Por cento" -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" -msgstr "Nome / IP" +msgid "Perform Immediately?" +msgstr "" -#: lib/pages/serverinfo.class.php:75 -#, fuzzy -msgid "Server information" -msgstr "Informação geral" +msgid "Perform search" +msgstr "" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" -msgstr "Informações servidor inválido!" +msgid "Personal Information" +msgstr "Informação pessoal" -#: lib/pages/serverinfo.class.php:94 #, fuzzy -msgid "Unable to get server infromation!" -msgstr "Não é possível extrair informações do servidor!" +msgid "Pick a template" +msgstr "Template Snapin" + +msgid "Ping Hosts" +msgstr "Hosts Ping" -#: lib/pages/serverinfo.class.php:145 #, fuzzy -msgid "Unable to find basic information!" -msgstr "Incapaz de encontrar informações básicas" +msgid "Please Enter an admin or mobile lookup name" +msgstr "Por favor, indique um nome para este local." -#: lib/pages/serverinfo.class.php:158 -msgid "TX" -msgstr "TX" +msgid "Please Select an option" +msgstr "Por favor selecione uma opção" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" -msgstr "RX" +msgid "Please be very careful changing any of the following settings" +msgstr "" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "Desistiu" +msgid "Please check your credentials in" +msgstr "" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" -msgstr "Informação geral" +#, fuzzy +msgid "Please choose a different name" +msgstr "Por favor, escolha uma imagem" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "uptime" +#, fuzzy +msgid "Please choose a different path" +msgstr "Por favor, escolha uma imagem" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" -msgstr "Tipo de CPU" +msgid "Please choose an image" +msgstr "Por favor, escolha uma imagem" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "Contagem de CPU" +msgid "Please confirm you want to delete" +msgstr "Por favor, confirme que você deseja excluir" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" -msgstr "Modelo CPU" +#, fuzzy +msgid "Please enter a Group Member Attribute" +msgstr "Por favor, indique o endereço do servidor LDAP" -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "cache CPU" +msgid "Please enter a LDAP server address" +msgstr "Por favor, indique o endereço do servidor LDAP" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "Memória total" +#, fuzzy +msgid "Please enter a Search Base DN" +msgstr "Por favor, indique um nome de host" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" -msgstr "memória usada" +#, fuzzy +msgid "Please enter a User Name Attribute" +msgstr "Por favor, indique um nome de host" -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "Memoria livre" +msgid "Please enter a hostname" +msgstr "Por favor, indique um nome de host" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" -msgstr "Informações sobre o arquivo do sistema" +#, fuzzy +msgid "Please enter a mac address" +msgstr "Por favor insira um endereço IP válido" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "Espaço em disco total" +msgid "Please enter a name for this LDAP server." +msgstr "Por favor, indique um nome para este servidor LDAP." -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "Espaço em disco usado" +msgid "Please enter a name for this location." +msgstr "Por favor, indique um nome para este local." -#: lib/pages/serverinfo.class.php:203 #, fuzzy -msgid "Free Disk Space" -msgstr "Espaço em disco usado" - -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" -msgstr "Informações de rede" - -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" -msgstr "Em formação" +msgid "Please enter a valid CIDR subnet." +msgstr "Por favor insira um nome de host válido" -#: lib/pages/serviceconfigurationpage.class.php:133 #, fuzzy -msgid "Service general" -msgstr "hospedar Kernel" +msgid "Please enter a valid CIDR subnets comma separated list" +msgstr "Por favor insira um endereço IP válido" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "" +msgid "Please enter a valid hostname" +msgstr "Por favor insira um nome de host válido" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." -msgstr "" +msgid "Please enter a valid ip" +msgstr "Por favor insira um IP válido" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." -msgstr "" +#, fuzzy +msgid "Please enter a valid mac address" +msgstr "Por favor insira um endereço IP válido" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "" +msgid "Please enter an access token" +msgstr "Por favor, indique um token de acesso" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "" +msgid "Please input a session name" +msgstr "Por favor, insira um nome de sessão" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." +msgid "Please physically associate" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" -msgstr "FOG Download Client" - -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "" +#, fuzzy +msgid "Please select a valid ldap port" +msgstr "Por favor insira um IP válido" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "" +#, fuzzy +msgid "Please select an LDAP port to use" +msgstr "Por favor selecione uma opção" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" -msgstr "FOG Crypt" +msgid "Please select an option" +msgstr "Por favor selecione uma opção" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "" +#, fuzzy +msgid "Please select the snapin you want to install" +msgstr "Por favor, selecione o snap-in que você deseja implantar" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" -msgstr "Clique aqui" +msgid "Please select the storage group this location relates to." +msgstr "Por favor, selecione o grupo de armazenamento este local relaciona." -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" -msgstr "Ativado como padrão" +msgid "Please update your FOG Client, this is old and insecure" +msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" -msgstr "status do serviço" +#, fuzzy +msgid "Please use another hostname" +msgstr "Por favor, indique um nome de host" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 #, fuzzy -msgid "Current settings" -msgstr "Configurações" +msgid "Please wait until a slot is open" +msgstr "Por favor, indique um token de acesso" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "Padrão log out tempo (em minutos)" +msgid "Plugin" +msgstr "Plugar" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 #, fuzzy -msgid "This module is only used on the old client." -msgstr "" -"Esta configuração define o nome de usuário utilizado para o cliente ssh." +msgid "Plugin Configuration" +msgstr "Configuração de serviço" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" -msgstr "" +msgid "Plugin Description" +msgstr "Plugin Descrição" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." -msgstr "" +msgid "Plugin Installation" +msgstr "Instalação Plugin" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" -msgstr "" +msgid "Plugin Installed!" +msgstr "Plugin instalado!" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." -msgstr "" +msgid "Plugin Management" +msgstr "Gestão Plugin" -#: lib/pages/serviceconfigurationpage.class.php:463 -#, fuzzy -msgid "Directories" -msgstr "Diretório" +msgid "Plugin Name" +msgstr "Nome Plugin" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" -msgstr "Adicionar Diretório" +#, fuzzy +msgid "Plugins" +msgstr "Plugar" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" -msgstr "Largura padrão" +msgid "Port" +msgstr "Porta" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "padrão Altura" +#, fuzzy +msgid "Port is not valid ldap/ldaps port" +msgstr "A porta não é válida ldap / ldaps portos" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" -msgstr "Padrão Refresh Rate" +#, fuzzy +msgid "Postfix requires an action of login" +msgstr "Postfix requer uma ação de login, logout, ou começar a operar" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." -msgstr "" +msgid "Postfix requires an action of login, logout, or start to operate" +msgstr "Postfix requer uma ação de login, logout, ou começar a operar" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." -msgstr "" +#, fuzzy +msgid "Power Management" +msgstr "Gerenciamento de usuários" -#: lib/pages/serviceconfigurationpage.class.php:678 #, fuzzy -msgid "New Event" -msgstr "Adicionar Evento" +msgid "Power Management Task run time" +msgstr "Gerenciamento de usuários" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" -msgstr "Adicionar Evento" +msgid "Primary Group" +msgstr "Grupo primário" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." -msgstr "" +msgid "Primary MAC" +msgstr "MAC primária" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" -msgstr "Adicionar usuário" +msgid "Primary Storage Group" +msgstr "Grupo de armazenamento primário" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." -msgstr "" +msgid "Primary User" +msgstr "Usuário principal" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "" +msgid "Printed" +msgstr "Impresso" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." -msgstr "" +msgid "Printer" +msgstr "Impressora" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" -msgstr "atualização do Service falhou" +msgid "Printer Alias" +msgstr "Printer Alias" -#: lib/pages/serviceconfigurationpage.class.php:986 #, fuzzy -msgid "Module updated!" -msgstr "grupo adicionado" +msgid "Printer Associations" +msgstr "Descrição Printer" -#: lib/pages/serviceconfigurationpage.class.php:987 #, fuzzy -msgid "Module Update Success" -msgstr "usuário criado" +msgid "Printer Config File" +msgstr "Configuração de serviço" -#: lib/pages/serviceconfigurationpage.class.php:995 #, fuzzy -msgid "Module Update Fail" -msgstr "Grupo Criar falhou" +msgid "Printer Configuration" +msgstr "Configuração de serviço" -#: lib/pages/snapinmanagementpage.class.php:134 #, fuzzy -msgid "Filesize" -msgstr "tamanho do arquivo" +msgid "Printer Create Fail" +msgstr "atualização da impressora falhou!" -#: lib/pages/snapinmanagementpage.class.php:167 #, fuzzy -msgid "Is Pack" -msgstr "É uma" +msgid "Printer Create Success" +msgstr "Impressora já existe" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "Não" +msgid "Printer Description" +msgstr "Descrição Printer" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "sim" +#, fuzzy +msgid "Printer General" +msgstr "Modelo de impressora" + +msgid "Printer INF File" +msgstr "Printer Arquivo INF" + +msgid "Printer IP" +msgstr "IP da impressora" -#: lib/pages/snapinmanagementpage.class.php:397 #, fuzzy -msgid "New Snapin" -msgstr "Adicionar novo Snapin" +msgid "Printer IP/Hostname" +msgstr "Nome da impressora" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" -msgstr "Snapin Descrição" +msgid "Printer Management" +msgstr "Gerenciamento de impressora" + +msgid "Printer Model" +msgstr "Modelo de impressora" + +msgid "Printer Name" +msgstr "Nome da impressora" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 #, fuzzy -msgid "Snapin Type" -msgstr "Template Snapin" +msgid "Printer Name/Alias" +msgstr "Printer Alias" + +msgid "Printer Port" +msgstr "Porta de impressora" + +msgid "Printer Type" +msgstr "Tipo de impressora" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 #, fuzzy -msgid "Normal Snapin" -msgstr "Snapin inválido" +msgid "Printer Update Fail" +msgstr "atualização da impressora falhou!" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 #, fuzzy -msgid "Snapin Pack" -msgstr "Caminho Snapin" +msgid "Printer Update Success" +msgstr "Impressora atualizado!" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" -msgstr "Template Snapin" +#, fuzzy +msgid "Printer added!" +msgstr "Nome da impressora" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 #, fuzzy -msgid "Snapin Pack Template" -msgstr "Template Snapin" +msgid "Printer name already exists" +msgstr "Impressora já existe" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" -msgstr "Snapin Run Com" +msgid "Printer update failed!" +msgstr "atualização da impressora falhou!" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 -#, fuzzy -msgid "Snapin Pack File" -msgstr "Arquivo Snapin" +msgid "Printer updated!" +msgstr "Impressora atualizado!" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" -msgstr "Snapin Run com o argumento" +msgid "Printers" +msgstr "impressoras" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 -#, fuzzy -msgid "Snapin Pack Arguments" -msgstr "Argumentos Snapin" +msgid "Private key failed" +msgstr "chave privada falhou" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" -msgstr "Arquivo Snapin" +msgid "Private key not found" +msgstr "chave privada não encontrados" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" -msgstr "Arquivo Snapin (existe)" +msgid "Private key not readable" +msgstr "chave privada não pode ser lido" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" -msgstr "Argumentos Snapin" +msgid "Private key path not found" +msgstr "caminho da chave privada não encontrados" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" -msgstr "Snapin Ativado" +msgid "Protected" +msgstr "Protegido" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 -#, fuzzy -msgid "Snapin Arguments Hidden" -msgstr "Argumentos Snapin" +msgid "Pushbullet Accounts" +msgstr "Contas Pushbullet" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 #, fuzzy -msgid "Snapin Timeout (seconds)" -msgstr "Timeout Menu (em segundos)" +msgid "Pushbullet Management" +msgstr "Gestão de Clientes" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" -msgstr "Reinicialização após a instalação" +msgid "Quarantine" +msgstr "Quarentena" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" -msgstr "Desligamento após a instalação" +msgid "Queued" +msgstr "Enfileiradas" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" -msgstr "Snapin Command" +#, fuzzy +msgid "Quick" +msgstr "Clique" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" -msgstr "" +msgid "RX" +msgstr "RX" -#: lib/pages/snapinmanagementpage.class.php:668 -#, fuzzy -msgid "Create New Snapin" -msgstr "Criar novo %s" +msgid "Reboot" +msgstr "reinicialização" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 -msgid "Snapin file is too big, increase post_max_size in php.ini." -msgstr "O arquivo Snapin é muito grande, aumente post_max_size no php.ini." +msgid "Reboot after deploy" +msgstr "Reinicialização após deploy" -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." -msgstr "A variável $ _POST está vazia, verifique o log de erros do apache." +msgid "Reboot after install" +msgstr "Reinicialização após a instalação" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 #, fuzzy -msgid "A snapin name is required!" -msgstr "Um nome de imagem é necessário!" +msgid "Rebranding element has been successfully updated!" +msgstr "foi atualizado com sucesso" + +msgid "Receive" +msgstr "Receber" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 -#, fuzzy -msgid "A snapin already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Recommended" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 #, fuzzy -msgid "A file" -msgstr "Arquivo" +msgid "Record not found" +msgstr "Registro não encontrado, erro: %s" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" +msgid "Register must be managed from hooks or events" msgstr "" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -#, fuzzy -msgid "must be specified" -msgstr "Nenhuma imagem especificada" +msgid "Registered" +msgstr "Registrado" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" -msgstr "Conexão FTP falhou" +msgid "Registered Hosts" +msgstr "hosts registrados" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -#, fuzzy -msgid "Failed to add snapin" -msgstr "Falha ao adicionar arquivo de snap-in / atualização" +msgid "Releasing Staff Initials" +msgstr "Soltar Iniciais Pessoal" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" -msgstr "Falha ao adicionar arquivo de snap-in / atualização" +msgid "Remit Hello Interval" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Remote address attempting to login" +msgstr "" -#: lib/pages/snapinmanagementpage.class.php:867 -#, fuzzy -msgid "Snapin added!" -msgstr "Nome Snapin" +msgid "Remove" +msgstr "Remover" -#: lib/pages/snapinmanagementpage.class.php:868 #, fuzzy -msgid "Snapin Create Success" -msgstr "Snapin atualizada" +msgid "Remove " +msgstr "Remover" -#: lib/pages/snapinmanagementpage.class.php:877 #, fuzzy -msgid "Snapin Create Fail" -msgstr "Snapin atualizada" +msgid "Remove Accesscontrol Rules" +msgstr "Todos os controles de acesso" -#: lib/pages/snapinmanagementpage.class.php:904 #, fuzzy -msgid "Snapin General" -msgstr "Snapin Ativado" +msgid "Remove Associations" +msgstr "Associação imagem" -#: lib/pages/snapinmanagementpage.class.php:1123 #, fuzzy -msgid "Snapin Protected" -msgstr "Snapin atualizada" +msgid "Remove Hosts" +msgstr "Remover" -#: lib/pages/snapinmanagementpage.class.php:1291 #, fuzzy -msgid "Snapin Storage Groups" -msgstr "Grupo de armazenamento inválido" +msgid "Remove Images" +msgstr "Remover" -#: lib/pages/snapinmanagementpage.class.php:1701 -#, fuzzy -msgid "Snapin update failed!" -msgstr "atualização Snapin falhou" +msgid "Remove MAC" +msgstr "Remover MAC" -#: lib/pages/snapinmanagementpage.class.php:1706 #, fuzzy -msgid "Snapin updated!" -msgstr "Snapin atualizada" +msgid "Remove Selected?" +msgstr "Remover snapins selecionados" -#: lib/pages/snapinmanagementpage.class.php:1707 #, fuzzy -msgid "Snapin Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Remove Users" +msgstr "Remover" -#: lib/pages/snapinmanagementpage.class.php:1716 #, fuzzy -msgid "Snapin Update Fail" -msgstr "atualização Snapin falhou" - -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" -msgstr "%s ID %s não é válido" - -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "raiz da web" - -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "Bitrate" +msgid "Remove failed" +msgstr "Removido" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" -msgstr "" +#, fuzzy +msgid "Remove selected " +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:462 #, fuzzy -msgid "Create Storage Node" -msgstr "Nó de armazenamento" +msgid "Remove selected groups" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:483 #, fuzzy -msgid "New Storage Node" -msgstr "Nó de armazenamento" +msgid "Remove selected hosts" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" -msgstr "A largura de banda deve ser numérico e maior do que 0" +#, fuzzy +msgid "Remove selected images" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:578 #, fuzzy -msgid "Add storage node failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Remove selected printers" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:603 #, fuzzy -msgid "Storage Node added!" -msgstr "Nome Storage Node" +msgid "Remove selected rules" +msgstr "Remover snapins selecionados" + +msgid "Remove selected snapins" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:604 #, fuzzy -msgid "Storage Node Create Success" -msgstr "Nó de Armazenamento Criado" +msgid "Remove selected users" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:612 #, fuzzy -msgid "Storage Node Create Fail" -msgstr "Nó de Armazenamento Criado" +msgid "Remove snapins" +msgstr "Remover snap-in (s)" -#: lib/pages/storagemanagementpage.class.php:686 #, fuzzy -msgid "Storage Node General" -msgstr "Interface de Armazenamento Node" +msgid "Remove these items?" +msgstr "Remover snapins selecionados" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" -msgstr "" +msgid "Removed" +msgstr "Removido" -#: lib/pages/storagemanagementpage.class.php:968 #, fuzzy -msgid "Storage Node update failed!" -msgstr "Nó de Armazenamento Atualizado" +msgid "Removing Key" +msgstr "Definir Key" -#: lib/pages/storagemanagementpage.class.php:993 #, fuzzy -msgid "Storage Node updated!" -msgstr "Nó de Armazenamento Atualizado" +msgid "Replay from journal" +msgstr "Repetição do diário: tempo de inserção reais" -#: lib/pages/storagemanagementpage.class.php:994 -#, fuzzy -msgid "Storage Node Update Success" -msgstr "Nó de Armazenamento Atualizado" +msgid "Replicate?" +msgstr "Replicar?" -#: lib/pages/storagemanagementpage.class.php:1002 #, fuzzy -msgid "Storage Node Update Fail" -msgstr "Nó de Armazenamento Atualizado" +msgid "Replicating" +msgstr "Replicar?" -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" -msgstr "" +msgid "Replication Bandwidth" +msgstr "Bandwidth Replication" -#: lib/pages/storagemanagementpage.class.php:1250 #, fuzzy -msgid "Create Storage Group" -msgstr "Nó de armazenamento" +msgid "Replication already running with PID" +msgstr "Bandwidth Replication" -#: lib/pages/storagemanagementpage.class.php:1271 -#, fuzzy -msgid "New Storage Group" -msgstr "Grupo de armazenamento" +msgid "Report" +msgstr "Relatório" -#: lib/pages/storagemanagementpage.class.php:1311 -#, fuzzy -msgid "Storage Group Create Success" -msgstr "usuário criado" +msgid "Report Management" +msgstr "relatório de Gestão" -#: lib/pages/storagemanagementpage.class.php:1319 -#, fuzzy -msgid "Storage Group Create Fail" -msgstr "Grupo de Armazenamento Criado" +msgid "Reports" +msgstr "Relatórios" -#: lib/pages/storagemanagementpage.class.php:1346 -#, fuzzy -msgid "Storage Group General" -msgstr "Nome do grupo de armazenamento" +msgid "Required database field is empty" +msgstr "campo de banco de dados necessário está vazio" -#: lib/pages/storagemanagementpage.class.php:1444 -#, fuzzy -msgid "Storage Group update failed!" -msgstr "atualização do utilizador falhou" +msgid "Requires templates to process" +msgstr "Requer modelos para processar" -#: lib/pages/storagemanagementpage.class.php:1449 -#, fuzzy -msgid "Storage Group updated!" -msgstr "Grupo de armazenamento Atualizado" +msgid "Reset Encryption Data" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:1450 #, fuzzy -msgid "Storage Group Update Success" -msgstr "usuário criado" +msgid "Reset Token" +msgstr "token de acesso" -#: lib/pages/storagemanagementpage.class.php:1457 #, fuzzy -msgid "Storage Group Update Fail" -msgstr "Grupo de armazenamento Atualizado" +msgid "Result" +msgstr "Resultados" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" -msgstr "Começado por:" +msgid "Results" +msgstr "Resultados" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" -msgstr "" +msgid "Return Code" +msgstr "Código de retorno" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" -msgstr "Tarefa forçada a começar" +msgid "Return Desc" +msgstr "retorno desconto" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" -msgstr "Força-tarefa para começar" +#, fuzzy +msgid "Return code" +msgstr "Código de retorno" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" -msgstr "Todos os Grupos" +msgid "Returning array within key" +msgstr "Voltando matriz dentro chave" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" -msgstr "tipo de objeto inválido passado" +msgid "Returning value of key" +msgstr "Retornando valor da chave" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" -msgstr "Tipo de Tarefa inválida" +msgid "Reverse the file: (newest on top)" +msgstr "Reverter o arquivo: (a mais recente no topo)" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" -msgstr "imagem inválido atribuído a hospedar" +msgid "Rexmit Hello Interval" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" -msgstr "é protegida" +#, fuzzy +msgid "Role" +msgstr "Remover" -#: lib/pages/taskmanagementpage.class.php:550 #, fuzzy -msgid "Quick" -msgstr "Clique" +msgid "Role Create Fail" +msgstr "usuário criado" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" -msgstr "Hosts não tem a mesma imagem atribuídas" +#, fuzzy +msgid "Role Create Success" +msgstr "usuário criado" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" -msgstr "Multicast de Implantação Rápida" +#, fuzzy +msgid "Role Description" +msgstr "Descrição" -#: lib/pages/taskmanagementpage.class.php:564 #, fuzzy -msgid "Group Quick Deploy" -msgstr "Implantação rápida" +msgid "Role Name" +msgstr "Nome do módulo" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." -msgstr "" +#, fuzzy +msgid "Role Update Fail" +msgstr "Grupo Criar falhou" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" -msgstr "tarefa inválido" +#, fuzzy +msgid "Role Update Success" +msgstr "usuário criado" -#: lib/pages/taskmanagementpage.class.php:801 #, fuzzy -msgid "Active Multi-cast Tasks" -msgstr "Tarefas Multicast ativos" +msgid "Role added!" +msgstr "Nome da impressora" -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "MulticastTask" +#, fuzzy +msgid "Role update failed!" +msgstr "atualização do utilizador falhou" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" -msgstr "Não é possível cancelar tarefas desta forma" +#, fuzzy +msgid "Role updated!" +msgstr "Updater cliente" -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" -msgstr "Nome do host / Grupo" +msgid "Routes should be an array or an instance of Traversable" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" -msgstr "Grupo está" +msgid "Row" +msgstr "Linha" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" -msgstr "Tipo de tarefa" +msgid "Row number not set properly" +msgstr "número da linha não definido adequadamente" -#: lib/pages/taskmanagementpage.class.php:1204 #, fuzzy -msgid "All snapins" -msgstr "Todos os snap-ins" +msgid "Rule Associate Fail" +msgstr "Associação imagem" -#: lib/pages/taskmanagementpage.class.php:1208 #, fuzzy -msgid "Invalid snapin" -msgstr "Snapin inválido" +msgid "Rule Associate Success" +msgstr "usuário criado" -#: lib/pages/taskmanagementpage.class.php:1210 #, fuzzy -msgid "Snapin to be installed" -msgstr "Snapin Ativado" - -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" -msgstr "grupo" - -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" -msgstr "anfitrião" +msgid "Rule Association" +msgstr "Associação imagem" -#: lib/pages/usermanagementpage.class.php:52 #, fuzzy -msgid "Change password" -msgstr "Gerenciamento de senha" +msgid "Rule Create Fail" +msgstr "usuário criado" -#: lib/pages/usermanagementpage.class.php:56 #, fuzzy -msgid "API Settings" -msgstr "Configurações" +msgid "Rule Create Success" +msgstr "usuário criado" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 #, fuzzy -msgid "Friendly Name" -msgstr "Nome Kernel" +msgid "Rule Delete Fail" +msgstr "Apagar dados de arquivo" -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" +msgid "Rule Delete Success" msgstr "" -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" -msgstr "" +#, fuzzy +msgid "Rule Membership" +msgstr "Membership" -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" -msgstr "Editar usuário" +#, fuzzy +msgid "Rule Name" +msgstr "Nome do módulo" -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" -msgstr "Novo usuário" +#, fuzzy +msgid "Rule Type" +msgstr "Tipo de módulo" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" -msgstr "Nome de usuário" +#, fuzzy +msgid "Rule Update Fail" +msgstr "Grupo Criar falhou" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" -msgstr "Senha do usuário" +#, fuzzy +msgid "Rule Update Success" +msgstr "usuário criado" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" -msgstr "User Password (confirmar)" +#, fuzzy +msgid "Rule Value" +msgstr "Valor" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 #, fuzzy -msgid "User API Enabled" -msgstr "Está ativado" +msgid "Rule added!" +msgstr "Nome da impressora" -#: lib/pages/usermanagementpage.class.php:223 #, fuzzy -msgid "Create user?" -msgstr "Criar usuário" +msgid "Rule associate success!" +msgstr "usuário criado" -#: lib/pages/usermanagementpage.class.php:283 #, fuzzy -msgid "A user name is required!" -msgstr "Um nome de imagem é necessário!" +msgid "Rule deleted successfully!" +msgstr "Instalar / Atualizar sucesso!" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" -msgstr "" +#, fuzzy +msgid "Rule type" +msgstr "Tipo de módulo" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" -msgstr "" +#, fuzzy +msgid "Rule updated!" +msgstr "Updater cliente" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" +msgid "Rule value" msgstr "" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" -msgstr "" +#, fuzzy +msgid "Running Windows" +msgstr "executando a Versão" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" +#, fuzzy +msgid "SQL Error" +msgstr "Erro SQL:" + +msgid "SSL Path" +msgstr "Caminho SSL" + +msgid "Save Changes" +msgstr "Salvar alterações" + +msgid "Save Initrd" msgstr "" -#: lib/pages/usermanagementpage.class.php:304 #, fuzzy -msgid "A username already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Save Kernel" +msgstr "Núcleo" -#: lib/pages/usermanagementpage.class.php:309 #, fuzzy -msgid "A password is required!" -msgstr "%s é necessária" +msgid "Saving data for" +msgstr "Salvando dados para %s objeto" -#: lib/pages/usermanagementpage.class.php:321 -#, fuzzy -msgid "Add user failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Schedule" +msgstr "Cronograma" -#: lib/pages/usermanagementpage.class.php:327 #, fuzzy -msgid "User added!" -msgstr "Nome da impressora" +msgid "Schedule Power" +msgstr "Scheduler" -#: lib/pages/usermanagementpage.class.php:328 #, fuzzy -msgid "User Create Success" -msgstr "usuário criado" +msgid "Schedule as debug task" +msgstr "Agendar tarefa como uma tarefa de depuração" -#: lib/pages/usermanagementpage.class.php:336 #, fuzzy -msgid "User Create Fail" -msgstr "usuário criado" +msgid "Schedule cron-style" +msgstr "Scheduler" -#: lib/pages/usermanagementpage.class.php:363 #, fuzzy -msgid "User General" -msgstr "hospedar Kernel" +msgid "Schedule delayed" +msgstr "Cronograma" -#: lib/pages/usermanagementpage.class.php:392 #, fuzzy -msgid "Update General?" -msgstr "Atualizar impressora" +msgid "Schedule instant" +msgstr "Cronograma" -#: lib/pages/usermanagementpage.class.php:455 #, fuzzy -msgid "User Change Password" -msgstr "Gerenciamento de senha" +msgid "Schedule with shutdown" +msgstr "Cronograma" -#: lib/pages/usermanagementpage.class.php:481 #, fuzzy -msgid "Update Password?" -msgstr "Senha do usuário" +msgid "Scheduled Task run time" +msgstr "Atividades agendadas" -#: lib/pages/usermanagementpage.class.php:535 -#, fuzzy -msgid "User API Settings" -msgstr "Configurações" +msgid "Scheduled Tasks" +msgstr "Atividades agendadas" + +msgid "Scheduled date is in the past" +msgstr "Data prevista está no passado" -#: lib/pages/usermanagementpage.class.php:557 #, fuzzy -msgid "User API Token" -msgstr "token de acesso" +msgid "Scheduled tasks successfully created" +msgstr "foi atualizado com sucesso" + +msgid "Scheduler" +msgstr "Scheduler" + +msgid "Screen Height (in pixels)" +msgstr "Tela Altura (em pixels)" + +msgid "Screen Refresh Rate (in Hz)" +msgstr "Tela Taxa de atualização (em Hz)" + +msgid "Screen Width (in pixels)" +msgstr "Largura da tela (em pixels)" + +msgid "Search" +msgstr "Pesquisa" -#: lib/pages/usermanagementpage.class.php:573 #, fuzzy -msgid "Update API?" -msgstr "Atualizar MACs" +msgid "Search Base DN" +msgstr "Pesquisa" -#: lib/pages/usermanagementpage.class.php:667 #, fuzzy -msgid "A user already exists with this name" -msgstr "Uma imagem já existe com este nome!" +msgid "Search DN" +msgstr "Pesquisa" + +msgid "Search DN did not return any results" +msgstr "" -#: lib/pages/usermanagementpage.class.php:728 #, fuzzy -msgid "User update failed!" -msgstr "atualização do utilizador falhou" +msgid "Search Method" +msgstr "Pesquisa" -#: lib/pages/usermanagementpage.class.php:733 #, fuzzy -msgid "User updated!" -msgstr "usuário atualizada" +msgid "Search Scope" +msgstr "Pesquisa" -#: lib/pages/usermanagementpage.class.php:734 #, fuzzy -msgid "User Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Search pattern" +msgstr "Pesquisa" + +msgid "Search results returned false" +msgstr "" -#: lib/pages/usermanagementpage.class.php:742 #, fuzzy -msgid "User Update Fail" -msgstr "atualização do utilizador falhou" +msgid "Second paramater must be in array(class,function)" +msgstr "" +"Segundo parâmetro deve estar no formato array (classe Hook, função a ser " +"executada)" + +msgid "Select Image" +msgstr "Selecionar imagem" + +msgid "Select User" +msgstr "Selecionar Usuário" + +msgid "Select a cron type" +msgstr "Selecione um tipo de cron" + +msgid "Select a valid image" +msgstr "Selecione uma imagem válida" -#: lib/pages/processlogin.class.php:161 #, fuzzy -msgid "Login failed" -msgstr "Carga falhou: %s" +msgid "Select management level for these hosts" +msgstr "Selecione Nível de Gestão para este alojamento" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 #, fuzzy -msgid "username" -msgstr "Nome de usuário" +msgid "Select management level for this host" +msgstr "Selecione Nível de Gestão para este alojamento" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "não conseguiu iniciar sessão" +msgid "Select/Deselect All" +msgstr "Selecionar / desmarcar todas" -#: lib/pages/processlogin.class.php:185 #, fuzzy -msgid "Login accepted" -msgstr "Entrar" +msgid "Selected Logins" +msgstr "Impressora" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" +msgid "Selected groups's current activity" msgstr "" -#: lib/pages/processlogin.class.php:246 #, fuzzy -msgid "FOG Project" -msgstr "Projeto FOG no Github" +msgid "Selected hosts approved successfully" +msgstr "Salvo com sucesso" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 #, fuzzy -msgid "Access Controls" -msgstr "Todos os controles de acesso" +msgid "Selected hosts deleted successfully" +msgstr "Instalar / Atualizar sucesso!" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 #, fuzzy -msgid "Role" -msgstr "Remover" +msgid "Selected node's disk usage" +msgstr "o uso do disco de armazenamento de imagem do nó selecionado" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -#, fuzzy -msgid "User Access Control" -msgstr "Controle de acesso" +msgid "Serial" +msgstr "Serial" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 -#, fuzzy -msgid "Export Accesscontrols" -msgstr "Controle de acesso" +msgid "Serial Number" +msgstr "Número de série" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 -#, fuzzy -msgid "Import Accesscontrols" -msgstr "Controle de acesso" +msgid "Server Shell" +msgstr "Shell servidor" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 #, fuzzy -msgid "Rule Association" -msgstr "Associação imagem" +msgid "Server information" +msgstr "Informação geral" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 #, fuzzy -msgid "Role Name" -msgstr "Nome do módulo" +msgid "Server information at a glance." +msgstr "informações LDAP atualizado!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 -#, fuzzy -msgid "Rule type" -msgstr "Tipo de módulo" +msgid "Service" +msgstr "Serviço" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" -msgstr "" +msgid "Service Configuration" +msgstr "Configuração de serviço" + +msgid "Service Master" +msgstr "Mestre serviço" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 #, fuzzy -msgid "Parent Node" -msgstr "Modelo de impressora" +msgid "Service Setting Update Failed" +msgstr "Configurações atualizadas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, fuzzy, php-format -msgid "List all roles" -msgstr "Listar todos os %s" +#, fuzzy +msgid "Service Setting Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, fuzzy, php-format -msgid "Add new role" -msgstr "Adicionar nova conta de usuário" +#, fuzzy +msgid "Service Start" +msgstr "status do serviço" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, fuzzy, php-format -msgid "List all rules" -msgstr "Listar todos os %s" +msgid "Service Status" +msgstr "status do serviço" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, fuzzy, php-format -msgid "Add new rule" -msgstr "Adicionar nova conta de usuário" +msgid "Service Tag" +msgstr "Etiqueta de serviço" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 #, fuzzy -msgid "Role Description" -msgstr "Descrição" +msgid "Service general" +msgstr "hospedar Kernel" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 -#, fuzzy -msgid "New Role" -msgstr "novo menu" +msgid "Service update failed" +msgstr "atualização do Service falhou" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -#, fuzzy -msgid "Create New Access Control Role" -msgstr "Todos os controles de acesso" +msgid "Session Name" +msgstr "Nome da sessão" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 -#, fuzzy -msgid "A name is required!" -msgstr "Um nome de imagem é necessário!" +msgid "Session altered improperly" +msgstr "Sessão alterada indevidamente" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -#, fuzzy -msgid "A role already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Session name cannot be the same as an existing hostname" +msgstr "O nome da sessão não pode ser o mesmo que um nome de host existente" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 -#, fuzzy -msgid "Add role failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Session timeout" +msgstr "Sessão expirada" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 -#, fuzzy -msgid "Role added!" -msgstr "Nome da impressora" +msgid "Session with that name already exists" +msgstr "Sessão com esse nome já existe" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 #, fuzzy -msgid "Role Create Success" -msgstr "usuário criado" +msgid "Set Failed" +msgstr "fracassado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 #, fuzzy -msgid "Role Create Fail" -msgstr "usuário criado" +msgid "Set failed" +msgstr "atualização do Service falhou" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 -#, fuzzy -msgid "Access Control Role General" -msgstr "Todos os controles de acesso" +msgid "Setting Key" +msgstr "Definir Key" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -#, fuzzy -msgid "Role update failed!" -msgstr "atualização do utilizador falhou" +msgid "Setting logout to one second prior to next login" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 -#, fuzzy -msgid "Role updated!" -msgstr "Updater cliente" +msgid "Settings" +msgstr "Configurações" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 #, fuzzy -msgid "Role Update Success" -msgstr "usuário criado" +msgid "Settings Update Fail" +msgstr "Configurações atualizadas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 #, fuzzy -msgid "Role Update Fail" -msgstr "Grupo Criar falhou" +msgid "Settings Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 #, fuzzy -msgid "Access Control Rules" -msgstr "Todos os controles de acesso" +msgid "Settings successfully stored!" +msgstr "foi atualizado com sucesso" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -#, fuzzy -msgid "Parent" -msgstr "Por cento" +msgid "Should anything go wrong" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 -#, fuzzy -msgid "Access Control Rule" -msgstr "Todos os controles de acesso" +msgid "Shutdown" +msgstr "Desligar" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 -#, fuzzy -msgid "New Rule" -msgstr "novo menu" +msgid "Shutdown after deploy" +msgstr "Shutdown após deploy" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 -#, fuzzy -msgid "Rule Type" -msgstr "Tipo de módulo" +msgid "Shutdown after install" +msgstr "Desligamento após a instalação" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 -#, fuzzy -msgid "Node Parent" -msgstr "Por cento" +msgid "Signed" +msgstr "Assinado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 #, fuzzy -msgid "Rule Value" -msgstr "Valor" +msgid "Site" +msgstr "Max Size" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 #, fuzzy -msgid "Create Rule?" -msgstr "Criar usuário" +msgid "Site Association" +msgstr "Associação imagem" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 #, fuzzy -msgid "A rule already exists with this name." -msgstr "Uma imagem já existe com este nome!" +msgid "Site Control Management" +msgstr "Gestão de Controle de Acesso" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 #, fuzzy -msgid "Add rule failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Site Create Fail" +msgstr "atualização da impressora falhou!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 #, fuzzy -msgid "Rule added!" -msgstr "Nome da impressora" +msgid "Site Create Success" +msgstr "Impressora já existe" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 #, fuzzy -msgid "Rule Create Success" -msgstr "usuário criado" +msgid "Site Description" +msgstr "Descrição Printer" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 #, fuzzy -msgid "Rule Create Fail" -msgstr "usuário criado" +msgid "Site General" +msgstr "Modelo de impressora" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 #, fuzzy -msgid "Access Control Rule General" -msgstr "Todos os controles de acesso" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "Falha ao atualizar" +msgid "Site Name" +msgstr "Nome da impressora" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 #, fuzzy -msgid "Rule updated!" -msgstr "Updater cliente" +msgid "Site Update Fail" +msgstr "atualização da impressora falhou!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 #, fuzzy -msgid "Rule Update Success" -msgstr "usuário criado" +msgid "Site Update Success" +msgstr "Impressora atualizado!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 #, fuzzy -msgid "Rule Update Fail" -msgstr "Grupo Criar falhou" +msgid "Site Updated!" +msgstr "Impressora atualizado!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 #, fuzzy -msgid "Fail to destroy" -msgstr "Falha ao destruir" +msgid "Site added!" +msgstr "Nome da impressora" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 #, fuzzy -msgid "Rule deleted successfully!" -msgstr "Instalar / Atualizar sucesso!" - -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" -msgstr "" +msgid "Site update failed!" +msgstr "atualização da impressora falhou!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 #, fuzzy -msgid "Rule Delete Fail" -msgstr "Apagar dados de arquivo" +msgid "Sites" +msgstr "minutos" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 #, fuzzy -msgid "Rule Name" -msgstr "Nome do módulo" +msgid "Size" +msgstr "Max Size" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 -#, fuzzy -msgid "Rule Membership" -msgstr "Membership" +msgid "Slack Accounts" +msgstr "Contas Slack" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 #, fuzzy -msgid "Check here to see what rules can be added" -msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" +msgid "Slack Management" +msgstr "Gestão de tarefas" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 #, fuzzy -msgid "Add Rules" -msgstr "Adicionar usuário" +msgid "Smart Installer" +msgstr "Smart Installer (recomendado)" + +msgid "Snapin" +msgstr "Snapin" + +msgid "Snapin Args" +msgstr "Snapin Args" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 -#, fuzzy -msgid "Add selected rules" -msgstr "Impressora" +msgid "Snapin Arguments" +msgstr "Argumentos Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 #, fuzzy -msgid "Remove Accesscontrol Rules" -msgstr "Todos os controles de acesso" +msgid "Snapin Arguments Hidden" +msgstr "Argumentos Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 -#, fuzzy -msgid "Remove selected rules" -msgstr "Remover snapins selecionados" +msgid "Snapin Client" +msgstr "cliente Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 -#, fuzzy -msgid "No role selected" -msgstr "Delete Selected" +msgid "Snapin Command" +msgstr "Snapin Command" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 #, fuzzy -msgid "No rule selected" -msgstr "Delete Selected" +msgid "Snapin Create Fail" +msgstr "Snapin atualizada" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 #, fuzzy -msgid "Associate rule failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Snapin Create Success" +msgstr "Snapin atualizada" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 #, fuzzy -msgid "Rule associate success!" -msgstr "usuário criado" +msgid "Snapin Created" +msgstr "Snapin atualizada" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 -#, fuzzy -msgid "Rule Associate Success" -msgstr "usuário criado" +msgid "Snapin Creation Date" +msgstr "Snapin Data de Criação" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 -#, fuzzy -msgid "Rule Associate Fail" -msgstr "Associação imagem" +msgid "Snapin Creation Time" +msgstr "Snapin tempo de criação" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 -#, fuzzy -msgid "User name" -msgstr "Nome de usuário" +msgid "Snapin Description" +msgstr "Snapin Descrição" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 -#, fuzzy -msgid "Check here to see what users can be added" -msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" +msgid "Snapin Enabled" +msgstr "Snapin Ativado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 -#, fuzzy -msgid "Add Users" -msgstr "Adicionar usuário" +msgid "Snapin File" +msgstr "Arquivo Snapin" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 -#, fuzzy -msgid "Add selected users" -msgstr "Impressora" +msgid "Snapin File (exists)" +msgstr "Arquivo Snapin (existe)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 #, fuzzy -msgid "Remove Users" -msgstr "Remover" +msgid "Snapin General" +msgstr "Snapin Ativado" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 #, fuzzy -msgid "Remove selected users" -msgstr "Remover snapins selecionados" +msgid "Snapin Hash" +msgstr "Caminho Snapin" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" -msgstr "Capone Deploy" +msgid "Snapin History" +msgstr "História Snapin" -#: lib/plugins/ldap/class/ldap.class.php:107 -#, fuzzy -msgid "Function does not exist" -msgstr "O método não existe" +msgid "Snapin ID" +msgstr "Snapin ID" -#: lib/plugins/ldap/class/ldap.class.php:147 #, fuzzy -msgid "Port is not valid ldap/ldaps port" -msgstr "A porta não é válida ldap / ldaps portos" +msgid "Snapin Locations" +msgstr "localizações" -#: lib/plugins/ldap/class/ldap.class.php:295 -#, fuzzy -msgid "We cannot connect to LDAP server" -msgstr "Não é possível conectar ao banco de dados" +msgid "Snapin Log" +msgstr "Snapin Log" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" -msgstr "" +msgid "Snapin Management" +msgstr "Gestão Snapin" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" -msgstr "" +msgid "Snapin Name" +msgstr "Nome Snapin" -#: lib/plugins/ldap/class/ldap.class.php:398 #, fuzzy -msgid "Cannot bind to the LDAP server" -msgstr "Não é possível conectar ao banco de dados" - -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" -msgstr "" +msgid "Snapin Pack" +msgstr "Caminho Snapin" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 #, fuzzy -msgid "Search DN" -msgstr "Pesquisa" +msgid "Snapin Pack Arguments" +msgstr "Argumentos Snapin" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 #, fuzzy -msgid "Filter" -msgstr "Arquivo" +msgid "Snapin Pack File" +msgstr "Arquivo Snapin" -#: lib/plugins/ldap/class/ldap.class.php:460 #, fuzzy -msgid "User was not authorized by the LDAP server" -msgstr "Por favor, indique um nome para este servidor LDAP." +msgid "Snapin Pack Template" +msgstr "Template Snapin" + +msgid "Snapin Path" +msgstr "Caminho Snapin" -#: lib/plugins/ldap/class/ldap.class.php:461 #, fuzzy -msgid "User DN" -msgstr "Nome de usuário" +msgid "Snapin Protected" +msgstr "Snapin atualizada" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" -msgstr "" +msgid "Snapin Replicator" +msgstr "Snapin Replicator" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" -msgstr "" +msgid "Snapin Return Code" +msgstr "Snapin Código de retorno" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" -msgstr "" +msgid "Snapin Return Detail" +msgstr "Detalhe Snapin Retorno" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" -msgstr "" +msgid "Snapin Run With" +msgstr "Snapin Run Com" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" -msgstr "" +msgid "Snapin Run With Args" +msgstr "Snapin correr com Args" + +msgid "Snapin Run With Argument" +msgstr "Snapin Run com o argumento" + +msgid "Snapin State" +msgstr "Estado Snapin" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 #, fuzzy -msgid "Group Search DN" -msgstr "anfitrião Pesquisa" +msgid "Snapin Storage Groups" +msgstr "Grupo de armazenamento inválido" -#: lib/plugins/ldap/class/ldap.class.php:848 #, fuzzy -msgid "Search Method" -msgstr "Pesquisa" +msgid "Snapin Task is invalid" +msgstr "Snapin não é válido" + +msgid "Snapin Template" +msgstr "Template Snapin" -#: lib/plugins/ldap/class/ldap.class.php:852 #, fuzzy -msgid "Result" -msgstr "Resultados" +msgid "Snapin Timeout (seconds)" +msgstr "Timeout Menu (em segundos)" + +msgid "Snapin Transfer Log" +msgstr "Snapin Transferência de Log" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 #, fuzzy -msgid "LDAP Servers" -msgstr "Servidor LDAP" +msgid "Snapin Type" +msgstr "Template Snapin" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" -msgstr "Gestão LDAP" +#, fuzzy +msgid "Snapin Update Fail" +msgstr "atualização Snapin falhou" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 #, fuzzy -msgid "Export LDAPs" -msgstr "Export PDF" +msgid "Snapin Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 #, fuzzy -msgid "Import LDAPs" -msgstr "Importar" +msgid "Snapin Used" +msgstr "snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 #, fuzzy -msgid "Plugin Configuration" -msgstr "Configuração de serviço" +msgid "Snapin added!" +msgstr "Nome Snapin" + +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "O arquivo Snapin é muito grande, aumente post_max_size no php.ini." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 #, fuzzy -msgid "LDAP Connection Name" -msgstr "Localização Nome" +msgid "Snapin is invalid" +msgstr "Snapin não é válido" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" -msgstr "Endereço do servidor LDAP" +msgid "Snapin is protected and cannot be deleted" +msgstr "Snapin está protegido e não pode ser excluído" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 #, fuzzy -msgid "LDAP Connection Name" -msgstr "Localização Nome" +msgid "Snapin task not completed" +msgstr "Snapin não é válido" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" -msgstr "LDAP Server Descrição" +#, fuzzy +msgid "Snapin to be installed" +msgstr "Snapin Ativado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" -msgstr "Servidor LDAP" +#, fuzzy +msgid "Snapin update failed!" +msgstr "atualização Snapin falhou" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 #, fuzzy -msgid "Admin Group" -msgstr "modificar Grupo" +msgid "Snapin updated!" +msgstr "Snapin atualizada" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" -msgstr "Novo servidor LDAP" +msgid "Snapins" +msgstr "snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "" +msgid "Snapins Are already deployed to this host" +msgstr "Snapins já são implantados para este alojamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" +msgid "So if you are trying to transmit to remote node A" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" +msgid "Somebody will be able to help in some form" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 -#, fuzzy -msgid "LDAP Server Port" -msgstr "Servidor LDAP" +msgid "Space variable must be boolean" +msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" +msgid "Specified download URL not allowed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 -#, fuzzy -msgid "Search Base DN" -msgstr "Pesquisa" +msgid "Start" +msgstr "Começar" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 -#, fuzzy -msgid "Mobile Group" -msgstr "modificar Grupo" +msgid "Start Date" +msgstr "Data inicial" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 -#, fuzzy -msgid "Initial Template" -msgstr "Template Snapin" +msgid "Start Multicast Session" +msgstr "Iniciar Sessão Multicast" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 #, fuzzy -msgid "Pick a template" -msgstr "Template Snapin" +msgid "Start Session" +msgstr "Iniciar Sessão Multicast" + +msgid "Start Time" +msgstr "start Time" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "" +msgid "Started By:" +msgstr "Começado por:" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" -msgstr "" +msgid "Started sync for" +msgstr "sync começou para" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" -msgstr "" +#, fuzzy +msgid "Starting Image Replication" +msgstr "Replicator imagem" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 #, fuzzy -msgid "User Name Attribute" -msgstr "Nome de usuário" +msgid "Starting Image Size Service" +msgstr "Replicator imagem" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" +msgid "Starting Snapin Hashing Service" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 #, fuzzy -msgid "Search Scope" -msgstr "Pesquisa" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "" +msgid "Starting Snapin Replication" +msgstr "Snapin Replicator" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 #, fuzzy -msgid "Bind Password" -msgstr "senha de domínio" +msgid "Starting Sync Actions" +msgstr "Começando ações são sincronizadas" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 #, fuzzy -msgid "Create New LDAP" -msgstr "Criar novo %s" +msgid "Starting process" +msgstr "processo a partir ..." -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "Não é capaz de adicionar" +msgid "State" +msgstr "Estado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "Por favor, indique um nome para este servidor LDAP." +msgid "Status" +msgstr "estado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "Por favor, indique o endereço do servidor LDAP" +msgid "Stop Task" +msgstr "Parar Tarefa" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 -#, fuzzy -msgid "Please enter a Search Base DN" -msgstr "Por favor, indique um nome de host" +msgid "Storage" +msgstr "Armazenamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 -#, fuzzy -msgid "Please select an LDAP port to use" -msgstr "Por favor selecione uma opção" +msgid "Storage Group" +msgstr "Grupo de armazenamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 -#, fuzzy -msgid "Please select a valid ldap port" -msgstr "Por favor insira um IP válido" +msgid "Storage Group Activity" +msgstr "Actividade do Grupo de Armazenamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 -#, fuzzy -msgid "Please Enter an admin or mobile lookup name" -msgstr "Por favor, indique um nome para este local." +msgid "Storage Group Already Exists" +msgstr "Grupo de armazenamento já existe" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 #, fuzzy -msgid "Please enter a User Name Attribute" -msgstr "Por favor, indique um nome de host" +msgid "Storage Group Create Fail" +msgstr "Grupo de Armazenamento Criado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 #, fuzzy -msgid "Please enter a Group Member Attribute" -msgstr "Por favor, indique o endereço do servidor LDAP" +msgid "Storage Group Create Success" +msgstr "usuário criado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 -#, fuzzy -msgid "A LDAP setup already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Storage Group Created" +msgstr "Grupo de Armazenamento Criado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 -#, fuzzy -msgid "Add LDAP server failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Storage Group Description" +msgstr "Grupo de Armazenamento Descrição" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 #, fuzzy -msgid "LDAP Server added!" -msgstr "Nome do servidor LDAP" +msgid "Storage Group General" +msgstr "Nome do grupo de armazenamento" + +msgid "Storage Group Name" +msgstr "Nome do grupo de armazenamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 #, fuzzy -msgid "LDAP Create Success" -msgstr "usuário criado" +msgid "Storage Group Update Fail" +msgstr "Grupo de armazenamento Atualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 #, fuzzy -msgid "LDAP Create Fail" +msgid "Storage Group Update Success" msgstr "usuário criado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 -#, fuzzy -msgid "LDAP General" -msgstr "Geral" +msgid "Storage Group Updated" +msgstr "Grupo de armazenamento Atualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 -#, fuzzy -msgid "Update LDAP server failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Storage Group deleted" +msgstr "Grupo de armazenamento excluído" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 #, fuzzy -msgid "LDAP Server updated!" -msgstr "Nome do servidor LDAP" +msgid "Storage Group update failed!" +msgstr "atualização do utilizador falhou" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 #, fuzzy -msgid "LDAP Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Storage Group updated!" +msgstr "Grupo de armazenamento Atualizado" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 -#, fuzzy -msgid "LDAP Update Fail" -msgstr "atualização Snapin falhou" +msgid "Storage Management" +msgstr "Gerenciamento de armazenamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 -#, fuzzy -msgid "User Filter" -msgstr "Arquivo" +msgid "Storage Node" +msgstr "Nó de armazenamento" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 #, fuzzy -msgid "LDAP Ports" -msgstr "Servidor LDAP" - -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" - -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "" - -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" -msgstr "" +msgid "Storage Node Create Fail" +msgstr "Nó de Armazenamento Criado" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" -msgstr "" +#, fuzzy +msgid "Storage Node Create Success" +msgstr "Nó de Armazenamento Criado" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" -msgstr "" +msgid "Storage Node Created" +msgstr "Nó de Armazenamento Criado" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" -msgstr "" +msgid "Storage Node Description" +msgstr "Nó de Armazenamento Descrição" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" -msgstr "" +msgid "Storage Node Disk Usage" +msgstr "Uso nó de armazenamento do disco" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 #, fuzzy -msgid "Location Association" -msgstr "Associação imagem" +msgid "Storage Node General" +msgstr "Interface de Armazenamento Node" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" -msgstr "Localização / Implantado" +msgid "Storage Node IP" +msgstr "IP nó de armazenamento" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" -msgstr "anfitrião Localização" +msgid "Storage Node Interface" +msgstr "Interface de Armazenamento Node" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 -#, fuzzy -msgid "This setting defines sending the" -msgstr "Esta configuração define " +msgid "Storage Node Max Clients" +msgstr "Clientes nó de armazenamento do Max" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "" +msgid "Storage Node Name" +msgstr "Nome Storage Node" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "" +msgid "Storage Node Password" +msgstr "Nó de Armazenamento senha" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "" +#, fuzzy +msgid "Storage Node Protocol" +msgstr "IP nó de armazenamento" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 #, fuzzy -msgid "Default is disabled" -msgstr "As doações são deficientes" +msgid "Storage Node Update Fail" +msgstr "Nó de Armazenamento Atualizado" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 #, fuzzy -msgid "Snapin Locations" -msgstr "localizações" +msgid "Storage Node Update Success" +msgstr "Nó de Armazenamento Atualizado" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "" +msgid "Storage Node Updated" +msgstr "Nó de Armazenamento Atualizado" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 -#, fuzzy -msgid "where to download the snapin" -msgstr "Não foi possível encontrar o arquivo de snap-in" +msgid "Storage Node Username" +msgstr "Nó de armazenamento do usuário" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" -msgstr "" +#, fuzzy +msgid "Storage Node added!" +msgstr "Nome Storage Node" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" -msgstr "" +msgid "Storage Node already exists" +msgstr "Nó de armazenamento já existe" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" -msgstr "" +msgid "Storage Node deleted" +msgstr "Nó de Armazenamento excluído" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 #, fuzzy -msgid "Export Locations" -msgstr "anfitrião Localização" +msgid "Storage Node update failed!" +msgstr "Nó de Armazenamento Atualizado" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 #, fuzzy -msgid "Import Locations" -msgstr "anfitrião Localização" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" -msgstr "Localização Nome" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "Kernels / inits de local" +msgid "Storage Node updated!" +msgstr "Nó de Armazenamento Atualizado" -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" -msgstr "Nova localização" +#, fuzzy +msgid "String must be a string" +msgstr "Evento deve ser uma string" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "Use inits e kernels a partir deste nó" +#, fuzzy +msgid "Subnet Groups" +msgstr "modificar Grupo" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 #, fuzzy -msgid "Create New Location" -msgstr "Criar novo %s" +msgid "SubnetGroup General" +msgstr "Nome do grupo de armazenamento" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." -msgstr "Localização já existe, por favor tente novamente." +#, fuzzy +msgid "Subnetgroup Create Fail" +msgstr "Grupo Criar falhou" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." -msgstr "Por favor, indique um nome para este local." +#, fuzzy +msgid "Subnetgroup Create Success" +msgstr "usuário criado" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." -msgstr "Por favor, selecione o grupo de armazenamento este local relaciona." +#, fuzzy +msgid "Subnetgroup Management" +msgstr "grupo de Gestão" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 #, fuzzy -msgid "Add location failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Subnetgroup Update Fail" +msgstr "Grupo Criar falhou" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 #, fuzzy -msgid "Location added!" -msgstr "Localização Nome" +msgid "Subnetgroup Update Success" +msgstr "usuário criado" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 #, fuzzy -msgid "Location Create Success" -msgstr "Snapin atualizada" +msgid "Subnetgroup added!" +msgstr "grupo adicionado" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 #, fuzzy -msgid "Location Create Fail" -msgstr "Snapin atualizada" +msgid "Subnetgroup update failed!" +msgstr "atualização do utilizador falhou" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 #, fuzzy -msgid "Location General" -msgstr "Snapin Ativado" +msgid "Subnetgroup updated!" +msgstr "grupo adicionado" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "Um local com esse nome já existe." +msgid "Subnets" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -#, fuzzy -msgid "A group is required for a location" -msgstr "Um grupo de armazenamento é necessário!" +msgid "Subree and Below" +msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -#, fuzzy -msgid "Location update failed!" -msgstr "atualização Snapin falhou" +msgid "Subtree Only" +msgstr "" + +msgid "Successful" +msgstr "Bem sucedido" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 #, fuzzy -msgid "Location updated!" -msgstr "Localização Atualizado" +msgid "Successfully added selected hosts to the group!" +msgstr "Hosts com sucesso associado ao grupo " -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 #, fuzzy -msgid "Location Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Successfully created" +msgstr "atualizado com sucesso" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 #, fuzzy -msgid "Location Update Fail" -msgstr "Localização Atualizado" +msgid "Successfully deleted" +msgstr "atualizado com sucesso" -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" -msgstr "" +msgid "System Manufacturer" +msgstr "sistema Fabricante" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" -msgstr "Contas Pushbullet" +msgid "System Overview" +msgstr "Visão geral do sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" -msgstr "Conta ligação Pushbullet" +msgid "System Product" +msgstr "sistema de Produto" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" -msgstr "O email" +msgid "System Serial" +msgstr "Serial sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" -msgstr "Fazer a ligação Nova Conta" +msgid "System Serial Number" +msgstr "Número de série do sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" -msgstr "token de acesso" +#, fuzzy +msgid "System Tools" +msgstr "Tipo de sistema" + +msgid "System Type" +msgstr "Tipo de sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 #, fuzzy -msgid "Add Pushbullet Account" -msgstr "Contas Pushbullet" +msgid "System UUID" +msgstr "Uptime sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" -msgstr "Conta já ligados" +msgid "System Uptime" +msgstr "Uptime sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "Por favor, indique um token de acesso" +msgid "System Version" +msgstr "Versão do sistema" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "Falha ao criar" +msgid "TCP/IP" +msgstr "TCP / IP" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 -#, fuzzy -msgid "Account successfully added!" -msgstr "atualizado com sucesso" +msgid "TCP/IP Port Printer" +msgstr "Impressora TCP / IP" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 -#, fuzzy -msgid "Link Pushbullet Account Success" -msgstr "Conta ligação Pushbullet" +msgid "TX" +msgstr "TX" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 #, fuzzy -msgid "Link Pushbullet Account Fail" -msgstr "Conta ligação Pushbullet" +msgid "Table not defined for this class" +msgstr "Nenhuma tabela de banco de dados definidos para esta classe" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 -#, fuzzy -msgid "Site Association" -msgstr "Associação imagem" +msgid "Task" +msgstr "Tarefa" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 -#, fuzzy -msgid "Site" -msgstr "Max Size" +msgid "Task Checkin Date" +msgstr "Tarefa Checkin Data" + +msgid "Task Checkin Time" +msgstr "Tarefa Checkin Tempo" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 #, fuzzy -msgid "Associated Sites" -msgstr "Sites FOG estimado" +msgid "Task Complete Date" +msgstr "Tarefa Checkin Data" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 #, fuzzy -msgid "Host Site" -msgstr "Lista de Host" +msgid "Task Complete Time" +msgstr "Tarefa Checkin Tempo" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 #, fuzzy -msgid "Sites" -msgstr "minutos" +msgid "Task ID" +msgstr "Tarefa" + +msgid "Task Management" +msgstr "Gestão de tarefas" + +msgid "Task Name" +msgstr "Nome da tarefa" + +msgid "Task Reboot" +msgstr "Reiniciar tarefa" + +msgid "Task State" +msgstr "Estado Task" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 #, fuzzy -msgid "Is restricted" -msgstr "tarefa iniciada" +msgid "Task State Create Fail" +msgstr "usuário criado" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 #, fuzzy -msgid "No site" -msgstr "Não configurado" +msgid "Task State Create Success" +msgstr "usuário criado" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " -msgstr "" +#, fuzzy +msgid "Task State General" +msgstr "Estado Task" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 #, fuzzy -msgid "No Site" -msgstr "Não configurado" +msgid "Task State Management" +msgstr "Gestão de tarefas" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 #, fuzzy -msgid "Export Sites" -msgstr "Impressoras de exportação" +msgid "Task State Update Fail" +msgstr "usuário criado" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 #, fuzzy -msgid "Import Sites" -msgstr "importação Impressoras" +msgid "Task State Update Success" +msgstr "usuário criado" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 #, fuzzy -msgid "Hosts Associated" -msgstr "Não snapins associado" +msgid "Task State Updated!" +msgstr "Estado tarefa adicional, a edição" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 #, fuzzy -msgid "Host Associated" -msgstr "No nó associado" +msgid "Task State added!" +msgstr "Estado tarefa adicional, a edição" + +msgid "Task States" +msgstr "Unidos Task" + +msgid "Task Type" +msgstr "Tipo de tarefa" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 #, fuzzy -msgid "Site Name" -msgstr "Nome da impressora" +msgid "Task Type Create Fail" +msgstr "usuário criado" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 #, fuzzy -msgid "Site Description" -msgstr "Descrição Printer" +msgid "Task Type Create Success" +msgstr "usuário criado" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 #, fuzzy -msgid "New Site" -msgstr "Adicionar novo Snapin" +msgid "Task Type General" +msgstr "Estado Task" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 #, fuzzy -msgid "Create Site" -msgstr "Crio" +msgid "Task Type Management" +msgstr "Gestão de tarefas" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 #, fuzzy -msgid "A site already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Task Type Update Fail" +msgstr "atualização do utilizador falhou" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 #, fuzzy -msgid "Add site failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Task Type Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 #, fuzzy -msgid "Site added!" -msgstr "Nome da impressora" +msgid "Task Type Updated!" +msgstr "Tipo de tarefa" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 #, fuzzy -msgid "Site Create Success" -msgstr "Impressora já existe" +msgid "Task Type added!" +msgstr "Estado tarefa adicional, a edição" + +msgid "Task Type is not valid" +msgstr "Tipo de tarefa não é válido" + +msgid "Task Types" +msgstr "Tipos de tarefa" + +msgid "Task forced to start" +msgstr "Tarefa forçada a começar" + +msgid "Task not created as there are no associated tasks" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 #, fuzzy -msgid "Site Create Fail" -msgstr "atualização da impressora falhou!" +msgid "Task sent to" +msgstr "Estado Task" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 #, fuzzy -msgid "Site General" -msgstr "Modelo de impressora" +msgid "Task started" +msgstr "tarefa iniciada" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 #, fuzzy -msgid "A site alread exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Task started for" +msgstr "Tarefas começou para" + +msgid "Task type is not valid" +msgstr "tipo de tarefa não é válido" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 #, fuzzy -msgid "Site update failed!" -msgstr "atualização da impressora falhou!" +msgid "Tasked Successfully" +msgstr "Salvo com sucesso" + +msgid "Tasked successfully, click active tasks to view in line." +msgstr "" + +msgid "Tasking" +msgstr "tasking" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 #, fuzzy -msgid "Site Updated!" -msgstr "Impressora atualizado!" +msgid "Tasking Failed" +msgstr "tasking" + +msgid "Tasks" +msgstr "tarefas" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -#, fuzzy -msgid "Site Update Success" -msgstr "Impressora atualizado!" +msgid "Team" +msgstr "Equipe" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 #, fuzzy -msgid "Site Update Fail" -msgstr "atualização da impressora falhou!" +msgid "Terminal" +msgstr "Serial" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -#, fuzzy -msgid "Host Membership" -msgstr "Membership" +msgid "Terms and Conditions" +msgstr "Termos e Condições" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -#, fuzzy -msgid "Check here to see what hosts can be added" -msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" +msgid "Text" +msgstr "Texto" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 #, fuzzy -msgid "Add Hosts" -msgstr "Todos os hosts" +msgid "The 'Is Master Node' setting defines which" +msgstr "Esta configuração define " -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 #, fuzzy -msgid "Add selected hosts" -msgstr "Impressora" +msgid "The assigned image is protected" +msgstr "Nenhuma selecionada ou item é protegido" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 #, fuzzy -msgid "Remove Hosts" -msgstr "Remover" +msgid "The below items are only used for the old client." +msgstr "" +"Esta configuração define o nome de usuário utilizado para o cliente ssh." -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -#, fuzzy -msgid "Remove selected hosts" -msgstr "Remover snapins selecionados" +msgid "The clients will checkin with the server from time" +msgstr "" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" -msgstr "chamada de canal é inválido" +msgid "The following errors occured" +msgstr "Os seguintes erros ocorreram" -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" -msgstr "chamada do usuário é inválido" +msgid "The following errors occurred" +msgstr "Ocorreram os seguintes erros" -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" -msgstr "Método inválido chamada" +msgid "The image storage group assigned is not valid" +msgstr "O grupo de armazenamento de imagens atribuído não é válido" -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 #, fuzzy -msgid "Completed imaging" -msgstr "concluído" - -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" -msgstr "Contas Slack" +msgid "The installers for the fog client" +msgstr "" +"Esta configuração define o nome de usuário utilizado para o cliente ssh." -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" -msgstr "Conta removida de FOG GUI no" +msgid "The key will be assigned to registered hosts when a" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" -msgstr "Link Conta Slack" +msgid "The node trying to be used is currently" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" -msgstr "Equipe" +msgid "The old client is what was distributed with" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "Criado por" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" -msgstr "Usuário Nome / Canal" +msgid "The old client iswhat was distributed with" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" -msgstr "User / Canal para postar" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -#, fuzzy -msgid "Add Slack Account" -msgstr "Contas Slack" +msgid "The primary mac associated is" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" +msgid "The settings tend to be global which affects all hosts." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 +msgid "The storage groups associated storage node is not valid" +msgstr "O nó de armazenamento grupos de armazenamento associado não é válido" + #, fuzzy -msgid "to signify if this is a user or channel to send to" -msgstr "" -"Deve usar um @ ou # para indicar se este for um usuário ou canal para enviar " -"mensagem a!" +msgid "The uploaded file exceeds the max_file_size" +msgstr "O arquivo enviado excede a directiva upload_max_filesize em php.ini" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" -msgstr "Token inválido passado" +#, fuzzy +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "O arquivo enviado excede a directiva upload_max_filesize em php.ini" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" -msgstr "usuário e / ou canal inválido passado" +msgid "The uploaded file was only partially uploaded" +msgstr "O arquivo enviado foi apenas parcialmente carregado" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" -msgstr "Conta vinculada ao nevoeiro GUI em" +msgid "There are" +msgstr "tem" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 #, fuzzy -msgid "Link Slack Account Success" -msgstr "Link Conta Slack" +msgid "There are currently" +msgstr "tem" + +msgid "There are many reasons why this could be the case" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 #, fuzzy -msgid "Link Slack Account Fail" -msgstr "Link Conta Slack" +msgid "There are no groups on this server" +msgstr "Não existem grupos neste servidor." -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 #, fuzzy -msgid "Subnet Groups" -msgstr "modificar Grupo" +msgid "There are no hosts to task in this group" +msgstr "Não existem grupos neste servidor." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 #, fuzzy -msgid "Export Subnetgroups" -msgstr "Grupos de exportação" +msgid "There are no images on this server" +msgstr "Não há imagens neste servidor." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 #, fuzzy -msgid "Import Subnetgroups" -msgstr "Grupos de importação" +msgid "There are no locations on this server" +msgstr "Não há locais neste servidor." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" +msgid "There are no other members to sync to" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -#, fuzzy -msgid "New Subnetgroup" -msgstr "Grupo de armazenamento" +msgid "There are no snapins associated with this host" +msgstr "Não há snapins associados a este alojamento" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 #, fuzzy -msgid "Create New SubnetGroup?" -msgstr "Criar novo grupo" +msgid "There are no snapins on this server" +msgstr "Não há snapins neste servidor." -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 #, fuzzy -msgid "A subnetgroup already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "There are open slots" +msgstr "Há slots abertos, mas" + +msgid "There is a host in a tasking" +msgstr "Há uma série de tarefas" + +msgid "There is nothing to replicate" +msgstr "Não há nada para replicar" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 #, fuzzy -msgid "A group is required!" -msgstr "Um nome de imagem é necessário!" +msgid "There were errors during import!" +msgstr "Ocorreram erros durante a importação" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." +msgid "There you can download utilities such as FOG Prep" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -#, fuzzy -msgid "Please enter a valid CIDR subnets comma separated list" -msgstr "Por favor insira um endereço IP válido" +msgid "This MAC Belongs to another host" +msgstr "Este MAC pertence para outro host" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -#, fuzzy -msgid "Add Subnetgroup failed!" -msgstr "Adicionar snap-in falhou!" +msgid "This area will allow the host checking in to tell" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -#, fuzzy -msgid "Subnetgroup added!" -msgstr "grupo adicionado" +msgid "This file will only work on Windows" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 #, fuzzy -msgid "Subnetgroup Create Success" -msgstr "usuário criado" +msgid "This host already exists" +msgstr "Impressora já existe" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -#, fuzzy -msgid "Subnetgroup Create Fail" -msgstr "Grupo Criar falhou" +msgid "This installation process may take a few minutes" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -#, fuzzy -msgid "SubnetGroup General" -msgstr "Nome do grupo de armazenamento" +msgid "This is a cron style task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -#, fuzzy -msgid "A subnet group already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "This is a cron style task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 -#, fuzzy -msgid "A group must be selected." -msgstr "Evento deve ser uma string" +msgid "This is a single run task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 -#, fuzzy -msgid "Please enter a valid CIDR subnet." -msgstr "Por favor insira um nome de host válido" +msgid "This is a single run task that should run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "This is especially useful if you have multiple" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -#, fuzzy -msgid "Subnetgroup update failed!" -msgstr "atualização do utilizador falhou" +msgid "This is ipxe script commands to operate with" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 #, fuzzy -msgid "Subnetgroup updated!" -msgstr "grupo adicionado" +msgid "This is not the master for this group" +msgstr " | Este não é o grupo primário" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 #, fuzzy -msgid "Subnetgroup Update Success" -msgstr "usuário criado" +msgid "This is not the primary group" +msgstr " | Este não é o grupo primário" + +msgid "This is only here to maintain old client operations" +msgstr "" + +msgid "This is set in seconds and causes the default option" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 #, fuzzy -msgid "Subnetgroup Update Fail" -msgstr "Grupo Criar falhou" +msgid "This is the recommended installer to use now" +msgstr "" +"Este é o instalador recomendado o uso de agora. Ele pode ser usado no " +"Windows, Linux e Mac OS X." -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." +msgid "This is useful in the case of slow links between" msgstr "" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "Unidos Task" +msgid "This item allows you to edit all of the iPXE Menu items as you" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 -#, fuzzy -msgid "Export Task States" -msgstr "Unidos Task" +msgid "This module did not work past Windows XP" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task States" -msgstr "Unidos Task" +msgid "This module did not work past Windows XP due" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "Estado Task" +msgid "This module did not work past Windows XP due to" +msgstr "" + +msgid "This module did not work past Windows XP due to UAC." +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "Ícone" +msgid "This module has been replaced in the new client" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "Estado de Nova Tarefa" +msgid "This module has since been replaced with Power Management." +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" -msgstr "Elementos adicionais Ícone" +msgid "This module is only used" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 #, fuzzy -msgid "Create Task state" -msgstr "Estado de Nova Tarefa" +msgid "This module is only used on the old client" +msgstr "" +"Esta configuração define o nome de usuário utilizado para o cliente ssh." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 #, fuzzy -msgid "A task state already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "This module is only used on the old client." +msgstr "" +"Esta configuração define o nome de usuário utilizado para o cliente ssh." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -#, fuzzy -msgid "Add task state failed!" -msgstr "Adicionar snap-in falhou!" +msgid "This node does not appear to be online" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 #, fuzzy -msgid "Task State added!" -msgstr "Estado tarefa adicional, a edição" +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "Esta configuração define o nome de usuário proxy para usar." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 #, fuzzy -msgid "Task State Create Success" -msgstr "usuário criado" +msgid "This plugin is not installed" +msgstr "Este plugin não está instalado, você gostaria de instalá-lo agora?" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 #, fuzzy -msgid "Task State Create Fail" -msgstr "usuário criado" +msgid "This section allows you to customize or alter" +msgstr "Esta configuração define o nome de usuário proxy para usar." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 #, fuzzy -msgid "Task State General" -msgstr "Estado Task" +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" +msgstr "" +"Esta seção permite que você importe os fabricantes de endereço MAC " +"conhecidos na névoa banco de dados para facilitar a identificação." + +msgid "This section allows you to update" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 #, fuzzy -msgid "Update task state failed!" -msgstr "Adicionar snap-in falhou!" +msgid "This section allows you to update the modules and" +msgstr "Esta configuração define o nome de usuário proxy para usar." -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 #, fuzzy -msgid "Task State Updated!" -msgstr "Estado tarefa adicional, a edição" +msgid "This section allows you to uploade user" +msgstr "Esta configuração define o nome de usuário proxy para usar." + +msgid "This servers ip(s)" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 #, fuzzy -msgid "Task State Update Success" -msgstr "usuário criado" +msgid "This setting" +msgstr "Esta configuração define " -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 #, fuzzy -msgid "Task State Update Fail" -msgstr "usuário criado" +msgid "This setting defines sending the" +msgstr "Esta configuração define " -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." +msgid "This setting limits the bandwidth for replication between nodes" msgstr "" -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" -msgstr "Tipos de tarefa" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 #, fuzzy -msgid "Export Task Types" -msgstr "Tipos de tarefa" +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." +msgstr "" +"Esta definição só adiciona e remove as impressoras que são gerenciados pelo " +"nevoeiro. Se a impressora existe na gestão da impressora, mas não é " +"atribuído a um host, ele irá remover a impressora se ela existir no host não " +"atribuído. Ele irá adicionar impressoras para o host que são atribuídos." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task Types" -msgstr "Tipos de tarefa" +msgid "This setting turns off all FOG Printer Management" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" -msgstr "Acesso" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." +msgstr "" +"Essa configuração só irá permitir impressoras FOG Designado para ser " +"adicionado ao host. Qualquer impressora que não é atribuído serão removidos " +"incluindo impressoras gerenciadas não nevoeiro." -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" -msgstr "Kernel Args" +msgid "This will allow you to configure how services" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" -msgstr "Novo tipo de tarefa" +msgid "Those images should be activated with the associated" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" -msgstr "Argumentos de kernel" +msgid "Time" +msgstr "Tempo" + +msgid "Time Already Exists" +msgstr "Tempo já existe" + +msgid "Timeout" +msgstr "Tempo esgotado" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 #, fuzzy -msgid "Init" -msgstr "Dentro " +msgid "Title must be a string" +msgstr "Evento deve ser uma string" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" -msgstr "é avançado" +msgid "To be released only by" +msgstr "Para ser lançado apenas por" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" -msgstr "acessada por" +msgid "To get started please select an item from the menu." +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -#, fuzzy -msgid "Create Task type" -msgstr "Estado de Nova Tarefa" +msgid "To perform an imaging task an image must be assigned" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -#, fuzzy -msgid "A task type already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "To view a report, select an item from the menu" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -#, fuzzy -msgid "Add task type failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Toggle Navigation" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 #, fuzzy -msgid "Task Type added!" -msgstr "Estado tarefa adicional, a edição" +msgid "Too many MACs" +msgstr "Hospedeiro primário MAC" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -#, fuzzy -msgid "Task Type Create Success" -msgstr "usuário criado" +msgid "Total Disk Space" +msgstr "Espaço em disco total" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -#, fuzzy -msgid "Task Type Create Fail" -msgstr "usuário criado" +msgid "Total Memory" +msgstr "Memória total" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -#, fuzzy -msgid "Task Type General" -msgstr "Estado Task" +msgid "Total Rows" +msgstr "total de linhas" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -#, fuzzy -msgid "Task Type Updated!" -msgstr "Tipo de tarefa" +msgid "Transmit" +msgstr "Transmite" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 #, fuzzy -msgid "Task Type Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "Trying Snapin hash for" +msgstr "Caminho Snapin" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 #, fuzzy -msgid "Task Type Update Fail" -msgstr "atualização do utilizador falhou" +msgid "Trying image size for" +msgstr "Caminho Snapin" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" -msgstr "" +#, fuzzy +msgid "Txt must be a string" +msgstr "Evento deve ser uma string" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" -msgstr "" +msgid "Type" +msgstr "Digitar" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" +msgid "UAC introduced in Vista and up" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:31 #, fuzzy -msgid "key" -msgstr "DMI Key" - -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" -msgstr "" - -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" -msgstr "" +msgid "Unable to Authenticate" +msgstr "servidor entrar em contato com erro" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "" +msgid "Unable to determine plugin details." +msgstr "Não foi possível determinar detalhes plugin." -#: lib/plugins/windowskey/config/plugin.config.php:36 #, fuzzy -msgid "with the host" -msgstr "não dentro desta" +msgid "Unable to find basic information!" +msgstr "Incapaz de encontrar informações básicas" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 #, fuzzy -msgid "Windows Key for Image" -msgstr "Gerenciamento de usuários" +msgid "Unable to find master Storage Node" +msgstr "Falha ao destruir Storage Node" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 #, fuzzy -msgid "Windows Keys" -msgstr "Windows 8" +msgid "Unable to get server infromation!" +msgstr "Não é possível extrair informações do servidor!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 -#, fuzzy -msgid "Export Windows Keys" -msgstr "Windows 8" +msgid "Unable to open file for reading" +msgstr "Não é possível abrir arquivo para leitura" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -#, fuzzy -msgid "Import Windows Keys" -msgstr "Windows 8" +msgid "Unauthorized" +msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 #, fuzzy -msgid "Key Name" -msgstr "Nome Kernel" +msgid "Unavailable" +msgstr "Não disponível" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 #, fuzzy -msgid "New Windows Key" -msgstr "Windows 8" +msgid "Unicaset" +msgstr "unicast" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 #, fuzzy -msgid "Windows Key Name" -msgstr "Gerenciamento de usuários" +msgid "Unit of time must be a string" +msgstr "Evento deve ser uma string" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 -#, fuzzy -msgid "Windows Key Description" -msgstr "anfitrião Descrição" +msgid "Unknown" +msgstr "Desconhecido" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 #, fuzzy -msgid "Windows Key" -msgstr "Windows 8" +msgid "Unknown upload error occurred" +msgstr "Ocorreu um erro de upload desconhecido. Código de retorno: " + +msgid "Update" +msgstr "Atualizar" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 #, fuzzy -msgid "Create New Key" -msgstr "Criar novo %s" +msgid "Update API?" +msgstr "Atualizar MACs" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 #, fuzzy -msgid "A Windows Key already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Update Default Printer" +msgstr "Atualizar impressora" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 #, fuzzy -msgid "Add Windows Key failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Update General?" +msgstr "Atualizar impressora" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 #, fuzzy -msgid "Windows Key added!" -msgstr "Gerenciamento de usuários" +msgid "Update LDAP server failed!" +msgstr "Adicionar snap-in falhou!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 -#, fuzzy -msgid "Windows Key Create Success" -msgstr "usuário criado" +msgid "Update MACs" +msgstr "Atualizar MACs" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 #, fuzzy -msgid "Windows Key Create Fail" -msgstr "usuário criado" +msgid "Update PM Values" +msgstr "Imagens de atualização" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 #, fuzzy -msgid "Windows Key General" -msgstr "Gerenciamento de usuários" +msgid "Update Password?" +msgstr "Senha do usuário" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 #, fuzzy msgid "Update Windows Key failed!" msgstr "Adicionar snap-in falhou!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 #, fuzzy -msgid "Windows Key updated!" -msgstr "Gerenciamento de usuários" +msgid "Update auto-logout time" +msgstr "Atualizar impressora" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 #, fuzzy -msgid "Windows Key Update Success" -msgstr "Gerenciamento de usuários" +msgid "Update default printer" +msgstr "Atualizar impressora" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 #, fuzzy -msgid "Windows Key Update Fail" -msgstr "Gerenciamento de usuários" +msgid "Update display resolution" +msgstr "Grupo primário de actualização" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 #, fuzzy -msgid "Image Membership" -msgstr "Membership" +msgid "Update module configurations" +msgstr "Host Configuration Printer" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -#, fuzzy -msgid "Check here to see what images can be added" -msgstr "Verifique aqui para ver o que as impressoras podem ser adicionadas" +msgid "Update not required!" +msgstr "Atualize não é necessário!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 #, fuzzy -msgid "Add selected images" -msgstr "Impressora" +msgid "Update primary group" +msgstr "Grupo primário de actualização" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 #, fuzzy -msgid "Remove Images" -msgstr "Remover" +msgid "Update printer configuration" +msgstr "Host Configuration Printer" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 #, fuzzy -msgid "Remove selected images" -msgstr "Remover snapins selecionados" +msgid "Update task state failed!" +msgstr "Adicionar snap-in falhou!" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 #, fuzzy -msgid "WOL Broadcasts" -msgstr "todas as transmissões" +msgid "Update/Remove Storage Groups" +msgstr "Remover impressoras selecionadas" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 #, fuzzy -msgid "Export WOLBroadcasts" -msgstr "anfitrião Localização" +msgid "Update/Remove printers" +msgstr "Remover impressoras selecionadas" + +msgid "Upload Reports" +msgstr "carregar relatórios" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 #, fuzzy -msgid "Import WOLBroadcasts" -msgstr "anfitrião Localização" +msgid "Upload file" +msgstr "Subir arquivo" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" -msgstr "Nome transmissão" +msgid "Upload file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" -msgstr "IP de transmissão" +msgid "Uptime" +msgstr "uptime" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" -msgstr "Novo Endereço de Difusão" +msgid "Use Group Matching (recommended)" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -#, fuzzy -msgid "Create WOL Broadcast?" -msgstr "todas as transmissões" +msgid "Use extreme caution with this setting" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -#, fuzzy -msgid "A broadcast already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "Use inits and kernels from this node" +msgstr "Use inits e kernels a partir deste nó" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 -#, fuzzy -msgid "A broadcast address is required" -msgstr "MAC Address é necessária" +msgid "Use the following link to go to the client page." +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" -msgstr "Por favor insira um IP válido" +msgid "Use the forums to post issues so others" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -#, fuzzy -msgid "Add broadcast failed!" -msgstr "Adicionar snap-in falhou!" +msgid "Use the links below if you need assistance" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -#, fuzzy -msgid "Broadcast added!" -msgstr "Nome transmissão" +msgid "Use this for network installs" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -#, fuzzy -msgid "Broadcast Create Success" -msgstr "host criado" +msgid "Used" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 -#, fuzzy -msgid "Broadcast Create Fail" -msgstr "Hospedar criar falha" +msgid "Used Disk Space" +msgstr "Espaço em disco usado" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -#, fuzzy -msgid "WOL Broadcast General" -msgstr "todas as transmissões" +msgid "Used Memory" +msgstr "memória usada" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -#, fuzzy -msgid "A broadcast already exists with this name" -msgstr "Uma imagem já existe com este nome!" +msgid "User" +msgstr "Do utilizador" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 #, fuzzy -msgid "Broadcast update failed!" -msgstr "transmitido Atualizado" +msgid "User API Enabled" +msgstr "Está ativado" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 #, fuzzy -msgid "Broadcast updated!" -msgstr "transmitido Atualizado" +msgid "User API Settings" +msgstr "Configurações" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 #, fuzzy -msgid "Broadcast Update Success" -msgstr "Instalar / Atualizar sucesso!" +msgid "User API Token" +msgstr "token de acesso" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 #, fuzzy -msgid "Broadcast Update Fail" -msgstr "transmitido Atualizado" - -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." -msgstr "" +msgid "User Access Control" +msgstr "Controle de acesso" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 -#, fuzzy -msgid "Host Ext" -msgstr "Lista de Host" +msgid "User Agent Changed" +msgstr "User Agent Changed" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " -msgstr "" +msgid "User Already Exists" +msgstr "Usuário já existe" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 #, fuzzy -msgid "External Links" -msgstr "Extensão" +msgid "User Change Password" +msgstr "Gerenciamento de senha" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 -#, fuzzy -msgid "Export Host Exts" -msgstr "Hosts de exportação" +msgid "User Cleanup" +msgstr "Limpeza de usuário" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 #, fuzzy -msgid "Import Host Exts" -msgstr "Hosts de importação" +msgid "User Create Fail" +msgstr "usuário criado" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 #, fuzzy -msgid "Host Ext Name" -msgstr "Nome do host" +msgid "User Create Success" +msgstr "usuário criado" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 #, fuzzy -msgid "Host Ext URL" -msgstr "ID de acolhimento" +msgid "User DN" +msgstr "Nome de usuário" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 #, fuzzy -msgid "Host Ext Variable" -msgstr "Anfitrião Update Failed" +msgid "User Filter" +msgstr "Arquivo" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 #, fuzzy -msgid "Create New Host Ext" -msgstr "Criar novo %s" +msgid "User General" +msgstr "hospedar Kernel" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 -#, fuzzy -msgid "A hostext already exists with this name!" -msgstr "Uma imagem já existe com este nome!" +msgid "User Management" +msgstr "Gerenciamento de usuários" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -#, fuzzy -msgid "Add ou failed!" -msgstr "Adicionar snap-in falhou!" +msgid "User Name" +msgstr "Nome de usuário" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 #, fuzzy -msgid "Hostext added!" -msgstr "hospedar acrescentou" +msgid "User Name Attribute" +msgstr "Nome de usuário" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 -#, fuzzy -msgid "Hostext Create Success" -msgstr "host criado" +msgid "User Password" +msgstr "Senha do usuário" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 -#, fuzzy -msgid "Hostext Create Fail" -msgstr "Hospedar criar falha" +msgid "User Password (confirm)" +msgstr "User Password (confirmar)" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 -#, fuzzy -msgid "Hostext update failed!" -msgstr "atualização da impressora falhou!" +msgid "User Tracker" +msgstr "User tracker" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 #, fuzzy -msgid "Hostext updated!" -msgstr "usuário atualizada" +msgid "User Update Fail" +msgstr "atualização do utilizador falhou" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 #, fuzzy -msgid "Hostext Update Success" +msgid "User Update Success" msgstr "Instalar / Atualizar sucesso!" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 #, fuzzy -msgid "Hostext Update Fail" -msgstr "Anfitrião Update Failed" - -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" -msgstr "" - -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" -msgstr "Não foi possível determinar detalhes de plugin" - -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" -msgstr "" - -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" -msgstr "" - -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" -msgstr "" +msgid "User added!" +msgstr "Nome da impressora" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" -msgstr "" +msgid "User call is invalid" +msgstr "chamada do usuário é inválido" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" -msgstr "" +#, fuzzy +msgid "User name" +msgstr "Nome de usuário" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" -msgstr "" +#, fuzzy +msgid "User update failed!" +msgstr "atualização do utilizador falhou" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 #, fuzzy -msgid "Integrity Settings" -msgstr "Configurações" +msgid "User updated!" +msgstr "usuário atualizada" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 #, fuzzy -msgid "Export Checksums" -msgstr "Hosts de exportação" +msgid "User was not authorized by the LDAP server" +msgstr "Por favor, indique um nome para este servidor LDAP." -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" -msgstr "" +msgid "User/Channel Name" +msgstr "Usuário Nome / Canal" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" -msgstr "" +msgid "User/Channel to post to" +msgstr "User / Canal para postar" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 -#, fuzzy -msgid "Last Updated Time" -msgstr "Anfitrião Update Failed" +msgid "Username" +msgstr "Nome de usuário" + +msgid "Username cannot contain contiguous special characters" +msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" +msgid "Username does not meet requirements" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" +msgid "Username must be at least 3 characters" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" +msgid "Username must be less than 41 characters" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgid "Username must start with a word character" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" +msgid "Users" +msgstr "usuários" + +msgid "Using the group match function" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:19 -#, fuzzy -msgid "

Version 1.5.5" -msgstr "Versão" +msgid "VNC" +msgstr "" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 #, fuzzy -msgid "Host Status" -msgstr "estado" - -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" -msgstr "Criado por FOG Reg em" +msgid "Valid Host Colors" +msgstr "Anfitrião inválido" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" -msgstr "Já está registado como" +msgid "Value" +msgstr "Valor" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" -msgstr "Falha ao criar o Host" +msgid "Variable contains" +msgstr "" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" -msgstr "Feito, sem imagem!" +msgid "Version" +msgstr "Versão" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" -msgstr "Feito, nenhuma imagem atribuída!" +msgid "Version 1.2.0 and earlier" +msgstr "" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" -msgstr "Feito, Falha ao criar tasking" +#, fuzzy +msgid "View History For" +msgstr "Ver Histórico para" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "Feito, com a imagem!" +msgid "View advanced tasks for this" +msgstr "Ver tarefas avançadas desta" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "Feito" +msgid "Virus History" +msgstr "Histórico de vírus" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "Nenhuma tarefa ativa encontrada para o Host" +msgid "Virus Name" +msgstr "Nome vírus" -#: lib/reg-task/taskingelement.class.php:205 #, fuzzy -msgid "Could not find a Storage Node in this group" -msgstr "" -"Não foi possível encontrar um nó de armazenamento, há um ativado dentro " -"deste grupo?" +msgid "Virus Report" +msgstr "Relatório" -#: lib/reg-task/taskingelement.class.php:206 #, fuzzy -msgid "is there one enabled" -msgstr "A imagem não está habilitado" - -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" -msgstr "" +msgid "Virus items removed!" +msgstr "vírus apuradas" -#: lib/reg-task/taskingelement.class.php:233 #, fuzzy -msgid "but has recently failed for this host" -msgstr "está aberto, mas recentemente falhou para este alojamento" +msgid "WOL Broadcast General" +msgstr "todas as transmissões" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" -msgstr "Falha ao atualizar tarefa" +#, fuzzy +msgid "WOL Broadcast Management" +msgstr "Gestão local" -#: lib/reg-task/taskqueue.class.php:57 #, fuzzy -msgid "Invalid Multicast Session" -msgstr "Iniciar Sessão Multicast" +msgid "WOL Broadcasts" +msgstr "todas as transmissões" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" -msgstr "Falha ao atualizar Session" +#, fuzzy +msgid "Wait time has changed to" +msgstr "Tipo de impressora alterado para" -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" -msgstr "Não há vagas abertas" +msgid "Waiting for mysql to be available" +msgstr "Esperando mysql para estar disponível" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" -msgstr "tem" +#, fuzzy +msgid "Wake On Lan" +msgstr "Wake on LAN?" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" -msgstr "antes de mim" +msgid "Wake on lan?" +msgstr "Wake on LAN?" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" +msgid "We are group ID" msgstr "" -#: lib/reg-task/taskqueue.class.php:133 #, fuzzy -msgid "unavailable" -msgstr "Não disponível" +msgid "We are group name" +msgstr "Nome do grupo de armazenamento" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" +msgid "We are node ID" msgstr "" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" -msgstr "" +#, fuzzy +msgid "We are node name" +msgstr "Nome Storage Node" -#: lib/reg-task/taskqueue.class.php:156 #, fuzzy -msgid "There are open slots" -msgstr "Há slots abertos, mas" +msgid "We cannot connect to LDAP server" +msgstr "Não é possível conectar ao banco de dados" -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" +msgid "Web Server" +msgstr "Servidor web" + +msgid "Web root" +msgstr "raiz da web" + +msgid "Weekly" +msgstr "Semanal" + +msgid "When the plugin is removed, the assigned key will remain" msgstr "" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" +msgid "Where to get help" msgstr "" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" -msgstr "Falha ao atualizar / criar o registo de imagem" +msgid "Width must be 650 pixels." +msgstr "" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" -msgstr "Falha ao atualizar Task" +msgid "Window size must be greater than 1" +msgstr "" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" -msgstr "Falha ao atualizar / criar log tarefa" +#, fuzzy +msgid "Windows Key" +msgstr "Windows 8" -#: lib/reg-task/taskqueue.class.php:301 #, fuzzy -msgid "Machine Details" -msgstr "Detalhe Snapin Retorno" +msgid "Windows Key Create Fail" +msgstr "usuário criado" -#: lib/reg-task/taskqueue.class.php:303 #, fuzzy -msgid "Computer Model" -msgstr "Modelo de impressora" +msgid "Windows Key Create Success" +msgstr "usuário criado" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "Número de série" +#, fuzzy +msgid "Windows Key Description" +msgstr "anfitrião Descrição" -#: lib/reg-task/taskqueue.class.php:305 #, fuzzy -msgid "MAC Address" -msgstr "Lista de endereços MAC" +msgid "Windows Key General" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:307 #, fuzzy -msgid "Image Used" -msgstr "fotografada" +msgid "Windows Key Management" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:308 #, fuzzy -msgid "Snapin Used" -msgstr "snapins" +msgid "Windows Key Name" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:310 #, fuzzy -msgid "Imaged By" -msgstr "fotografada" +msgid "Windows Key Update Fail" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 #, fuzzy -msgid "Imaged For" -msgstr "fotografada" +msgid "Windows Key Update Success" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:312 #, fuzzy -msgid "Imaging Started" -msgstr "Estado Snapin" +msgid "Windows Key added!" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:313 #, fuzzy -msgid "Imaging Completed" -msgstr "após a conclusão da tarefa" +msgid "Windows Key for Image" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:314 #, fuzzy -msgid "Imaging Duration" -msgstr "imagiologia Log" +msgid "Windows Key updated!" +msgstr "Gerenciamento de usuários" -#: lib/reg-task/taskqueue.class.php:332 #, fuzzy -msgid "Image Task Completed" -msgstr "após a conclusão da tarefa" +msgid "Windows Keys" +msgstr "Windows 8" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" +msgid "Windows keys is a plugin that associates product keys" msgstr "" -#: lib/reg-task/taskqueue.class.php:461 -#, fuzzy -msgid "Failed to update Host" -msgstr "Falha ao atualizar" - -#: lib/reg-task/taskqueue.class.php:475 -#, fuzzy -msgid "Failed to update task log" -msgstr "Falha ao atualizar tarefa" +msgid "Working with node" +msgstr "" -#: lib/reg-task/taskqueue.class.php:479 #, fuzzy -msgid "Failed to update imaging log" -msgstr "Falha ao atualizar / criar o registo de imagem" +msgid "Wrong file name!" +msgstr "No arquivo carregado" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" -msgstr "FOG forma de empréstimo Equipment" +msgid "Yearly" +msgstr "Anual" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" -msgstr "Selecionar Usuário" +msgid "Yes" +msgstr "sim" -#: lib/reports/equipment_loan.report.php:66 -#, fuzzy -msgid "Create Report?" -msgstr "Criar relatório" +msgid "You are only allowed to assign" +msgstr "Você só está autorizado a transferir" -#: lib/reports/equipment_loan.report.php:69 #, fuzzy -msgid "Generate" -msgstr "Geral" +msgid "You have version" +msgstr "Última versão" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" -msgstr "do" +msgid "You must have at least one Storage Group" +msgstr "Você deve ter pelo menos um grupo de armazenamento" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" -msgstr "Impresso" +#, fuzzy +msgid "You must have at least one group associated" +msgstr "Você deve ter pelo menos um grupo de armazenamento" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" -msgstr "PC Acordo Check-out" +#, fuzzy +msgid "You must select an action to perform" +msgstr "Você deve especificar o alias e porta" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" -msgstr "Informação pessoal" +msgid "Your FOG database schema is not up to date" +msgstr "" -#: lib/reports/equipment_loan.report.php:162 msgid "Your Location Here" -msgstr "Sua localização aqui" - -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" -msgstr "Endereço residencial" - -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" -msgstr "Cidade / Estado / CEP" - -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" -msgstr "Extensão" - -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" -msgstr "Telefone residencial" +msgstr "Sua localização aqui" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" -msgstr "Informações sobre o computador" +msgid "Your database connection appears to be invalid" +msgstr "" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" -msgstr "Etiqueta de serviço" +#, fuzzy +msgid "Your form is ready" +msgstr "Sua forma está pronto." -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "Números de código de barras" +#, fuzzy +msgid "Your server only allows" +msgstr "Você só está autorizado a transferir" -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" -msgstr "Data de check-out" +#, fuzzy +msgid "Your system PHP Version is not sufficient" +msgstr "" +"Sua versão sistemas PHP não é suficiente. Você tem a versão %s , versão %s é " +"necessária." -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" -msgstr "notas" +#, fuzzy +msgid "ZSTD Compressed" +msgstr "partclone" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "Variado" +msgid "ZSTD Compressed 200MiB split" +msgstr "" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "Itens incluídos" +#, fuzzy +msgid "access to the hidden menu system" +msgstr "Opção especifica o valor de tempo limite para o sistema de menu oculto" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" -msgstr "Soltar Iniciais Pessoal" +#, fuzzy +msgid "additional macs" +msgstr "MACs adicionais" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" -msgstr "Para ser lançado apenas por" +#, fuzzy +msgid "ago" +msgstr " atrás" -#: lib/reports/equipment_loan.report.php:219 #, fuzzy -msgid "I have read" -msgstr "imagem criada" +msgid "all current storage nodes" +msgstr "nó de armazenamento inválido" -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" +msgid "and Mac OS X" msgstr "" -#: lib/reports/equipment_loan.report.php:221 msgid "and agree to all the" msgstr "" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" -msgstr "Termos e Condições" +msgid "and both the legacy and new FOG clients." +msgstr "" + +msgid "and cannot be captured" +msgstr "" -#: lib/reports/equipment_loan.report.php:223 #, fuzzy -msgid "on the following pages of this document" -msgstr "Os seguintes erros ocorreram" +msgid "and if the Database service is running" +msgstr "Verifique o banco de dados está em execução" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "Assinado" +msgid "and much easier on the server" +msgstr "" -#: lib/reports/equipment_loan.report.php:262 -#, fuzzy -msgid "Your form is ready" -msgstr "Sua forma está pronto." +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "" -#: lib/reports/equipment_loan.report.php:266 -#, fuzzy -msgid "Form" -msgstr "Formato" +msgid "and set it to master" +msgstr "" -#: lib/reports/history_report.report.php:26 -#, fuzzy -msgid "FOG History - Search" -msgstr "FOG User Login História Resumo - Pesquisa" +msgid "and stores their respective checksums" +msgstr "" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 -#, fuzzy -msgid "Enter an user name to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "and the equivalent module for what Green" +msgstr "" -#: lib/reports/history_report.report.php:68 -#, fuzzy -msgid "Enter a term to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "and the location of the file on that" +msgstr "" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" +msgid "as FOG will attempt to go out to the internet" msgstr "" -#: lib/reports/history_report.report.php:111 #, fuzzy -msgid "Full History Export" -msgstr "Exportação inventário completo" +msgid "as its primary group" +msgstr "Grupo primário de actualização" -#: lib/reports/history_report.report.php:166 -#, fuzzy -msgid "History ID" -msgstr "ID de acolhimento" +msgid "as they can cause issues that are difficult to troubleshoot" +msgstr "" -#: lib/reports/history_report.report.php:167 -#, fuzzy -msgid "History Info" -msgstr "Ver Histórico para" +msgid "automatically" +msgstr "" -#: lib/reports/history_report.report.php:168 #, fuzzy -msgid "History User" -msgstr "Ver Histórico para" +msgid "based task." +msgstr "tarefa com base" -#: lib/reports/history_report.report.php:169 -#, fuzzy -msgid "History Time" -msgstr "Ver Histórico para" +msgid "be the presence of a menu" +msgstr "" -#: lib/reports/history_report.report.php:170 -#, fuzzy -msgid "History IP" -msgstr "Ver Histórico para" +msgid "before me" +msgstr "antes de mim" -#: lib/reports/host_list.report.php:33 -#, fuzzy -msgid "FOG Host - Search" -msgstr "FOG User Login História Resumo - Pesquisa" +msgid "before me on this node" +msgstr "" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -#, fuzzy -msgid "Enter a group name to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "between" +msgstr "" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -#, fuzzy -msgid "Enter a location name to search for" -msgstr "Digite um nome de host para pesquisar" +msgid "between different sites" +msgstr "" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 -#, fuzzy -msgid "Enter a site name to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "between host and global settings" +msgstr "" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 -#, fuzzy -msgid "Search pattern" -msgstr "Pesquisa" +msgid "boot the client computers" +msgstr "" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" -msgstr "Hospedar Listing Export" +msgid "but" +msgstr "" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" -msgstr "host criado" +msgid "but bind password is not set" +msgstr "" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 #, fuzzy -msgid "Host AD Join" -msgstr "AD Junte-se" +msgid "but has recently failed for this host" +msgstr "está aberto, mas recentemente falhou para este alojamento" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -#, fuzzy -msgid "Host AD OU" -msgstr "ID de acolhimento" +msgid "check to ensure your filesystem has enough space" +msgstr "" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 #, fuzzy -msgid "Host AD Domain" -msgstr "AD Domain" +msgid "client" +msgstr "Cliente" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 #, fuzzy -msgid "Host HD Device" -msgstr "dispositivo HD" +msgid "clients" +msgstr "Cliente" -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" -msgstr "ID da imagem" +msgid "config files that run on the client computers." +msgstr "" -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" -msgstr "imagem Desc" +#, fuzzy +msgid "could not be cancelled" +msgstr "foi atualizado com sucesso" -#: lib/reports/hosts_and_users.report.php:24 #, fuzzy -msgid "FOG Host and Users - Search" -msgstr "Hosts nevoeiro e Usuários Entrar" +msgid "could not be completed" +msgstr "Não foi possível ler arquivo temporário" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" -msgstr "Hosts nevoeiro e Usuários Entrar" +#, fuzzy +msgid "could not be killed" +msgstr "Não foi possível ler arquivo temporário" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" -msgstr "AD Junte-se" +msgid "day" +msgstr "" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" -msgstr "AD OU" +msgid "day of month" +msgstr "" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" -msgstr "AD Domain" +msgid "day of week" +msgstr "" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" -msgstr "dispositivo HD" +msgid "defined reports that may not be a part of" +msgstr "" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -#, fuzzy -msgid "Login Users" -msgstr "Entrar" +msgid "deleted" +msgstr "suprimido" -#: lib/reports/imaging_log.report.php:24 -#, fuzzy -msgid "FOG Imaging - Search" -msgstr "FOG User Login História Resumo - Pesquisa" +msgid "deploy task occurs for it" +msgstr "" + +msgid "directive in php.ini" +msgstr "" -#: lib/reports/imaging_log.report.php:105 #, fuzzy -msgid "Enter an image name to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "directive specified in the HTML form" +msgstr "" +"O arquivo enviado excede a directiva max_file_size especificado no " +"formulário HTML" -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" -msgstr "Digite um nome de host para pesquisar" +#, fuzzy +msgid "directory" +msgstr "Diretório" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" -msgstr "FOG imagem Log" +msgid "download the module and use it on the next" +msgstr "" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" -msgstr "Data inicial" +msgid "due to UAC introduced in Vista and up." +msgstr "" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" -msgstr "Data final" +msgid "e.g." +msgstr "" -#: lib/reports/imaging_log.report.php:214 -#, fuzzy -msgid "Deploy/Capture" -msgstr "implantar" +msgid "either already selected or uploaded" +msgstr "" -#: lib/reports/imaging_log.report.php:268 -#, fuzzy -msgid "Not Valid" -msgstr "Dados inválidos" +msgid "either because you have updated" +msgstr "" -#: lib/reports/inventory_report.report.php:24 #, fuzzy -msgid "FOG Host Inventory - Search" -msgstr "FOG User Login História Resumo - Pesquisa" +msgid "failed to execute, image file: " +msgstr "Falha ao excluir arquivos de imagem" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." +msgid "failed to execute, port must be even and numeric" +msgstr "" + +msgid "failed to execute, there are no clients included" msgstr "" -#: lib/reports/inventory_report.report.php:129 +msgid "failed to login" +msgstr "não conseguiu iniciar sessão" + #, fuzzy -msgid "Enter a model name to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "failed to start" +msgstr "Falha ao destruir" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" -msgstr "Exportação inventário completo" +#, fuzzy +msgid "faster" +msgstr "Encontro" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." -msgstr "Todos os MACs pendentes aprovado." +msgid "filesize" +msgstr "tamanho do arquivo" -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" -msgstr "Pendente MAC Exportação" +msgid "for Microsoft Windows to images" +msgstr "" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" -msgstr "Hospedeiro primário MAC" +msgid "for the advanced menu parameters" +msgstr "" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" -msgstr "Hospedar Pendente MAC" +msgid "for the menu background" +msgstr "" -#: lib/reports/pending_mac_list.report.php:130 #, fuzzy -msgid "Approve All Pending MACs for All Hosts" -msgstr "Aprovar todos os Macs pendente para todos os hosts" +msgid "found" +msgstr "Não encontrado" -#: lib/reports/pending_mac_list.report.php:154 #, fuzzy -msgid "Pending MAC Actions" -msgstr "pendentes MACs" +msgid "from" +msgstr "A partir de" -#: lib/reports/pending_mac_list.report.php:160 -#, fuzzy -msgid "Approve Selected MACs" -msgstr "Aprovar Hosts selecionados" +msgid "function on client computers." +msgstr "" -#: lib/reports/pending_mac_list.report.php:165 -#, fuzzy -msgid "Approve" -msgstr "hospedar aprovado" +msgid "group" +msgstr "grupo" -#: lib/reports/pending_mac_list.report.php:171 #, fuzzy -msgid "Delete Selected MACs" -msgstr "Delete Selected" +msgid "has been cancelled" +msgstr "foi atualizado com sucesso" -#: lib/reports/product_keys.report.php:31 #, fuzzy -msgid "Host Product Keys" -msgstr "Hospedar de Chave de Produto" +msgid "has been completed" +msgstr "foi destruído" -#: lib/reports/snapin_log.report.php:18 #, fuzzy -msgid "FOG Snapin - Search" -msgstr "FOG User Login História Resumo - Pesquisa" +msgid "has been killed" +msgstr "foi atualizado com sucesso" -#: lib/reports/snapin_log.report.php:82 -#, fuzzy -msgid "Enter a snapin name to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "has been started on port" +msgstr "foi iniciado na porta" -#: lib/reports/snapin_log.report.php:120 #, fuzzy -msgid "Found snapin information" -msgstr "FOG Informação da versão" +msgid "has been successfully destroyed" +msgstr "foi atualizado com sucesso" -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" -msgstr "retorno desconto" +msgid "has been successfully updated" +msgstr "foi atualizado com sucesso" -#: lib/reports/snapin_log.report.php:153 #, fuzzy -msgid "Checkin Time" -msgstr "Tarefa Checkin Tempo" +msgid "has failed to destroy" +msgstr "falhou para ser destruído" + +msgid "has failed to save" +msgstr "não foi capaz de salvar" -#: lib/reports/snapin_log.report.php:154 #, fuzzy -msgid "Complete Time" -msgstr "Tarefa Checkin Tempo" +msgid "has started" +msgstr "tarefa iniciada" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" -msgstr "Snapin ID" +msgid "help with any aspect of FOG" +msgstr "" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" -msgstr "Snapin Args" +msgid "here" +msgstr "Aqui" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" -msgstr "Snapin correr com Args" +msgid "host" +msgstr "anfitrião" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" -msgstr "Estado Snapin" +#, fuzzy +msgid "hosts" +msgstr "anfitrião" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" -msgstr "Snapin Código de retorno" +#, fuzzy +msgid "hour" +msgstr "1 hora" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" -msgstr "Detalhe Snapin Retorno" +#, fuzzy +msgid "hr" +msgstr "Aqui" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" -msgstr "Snapin Data de Criação" +#, fuzzy +msgid "iPXE General Configuration" +msgstr "Configuração do menu gpxe" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" -msgstr "Snapin tempo de criação" +#, fuzzy +msgid "iPXE Item Create Fail" +msgstr "atualização da impressora falhou!" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" -msgstr "Job Criar Data" +#, fuzzy +msgid "iPXE Item Create Success" +msgstr "Impressora já existe" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" -msgstr "Job Criar Tempo" +#, fuzzy +msgid "iPXE Item Remove Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" -msgstr "Tarefa Checkin Data" +#, fuzzy +msgid "iPXE Item Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" -msgstr "Tarefa Checkin Tempo" +#, fuzzy +msgid "iPXE Item added!" +msgstr "Nome da impressora" -#: lib/reports/snapin_log.report.php:194 #, fuzzy -msgid "Task Complete Date" -msgstr "Tarefa Checkin Data" +msgid "iPXE Item create failed!" +msgstr "Menu Criar falhou" + +msgid "iPXE Menu Customization" +msgstr "gpxe Menu Customization" -#: lib/reports/snapin_log.report.php:195 #, fuzzy -msgid "Task Complete Time" -msgstr "Tarefa Checkin Tempo" +msgid "iPXE Menu Item Settings" +msgstr "Configurações" -#: lib/reports/user_tracking.report.php:31 #, fuzzy -msgid "FOG User tracking - Search" -msgstr "FOG User Login História Resumo - Pesquisa" +msgid "iPXE Menu Settings" +msgstr "Configurações" -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" -msgstr "Digite um nome de usuário para procurar" +msgid "iPXE New Menu Entry" +msgstr "gpxe nova opção no menu" -#: lib/reports/user_tracking.report.php:132 #, fuzzy -msgid "Found login information" -msgstr "FOG Informação da versão" +msgid "iPXE Settings updated successfully!" +msgstr "Instalar / Atualizar sucesso!" -#: lib/reports/user_tracking.report.php:233 #, fuzzy -msgid "FOG User tracking history" -msgstr "FOG usuário Sumário Login História" +msgid "iPXE Update Fail" +msgstr "atualização Snapin falhou" -#: lib/reports/user_tracking.report.php:290 #, fuzzy -msgid "Service Start" -msgstr "status do serviço" - -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" -msgstr "Resumo FOG Virus" +msgid "iPXE Update Success" +msgstr "Instalar / Atualizar sucesso!" -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" +msgid "iPXE syntax is very finicky when it comes to editing" msgstr "" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" -msgstr "" +msgid "iPrint Printer" +msgstr "iPrint Printer" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 #, fuzzy -msgid "Already created" -msgstr "Já está registado como" +msgid "if there is a task" +msgstr "Há uma série de tarefas" + +msgid "if used incorrectly could potentially" +msgstr "" -#: lib/router/route.class.php:857 #, fuzzy -msgid "Invalid tasking type passed" -msgstr "tipo de objeto inválido passado" +msgid "image" +msgstr "Imagem" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" +msgid "image file found, file: " msgstr "" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 #, fuzzy -msgid "I am the group manager" -msgstr " | Eu sou o único membro" +msgid "image replication" +msgstr "Replicator imagem" -#: lib/service/imagereplicator.class.php:119 #, fuzzy -msgid "Starting Image Replication" -msgstr "Replicator imagem" +msgid "images" +msgstr "imagens" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" +#, fuzzy +msgid "images to a storage group" +msgstr "Grupo de armazenamento primário" + +msgid "in seconds" msgstr "" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 #, fuzzy -msgid "We are group name" -msgstr "Nome do grupo de armazenamento" +msgid "install or update the FOG database" +msgstr "Tem certeza de que deseja instalar ou atualizar o banco de dados FOG?" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" +#, fuzzy +msgid "is already running with pid: " +msgstr "Bandwidth Replication" + +msgid "is going on with your FOG System" msgstr "" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 #, fuzzy -msgid "We are node name" -msgstr "Nome Storage Node" +msgid "is invalid" +msgstr "Dados são inválidos" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 #, fuzzy -msgid "Attempting to perform" -msgstr "A tentativa de executar ping" +msgid "is new" +msgstr "Linha" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 #, fuzzy -msgid "image replication" -msgstr "Replicator imagem" +msgid "is no longer running" +msgstr " não existe mais" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "Não há nada para replicar" +#, fuzzy +msgid "is now cancelled" +msgstr "foi atualizado com sucesso" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" +#, fuzzy +msgid "is now completed" +msgstr "foi destruído" + +msgid "is open" msgstr "" -#: lib/service/imagereplicator.class.php:207 +msgid "is protected" +msgstr "é protegida" + +msgid "is protected, removal not allowed" +msgstr "é protegido, a remoção não permitidos" + #, fuzzy -msgid "images to a storage group" -msgstr "Grupo de armazenamento primário" +msgid "is required" +msgstr "%s é necessária" + +#, fuzzy +msgid "is there one enabled" +msgstr "A imagem não está habilitado" -#: lib/service/imagereplicator.class.php:241 #, fuzzy -msgid "Replicating" -msgstr "Replicar?" +msgid "is valid" +msgstr "Dados são inválidos" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" +msgid "it boots to the first device" msgstr "" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -#, fuzzy -msgid "This is not the primary group" -msgstr " | Este não é o grupo primário" +msgid "it performs that task" +msgstr "" -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 -#, fuzzy -msgid "Nodes" -msgstr "Nó" +msgid "it will distribute its store" +msgstr "" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" +msgid "it will enforce login to gain access to the advanced" msgstr "" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" +msgid "it's transmitting to" msgstr "" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" +msgid "kernel to boot the client computers" msgstr "" -#: lib/service/multicasttask.class.php:104 #, fuzzy -msgid " | Unable to find image path" -msgstr "Falha ao destruir Storage Node" +msgid "key" +msgstr "DMI Key" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" +msgid "limited to 1Mbps on that node" msgstr "" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "Eu não sou o servidor web nevoeiro" - -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" +msgid "location url based on the host that checks in" msgstr "" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" -msgstr "A tentativa de executar ping" +msgid "logged in" +msgstr "" -#: lib/service/pinghosts.class.php:147 #, fuzzy -msgid "hosts" -msgstr "anfitrião" +msgid "logout" +msgstr "Sair" -#: lib/service/snapinhash.class.php:102 -#, fuzzy -msgid " * Snapin hash is globally disabled" -msgstr "Snapin com esse nome já existe" +msgid "may see the issue and help and/or use the solutions" +msgstr "" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" +msgid "meaning a node that has no images on it" msgstr "" -#: lib/service/snapinhash.class.php:135 #, fuzzy -msgid "Finding any snapins associated" -msgstr "Não snapins associado" +msgid "menu system" +msgstr "Item do menu:" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 -#, fuzzy -msgid "with this group" -msgstr "não dentro desta" +msgid "migration or mass import new items" +msgstr "" -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 #, fuzzy -msgid "as its primary group" -msgstr "Grupo primário de actualização" +msgid "min" +msgstr "minutos" -#: lib/service/snapinhash.class.php:158 #, fuzzy -msgid "No snapins associated with this group as master" -msgstr "Não há snapins associados a este alojamento" +msgid "minute" +msgstr "minutos" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" +msgid "minutes" +msgstr "minutos" + +msgid "mod dates" msgstr "" -#: lib/service/snapinhash.class.php:170 #, fuzzy -msgid "snapins" -msgstr "snapins" +msgid "month" +msgstr "Por mês" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" +#, fuzzy +msgid "more secure" +msgstr "importar usuários" + +msgid "multiple places to get your image" msgstr "" -#: lib/service/snapinhash.class.php:187 #, fuzzy -msgid "Trying Snapin hash for" -msgstr "Caminho Snapin" +msgid "must be specified" +msgstr "Nenhuma imagem especificada" -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "" +msgid "n/a" +msgstr "n / D" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" -msgstr "" +#, fuzzy +msgid "no database to" +msgstr "Nenhum banco de dados para trabalhar fora" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" -msgstr "concluído" +msgid "no login will appear" +msgstr "" -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" +msgid "node is the distributor of the images" msgstr "" -#: lib/service/snapinreplicator.class.php:118 #, fuzzy -msgid "Starting Snapin Replication" -msgstr "Snapin Replicator" +msgid "nodes containing this image" +msgstr "Não foi possível encontrar todos os nós que contêm esta imagem" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 #, fuzzy -msgid "snapin replication" -msgstr "Snapin Replicator" +msgid "not found on this node" +msgstr "Imagem não encontrada no nó" -#: lib/service/snapinreplicator.class.php:206 #, fuzzy -msgid "snapins to a storage group" -msgstr "Snapin grupo de armazenamento" +msgid "object" +msgstr "Objeto" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "" +msgid "of" +msgstr "do" -#: lib/service/snapinreplicator.class.php:249 #, fuzzy -msgid "Not syncing Snapin" -msgstr "Sem conexão para obter Snapin" +msgid "on the following pages of this document" +msgstr "Os seguintes erros ocorreram" -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" -msgstr " | Este não é o nó mestre" +msgid "on the old client" +msgstr "" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" +msgid "open" msgstr "" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" -msgstr "Esperando mysql para estar disponível" +msgid "or" +msgstr "ou" -#: lib/service/fogservice.class.php:356 #, fuzzy -msgid "This is not the master for this group" -msgstr " | Este não é o grupo primário" - -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" -msgstr "" +msgid "or no valid images specified" +msgstr "Nenhuma imagem especificada" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" +msgid "or start to operate" msgstr "" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" +msgid "or this is a new FOG installation" msgstr "" -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" +msgid "particular node" msgstr "" -#: lib/service/fogservice.class.php:411 #, fuzzy -msgid "to transfer to" -msgstr "Transferência de Imagem Log" +msgid "per host" +msgstr "snap-in por host" -#: lib/service/fogservice.class.php:482 -#, fuzzy -msgid "Replication already running with PID" -msgstr "Bandwidth Replication" +msgid "please see the hosts service settings section." +msgstr "" -#: lib/service/fogservice.class.php:514 #, fuzzy -msgid "File or path cannot be reached" -msgstr " | Arquivo ou o caminho não pode ser alcançado" +msgid "power management task(s) to run" +msgstr "Gerenciamento de usuários" -#: lib/service/fogservice.class.php:530 -#, fuzzy -msgid "Cannot connect to" -msgstr "Não é possível ligar para o nó." +msgid "present and where/how they need to display" +msgstr "" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 -#, fuzzy -msgid "File does not exist" -msgstr "Arquivo não existe" +msgid "previous install if needed" +msgstr "" -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" -msgstr "Incompatibilidade de hash de arquivo" +msgid "read-only" +msgstr "" -#: lib/service/fogservice.class.php:735 #, fuzzy -msgid "File size mismatch" -msgstr "Incompatibilidade de tamanho de arquivo" +msgid "real insert time" +msgstr "Repetição do diário: tempo de inserção reais" -#: lib/service/fogservice.class.php:743 #, fuzzy -msgid "Deleting remote file" -msgstr "Excluindo arquivo remoto" - -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" -msgstr "Não há necessidade de sincronizar" +msgid "require all hosts have the same image" +msgstr "Hosts não tem a mesma imagem atribuídas" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." -msgstr "Todos os arquivos sincronizados para este item." +#, fuzzy +msgid "scheduled task(s) to run" +msgstr "Atividades agendadas" -#: lib/service/fogservice.class.php:780 #, fuzzy -msgid "Starting Sync Actions" -msgstr "Começando ações são sincronizadas" +msgid "second" +msgstr "Ícone" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" -msgstr "sync começou para" +msgid "seconds" +msgstr "" -#: lib/service/fogservice.class.php:868 -#, fuzzy -msgid "Task started" -msgstr "tarefa iniciada" +msgid "see fit" +msgstr "" -#: lib/service/imagesize.class.php:102 -#, fuzzy -msgid " * Image size is globally disabled" -msgstr "Snapin com esse nome já existe" +msgid "see the forums or lookup the commands and scripts available" +msgstr "" -#: lib/service/imagesize.class.php:111 #, fuzzy -msgid "Starting Image Size Service" -msgstr "Replicator imagem" +msgid "sending on base port " +msgstr "Pendente MAC Exportação" -#: lib/service/imagesize.class.php:135 -#, fuzzy -msgid "Finding any images associated" -msgstr "Não snapins associado" +msgid "sites with clients moving back and forth" +msgstr "" -#: lib/service/imagesize.class.php:158 #, fuzzy -msgid "No images associated with this group as master" -msgstr "Não há snapins associados a este alojamento" +msgid "snapin" +msgstr "Snapin" -#: lib/service/imagesize.class.php:170 #, fuzzy -msgid "images" -msgstr "imagens" +msgid "snapin replication" +msgstr "Snapin Replicator" -#: lib/service/imagesize.class.php:171 #, fuzzy -msgid "image" -msgstr "Imagem" - -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" -msgstr "" +msgid "snapins" +msgstr "snapins" -#: lib/service/imagesize.class.php:187 #, fuzzy -msgid "Trying image size for" -msgstr "Caminho Snapin" +msgid "snapins to a storage group" +msgstr "Snapin grupo de armazenamento" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -#, fuzzy -msgid "Path is unavailable" -msgstr "Nenhum de hash disponíveis" +msgid "so if it seems like the process is hanging please be patient" +msgstr "" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" +msgid "so if you are unable to boot a client you may wish to" msgstr "" -#: lib/service/imagesize.class.php:225 #, fuzzy -msgid "Size" -msgstr "Max Size" +msgid "successfully removed!" +msgstr "removido com sucesso" -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" -msgstr "" +msgid "task found" +msgstr "tarefa encontrados" -#: lib/service/multicastmanager.class.php:222 -#, fuzzy -msgid "Task ID" -msgstr "Tarefa" +msgid "tasks in queue" +msgstr "" -#: lib/service/multicastmanager.class.php:234 -#, fuzzy -msgid "No new tasks found" -msgstr "Nenhuma classe válida enviada" +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" +msgstr "" -#: lib/service/multicastmanager.class.php:264 -#, fuzzy -msgid " No open slots " -msgstr "Não há vagas abertas" +msgid "the Initrd (initial ramdisk) which is used alongside the" +msgstr "" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" +msgid "the Linux kernel which is used to" msgstr "" -#: lib/service/multicastmanager.class.php:289 #, fuzzy -msgid "failed to execute, image file: " -msgstr "Falha ao excluir arquivos de imagem" +msgid "the advanced menu to use" +msgstr "Login avançado menu" -#: lib/service/multicastmanager.class.php:291 #, fuzzy -msgid "not found on this node" -msgstr "Imagem não encontrada no nó" +msgid "the base FOG install" +msgstr "Reinicialização após a instalação" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" +msgid "the following command in a terminal" msgstr "" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" +msgid "the host defined location where available" msgstr "" -#: lib/service/multicastmanager.class.php:327 -#, fuzzy -msgid "failed to start" -msgstr "Falha ao destruir" +msgid "the main and the host" +msgstr "" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 -#, fuzzy -msgid "could not be killed" -msgstr "Não foi possível ler arquivo temporário" +msgid "the way in which FOG operates" +msgstr "" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 #, fuzzy -msgid "has been killed" -msgstr "foi atualizado com sucesso" +msgid "there one enabled within this Storage Group" +msgstr "" +"Não foi possível encontrar um nó de armazenamento Existe um ativado dentro " +"deste grupo de armazenamento" -#: lib/service/multicastmanager.class.php:363 -#, fuzzy -msgid "is new" -msgstr "Linha" +msgid "there will be a database backup stored on your" +msgstr "" -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -#, fuzzy -msgid "unable to be updated" -msgstr "Falha ao atualizar" +msgid "this backup will enable you to return to the" +msgstr "" -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " +msgid "this is just another to ensure safety" msgstr "" -#: lib/service/multicastmanager.class.php:397 -#, fuzzy -msgid "client" -msgstr "Cliente" +msgid "this kernel holds all the drivers for the client computer" +msgstr "" -#: lib/service/multicastmanager.class.php:398 -#, fuzzy -msgid "clients" -msgstr "Cliente" +msgid "this one is already in use by another image" +msgstr "" -#: lib/service/multicastmanager.class.php:401 #, fuzzy -msgid "found" -msgstr "Não encontrado" +msgid "this one is reserved for FOG" +msgstr "Por favor, escolha um nome diferente, este é reservado para FOG." -#: lib/service/multicastmanager.class.php:409 -#, fuzzy -msgid "sending on base port " -msgstr "Pendente MAC Exportação" +msgid "this will save the backup in your home" +msgstr "" -#: lib/service/multicastmanager.class.php:416 -#, fuzzy -msgid "Command" -msgstr "Snapin Command" +msgid "time the service is started." +msgstr "" -#: lib/service/multicastmanager.class.php:425 -#, fuzzy -msgid "has started" -msgstr "tarefa iniciada" +msgid "to UAC introduced in Vista and up" +msgstr "" -#: lib/service/multicastmanager.class.php:490 #, fuzzy -msgid "is already running with pid: " -msgstr "Bandwidth Replication" +msgid "to all nodes in the group" +msgstr "Excluir todos os hosts dentro do grupo" -#: lib/service/multicastmanager.class.php:502 -#, fuzzy -msgid "is no longer running" -msgstr " não existe mais" +msgid "to be booted if no keys are pressed when the menu is" +msgstr "" -#: lib/service/multicastmanager.class.php:528 #, fuzzy -msgid "has been completed" -msgstr "foi destruído" +msgid "to get the requested Initrd" +msgstr "Nenhuma chave que está sendo solicitado" -#: lib/service/multicastmanager.class.php:539 #, fuzzy -msgid "has been cancelled" -msgstr "foi atualizado com sucesso" +msgid "to get the requested Kernel" +msgstr "Nenhuma chave que está sendo solicitado" -#: lib/service/multicastmanager.class.php:584 -#, fuzzy -msgid "is now cancelled" -msgstr "foi atualizado com sucesso" +msgid "to login" +msgstr "Entrar" -#: lib/service/multicastmanager.class.php:585 -#, fuzzy -msgid "could not be cancelled" -msgstr "foi atualizado com sucesso" +msgid "to operate in an environment where there may be" +msgstr "" -#: lib/service/multicastmanager.class.php:600 -#, fuzzy -msgid "is now completed" -msgstr "foi destruído" +msgid "to review." +msgstr "rever." -#: lib/service/multicastmanager.class.php:601 #, fuzzy -msgid "could not be completed" -msgstr "Não foi possível ler arquivo temporário" +msgid "to signify if this is a user or channel to send to" +msgstr "" +"Deve usar um @ ou # para indicar se este for um usuário ou canal para enviar " +"mensagem a!" -#: lib/service/multicastmanager.class.php:619 -#, fuzzy -msgid "Wait time has changed to" -msgstr "Tipo de impressora alterado para" +msgid "to the client systems" +msgstr "" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" +msgid "to time to see if a new module is published." msgstr "" -#: lib/service/multicastmanager.class.php:624 #, fuzzy -msgid "second" -msgstr "Ícone" +msgid "to transfer to" +msgstr "Transferência de Imagem Log" -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" +msgid "to update hash values as needed" msgstr "" -#: lib/service/taskscheduler.class.php:172 -#, fuzzy -msgid "scheduled task(s) to run" -msgstr "Atividades agendadas" +msgid "to update size values as needed" +msgstr "" -#: lib/service/taskscheduler.class.php:179 #, fuzzy -msgid "power management task(s) to run" -msgstr "Gerenciamento de usuários" +msgid "unable to be updated" +msgstr "Falha ao atualizar" -#: lib/service/taskscheduler.class.php:187 #, fuzzy -msgid "Scheduled Task run time" -msgstr "Atividades agendadas" +msgid "unavailable" +msgstr "Não disponível" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." +msgid "understood" msgstr "" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" -msgstr "É uma" +msgid "update to a newer kernel which may have more drivers built in" +msgstr "" -#: lib/service/taskscheduler.class.php:216 -#, fuzzy -msgid "based task." -msgstr "tarefa com base" +msgid "used" +msgstr "" + +msgid "user failed to login" +msgstr "utilizador não conseguiu iniciar sessão" + +msgid "user successfully logged in" +msgstr "usuário conectado com sucesso em" -#: lib/service/taskscheduler.class.php:224 #, fuzzy -msgid "Unicaset" -msgstr "unicast" +msgid "username" +msgstr "Nome de usuário" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" -msgstr "tarefa encontrados" +#, fuzzy +msgid "version" +msgstr "Versão" -#: lib/service/taskscheduler.class.php:252 #, fuzzy -msgid "Task started for" -msgstr "Tarefas começou para" +msgid "we need a file name in the request" +msgstr "" +"Se a ação de pedir ou obter, precisamos de um nome de arquivo no pedido" -#: lib/service/taskscheduler.class.php:275 #, fuzzy -msgid "Power Management Task run time" -msgstr "Gerenciamento de usuários" +msgid "where to download the snapin" +msgstr "Não foi possível encontrar o arquivo de snap-in" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." +msgid "which is empty" msgstr "" -#: lib/service/taskscheduler.class.php:294 #, fuzzy -msgid "Task sent to" -msgstr "Estado Task" +msgid "window" +msgstr "Windows 7" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" +msgid "wipe out all of your images stored on" +msgstr "" + +msgid "with modules and config" msgstr "" -#: management/other/index.php:167 #, fuzzy -msgid "Credits" -msgstr "Crio" +msgid "with the host" +msgstr "não dentro desta" -#: management/other/index.php:170 #, fuzzy -msgid "FOG Client" -msgstr "FOG Cliente Wiki" +msgid "with this group" +msgstr "não dentro desta" -#: service/hostnameloop.php:36 #, fuzzy -msgid "A host with that name already exists" -msgstr "Um nome de host com esse nome já existe." +msgid "would you like to install it now" +msgstr "Este plugin não está instalado, você gostaria de instalá-lo agora?" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" +msgid "you set the bandwidth field on that node to 1000" msgstr "" -#: service/inventory.php:90 #, fuzzy -msgid "Failed to create inventory for this host" -msgstr "Falha ao criar o inventário para este alojamento!" +#~ msgid "A hostext already exists with this name!" +#~ msgstr "Uma imagem já existe com este nome!" -#: service/grouplisting.php:28 #, fuzzy -msgid "There are no groups on this server" -msgstr "Não existem grupos neste servidor." +#~ msgid "Add ou failed!" +#~ msgstr "Adicionar snap-in falhou!" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" -msgstr "" +#~ msgid "Could not read temp file" +#~ msgstr "Não foi possível ler arquivo temporário" -#: service/hostinfo.php:31 #, fuzzy -msgid "Invalid tasking!" -msgstr "tarefa inválido" +#~ msgid "Create New Host Ext" +#~ msgstr "Criar novo %s" -#: service/imagelisting.php:28 #, fuzzy -msgid "There are no images on this server" -msgstr "Não há imagens neste servidor." +#~ msgid "Export Host Exts" +#~ msgstr "Hosts de exportação" -#: service/locationlisting.php:28 #, fuzzy -msgid "There are no locations on this server" -msgstr "Não há locais neste servidor." +#~ msgid "External Links" +#~ msgstr "Extensão" -#: service/progress.php:39 -msgid "Invalid image" -msgstr "imagem inválido" +#~ msgid "FOG Snapin Log" +#~ msgstr "FOG Snapin Log" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "unidade inválido passado" +#~ msgid "Hello FOG Client" +#~ msgstr "Olá Cliente FOG" -#: service/Test.php:217 #, fuzzy -msgid "Invalid Unit" -msgstr "URL inválida" +#~ msgid "Host Ext" +#~ msgstr "Lista de Host" -#: service/av.php:25 -msgid "Invalid operational mode" -msgstr "modo operacional inválido" +#, fuzzy +#~ msgid "Host Ext Name" +#~ msgstr "Nome do host" -#: service/av.php:38 -msgid "Accepted" -msgstr "Aceitaram" +#, fuzzy +#~ msgid "Host Ext URL" +#~ msgstr "ID de acolhimento" -#: service/snapinlisting.php:28 #, fuzzy -msgid "There are no snapins on this server" -msgstr "Não há snapins neste servidor." +#~ msgid "Host Ext Variable" +#~ msgstr "Anfitrião Update Failed" -#: status/bandwidth.php:40 #, fuzzy -msgid "Device must be a string" -msgstr "Evento deve ser uma string" +#~ msgid "Hostext Create Fail" +#~ msgstr "Hospedar criar falha" -#: status/getfiles.php:27 #, fuzzy -msgid "Invalid" -msgstr "ID Inválido" +#~ msgid "Hostext Create Success" +#~ msgstr "host criado" -#: status/logtoview.php:31 status/logtoview.php:130 #, fuzzy -msgid "Invalid IP" -msgstr "ID Inválido" +#~ msgid "Hostext Update Fail" +#~ msgstr "Anfitrião Update Failed" -#: status/logtoview.php:37 status/logtoview.php:136 #, fuzzy -msgid "Invalid File" -msgstr "pasta inválida" +#~ msgid "Hostext Update Success" +#~ msgstr "Instalar / Atualizar sucesso!" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "pasta inválida" +#, fuzzy +#~ msgid "Hostext added!" +#~ msgstr "hospedar acrescentou" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "Não é possível abrir arquivo para leitura" +#, fuzzy +#~ msgid "Hostext update failed!" +#~ msgstr "atualização da impressora falhou!" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "IP Passou está incorreta" +#, fuzzy +#~ msgid "Hostext updated!" +#~ msgstr "usuário atualizada" -#~ msgid "Hello FOG Client" -#~ msgstr "Olá Cliente FOG" +#, fuzzy +#~ msgid "Import Host Exts" +#~ msgstr "Hosts de importação" -#~ msgid "FOG Snapin Log" -#~ msgstr "FOG Snapin Log" +#, fuzzy +#~ msgid "Invalid Unit" +#~ msgstr "URL inválida" + +#~ msgid "Invalid unit passed" +#~ msgstr "unidade inválido passado" + +#~ msgid "Inventory Desc" +#~ msgstr "Desc Inventory" #~ msgid "Legacy Client and Utilities" #~ msgstr "Legacy Client e Utilities" @@ -11151,8 +7929,8 @@ msgstr "IP Passou está incorreta" #~ "Este arquivo é usado para criptografar a senha AD. NÃO USE ESTE Se " #~ "estiver usando o novo cliente." -#~ msgid "Could not read temp file" -#~ msgstr "Não foi possível ler arquivo temporário" +#~ msgid "Unable to determine plugin details" +#~ msgstr "Não foi possível determinar detalhes de plugin" #, fuzzy #~ msgid "file to" diff --git a/packages/web/management/languages/zh_CN.UTF-8/LC_MESSAGES/messages.po b/packages/web/management/languages/zh_CN.UTF-8/LC_MESSAGES/messages.po index 3ac0e39b94..2d087de630 100644 --- a/packages/web/management/languages/zh_CN.UTF-8/LC_MESSAGES/messages.po +++ b/packages/web/management/languages/zh_CN.UTF-8/LC_MESSAGES/messages.po @@ -17,11100 +17,7878 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: commons/text.php:22 -msgid "Display" -msgstr "显示" - -#: commons/text.php:23 -msgid "Auto" -msgstr "汽车" - -#: commons/text.php:24 lib/hooks/addhostmodel.hook.php:122 -#: lib/pages/printermanagementpage.class.php:85 -msgid "Model" -msgstr "模型" - -#: commons/text.php:25 -msgid "Inventory" -msgstr "库存" - -#: commons/text.php:26 -msgid "O/S" -msgstr "O / S" - -#: commons/text.php:27 lib/fog/fogpage.class.php:334 -#: lib/fog/fogpage.class.php:1182 lib/fog/fogpage.class.php:1190 -#: lib/fog/fogpage.class.php:3471 lib/pages/hostmanagementpage.class.php:200 -#: lib/pages/hostmanagementpage.class.php:3131 -#: lib/pages/imagemanagementpage.class.php:168 -#: lib/pages/printermanagementpage.class.php:912 -#: lib/pages/serviceconfigurationpage.class.php:92 -#: lib/pages/snapinmanagementpage.class.php:185 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:477 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:637 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1064 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1433 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1557 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1733 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:82 -#: lib/plugins/location/pages/locationmanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:475 -#: lib/plugins/site/pages/sitemanagementpage.class.php:677 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:77 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:84 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:506 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:66 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:446 -msgid "Edit" -msgstr "编辑" - -#: commons/text.php:28 lib/fog/fogpage.class.php:749 -#: lib/fog/fogpage.class.php:2004 lib/fog/fogpage.class.php:2807 -#: lib/fog/fogpage.class.php:4323 lib/pages/fogconfigurationpage.class.php:1610 -#: lib/pages/fogconfigurationpage.class.php:1744 -#: lib/pages/groupmanagementpage.class.php:709 -#: lib/pages/hostmanagementpage.class.php:2563 -#: lib/pages/pluginmanagementpage.class.php:558 -#: lib/pages/serviceconfigurationpage.class.php:416 -#: lib/pages/serviceconfigurationpage.class.php:486 -#: lib/pages/serviceconfigurationpage.class.php:605 -#: lib/pages/serviceconfigurationpage.class.php:706 -#: lib/pages/serviceconfigurationpage.class.php:741 -#: lib/pages/serviceconfigurationpage.class.php:808 -#: lib/pages/storagemanagementpage.class.php:1044 -#: lib/pages/storagemanagementpage.class.php:1498 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:123 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:802 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1278 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:369 -#: lib/reports/pending_mac_list.report.php:176 -#: lib/reports/virus_history.report.php:59 -msgid "Delete" -msgstr "删除" - -#: commons/text.php:29 -msgid "Deleted" -msgstr "已删除" - -#: commons/text.php:30 lib/fog/fogpage.class.php:482 -msgid "All" -msgstr "所有" - -#: commons/text.php:31 lib/fog/fogpage.class.php:2413 -#: lib/fog/fogpage.class.php:3541 lib/fog/fogpage.class.php:3559 -#: lib/fog/fogpage.class.php:4220 lib/pages/groupmanagementpage.class.php:236 -#: lib/pages/groupmanagementpage.class.php:939 -#: lib/pages/groupmanagementpage.class.php:1075 -#: lib/pages/hostmanagementpage.class.php:1622 -#: lib/pages/hostmanagementpage.class.php:1847 -#: lib/pages/imagemanagementpage.class.php:642 -#: lib/pages/imagemanagementpage.class.php:1166 -#: lib/pages/printermanagementpage.class.php:479 -#: lib/pages/serviceconfigurationpage.class.php:497 -#: lib/pages/serviceconfigurationpage.class.php:718 -#: lib/pages/serviceconfigurationpage.class.php:819 -#: lib/pages/snapinmanagementpage.class.php:671 -#: lib/pages/snapinmanagementpage.class.php:1325 -#: lib/pages/storagemanagementpage.class.php:465 -#: lib/pages/storagemanagementpage.class.php:1253 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:363 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1515 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1810 -#: lib/plugins/location/pages/locationmanagementpage.class.php:187 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:129 -#: lib/plugins/site/pages/sitemanagementpage.class.php:548 -#: lib/plugins/site/pages/sitemanagementpage.class.php:754 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:149 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:168 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:236 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:569 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:583 -msgid "Add" -msgstr "加" - -#: commons/text.php:32 lib/fog/fogpage.class.php:478 -#: lib/fog/fogpage.class.php:3340 lib/reports/history_report.report.php:80 -#: lib/reports/host_list.report.php:119 -#: lib/reports/hosts_and_users.report.php:110 -#: lib/reports/imaging_log.report.php:117 -#: lib/reports/inventory_report.report.php:140 -#: lib/reports/snapin_log.report.php:91 -#: lib/reports/user_tracking.report.php:104 -msgid "Search" -msgstr "搜索" - -#: commons/text.php:33 -msgid "Storage" -msgstr "存储" - -#: commons/text.php:34 lib/pages/taskmanagementpage.class.php:936 -msgid "Snapin" -msgstr "管理单元" - -#: commons/text.php:35 -msgid "Snapins" -msgstr "Snapins" - -#: commons/text.php:36 lib/fog/fogpage.class.php:2764 -#: lib/fog/fogpage.class.php:3612 lib/pages/groupmanagementpage.class.php:961 -#: lib/pages/groupmanagementpage.class.php:1086 -#: lib/pages/hostmanagementpage.class.php:857 -#: lib/pages/hostmanagementpage.class.php:1725 -#: lib/pages/hostmanagementpage.class.php:1923 -#: lib/pages/imagemanagementpage.class.php:1270 -#: lib/pages/imagemanagementpage.class.php:1598 -#: lib/pages/snapinmanagementpage.class.php:1429 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1583 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1858 -#: lib/plugins/site/pages/sitemanagementpage.class.php:594 -#: lib/plugins/site/pages/sitemanagementpage.class.php:802 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:629 -msgid "Remove" -msgstr "去掉" - -#: commons/text.php:37 -msgid "Removed" -msgstr "去除" - -#: commons/text.php:38 lib/pages/imagemanagementpage.class.php:345 -#: lib/pages/serviceconfigurationpage.class.php:215 -#: lib/pages/snapinmanagementpage.class.php:275 -msgid "Enabled" -msgstr "启用" - -#: commons/text.php:39 -msgid "Management" -msgstr "管理" - -#: commons/text.php:40 lib/fog/fogpage.class.php:691 -#: lib/fog/fogpage.class.php:2414 lib/pages/fogconfigurationpage.class.php:576 -#: lib/pages/fogconfigurationpage.class.php:685 -#: lib/pages/fogconfigurationpage.class.php:736 -#: lib/pages/fogconfigurationpage.class.php:809 -#: lib/pages/fogconfigurationpage.class.php:1755 -#: lib/pages/fogconfigurationpage.class.php:2132 -#: lib/pages/fogconfigurationpage.class.php:2565 -#: lib/pages/groupmanagementpage.class.php:527 -#: lib/pages/groupmanagementpage.class.php:617 -#: lib/pages/groupmanagementpage.class.php:909 -#: lib/pages/groupmanagementpage.class.php:950 -#: lib/pages/groupmanagementpage.class.php:1321 -#: lib/pages/groupmanagementpage.class.php:1468 -#: lib/pages/groupmanagementpage.class.php:1543 -#: lib/pages/hostmanagementpage.class.php:846 -#: lib/pages/hostmanagementpage.class.php:1172 -#: lib/pages/hostmanagementpage.class.php:1580 -#: lib/pages/hostmanagementpage.class.php:1714 -#: lib/pages/hostmanagementpage.class.php:2148 -#: lib/pages/hostmanagementpage.class.php:2269 -#: lib/pages/hostmanagementpage.class.php:2340 -#: lib/pages/hostmanagementpage.class.php:2480 -#: lib/pages/imagemanagementpage.class.php:1014 -#: lib/pages/imagemanagementpage.class.php:1259 -#: lib/pages/pluginmanagementpage.class.php:437 -#: lib/pages/pluginmanagementpage.class.php:464 -#: lib/pages/printermanagementpage.class.php:889 -#: lib/pages/schemaupdaterpage.class.php:194 -#: lib/pages/schemaupdaterpage.class.php:227 -#: lib/pages/serviceconfigurationpage.class.php:274 -#: lib/pages/serviceconfigurationpage.class.php:351 -#: lib/pages/serviceconfigurationpage.class.php:574 -#: lib/pages/snapinmanagementpage.class.php:1178 -#: lib/pages/snapinmanagementpage.class.php:1418 -#: lib/pages/storagemanagementpage.class.php:845 -#: lib/pages/usermanagementpage.class.php:395 -#: lib/pages/usermanagementpage.class.php:484 -#: lib/pages/usermanagementpage.class.php:576 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:512 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1129 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:802 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1065 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1068 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:154 -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:122 -#: lib/plugins/location/pages/locationmanagementpage.class.php:356 -#: lib/plugins/site/hooks/addsitegroup.hook.php:148 -#: lib/plugins/site/pages/sitemanagementpage.class.php:312 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:365 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:357 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:512 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:347 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:282 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:364 -msgid "Update" -msgstr "更新" - -#: commons/text.php:41 lib/pages/hostmanagementpage.class.php:2863 -#: lib/pages/taskmanagementpage.class.php:542 -#: lib/reports/imaging_log.report.php:189 -msgid "Image" -msgstr "图片" - -#: commons/text.php:42 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:571 -msgid "Images" -msgstr "图片" - -#: commons/text.php:43 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:627 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1411 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1535 -msgid "Node" -msgstr "节点" - -#: commons/text.php:44 lib/pages/groupmanagementpage.class.php:1695 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:60 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:69 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:81 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:177 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:359 -#: lib/service/imagereplicator.class.php:148 -#: lib/service/imagereplicator.class.php:149 -#: lib/service/imagereplicator.class.php:286 -#: lib/service/snapinreplicator.class.php:147 -#: lib/service/snapinreplicator.class.php:148 -#: lib/service/snapinreplicator.class.php:277 -msgid "Group" -msgstr "组" - -#: commons/text.php:45 -msgid "Groups" -msgstr "组" - -#: commons/text.php:46 lib/fog/page.class.php:497 lib/fog/page.class.php:508 -#: lib/pages/hostmanagementpage.class.php:2739 -#: lib/pages/hostmanagementpage.class.php:2767 -#: lib/reports/user_tracking.report.php:288 -msgid "Logout" -msgstr "登出" - -#: commons/text.php:47 lib/fog/fogftp.class.php:379 -#: lib/pages/hostmanagementpage.class.php:175 -#: lib/reports/imaging_log.report.php:185 -msgid "Host" -msgstr "主办" - -#: commons/text.php:48 commons/text.php:105 -#: lib/pages/taskmanagementpage.class.php:807 -#: lib/plugins/site/pages/sitemanagementpage.class.php:84 -msgid "Hosts" -msgstr "主机" - -#: commons/text.php:49 -msgid "Bandwidth" -msgstr "带宽" - -#: commons/text.php:50 -msgid "Replication Bandwidth" -msgstr "复制带宽" - -#: commons/text.php:53 -msgid "This setting limits the bandwidth for replication between nodes" -msgstr "" - -#: commons/text.php:54 -msgid "It operates by getting the max bandwidth setting of the node" -msgstr "" - -#: commons/text.php:55 -msgid "it's transmitting to" -msgstr "" - -#: commons/text.php:56 -msgid "So if you are trying to transmit to remote node A" -msgstr "" - -#: commons/text.php:57 -msgid "and node A only has a 5Mbps and you want the speed" -msgstr "" - -#: commons/text.php:58 -msgid "limited to 1Mbps on that node" -msgstr "" - -#: commons/text.php:59 -msgid "you set the bandwidth field on that node to 1000" -msgstr "" - -#: commons/text.php:61 -msgid "Transmit" -msgstr "发送" - -#: commons/text.php:62 -msgid "Receive" -msgstr "接收" - -#: commons/text.php:63 -msgid "New" -msgstr "新" - -#: commons/text.php:64 lib/pages/serviceconfigurationpage.class.php:742 -#: lib/reports/history_report.report.php:135 -msgid "User" -msgstr "用户" - -#: commons/text.php:65 -msgid "Users" -msgstr "用户" - -#: commons/text.php:66 lib/fog/fogcontroller.class.php:176 -#: lib/fog/fogcontroller.class.php:495 lib/fog/fogcontroller.class.php:706 -#: lib/fog/fogcontroller.class.php:729 -#: lib/pages/groupmanagementpage.class.php:99 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:55 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:59 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:67 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:158 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:341 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:53 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:64 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:139 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:328 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:53 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:64 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:174 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:450 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:53 -#: lib/reports/equipment_loan.report.php:159 -#: lib/service/fogservice.class.php:395 lib/service/fogservice.class.php:424 -#: lib/service/fogservice.class.php:507 -#: lib/service/multicastmanager.class.php:222 -msgid "Name" -msgstr "名称" - -#: commons/text.php:67 lib/pages/groupmanagementpage.class.php:100 -msgid "Members" -msgstr "会员" - -#: commons/text.php:68 lib/fog/fogpage.class.php:2144 -#: lib/pages/taskmanagementpage.class.php:342 -#: lib/pages/taskmanagementpage.class.php:446 -msgid "Advanced" -msgstr "高级" - -#: commons/text.php:69 lib/pages/serverinfo.class.php:172 -#: lib/pages/taskmanagementpage.class.php:71 -#: lib/reports/host_list.report.php:192 -#: lib/reports/hosts_and_users.report.php:186 -#: lib/reports/product_keys.report.php:55 -#: lib/reports/user_tracking.report.php:134 -#: lib/reports/user_tracking.report.php:237 -#: lib/reports/user_tracking.report.php:258 -msgid "Hostname" -msgstr "主机名" - -#: commons/text.php:70 lib/pages/printermanagementpage.class.php:88 -#: lib/pages/serverinfo.class.php:168 lib/reports/history_report.report.php:138 -msgid "IP" -msgstr "IP" - -#: commons/text.php:71 lib/pages/hostmanagementpage.class.php:3182 -#: lib/pages/taskmanagementpage.class.php:72 -msgid "MAC" -msgstr "苹果电脑" - -#: commons/text.php:72 management/other/index.php:181 -msgid "Version" -msgstr "版" - -#: commons/text.php:73 -msgid "Text" -msgstr "文本" - -#: commons/text.php:74 -msgid "Graphical" -msgstr "图形" - -#: commons/text.php:75 lib/fog/fogbase.class.php:2305 -#: lib/fog/fogftp.class.php:373 lib/pages/fogconfigurationpage.class.php:3227 -#: lib/pages/hostmanagementpage.class.php:2538 -#: lib/pages/printermanagementpage.class.php:87 -#: lib/reports/virus_history.report.php:35 -#: lib/reports/virus_history.report.php:42 lib/service/fogservice.class.php:423 -#: lib/service/fogservice.class.php:506 -msgid "File" -msgstr "文件" - -#: commons/text.php:76 lib/pages/serviceconfigurationpage.class.php:417 -msgid "Path" -msgstr "路径" - -#: commons/text.php:77 lib/fog/powermanagementmanager.class.php:110 -#: lib/pages/serviceconfigurationpage.class.php:623 -#: lib/pages/serviceconfigurationpage.class.php:651 -msgid "Shutdown" -msgstr "关掉" - -#: commons/text.php:78 lib/fog/powermanagementmanager.class.php:111 -#: lib/pages/serviceconfigurationpage.class.php:624 -#: lib/pages/serviceconfigurationpage.class.php:648 -msgid "Reboot" -msgstr "重启" - -#: commons/text.php:79 lib/pages/dashboardpage.class.php:381 -#: lib/pages/hostmanagementpage.class.php:2676 -#: lib/pages/serviceconfigurationpage.class.php:606 -#: lib/reports/history_report.report.php:137 -#: lib/reports/user_tracking.report.php:238 -#: lib/reports/user_tracking.report.php:261 -msgid "Time" -msgstr "时间" - -#: commons/text.php:80 lib/fog/fogpage.class.php:4208 -#: lib/pages/hostmanagementpage.class.php:731 -#: lib/pages/hostmanagementpage.class.php:2677 -#: lib/pages/serviceconfigurationpage.class.php:607 -#: lib/reports/user_tracking.report.php:235 -#: lib/reports/user_tracking.report.php:256 -msgid "Action" -msgstr "行动" - -#: commons/text.php:81 -msgid "Printer" -msgstr "打印机" - -#: commons/text.php:82 lib/pages/groupmanagementpage.class.php:683 -#: lib/pages/hostmanagementpage.class.php:711 -#, fuzzy -msgid "Power Management" -msgstr "用户管理" - -#: commons/text.php:83 -msgid "Client" -msgstr "客户" - -#: commons/text.php:84 lib/fog/fogpage.class.php:1434 -#: lib/fog/fogpage.class.php:1878 lib/pages/hostmanagementpage.class.php:177 -msgid "Task" -msgstr "任务" - -#: commons/text.php:85 lib/fog/fogftp.class.php:381 -#: lib/pages/dashboardpage.class.php:218 -#: lib/pages/hostmanagementpage.class.php:2678 -#: lib/pages/serviceconfigurationpage.class.php:91 -#: lib/pages/usermanagementpage.class.php:87 -#: lib/reports/user_tracking.report.php:135 -#: lib/reports/user_tracking.report.php:236 -#: lib/reports/user_tracking.report.php:257 -msgid "Username" -msgstr "用户名" - -#: commons/text.php:86 -msgid "Service" -msgstr "服务" - -#: commons/text.php:87 lib/plugins/hostext/pages/hostextmanagement.page.php:454 -msgid "General" -msgstr "一般" - -#: commons/text.php:88 lib/pages/hostmanagementpage.class.php:2539 -#: lib/reports/virus_history.report.php:36 -#: lib/reports/virus_history.report.php:43 -#: lib/reports/virus_history.report.php:112 -msgid "Mode" -msgstr "模式" - -#: commons/text.php:89 lib/fog/fogpage.class.php:1571 -#: lib/pages/hostmanagementpage.class.php:2540 -#: lib/reports/equipment_loan.report.php:227 -#: lib/reports/equipment_loan.report.php:236 -#: lib/reports/virus_history.report.php:37 -#: lib/reports/virus_history.report.php:44 -msgid "Date" -msgstr "日期" - -#: commons/text.php:90 lib/pages/hostmanagementpage.class.php:2541 -#: lib/reports/virus_history.report.php:45 -msgid "Clear" -msgstr "明确" - -#: commons/text.php:91 lib/pages/fogconfigurationpage.class.php:1069 -#: lib/pages/fogconfigurationpage.class.php:1406 -#: lib/pages/hostmanagementpage.class.php:2679 -#: lib/pages/pluginmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:75 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:69 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:147 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:336 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:182 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:458 -#: lib/reports/user_tracking.report.php:239 -#: lib/reports/user_tracking.report.php:262 -msgid "Description" -msgstr "描述" - -#: commons/text.php:92 lib/pages/dashboardpage.class.php:190 -#: lib/pages/dashboardpage.class.php:199 -#: lib/pages/schemaupdaterpage.class.php:269 -msgid "here" -msgstr "这里" - -#: commons/text.php:93 -msgid "NOT" -msgstr "不" - -#: commons/text.php:94 lib/fog/fogpage.class.php:670 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:213 -msgid "or" -msgstr "要么" - -#: commons/text.php:95 lib/fog/fogpage.class.php:4009 -msgid "Row" -msgstr "行" - -#: commons/text.php:96 lib/fog/fogpage.class.php:4046 -#: lib/pages/serverinfo.class.php:160 -msgid "Errors" -msgstr "错误" - -#: commons/text.php:97 lib/db/mysql.class.php:72 lib/db/pdodb.class.php:186 -#: lib/db/pdodb.class.php:227 lib/db/pdodb.class.php:285 -#: lib/db/pdodb.class.php:343 lib/db/pdodb.class.php:399 -#: lib/fog/eventmanager.class.php:103 lib/fog/eventmanager.class.php:166 -#: lib/fog/fogcontroller.class.php:146 lib/fog/fogcontroller.class.php:270 -#: lib/fog/fogcontroller.class.php:320 lib/fog/fogcontroller.class.php:374 -#: lib/fog/fogcontroller.class.php:498 lib/fog/fogcontroller.class.php:508 -#: lib/fog/fogcontroller.class.php:519 lib/fog/fogcontroller.class.php:609 -#: lib/fog/fogcontroller.class.php:732 lib/fog/fogcontroller.class.php:742 -#: lib/fog/fogcontroller.class.php:753 lib/fog/fogcontroller.class.php:886 -#: lib/fog/fogpage.class.php:2612 lib/fog/foggetset.class.php:92 -#: lib/pages/schemaupdaterpage.class.php:198 -#: lib/pages/schemaupdaterpage.class.php:231 -msgid "Error" -msgstr "错误" - -#: commons/text.php:98 lib/fog/fogpage.class.php:3707 -#: lib/pages/fogconfigurationpage.class.php:3295 -msgid "Export" -msgstr "出口" - -#: commons/text.php:99 -msgid "Schedule" -msgstr "时间表" - -#: commons/text.php:100 lib/pages/hostmanagementpage.class.php:2904 -#: lib/reports/imaging_log.report.php:218 -msgid "Deploy" -msgstr "部署" - -#: commons/text.php:101 lib/pages/hostmanagementpage.class.php:2903 -#: lib/reports/imaging_log.report.php:217 -#, fuzzy -msgid "Capture" -msgstr "创建" - -#: commons/text.php:102 lib/pages/fogconfigurationpage.class.php:3025 -#: lib/service/taskscheduler.class.php:223 -msgid "Multicast" -msgstr "组播" - -#: commons/text.php:103 lib/pages/taskmanagementpage.class.php:77 -#: lib/pages/taskmanagementpage.class.php:810 -msgid "Status" -msgstr "状态" - -#: commons/text.php:104 -msgid "Actions" -msgstr "操作" - -#: commons/text.php:106 lib/pages/hostmanagementpage.class.php:2865 -#: lib/pages/imagemanagementpage.class.php:1577 -#: lib/pages/taskmanagementpage.class.php:809 -#: lib/pages/taskmanagementpage.class.php:938 -#: lib/reports/snapin_log.report.php:150 -msgid "State" -msgstr "州" - -#: commons/text.php:107 -msgid "Kill" -msgstr "杀" - -#: commons/text.php:108 lib/pages/serverinfo.class.php:171 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:192 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:468 -#: lib/reports/hosts_and_users.report.php:175 -msgid "Kernel" -msgstr "核心" - -#: commons/text.php:109 commons/text.php:133 -#: lib/pages/pluginmanagementpage.class.php:76 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:146 -#: lib/plugins/location/hooks/addlocationtasks.hook.php:90 -#: lib/reports/equipment_loan.report.php:161 -msgid "Location" -msgstr "位置" - -#: commons/text.php:110 lib/pages/hostmanagementpage.class.php:2588 -#: lib/pages/hostmanagementpage.class.php:2953 -#: lib/pages/serviceconfigurationpage.class.php:652 -#: lib/reports/user_tracking.report.php:294 -msgid "N/A" -msgstr "N / A" - -#: commons/text.php:111 -msgid "Home" -msgstr "家" - -#: commons/text.php:112 lib/pages/hostmanagementpage.class.php:2585 -#: lib/reports/virus_history.report.php:93 -msgid "Report" -msgstr "报告" - -#: commons/text.php:113 -msgid "Reports" -msgstr "报告" - -#: commons/text.php:114 lib/fog/page.class.php:516 -#: lib/pages/hostmanagementpage.class.php:2756 -#: lib/reports/user_tracking.report.php:289 -msgid "Login" -msgstr "登录" - -#: commons/text.php:115 lib/pages/dashboardpage.class.php:438 -msgid "Queued" -msgstr "排队" - -#: commons/text.php:116 lib/pages/hostmanagementpage.class.php:3022 -msgid "Complete" -msgstr "完成" - -#: commons/text.php:117 lib/fog/fogpage.class.php:2741 -msgid "Unknown" -msgstr "未知" - -#: commons/text.php:118 -msgid "Force" -msgstr "力" - -#: commons/text.php:119 lib/fog/fogbase.class.php:2303 -#: lib/fog/fogftp.class.php:371 lib/pages/hostmanagementpage.class.php:2864 -#: lib/pages/taskmanagementpage.class.php:1138 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:624 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:58 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:216 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:492 -#: lib/reports/imaging_log.report.php:190 -msgid "Type" -msgstr "类型" - -#: commons/text.php:120 -msgid "Settings" -msgstr "设置" - -#: commons/text.php:121 -msgid "FOG" -msgstr "雾" - -#: commons/text.php:122 lib/pages/dashboardpage.class.php:439 -#: lib/pages/taskmanagementpage.class.php:1137 -msgid "Active" -msgstr "活性" - -#: commons/text.php:123 -msgid "Printers" -msgstr "打印机" - -#: commons/text.php:124 -msgid "Directory" -msgstr "目录" - -#: commons/text.php:125 lib/fog/fogpage.class.php:2457 -msgid "Active Directory" -msgstr "活动目录" - -#: commons/text.php:126 -msgid "Virus History" -msgstr "病毒历史" - -#: commons/text.php:127 -msgid "Login History" -msgstr "登录历史记录" - -#: commons/text.php:128 -msgid "Image History" -msgstr "历史形象" +msgid " * Image replication is globally disabled" +msgstr "" -#: commons/text.php:129 -msgid "Snapin History" -msgstr "历史管理单元" +#, fuzzy +msgid " * Image size is globally disabled" +msgstr "管理单元与该名称已经存在" -#: commons/text.php:130 -msgid "Configuration" -msgstr "组态" +msgid " * Multicast service is globally disabled" +msgstr "" -#: commons/text.php:131 lib/pages/pluginmanagementpage.class.php:301 -#: lib/plugins/ldap/class/ldap.class.php:293 -#: lib/plugins/ldap/class/ldap.class.php:377 -#: lib/plugins/ldap/class/ldap.class.php:396 -#: lib/plugins/ldap/class/ldap.class.php:428 -#: lib/plugins/ldap/class/ldap.class.php:458 -#: lib/plugins/ldap/class/ldap.class.php:508 -#: lib/plugins/ldap/class/ldap.class.php:528 -#: lib/plugins/ldap/class/ldap.class.php:571 -#: lib/plugins/ldap/class/ldap.class.php:687 -#: lib/plugins/ldap/class/ldap.class.php:846 -#: lib/plugins/example/html/run.php:35 -msgid "Plugin" -msgstr "插入" +msgid " * Ping hosts is globally disabled" +msgstr "" -#: commons/text.php:132 -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:98 -msgid "Locations" -msgstr "位置" +#, fuzzy +msgid " * Snapin hash is globally disabled" +msgstr "管理单元与该名称已经存在" -#: commons/text.php:134 -msgid "License" -msgstr "执照" +msgid " * Snapin replication is globally disabled" +msgstr "" -#: commons/text.php:135 lib/pages/fogconfigurationpage.class.php:211 -msgid "Kernel Update" -msgstr "内核更新" +msgid " * Task Scheduler is globally disabled" +msgstr "" -#: commons/text.php:136 #, fuzzy -msgid "iPXE General Configuration" -msgstr "iPXE菜单配置" +msgid " Name" +msgstr "名称" -#: commons/text.php:137 -msgid "Client Updater" -msgstr "客户端更新" +#, fuzzy +msgid " No open slots " +msgstr "没有开口槽" -#: commons/text.php:138 -msgid "Hostname Changer" -msgstr "换主机名" +msgid " Task state has been updated, now the task is queued!" +msgstr "" -#: commons/text.php:139 -msgid "Host Registration" -msgstr "主机注册" +msgid " | This is not the master node" +msgstr "|这不是主节点" -#: commons/text.php:140 -msgid "Snapin Client" -msgstr "客户端管理单元" +#, fuzzy +msgid " | Unable to find image path" +msgstr "未能摧毁存储节点" -#: commons/text.php:141 -msgid "Task Reboot" -msgstr "任务重新启动" +msgid "$_POST variable is empty, check apache error log." +msgstr "$ _POST变量为空,检查apache错误日志。" -#: commons/text.php:142 -msgid "User Cleanup" -msgstr "用户清理" +#, fuzzy, php-format +msgid "%s ID %d is not valid" +msgstr "%s ID %s是无效的" -#: commons/text.php:143 -msgid "User Tracker" -msgstr "用户跟踪" +#, php-format +msgid "%s ID %s is not valid" +msgstr "%s ID %s是无效的" -#: commons/text.php:144 #, php-format msgid "%s Manager" msgstr "%s经理" -#: commons/text.php:145 -msgid "Green FOG" -msgstr "绿雾" - -#: commons/text.php:146 -msgid "Directory Cleaner" -msgstr "目录清洁" - -#: commons/text.php:147 -msgid "MAC Address List" -msgstr "MAC地址列表" - -#: commons/text.php:148 -msgid "FOG Settings" -msgstr "FOG设置" - -#: commons/text.php:149 -msgid "Server Shell" -msgstr "服务器外壳" - -#: commons/text.php:150 -msgid "Log Viewer" -msgstr "日志查看器" - -#: commons/text.php:151 -msgid "Configuration Save" -msgstr "配置保存" - -#: commons/text.php:152 -msgid "FOG Sourceforge Page" -msgstr "FOG Sourceforge上页" - -#: commons/text.php:153 -msgid "FOG Home Page" -msgstr "FOG首页" - -#: commons/text.php:154 -msgid "New Search" -msgstr "新搜索" - -#: commons/text.php:155 -#, php-format -msgid "List All %s" -msgstr "列表中的所有%s" - -#: commons/text.php:156 -#, php-format -msgid "Create New %s" -msgstr "新建%s" - -#: commons/text.php:157 lib/fog/fogpage.class.php:2171 -msgid "Tasks" -msgstr "任务" - -#: commons/text.php:158 -#, fuzzy -msgid "Client Settings" -msgstr "设置" - -#: commons/text.php:159 -#, fuzzy -msgid "Plugins" -msgstr "插入" - -#: commons/text.php:160 -msgid "Basic Tasks" -msgstr "基本任务" - -#: commons/text.php:161 lib/fog/fogpage.class.php:3510 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1767 -#: lib/plugins/site/pages/sitemanagementpage.class.php:711 -msgid "Membership" -msgstr "籍" - -#: commons/text.php:162 -msgid "Image Association" -msgstr "图像协会" - -#: commons/text.php:163 #, php-format msgid "%s Menu" msgstr "%s菜单" -#: commons/text.php:164 -msgid "Primary Group" -msgstr "主要组" - -#: commons/text.php:165 -msgid "All Storage Nodes" -msgstr "所有存储节点" +#, php-format +msgid "%s is required" +msgstr "%s是必需的" -#: commons/text.php:166 -msgid "Add Storage Node" -msgstr "添加存储节点" +#, fuzzy +msgid "1 Hour" +msgstr "1小时" -#: commons/text.php:167 -msgid "All Storage Groups" -msgstr "所有存储组" +msgid "10 Minutes" +msgstr "10分钟" -#: commons/text.php:168 -msgid "Add Storage Group" -msgstr "添加存储组" +msgid "2 Minutes" +msgstr "2分钟" -#: commons/text.php:169 lib/pages/taskmanagementpage.class.php:246 -msgid "Active Tasks" -msgstr "活动任务" +msgid "30 Minutes" +msgstr "30分钟" -#: commons/text.php:170 -msgid "Active Multicast Tasks" -msgstr "活动组播任务" +msgid "

Dependencies: port TCP 445 open in the client side" +msgstr "" -#: commons/text.php:171 -msgid "Active Snapin Tasks" -msgstr "主动管理单元任务" +msgid "

Possible status: Windows, Linux, FOS and Unknown" +msgstr "" -#: commons/text.php:172 lib/pages/taskmanagementpage.class.php:1127 -msgid "Scheduled Tasks" -msgstr "计划任务" +#, fuzzy +msgid "

Version 1.5.5" +msgstr "版" -#: commons/text.php:173 lib/pages/pluginmanagementpage.class.php:247 -msgid "Installed Plugins" -msgstr "已安装的插件" +#, fuzzy +msgid "A LDAP setup already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:174 lib/pages/pluginmanagementpage.class.php:199 -msgid "Install Plugins" -msgstr "安装插件" +#, fuzzy +msgid "A Windows Key already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:175 lib/pages/pluginmanagementpage.class.php:171 -msgid "Activate Plugins" -msgstr "激活插件" +#, fuzzy +msgid "A broadcast address is required" +msgstr "MAC地址是必需的" -#: commons/text.php:176 -msgid "Export Configuration" -msgstr "导出配置" +#, fuzzy +msgid "A broadcast already exists with this name" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:177 -msgid "Import Configuration" -msgstr "导入配置" +#, fuzzy +msgid "A broadcast already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:178 -msgid "Open Source Computer Cloning Solution" -msgstr "开源计算机克隆解决方案" +msgid "A description needs to be set" +msgstr "描述需要设置" -#: commons/text.php:179 -msgid "Invalid MAC Address!" -msgstr "无效的MAC地址!" +#, fuzzy +msgid "A file" +msgstr "文件" -#: commons/text.php:180 #, fuzzy -msgid "iPXE Menu Item Settings" -msgstr "设置" +msgid "A group already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:181 -msgid "iPXE Menu Customization" -msgstr "iPXE菜单定制" +#, fuzzy +msgid "A group is required for a location" +msgstr "存储组是必需的!" -#: commons/text.php:182 -msgid "iPXE New Menu Entry" -msgstr "iPXE新的菜单项" +#, fuzzy +msgid "A group is required!" +msgstr "图像名是必需的!" -#: commons/text.php:183 -msgid "Save Changes" -msgstr "保存更改" +#, fuzzy +msgid "A group must be selected." +msgstr "事件必须是字符串" -#: commons/text.php:184 -msgid "Required database field is empty" -msgstr "所需的数据库字段为空" +#, fuzzy +msgid "A group name is required!" +msgstr "图像名是必需的!" -#: commons/text.php:185 -msgid "No results found" -msgstr "未找到结果" +#, fuzzy +msgid "A host already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:186 -#, php-format -msgid "%s is required" -msgstr "%s是必需的" +#, fuzzy +msgid "A host name is required!" +msgstr "图像名是必需的!" -#: commons/text.php:188 -msgid "Host Management" -msgstr "主机管理" +#, fuzzy +msgid "A host with that name already exists" +msgstr "使用此名称的主机名已经存在。" -#: commons/text.php:189 -msgid "Storage Management" -msgstr "存储管理" +#, fuzzy +msgid "A host with this mac already exists with name" +msgstr "与此MAC主机与主机名已经存在: %s" -#: commons/text.php:190 -msgid "Task Management" -msgstr "任务管理" +msgid "A location with that name already exists." +msgstr "具有该名称的位置已经存在。" -#: commons/text.php:191 -msgid "Client Management" -msgstr "客户管理" +#, fuzzy +msgid "A mac address is required!" +msgstr "MAC地址是必需的" -#: commons/text.php:192 -msgid "Dashboard" -msgstr "仪表板" +#, fuzzy +msgid "A name is required!" +msgstr "图像名是必需的!" -#: commons/text.php:193 -msgid "Service Configuration" -msgstr "服务配置" +msgid "A name must be defined if using the \"name\" property" +msgstr "" -#: commons/text.php:194 -msgid "Report Management" -msgstr "报告管理" +#, fuzzy +msgid "A name must be set" +msgstr "事件必须是字符串" -#: commons/text.php:195 -msgid "Printer Management" -msgstr "打印机管理" +#, fuzzy +msgid "A password is required!" +msgstr "%s是必需的" -#: commons/text.php:196 -msgid "FOG Configuration" -msgstr "FOG配置" +#, fuzzy +msgid "A printer already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:197 -msgid "Group Management" -msgstr "集团管理" +#, fuzzy +msgid "A printer name is required!" +msgstr "图像名是必需的!" -#: commons/text.php:198 -msgid "Image Management" -msgstr "图像管理" +#, fuzzy +msgid "A role already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:199 lib/pages/usermanagementpage.class.php:39 -msgid "User Management" -msgstr "用户管理" +#, fuzzy +msgid "A rule already exists with this name." +msgstr "图像已经存在具有此名称!" -#: commons/text.php:200 -msgid "Hardware Information" -msgstr "硬件信息" +#, fuzzy +msgid "A site alread exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:201 -msgid "Snapin Management" -msgstr "管理单元管理" +#, fuzzy +msgid "A site already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:202 -msgid "Plugin Management" -msgstr "插件管理" +#, fuzzy +msgid "A snapin already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:203 -#: lib/plugins/location/pages/locationmanagementpage.class.php:41 -msgid "Location Management" -msgstr "位置管理" +#, fuzzy +msgid "A snapin name is required!" +msgstr "图像名是必需的!" -#: commons/text.php:204 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:37 -msgid "Access Control Management" -msgstr "门禁管理" +#, fuzzy +msgid "A subnet group already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:206 -msgid "FOG General Help" -msgstr "FOG一般帮助" +msgid "A subnet group is already using this group." +msgstr "" -#: commons/text.php:208 -msgid "Pending Hosts" -msgstr "待主机" +#, fuzzy +msgid "A subnetgroup already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:209 -msgid "Last Deployed" -msgstr "最后部署" +msgid "A task already exists for this host at the scheduled tasking" +msgstr "任务已经存在这台主机在预定任务" -#: commons/text.php:210 #, fuzzy -msgid "Last Captured" -msgstr "主机创建" +msgid "A task state already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:211 -msgid "Deploy Method" -msgstr "部署方法" +#, fuzzy +msgid "A task type already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:212 lib/pages/imagemanagementpage.class.php:602 -#: lib/pages/imagemanagementpage.class.php:964 -msgid "Image Type" -msgstr "图像类型" +#, fuzzy +msgid "A user already exists with this name" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:213 -msgid "Not Available" -msgstr "不可用" +#, fuzzy +msgid "A user name is required!" +msgstr "图像名是必需的!" -#: commons/text.php:214 -msgid "Export Hosts" -msgstr "主机出口" +#, fuzzy +msgid "A username already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:215 -msgid "Import Hosts" -msgstr "进口主机" +msgid "A valid database connection could not be made" +msgstr "" -#: commons/text.php:216 -msgid "Export Users" -msgstr "导出用户" +msgid "AD Domain" +msgstr "AD域" -#: commons/text.php:217 -msgid "Import Users" -msgstr "导入用户" +msgid "AD Join" +msgstr "公元加入" -#: commons/text.php:218 -msgid "Export Images" -msgstr "导出图像" +msgid "AD OU" +msgstr "AD OU" -#: commons/text.php:219 -msgid "Import Images" -msgstr "导入图像" +#, fuzzy +msgid "API Settings" +msgstr "设置" -#: commons/text.php:220 -msgid "Export Groups" -msgstr "出口组" +msgid "API?" +msgstr "" -#: commons/text.php:221 -msgid "Import Groups" -msgstr "导入组" +msgid "About FOG Reports" +msgstr "关于FOG报告" -#: commons/text.php:222 -msgid "Export Snapins" -msgstr "出口Snapins" +msgid "Accepted" +msgstr "公认" -#: commons/text.php:223 -msgid "Import Snapins" -msgstr "进口Snapins" +msgid "Access" +msgstr "访问" -#: commons/text.php:224 -msgid "Export Printers" -msgstr "出口打印机" +msgid "Access Control Management" +msgstr "门禁管理" -#: commons/text.php:225 -msgid "Import Printers" -msgstr "进口打印机" +#, fuzzy +msgid "Access Control Role General" +msgstr "所有访问控制" -#: commons/text.php:226 lib/reports/equipment_loan.report.php:154 -msgid "Equipment Loan" -msgstr "器材信贷" +#, fuzzy +msgid "Access Control Rule" +msgstr "所有访问控制" -#: commons/text.php:227 -msgid "Host List" -msgstr "主机列表" +#, fuzzy +msgid "Access Control Rule General" +msgstr "所有访问控制" -#: commons/text.php:228 -msgid "Imaging Log" -msgstr "成像测井" +#, fuzzy +msgid "Access Control Rules" +msgstr "所有访问控制" -#: commons/text.php:229 lib/pages/hostmanagementpage.class.php:1107 -msgid "Pending MACs" -msgstr "待定的MAC" +#, fuzzy +msgid "Access Controls" +msgstr "所有访问控制" -#: commons/text.php:230 -msgid "Snapin Log" -msgstr "日志管理单元" +msgid "Access Token" +msgstr "访问令牌" -#: commons/text.php:231 -msgid "Upload Reports" -msgstr "上传报告" +msgid "Access level is still 0 or false" +msgstr "" -#: commons/text.php:233 -msgid "Main Menu" -msgstr "主菜单" +msgid "Accessed By" +msgstr "通过访问" -#: commons/text.php:235 -msgid "Invalid Login" -msgstr "登录无效" +msgid "Account already linked" +msgstr "帐户已链接" -#: commons/text.php:236 lib/client/fogclient.class.php:122 -msgid "Not allowed here" -msgstr "这里不允许" +msgid "Account linked to FOG GUI at" +msgstr "帐户相关联的雾GUI" -#: commons/text.php:237 -msgid "Management Login" -msgstr "管理登录" +#, fuzzy +msgid "Account name to reset" +msgstr "事件必须是字符串" -#: commons/text.php:238 -msgid "Password" -msgstr "密码" +msgid "Account removed from FOG GUI at" +msgstr "应收FOG GUI中删除在" -#: commons/text.php:239 -msgid "Estimated FOG Sites" -msgstr "预估FOG网站" +#, fuzzy +msgid "Account successfully added!" +msgstr "成功更新" -#: commons/text.php:240 -msgid "Latest Version" -msgstr "最新版本" +msgid "Action" +msgstr "行动" -#: commons/text.php:241 -#, fuzzy -msgid "Latest Development Version" -msgstr "最新版本" +msgid "Actions" +msgstr "操作" -#: commons/text.php:243 -msgid "Image is protected and cannot be deleted" -msgstr "图像被保护,不能被删除" +msgid "Activate Plugins" +msgstr "激活插件" -#: commons/text.php:244 -msgid "Snapin is protected and cannot be deleted" -msgstr "管理单元被保护,不能被删除" +msgid "Active" +msgstr "活性" -#: commons/text.php:245 -msgid "No master nodes are enabled to delete this image" -msgstr "无主节点启用删除这张图片" +msgid "Active Directory" +msgstr "活动目录" -#: commons/text.php:246 -msgid "Failed to delete image files" -msgstr "无法删除图像文件" +#, fuzzy +msgid "Active Multi-cast Tasks" +msgstr "活动组播任务" -#: commons/text.php:247 -msgid "Failed to delete file" -msgstr "无法删除文件" +msgid "Active Multicast Tasks" +msgstr "活动组播任务" -#: commons/text.php:249 -msgid "Not Registered Hosts" -msgstr "未注册主机" +msgid "Active Snapin Tasks" +msgstr "主动管理单元任务" -#: commons/text.php:250 -msgid "Registered Hosts" -msgstr "注册主机" +msgid "Active Tasks" +msgstr "活动任务" -#: commons/text.php:251 lib/pages/taskmanagementpage.class.php:322 -msgid "All Hosts" -msgstr "所有主机" +msgid "Add" +msgstr "加" -#: commons/text.php:252 -msgid "Debug Options" -msgstr "调试选项" +msgid "Add Directory" +msgstr "添加目录" -#: commons/text.php:253 -msgid "Advanced Options" -msgstr "高级选项" +msgid "Add Event" +msgstr "添加事件" -#: commons/text.php:254 -msgid "Advanced Login Required" -msgstr "高级需要登录" +#, fuzzy +msgid "Add Hosts" +msgstr "所有主机" -#: commons/text.php:255 -msgid "Pending Registered Hosts" -msgstr "待注册主机" +#, fuzzy +msgid "Add LDAP server failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:257 -msgid "n/a" -msgstr "N / A" +msgid "Add MAC" +msgstr "添加MAC" -#: commons/text.php:259 -msgid "Directory Already Exists" -msgstr "目录已经存在" +#, fuzzy +msgid "Add New Printer" +msgstr "打印机" -#: commons/text.php:260 -msgid "Time Already Exists" -msgstr "时间已存在" +#, fuzzy +msgid "Add Printers" +msgstr "打印机" -#: commons/text.php:261 -msgid "User Already Exists" -msgstr "用户已存在" +#, fuzzy +msgid "Add Pushbullet Account" +msgstr "Pushbullet账户" -#: commons/text.php:263 -msgid "No Active Snapin Jobs Found For Host" -msgstr "无活动管理单元乔布斯发现主机" +#, fuzzy +msgid "Add Rules" +msgstr "添加用户" -#: commons/text.php:264 lib/pages/taskmanagementpage.class.php:601 -msgid "Failed to create task" -msgstr "无法创建任务" +#, fuzzy +msgid "Add Slack Account" +msgstr "斯莱克账户" -#: commons/text.php:265 -msgid "Host is already a member of an active task" -msgstr "主机已经是一个活动任务中的一员" +#, fuzzy +msgid "Add Snapins" +msgstr "添加管理单元(S)" -#: commons/text.php:266 -msgid "Host is not valid" -msgstr "主机是无效的" +msgid "Add Storage Group" +msgstr "添加存储组" -#: commons/text.php:267 #, fuzzy -msgid "Group is not valid" -msgstr "集团是无效的" +msgid "Add Storage Groups" +msgstr "添加存储组" -#: commons/text.php:268 -msgid "Task Type is not valid" -msgstr "任务类型是无效" +msgid "Add Storage Node" +msgstr "添加存储节点" -#: commons/text.php:269 -msgid "Image is not valid" -msgstr "图片无效" +#, fuzzy +msgid "Add Subnetgroup failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:270 -msgid "The image storage group assigned is not valid" -msgstr "分配图像存储组无效" +msgid "Add User" +msgstr "添加用户" -#: commons/text.php:271 -msgid "There are no snapins associated with this host" -msgstr "没有与此主机关联snapins" +#, fuzzy +msgid "Add Users" +msgstr "添加用户" -#: commons/text.php:272 -msgid "Snapins Are already deployed to this host" -msgstr "Snapins已经部署到该主机" +#, fuzzy +msgid "Add Windows Key failed!" +msgstr "添加管理单元失败!" + +msgid "Add any custom text you would like" +msgstr "" -#: commons/text.php:275 #, fuzzy -msgid "Could not find a Storage Node is" -msgstr "找不到临时文件名" +msgid "Add broadcast failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:276 #, fuzzy -msgid "there one enabled within this Storage Group" -msgstr "找不到存储节点是否有什么这个存储组中启用" +msgid "Add failed" +msgstr "添加管理单元失败!" -#: commons/text.php:280 -msgid "The storage groups associated storage node is not valid" -msgstr "存储组相关联的存储节点无效" +#, fuzzy +msgid "Add group failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:282 lib/fog/fogpage.class.php:1570 -msgid "Scheduled date is in the past" -msgstr "预定日期是过去" +#, fuzzy +msgid "Add host failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:285 -msgid "A task already exists for this host at the scheduled tasking" -msgstr "任务已经存在这台主机在预定任务" +#, fuzzy +msgid "Add image failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:287 -msgid "Minute value is not valid" -msgstr "分钟值无效" +#, fuzzy +msgid "Add location failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:288 -msgid "Hour value is not valid" -msgstr "小时值无效" +#, fuzzy, php-format +msgid "Add new role" +msgstr "添加新的用户帐户" -#: commons/text.php:289 -msgid "Day of month value is not valid" -msgstr "月份值的天无效" +#, fuzzy, php-format +msgid "Add new rule" +msgstr "添加新的用户帐户" -#: commons/text.php:290 -msgid "Month value is not valid" -msgstr "一个月值无效" +#, fuzzy +msgid "Add printer failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:291 -msgid "Day of week value is not valid" -msgstr "周值的天无效" +#, fuzzy +msgid "Add role failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:293 -msgid "No Host found for MAC Address" -msgstr "找不到主机MAC地址" +#, fuzzy +msgid "Add rule failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:295 lib/fog/fogpage.class.php:4102 -#: lib/pages/snapinmanagementpage.class.php:91 -#: lib/pages/snapinmanagementpage.class.php:361 -#: lib/pages/snapinmanagementpage.class.php:497 -#: lib/pages/snapinmanagementpage.class.php:993 -msgid "Please select an option" -msgstr "请选择一个选项" +#, fuzzy +msgid "Add selected hosts" +msgstr "打印机" -#: commons/text.php:299 -msgid "Error multiple hosts returned for list of mac addresses" -msgstr "错误多个主机返回的MAC地址列表" +#, fuzzy +msgid "Add selected images" +msgstr "打印机" -#: commons/text.php:302 -msgid "Session timeout" -msgstr "会话超时" +#, fuzzy +msgid "Add selected printers" +msgstr "打印机" -#: commons/text.php:304 lib/pages/hostmanagementpage.class.php:2873 -#: lib/pages/serverinfo.class.php:167 -#: lib/pages/snapinmanagementpage.class.php:816 -#: lib/pages/snapinmanagementpage.class.php:1588 -#: lib/pages/storagemanagementpage.class.php:60 -#: lib/plugins/location/pages/locationmanagementpage.class.php:75 -#: lib/plugins/location/pages/locationmanagementpage.class.php:175 -#: lib/plugins/location/pages/locationmanagementpage.class.php:344 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:63 -#: lib/reg-task/taskingelement.class.php:227 -msgid "Storage Node" -msgstr "存储节点" +#, fuzzy +msgid "Add selected rules" +msgstr "打印机" -#: commons/text.php:305 lib/pages/hostmanagementpage.class.php:2872 -#: lib/pages/imagemanagementpage.class.php:133 -#: lib/pages/imagemanagementpage.class.php:584 -#: lib/pages/snapinmanagementpage.class.php:168 -#: lib/pages/snapinmanagementpage.class.php:521 -#: lib/plugins/location/pages/locationmanagementpage.class.php:74 -#: lib/plugins/location/pages/locationmanagementpage.class.php:172 -#: lib/plugins/location/pages/locationmanagementpage.class.php:341 -msgid "Storage Group" -msgstr "存储组" +#, fuzzy +msgid "Add selected snapins" +msgstr "打印机" -#: commons/text.php:306 -msgid "Graph Enabled" -msgstr "图启用" +#, fuzzy +msgid "Add selected storage groups" +msgstr "打印机" -#: commons/text.php:307 -msgid "Master Node" -msgstr "主节点" +#, fuzzy +msgid "Add selected users" +msgstr "打印机" -#: commons/text.php:308 -msgid "Is Master Node" -msgstr "是主节点" +#, fuzzy +msgid "Add site failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:309 commons/text.php:341 -msgid "Storage Node Name" -msgstr "存储节点名称" +msgid "Add snapin failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:310 -msgid "Storage Node Description" -msgstr "存储节点描述" +#, fuzzy +msgid "Add storage node failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:311 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:51 -msgid "IP Address" -msgstr "IP地址" +#, fuzzy +msgid "Add task state failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:312 lib/pages/storagemanagementpage.class.php:228 -msgid "Max Clients" -msgstr "最大客户" +#, fuzzy +msgid "Add task type failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:313 lib/pages/imagemanagementpage.class.php:590 -#: lib/pages/imagemanagementpage.class.php:952 -#: lib/reports/imaging_log.report.php:208 -msgid "Image Path" -msgstr "图像路径" +msgid "Add to group" +msgstr "添加到组" -#: commons/text.php:314 -msgid "FTP Path" -msgstr "FTP路径" +#, fuzzy +msgid "Add user failed!" +msgstr "添加管理单元失败!" -#: commons/text.php:315 -msgid "Snapin Path" -msgstr "管理单元路径" +#, php-format +msgid "Adding FOGPage: %s, Node: %s" +msgstr "添加FOGPage: %s ,节点: %s" -#: commons/text.php:316 -msgid "SSL Path" -msgstr "SSL通道" +msgid "Adding Key" +msgstr "添加关键" -#: commons/text.php:317 -msgid "Interface" -msgstr "接口" +msgid "Additional Icon elements" +msgstr "其他图标元素" -#: commons/text.php:318 -msgid "Is Enabled" -msgstr "已启用" +msgid "Additional MACs" +msgstr "附加的MAC" -#: commons/text.php:319 -msgid "Is Graph Enabled" -msgstr "被启用图" +#, fuzzy +msgid "Admin Group" +msgstr "修改组" -#: commons/text.php:320 -msgid "On Dashboard" -msgstr "仪表板上" +msgid "Advanced" +msgstr "高级" -#: commons/text.php:321 -msgid "Management Username" -msgstr "管理用户名" +msgid "Advanced Actions" +msgstr "高级操作" -#: commons/text.php:322 -msgid "Management Password" -msgstr "管理密码" +msgid "Advanced Login Required" +msgstr "高级需要登录" -#: commons/text.php:325 -msgid "Use extreme caution with this setting" -msgstr "" +msgid "Advanced Menu Login" +msgstr "高级菜单登录" -#: commons/text.php:326 #, fuzzy -msgid "This setting" -msgstr "此设置定义" +msgid "Advanced Menu settings" +msgstr "高级设置" -#: commons/text.php:327 -msgid "if used incorrectly could potentially" -msgstr "" +msgid "Advanced Options" +msgstr "高级选项" -#: commons/text.php:328 -msgid "wipe out all of your images stored on" -msgstr "" +msgid "Advanced Settings" +msgstr "高级设置" -#: commons/text.php:329 #, fuzzy -msgid "all current storage nodes" -msgstr "无效的存储节点" +msgid "Advanced menu command" +msgstr "高级菜单登录" -#: commons/text.php:330 #, fuzzy -msgid "The 'Is Master Node' setting defines which" -msgstr "此设置定义" +msgid "After image Action" +msgstr "集团定位" -#: commons/text.php:331 -msgid "node is the distributor of the images" +msgid "Ago must be boolean" msgstr "" -#: commons/text.php:332 -msgid "If you add a blank node" -msgstr "" +msgid "All" +msgstr "所有" -#: commons/text.php:333 -msgid "meaning a node that has no images on it" -msgstr "" +msgid "All Groups" +msgstr "所有组" -#: commons/text.php:334 -msgid "and set it to master" -msgstr "" +msgid "All Hosts" +msgstr "所有主机" -#: commons/text.php:335 -msgid "it will distribute its store" -msgstr "" +#, fuzzy +msgid "All Pending MACs approved" +msgstr "所有待定的MAC批准。" -#: commons/text.php:336 -msgid "which is empty" +msgid "All Pending MACs approved." +msgstr "所有待定的MAC批准。" + +msgid "All Storage Groups" +msgstr "所有存储组" + +msgid "All Storage Nodes" +msgstr "所有存储节点" + +msgid "All files synced for this item." +msgstr "同步该项目的所有文件。" + +msgid "All methods of binding have failed" msgstr "" -#: commons/text.php:337 #, fuzzy -msgid "to all nodes in the group" -msgstr "删除组内的所有主机" +msgid "All snapins" +msgstr "所有管理单元" -#: commons/text.php:343 -msgid "Storage Node already exists" -msgstr "存储节点已经存在" +msgid "Allows editing/creating of Task States fog currently has." +msgstr "" -#: commons/text.php:346 -msgid "Storage Node IP" -msgstr "存储节点的IP" +msgid "Allows editing/creating of Task Types fog currently has." +msgstr "" -#: commons/text.php:350 -msgid "Storage Node Max Clients" -msgstr "存储节点最大客户" +#, fuzzy +msgid "Already created" +msgstr "已注册为" -#: commons/text.php:354 -msgid "Storage Node Interface" -msgstr "存储节点接口" +msgid "Already registered as" +msgstr "已注册为" -#: commons/text.php:358 -msgid "Storage Node Username" -msgstr "存储节点的用户名" +#, fuzzy +msgid "Also confirm that the database is indeed running" +msgstr "检查数据库运行" -#: commons/text.php:362 -msgid "Storage Node Password" -msgstr "存储节点密码" +msgid "Although there are multiple levels already" +msgstr "" -#: commons/text.php:364 -msgid "Storage Node Created" -msgstr "存储节点创建" +msgid "An image already exists with this name!" +msgstr "图像已经存在具有此名称!" -#: commons/text.php:365 -msgid "Storage Node Updated" -msgstr "存储节点更新" +msgid "Annually" +msgstr "每年" -#: commons/text.php:366 -msgid "Database Update Failed" -msgstr "数据库更新失败" +#, fuzzy +msgid "Applications" +msgstr "操作" -#: commons/text.php:367 -msgid "Please confirm you want to delete" -msgstr "请确认您要删除" +#, fuzzy +msgid "Approve" +msgstr "主机批准" -#: commons/text.php:368 -msgid "Failed to destroy Storage Node" -msgstr "未能摧毁存储节点" +#, fuzzy +msgid "Approve All Pending MACs for All Hosts" +msgstr "批准所有主机的所有待定的MAC" -#: commons/text.php:369 -msgid "Storage Node deleted" -msgstr "存储节点删除" +#, fuzzy +msgid "Approve Host" +msgstr "批准该主机?" -#: commons/text.php:370 lib/pages/imagemanagementpage.class.php:1080 -#: lib/pages/imagemanagementpage.class.php:1185 -#: lib/pages/snapinmanagementpage.class.php:1239 -#: lib/pages/snapinmanagementpage.class.php:1344 -msgid "Storage Group Name" -msgstr "存储组名称" +#, fuzzy +msgid "Approve MAC" +msgstr "批准所有Mac?" -#: commons/text.php:371 -msgid "Storage Group Description" -msgstr "存储组说明" +#, fuzzy +msgid "Approve Selected MACs" +msgstr "批准选定主机" -#: commons/text.php:376 -msgid "Storage Group Already Exists" -msgstr "存储组已存在" +#, fuzzy +msgid "Approve Success" +msgstr "批准该主机?" -#: commons/text.php:377 -msgid "Storage Group Created" -msgstr "存储组创建" +#, fuzzy +msgid "Approve all pending macs" +msgstr "批准未决选择Mac电脑" -#: commons/text.php:378 -msgid "Storage Group Updated" -msgstr "存储组更新" +#, fuzzy +msgid "Approve all pending? " +msgstr "批准未决选择Mac电脑" -#: commons/text.php:379 -msgid "You must have at least one Storage Group" -msgstr "您必须至少有一个存储组" +#, fuzzy +msgid "Approve selected hosts" +msgstr "批准选定主机" -#: commons/text.php:380 -msgid "Storage Group deleted" -msgstr "存储组中删除" +msgid "Approve this host?" +msgstr "批准该主机?" -#: commons/text.php:381 -msgid "Failed to destroy Storage Group" -msgstr "未能摧毁存储组" +#, fuzzy +msgid "Approved" +msgstr "主机批准" -#: commons/text.php:382 -msgid "Invalid Class" -msgstr "无效类" +#, fuzzy +msgid "Are you sure you wish to" +msgstr "您确定要删除这些项目" -#: commons/text.php:383 -msgid "Class is not extended from FOGPage" -msgstr "类是不从FOGPage延长" +msgid "Array" +msgstr "" -#: commons/text.php:384 -msgid "Do not list on menu" -msgstr "不要列出菜单上" +msgid "Assigned Image" +msgstr "分配图像" -#: commons/text.php:386 -msgid "Language" -msgstr "语言" +msgid "Assignment saved successfully" +msgstr "转让成功保存" -#: commons/init.php:433 #, fuzzy -msgid "Missing one or more extensions." -msgstr "缺少扩展" +msgid "Associate rule failed!" +msgstr "添加管理单元失败!" -#: lib/client/snapinclient.class.php:106 lib/client/snapinclient.class.php:289 #, fuzzy -msgid "No valid tasks found" -msgstr "发送无有效类" +msgid "Associated Sites" +msgstr "预估FOG网站" -#: lib/client/snapinclient.class.php:306 -#, fuzzy -msgid "Snapin is invalid" -msgstr "管理单元无效" +msgid "Associates the files on nodes" +msgstr "" -#: lib/client/snapinclient.class.php:328 #, fuzzy -msgid "Snapin Task is invalid" -msgstr "管理单元无效" +msgid "Attempting to perform" +msgstr "尝试ping" -#: lib/client/snapinclient.class.php:411 -#, fuzzy -msgid "Invalid task id sent" -msgstr "任务无效" +msgid "Attempting to ping" +msgstr "尝试ping" -#: lib/client/snapinclient.class.php:429 -msgid "Invalid Snapin Tasking" -msgstr "无效的管理单元任务处理" +msgid "Auto" +msgstr "汽车" -#: lib/client/snapinclient.class.php:439 lib/client/snapinclient.class.php:516 -msgid "Invalid Snapin" -msgstr "无效的管理单元" +msgid "Auto Log Out Time (in minutes)" +msgstr "自动注销时间(分钟)" -#: lib/client/snapinclient.class.php:500 #, fuzzy -msgid "Invalid task id" -msgstr "任务无效" +msgid "Available Snapins" +msgstr "所有管理单元" -#: lib/client/snapinclient.class.php:510 -#, fuzzy -msgid "Invalid Snapin Tasking object" -msgstr "无效的管理单元任务处理" +msgid "BIOS Date" +msgstr "BIOS日期" -#: lib/client/snapinclient.class.php:544 -#: lib/reg-task/taskingelement.class.php:182 -msgid "Invalid Storage Group" -msgstr "无效的存储组" +msgid "BIOS Vendor" +msgstr "BIOS供应商" -#: lib/client/snapinclient.class.php:560 -msgid "Invalid Storage Node" -msgstr "无效的存储节点" +msgid "BIOS Version" +msgstr "BIOS版本" -#: lib/client/snapinclient.class.php:587 -#, fuzzy -msgid "Cannot connect to ftp server" -msgstr "无法连接到数据库" +msgid "Bandwidth" +msgstr "带宽" -#: lib/client/snapinclient.class.php:611 -msgid "Pending..." -msgstr "待..." +msgid "Bandwidth should be numeric and greater than 0" +msgstr "带宽应该是数字和大于0" -#: lib/client/snapinclient.class.php:628 -#, fuzzy -msgid "Could not read snapin file" -msgstr "无法读取tmp文件。" +msgid "Barcode Numbers" +msgstr "条码号" -#: lib/client/usertrack.class.php:67 -#, fuzzy -msgid "Postfix requires an action of login" -msgstr "Postfix的需要登录的一个动作,注销,或开始工作" +msgid "Base Only" +msgstr "" -#: lib/client/usertrack.class.php:68 #, fuzzy -msgid "logout" -msgstr "登出" +msgid "Basic Settings" +msgstr "设置" -#: lib/client/usertrack.class.php:69 -msgid "or start to operate" +msgid "Basic Tasks" +msgstr "基本任务" + +msgid "Bind DN" msgstr "" -#: lib/client/usertrack.class.php:120 -msgid "Postfix requires an action of login, logout, or start to operate" -msgstr "Postfix的需要登录的一个动作,注销,或开始工作" +#, fuzzy +msgid "Bind Password" +msgstr "域密码" + +msgid "Bitrate" +msgstr "比特率" + +msgid "Blank for default" +msgstr "预设为空白" -#: lib/client/usertrack.class.php:139 #, fuzzy -msgid "Replay from journal" -msgstr "从日记回放:实时插入时间" +msgid "Boot Exit settings" +msgstr "主机描述" + +msgid "Boot Key Sequence" +msgstr "开机按键顺序" -#: lib/client/usertrack.class.php:140 #, fuzzy -msgid "real insert time" -msgstr "从日记回放:实时插入时间" +msgid "Boot Options" +msgstr "启动选项:" -#: lib/client/usertrack.class.php:142 #, fuzzy -msgid "Login time" -msgstr "登录" +msgid "Broadcast Create Fail" +msgstr "主机创建失败" -#: lib/client/directorycleanup.class.php:57 -msgid "No directories defined to be cleaned up" -msgstr "" +#, fuzzy +msgid "Broadcast Create Success" +msgstr "主机创建" -#: lib/client/registerclient.class.php:86 -msgid "Pending Registration created by FOG_CLIENT" -msgstr "通过创建FOG_CLIENT登记待定" +msgid "Broadcast IP" +msgstr "广播IP" -#: lib/client/registerclient.class.php:109 -#: lib/client/registerclient.class.php:178 -#: lib/client/registerclient.class.php:180 -#, fuzzy -msgid "Too many MACs" -msgstr "主机主MAC" +msgid "Broadcast Name" +msgstr "广播名称" -#: lib/client/registerclient.class.php:110 #, fuzzy -msgid "Only allowed to have" -msgstr "您只能分配" +msgid "Broadcast Update Fail" +msgstr "广播更新" -#: lib/client/registerclient.class.php:112 #, fuzzy -msgid "additional macs" -msgstr "附加的MAC" - -#: lib/client/updateclient.class.php:62 -msgid "Needs action string of ask, get, or list" -msgstr "需要问,得到的,或列表的操作字符串" +msgid "Broadcast Update Success" +msgstr "安装/升级成功!" -#: lib/client/updateclient.class.php:70 #, fuzzy -msgid "If action of ask or get" -msgstr "需要问,得到的,或列表的操作字符串" +msgid "Broadcast added!" +msgstr "广播名称" -#: lib/client/updateclient.class.php:71 #, fuzzy -msgid "we need a file name in the request" -msgstr "如果行动要求或得到的,我们在请求需要的文件名" +msgid "Broadcast update failed!" +msgstr "广播更新" -#: lib/client/updateclient.class.php:91 lib/client/updateclient.class.php:109 #, fuzzy -msgid "Invalid data found" -msgstr "数据无效" +msgid "Broadcast updated!" +msgstr "广播更新" -#: lib/db/databasemanager.class.php:84 -msgid "A valid database connection could not be made" +msgid "Browse" msgstr "" -#: lib/db/mysql.class.php:16 lib/db/pdodb.class.php:105 -msgid "Failed to connect" -msgstr "连接失败" +msgid "CPU Cache" +msgstr "CPU缓存" -#: lib/db/mysql.class.php:19 lib/db/mysql.class.php:42 -#: lib/db/mysql.class.php:81 lib/db/mysql.class.php:144 -#: lib/db/mysql.class.php:175 lib/db/pdodb.class.php:111 -#: lib/db/pdodb.class.php:184 lib/db/pdodb.class.php:225 -#: lib/db/pdodb.class.php:283 lib/db/pdodb.class.php:341 -#: lib/db/pdodb.class.php:397 -msgid "Failed to" -msgstr "失败" +msgid "CPU Count" +msgstr "CPU计数" -#: lib/db/mysql.class.php:70 -msgid "No query sent" -msgstr "没有查询发送" +msgid "CPU Manufacturer" +msgstr "CPU制造商" -#: lib/db/mysql.class.php:78 lib/db/pdodb.class.php:276 -msgid "No database to work off" -msgstr "没有数据库工作关闭" +msgid "CPU Max Speed" +msgstr "CPU最大速度" -#: lib/db/mysql.class.php:98 lib/db/pdodb.class.php:328 -msgid "No query result, use query() first" -msgstr "没有查询结果,使用query()首先" +msgid "CPU Model" +msgstr "CPU型号" -#: lib/db/mysql.class.php:119 -msgid "No valid class sent" -msgstr "发送无有效类" +msgid "CPU Normal Speed" +msgstr "CPU正常速度" -#: lib/db/mysql.class.php:135 -msgid "Row number not set properly" -msgstr "行数设置不正确" +msgid "CPU Speed" +msgstr "CPU速度" -#: lib/db/mysql.class.php:152 lib/db/pdodb.class.php:371 -msgid "No data returned" -msgstr "无数据返回" +msgid "CPU Type" +msgstr "CPU类型" -#: lib/db/mysql.class.php:190 lib/fog/fogbase.class.php:2309 -#: lib/fog/fogftp.class.php:377 -msgid "Message" -msgstr "信息" +msgid "CPU Version" +msgstr "CPU版本" -#: lib/db/mysql.class.php:190 -msgid "Check that database is running" -msgstr "检查数据库运行" +msgid "CUPS Printer" +msgstr "CUPS打印机" -#: lib/db/pdodb.class.php:114 -#, fuzzy -msgid "SQL Error" -msgstr "SQL错误:" +msgid "Call" +msgstr "" -#: lib/db/pdodb.class.php:188 lib/db/pdodb.class.php:229 -#: lib/db/pdodb.class.php:287 lib/db/pdodb.class.php:345 -#: lib/db/pdodb.class.php:401 lib/db/pdodb.class.php:428 -msgid "Error Message" -msgstr "错误信息" +msgid "Can be a comma seperated list." +msgstr "" -#: lib/db/pdodb.class.php:208 -#, fuzzy -msgid "No link established to the database" -msgstr "没有连接到数据库" +msgid "Can not redeclare route" +msgstr "" + +msgid "Cancelled due to new tasking." +msgstr "由于新的任务取消。" + +msgid "Cancelled task" +msgstr "取消任务" + +msgid "Cannot add Primary mac as additional mac" +msgstr "无法添加主MAC作为附加MAC" -#: lib/db/pdodb.class.php:264 #, fuzzy -msgid "No query passed" -msgstr "没有查询发送" +msgid "Cannot add a pre-existing primary mac" +msgstr "无法添加预先存在的主MAC为待MAC" -#: lib/db/pdodb.class.php:290 #, fuzzy -msgid "no database to" -msgstr "没有数据库工作关闭" +msgid "Cannot bind to the LDAP server" +msgstr "无法连接到数据库" -#: lib/db/pdodb.class.php:366 -msgid "No connection to the database" -msgstr "没有连接到数据库" +msgid "Cannot cancel tasks this way" +msgstr "无法取消任务,这种方式" -#: lib/db/pdodb.class.php:426 -msgid "Error Code" -msgstr "错误代码" +msgid "Cannot change image when in tasking" +msgstr "" -#: lib/db/pdodb.class.php:430 -msgid "Debug" -msgstr "调试" +#, fuzzy +msgid "Cannot connect to" +msgstr "无法连接到节点。" -#: lib/db/pdodb.class.php:435 msgid "Cannot connect to database" msgstr "无法连接到数据库" -#: lib/db/pdodb.class.php:449 #, fuzzy -msgid "Database connection unavailable" -msgstr "数据库更新失败" +msgid "Cannot connect to ftp server" +msgstr "无法连接到数据库" -#: lib/fog/bootmenu.class.php:1498 #, fuzzy -msgid "No valid storage nodes found" -msgstr "无效的存储节点" +msgid "Cannot create tasking as image is not enabled" +msgstr "因为没有启用图像无法设置任务" -#: lib/fog/event.class.php:186 -msgid "Registered" -msgstr "注册" +msgid "Cannot set tasking as image is not enabled" +msgstr "因为没有启用图像无法设置任务" -#: lib/fog/eventmanager.class.php:58 lib/fog/eventmanager.class.php:144 -msgid "Event must be a string" -msgstr "事件必须是字符串" +#, fuzzy +msgid "Cannot set tasking to invalid hosts" +msgstr "无法设置taskings未决的或无效的项目" -#: lib/fog/eventmanager.class.php:61 -msgid "Listener must be an array or an object" +#, fuzzy +msgid "Cannot set tasking to pending hosts" +msgstr "无法设置taskings未决的或无效的项目" + +msgid "Cannot view from browser" msgstr "" -#: lib/fog/eventmanager.class.php:66 -msgid "Class must extend event" -msgstr "类必须扩展事件" +msgid "Capone Deploy" +msgstr "卡波恩部署" -#: lib/fog/eventmanager.class.php:76 #, fuzzy -msgid "Second paramater must be in array(class,function)" -msgstr "第二个参数的形式必须是数组(钩类,函数运行)" +msgid "Capture" +msgstr "创建" -#: lib/fog/eventmanager.class.php:80 -msgid "Class must extend hook" -msgstr "类必须扩展挂钩" +#, fuzzy +msgid "Captured" +msgstr "创建" -#: lib/fog/eventmanager.class.php:85 -msgid "Method does not exist" -msgstr "方法不存在" +#, fuzzy +msgid "Change password" +msgstr "管理密码" -#: lib/fog/eventmanager.class.php:95 -msgid "Register must be managed from hooks or events" +msgid "Channel call is invalid" +msgstr "通道调用无效" + +msgid "Chassis Asset" +msgstr "机箱资产" + +msgid "Chassis Manufacturer" +msgstr "机箱制造商" + +msgid "Chassis Serial" +msgstr "机箱序列" + +msgid "Chassis Version" +msgstr "机箱版本" + +msgid "Chat is also available on the forums for more realtime help" msgstr "" -#: lib/fog/eventmanager.class.php:102 #, fuzzy -msgid "Could not register" -msgstr "无法创建打印机" +msgid "Check here to see what hosts can be added" +msgstr "请查看这里以可以添加哪些打印机" -#: lib/fog/eventmanager.class.php:105 lib/fog/eventmanager.class.php:168 #, fuzzy -msgid "Event" -msgstr "添加事件" +msgid "Check here to see what images can be added" +msgstr "请查看这里以可以添加哪些打印机" -#: lib/fog/eventmanager.class.php:107 -#, fuzzy -msgid "Class" -msgstr "任务" +msgid "Check here to see what printers can be added" +msgstr "请查看这里以可以添加哪些打印机" -#: lib/fog/eventmanager.class.php:147 #, fuzzy -msgid "Event Data must be an array" -msgstr "事件必须是字符串" +msgid "Check here to see what rules can be added" +msgstr "请查看这里以可以添加哪些打印机" -#: lib/fog/eventmanager.class.php:150 -msgid "Event and data are not set" -msgstr "" +msgid "Check here to see what snapins can be added" +msgstr "请查看这里以可以添加什么snapins" -#: lib/fog/eventmanager.class.php:165 #, fuzzy -msgid "Could not notify" -msgstr "无法读取tmp文件。" +msgid "Check here to see what storage groups can be added" +msgstr "请查看这里以可以添加什么snapins" -#: lib/fog/fogbase.class.php:443 #, fuzzy -msgid "Class name must be a string" -msgstr "事件必须是字符串" +msgid "Check here to see what users can be added" +msgstr "请查看这里以可以添加哪些打印机" -#: lib/fog/fogbase.class.php:605 -msgid "Invalid Host" -msgstr "无效的主机" +msgid "Check that database is running" +msgstr "检查数据库运行" -#: lib/fog/fogbase.class.php:863 lib/fog/fogbase.class.php:893 #, fuzzy -msgid "Key must be a string or index" -msgstr "事件必须是字符串" +msgid "Checkin Time" +msgstr "任务登录时间" -#: lib/fog/fogbase.class.php:917 -msgid "Key must be an array of keys or a string." +msgid "Checking if I am the group manager" msgstr "" -#: lib/fog/fogbase.class.php:1132 lib/fog/fogbase.class.php:1145 -msgid "No Data" -msgstr "没有数据" - -#: lib/fog/fogbase.class.php:1142 -msgid "Not a number" -msgstr "不是一个数字" +msgid "Checksum" +msgstr "" -#: lib/fog/fogbase.class.php:1226 -msgid "Space variable must be boolean" +msgid "Checksums" msgstr "" -#: lib/fog/fogbase.class.php:1251 -msgid "Ago must be boolean" -msgstr "" +msgid "City/State/Zip" +msgstr "邮政编码" + +#, fuzzy +msgid "Class" +msgstr "任务" + +msgid "Class is not extended from FOGPage" +msgstr "类是不从FOGPage延长" + +msgid "Class must extend event" +msgstr "类必须扩展事件" -#: lib/fog/fogbase.class.php:1344 -msgid "Diff parameter must be numeric" -msgstr "" +msgid "Class must extend hook" +msgstr "类必须扩展挂钩" -#: lib/fog/fogbase.class.php:1347 #, fuzzy -msgid "Unit of time must be a string" +msgid "Class name must be a string" msgstr "事件必须是字符串" -#: lib/fog/fogbase.class.php:1351 -#, fuzzy -msgid "In" -msgstr "在" +msgid "Clear" +msgstr "明确" -#: lib/fog/fogbase.class.php:1354 #, fuzzy -msgid "ago" -msgstr "前" +msgid "Clear Fields" +msgstr "清除所有历史" -#: lib/fog/fogbase.class.php:1382 #, fuzzy -msgid "Old key must be a string" -msgstr "事件必须是字符串" +msgid "Clear all fields?" +msgstr "清除所有历史" -#: lib/fog/fogbase.class.php:1385 #, fuzzy -msgid "New key must be a string" -msgstr "事件必须是字符串" +msgid "Clear all history" +msgstr "清除所有历史" -#: lib/fog/fogbase.class.php:1478 -msgid "Data is blank" -msgstr "" +msgid "Click" +msgstr "点击" -#: lib/fog/fogbase.class.php:1488 -msgid "Needs a 256-bit key" -msgstr "" +msgid "Click Here" +msgstr "点击这里" -#: lib/fog/fogbase.class.php:1634 -msgid "Private key path not found" -msgstr "私钥未找到路径" +msgid "Client" +msgstr "客户" -#: lib/fog/fogbase.class.php:1650 -msgid "Private key not found" -msgstr "私钥未找到" +msgid "Client Count" +msgstr "客户端计数" -#: lib/fog/fogbase.class.php:1653 -msgid "Private key not readable" -msgstr "私钥不可读" +msgid "Client Management" +msgstr "客户管理" -#: lib/fog/fogbase.class.php:1658 -msgid "Private key failed" -msgstr "私钥失败" +msgid "Client Modules Change Fail" +msgstr "" -#: lib/fog/fogbase.class.php:1677 #, fuzzy -msgid "Failed to decrypt data on server" -msgstr "数据解密失败" +msgid "Client Modules Change Success" +msgstr "打印机已经存在" -#: lib/fog/fogbase.class.php:1910 #, fuzzy -msgid "Txt must be a string" -msgstr "事件必须是字符串" +msgid "Client Settings" +msgstr "设置" -#: lib/fog/fogbase.class.php:1913 -#, fuzzy -msgid "Level must be an integer" -msgstr "事件必须是字符串" +msgid "Client Updater" +msgstr "客户端更新" -#: lib/fog/fogbase.class.php:1941 #, fuzzy -msgid "String must be a string" -msgstr "事件必须是字符串" +msgid "Client Version" +msgstr "CPU版本" + +msgid "Clients" +msgstr "客户端" -#: lib/fog/fogbase.class.php:2067 #, fuzzy -msgid "Key must be a string" -msgstr "事件必须是字符串" +msgid "Command" +msgstr "管理单元命令" -#: lib/fog/fogbase.class.php:2307 lib/fog/fogftp.class.php:375 -msgid "Line" -msgstr "线" +msgid "Complete" +msgstr "完成" -#: lib/fog/fogcontroller.class.php:129 #, fuzzy -msgid "Table not defined for this class" -msgstr "该类定义没有数据库表" +msgid "Complete Time" +msgstr "任务登录时间" -#: lib/fog/fogcontroller.class.php:132 -#, fuzzy -msgid "Fields not defined for this class" -msgstr "该类定义没有数据库字段" +msgid "Completed" +msgstr "完成" -#: lib/fog/fogcontroller.class.php:145 #, fuzzy -msgid "Record not found" -msgstr "未发现记录,错误: %s" +msgid "Completed imaging" +msgstr "完成" -#: lib/fog/fogcontroller.class.php:222 lib/fog/foggetset.class.php:117 -#: lib/fog/foggetset.class.php:131 -msgid "Returning value of key" -msgstr "返回键的值" +msgid "Compression" +msgstr "压缩" -#: lib/fog/fogcontroller.class.php:224 lib/fog/fogcontroller.class.php:259 -#: lib/fog/fogcontroller.class.php:306 lib/fog/fogcontroller.class.php:361 -#: lib/fog/foggetset.class.php:80 lib/fog/foggetset.class.php:133 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:625 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1409 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1533 -msgid "Value" -msgstr "值" +msgid "Computer Information" +msgstr "计算机信息" -#: lib/fog/fogcontroller.class.php:246 lib/fog/fogcontroller.class.php:293 -#: lib/fog/fogcontroller.class.php:343 lib/fog/fogcontroller.class.php:545 -#: lib/fog/fogcontroller.class.php:664 lib/fog/fogcontroller.class.php:792 -#: lib/fog/fogcontroller.class.php:827 lib/fog/foggetset.class.php:55 -msgid "No key being requested" -msgstr "没有要求的关键" +#, fuzzy +msgid "Computer Model" +msgstr "打印机型号" -#: lib/fog/fogcontroller.class.php:250 -msgid "Invalid key being set" -msgstr "无效的关键字设定" +#, fuzzy +msgid "Config File" +msgstr "打印机配置文件" -#: lib/fog/fogcontroller.class.php:257 lib/fog/foggetset.class.php:63 -#: lib/fog/foggetset.class.php:71 lib/fog/foggetset.class.php:78 -msgid "Setting Key" -msgstr "设置键" +msgid "Configuration" +msgstr "组态" -#: lib/fog/fogcontroller.class.php:267 #, fuzzy -msgid "Set failed" -msgstr "服务更新失败" +msgid "Configuration Import/Export" +msgstr "组态" -#: lib/fog/fogcontroller.class.php:268 lib/fog/fogcontroller.class.php:318 -#: lib/fog/fogcontroller.class.php:372 lib/fog/fogcontroller.class.php:607 -#: lib/fog/foggetset.class.php:90 -#, fuzzy -msgid "Key" -msgstr "DMI关键" +msgid "Configuration Save" +msgstr "配置保存" -#: lib/fog/fogcontroller.class.php:297 lib/fog/fogcontroller.class.php:549 -msgid "Invalid key being added" -msgstr "添加键无效" +#, fuzzy +msgid "Confirm tasking" +msgstr "任务无效" -#: lib/fog/fogcontroller.class.php:304 -msgid "Adding Key" -msgstr "添加关键" +msgid "Conflicting path/file" +msgstr "" -#: lib/fog/fogcontroller.class.php:317 #, fuzzy -msgid "Add failed" -msgstr "添加管理单元失败!" - -#: lib/fog/fogcontroller.class.php:347 -msgid "Invalid key being removed" -msgstr "关键无效被删除" +msgid "Copy from existing" +msgstr "无法创建打印机" -#: lib/fog/fogcontroller.class.php:359 #, fuzzy -msgid "Removing Key" -msgstr "设置键" +msgid "Could not find a Storage Node in this group" +msgstr "找不到存储节点,有一个图像,此组内启用?" -#: lib/fog/fogcontroller.class.php:371 #, fuzzy -msgid "Remove failed" -msgstr "去除" +msgid "Could not find a Storage Node is" +msgstr "找不到临时文件名" -#: lib/fog/fogcontroller.class.php:456 #, fuzzy -msgid "Saving data for" -msgstr "保存数据%s对象" +msgid "Could not find any" +msgstr "找不到临时文件名" + +msgid "Could not find temp filename" +msgstr "找不到临时文件名" -#: lib/fog/fogcontroller.class.php:458 #, fuzzy -msgid "object" -msgstr "目的" +msgid "Could not notify" +msgstr "无法读取tmp文件。" -#: lib/fog/fogcontroller.class.php:470 lib/fog/fogcontroller.class.php:480 -#: lib/fog/fogcontroller.class.php:493 lib/fog/fogcontroller.class.php:505 -#: lib/fog/fogcontroller.class.php:517 lib/fog/fogcontroller.class.php:704 -#: lib/fog/fogcontroller.class.php:714 lib/fog/fogcontroller.class.php:727 -#: lib/fog/fogcontroller.class.php:739 lib/fog/fogcontroller.class.php:751 -#: lib/pages/schemaupdaterpage.class.php:195 -#: lib/pages/schemaupdaterpage.class.php:228 -#: lib/service/snapinhash.class.php:189 lib/service/imagesize.class.php:189 -msgid "ID" -msgstr "ID" +#, fuzzy +msgid "Could not read snapin file" +msgstr "无法读取tmp文件。" -#: lib/fog/fogcontroller.class.php:472 -msgid "NAME" -msgstr "" +msgid "Could not read tmp file." +msgstr "无法读取tmp文件。" -#: lib/fog/fogcontroller.class.php:474 lib/fog/fogcontroller.class.php:482 -msgid "has been successfully updated" -msgstr "已成功更新" +#, fuzzy +msgid "Could not register" +msgstr "无法创建打印机" -#: lib/fog/fogcontroller.class.php:497 lib/fog/fogcontroller.class.php:507 -msgid "has failed to save" -msgstr "未能保存" +msgid "Create" +msgstr "创建" -#: lib/fog/fogcontroller.class.php:516 #, fuzzy -msgid "Database save failed" -msgstr "数据库更新失败" +msgid "Create Image" +msgstr "创建日期" + +#, php-format +msgid "Create New %s" +msgstr "新建%s" -#: lib/fog/fogcontroller.class.php:542 #, fuzzy -msgid "Key field must be a string" -msgstr "事件必须是字符串" +msgid "Create New Access Control Role" +msgstr "所有访问控制" -#: lib/fog/fogcontroller.class.php:556 lib/fog/fogcontroller.class.php:675 #, fuzzy -msgid "Operation field not set" -msgstr "操作字段没有设置: %s" +msgid "Create New Key" +msgstr "新建%s" -#: lib/fog/fogcontroller.class.php:588 #, fuzzy -msgid "Loading data to field" -msgstr "加载数据到现场%s" +msgid "Create New LDAP" +msgstr "新建%s" -#: lib/fog/fogcontroller.class.php:606 #, fuzzy -msgid "Load failed" -msgstr "加载失败: %s" +msgid "Create New Location" +msgstr "新建%s" -#: lib/fog/fogcontroller.class.php:668 #, fuzzy -msgid "Invalid key being destroyed" -msgstr "关键无效被删除" +msgid "Create New Printer" +msgstr "新建%s" -#: lib/fog/fogcontroller.class.php:708 lib/fog/fogcontroller.class.php:716 #, fuzzy -msgid "has been successfully destroyed" -msgstr "已成功更新" +msgid "Create New Snapin" +msgstr "新建%s" -#: lib/fog/fogcontroller.class.php:731 lib/fog/fogcontroller.class.php:741 #, fuzzy -msgid "has failed to destroy" -msgstr "未能被销毁" +msgid "Create New SubnetGroup?" +msgstr "创建新组" + +msgid "Create New iPXE Menu Entry" +msgstr "新建iPXE菜单项" -#: lib/fog/fogcontroller.class.php:750 #, fuzzy -msgid "Destroy failed" -msgstr "摧毁失败: %s" +msgid "Create Report?" +msgstr "创建报告" -#: lib/fog/fogcontroller.class.php:831 #, fuzzy -msgid "Invalid key being requested" -msgstr "关键无效被删除" +msgid "Create Rule?" +msgstr "创建用户" -#: lib/fog/fogcontroller.class.php:835 -msgid "Invalid type, merge to add, diff to remove" -msgstr "" +#, fuzzy +msgid "Create Site" +msgstr "创建" -#: lib/fog/fogcontroller.class.php:877 #, fuzzy -msgid "Invalid ID passed" -msgstr "无效的单元传递" +msgid "Create Storage Group" +msgstr "存储节点" -#: lib/fog/fogcontroller.class.php:885 lib/fog/fogpage.class.php:2614 -#: lib/fog/fogpage.class.php:4043 service/av.php:36 -msgid "Failed" -msgstr "失败" +#, fuzzy +msgid "Create Storage Node" +msgstr "存储节点" -#: lib/fog/fogcore.class.php:40 -msgid "day" -msgstr "" +#, fuzzy +msgid "Create Task state" +msgstr "新的任务状态" -#: lib/fog/fogcore.class.php:49 #, fuzzy -msgid "hr" -msgstr "这里" +msgid "Create Task type" +msgstr "新的任务状态" -#: lib/fog/fogcore.class.php:58 #, fuzzy -msgid "min" -msgstr "分钟" +msgid "Create WOL Broadcast?" +msgstr "所有广播" -#: lib/fog/fogcore.class.php:76 #, fuzzy -msgid "Running Windows" -msgstr "运行版本" +msgid "Create new PM Schedule" +msgstr "新建%s" + +msgid "Create new group" +msgstr "创建新组" -#: lib/fog/fogcore.class.php:88 #, fuzzy -msgid "Unavailable" -msgstr "不可用" +msgid "Create user?" +msgstr "创建用户" -#: lib/fog/fogcron.class.php:295 lib/fog/fogpage.class.php:1351 -msgid "Select a cron type" -msgstr "选择一个cron类型" +msgid "Created By" +msgstr "由...制作" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Yearly" -msgstr "每年" +#, fuzzy +msgid "Created Tasks For" +msgstr "创建用户" -#: lib/fog/fogcron.class.php:296 lib/fog/fogpage.class.php:1352 -msgid "Annually" -msgstr "每年" +msgid "Created by FOG Reg on" +msgstr "创建者FOG上注册" -#: lib/fog/fogcron.class.php:297 lib/fog/fogpage.class.php:1353 -msgid "Monthly" -msgstr "每月一次" +msgid "Created file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/fog/fogcron.class.php:298 lib/fog/fogpage.class.php:1354 -msgid "Weekly" -msgstr "每周" +#, fuzzy +msgid "Credits" +msgstr "创建" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Daily" -msgstr "日常" +msgid "Cron" +msgstr "克龙" -#: lib/fog/fogcron.class.php:299 lib/fog/fogpage.class.php:1355 -msgid "Midnight" -msgstr "午夜" +msgid "Cron Schedule" +msgstr "Cron排程" -#: lib/fog/fogcron.class.php:300 lib/fog/fogpage.class.php:1356 -msgid "Hourly" -msgstr "每小时" +msgid "Cross platform" +msgstr "" -#: lib/fog/fogftp.class.php:219 #, fuzzy -msgid "FTP connection failed" -msgstr "FTP连接失败" - -#: lib/fog/fogmanagercontroller.class.php:563 -msgid "No fields passed" -msgstr "否字段通过" - -#: lib/fog/fogmanagercontroller.class.php:566 -msgid "No values passed" -msgstr "没有值传递" +msgid "Current Associations" +msgstr "图像协会" -#: lib/fog/fogmanagercontroller.class.php:603 #, fuzzy -msgid "No data to insert" -msgstr "无数据返回" +msgid "Current Power Management settings" +msgstr "用户管理" + +msgid "Current Records" +msgstr "当前记录" -#: lib/fog/fogmanagercontroller.class.php:909 #, fuzzy -msgid "No items found" -msgstr "发现没有图标" +msgid "Current Sessions" +msgstr "图像协会" -#: lib/fog/fogmanagercontroller.class.php:987 #, fuzzy -msgid "Nothing passed to search for" -msgstr "输入用户名搜索" +msgid "Current files" +msgstr "当前记录" -#: lib/fog/fogpage.class.php:236 #, fuzzy -msgid "ID Must be set to edit" -msgstr "必须加密" +msgid "Current settings" +msgstr "设置" -#: lib/fog/fogpage.class.php:321 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:220 -#, fuzzy, php-format -msgid "%s ID %d is not valid" -msgstr "%s ID %s是无效的" +msgid "DMI Field" +msgstr "DMI场" -#: lib/fog/fogpage.class.php:351 lib/pages/groupmanagementpage.class.php:1774 -#: lib/reports/host_list.report.php:171 -#: lib/reports/hosts_and_users.report.php:164 -#: lib/reports/imaging_log.report.php:203 -#: lib/reports/inventory_report.report.php:301 -#: lib/reports/pending_mac_list.report.php:46 -#: lib/reports/product_keys.report.php:33 lib/reports/snapin_log.report.php:175 -msgid "Host ID" -msgstr "主机ID" +msgid "DMI Key" +msgstr "DMI关键" -#: lib/fog/fogpage.class.php:352 lib/pages/groupmanagementpage.class.php:1733 -#: lib/pages/groupmanagementpage.class.php:1779 -#: lib/reports/inventory_report.report.php:207 -#: lib/reports/inventory_report.report.php:304 -#: lib/reports/pending_mac_list.report.php:47 -#: lib/reports/pending_mac_list.report.php:61 -#: lib/reports/virus_history.report.php:40 -#: lib/reports/virus_history.report.php:109 -msgid "Host name" -msgstr "主机名" +msgid "DMI Result" +msgstr "DMI结果" -#: lib/fog/fogpage.class.php:353 lib/pages/groupmanagementpage.class.php:1784 -#: lib/reports/host_list.report.php:174 lib/reports/host_list.report.php:193 -#: lib/reports/hosts_and_users.report.php:167 -#: lib/reports/hosts_and_users.report.php:187 -#: lib/reports/imaging_log.report.php:205 -#: lib/reports/inventory_report.report.php:307 -#: lib/reports/product_keys.report.php:36 -#: lib/reports/product_keys.report.php:56 lib/reports/snapin_log.report.php:177 -#: lib/reports/user_tracking.report.php:259 -msgid "Host MAC" -msgstr "主机的MAC" +msgid "Daily" +msgstr "日常" -#: lib/fog/fogpage.class.php:354 lib/pages/groupmanagementpage.class.php:1789 -#: lib/reports/host_list.report.php:173 -#: lib/reports/hosts_and_users.report.php:166 -#: lib/reports/imaging_log.report.php:206 -#: lib/reports/inventory_report.report.php:310 -#: lib/reports/pending_mac_list.report.php:49 -#: lib/reports/product_keys.report.php:35 -msgid "Host Desc" -msgstr "主持人说明" +msgid "Dashboard" +msgstr "仪表板" -#: lib/fog/fogpage.class.php:355 -msgid "Inventory ID" -msgstr "库存ID" +msgid "Data is blank" +msgstr "" -#: lib/fog/fogpage.class.php:356 -msgid "Inventory Desc" -msgstr "库存说明" +msgid "Data must be an array or a callable item." +msgstr "" -#: lib/fog/fogpage.class.php:357 lib/pages/hostmanagementpage.class.php:2430 -msgid "Primary User" -msgstr "主要用户" +#, fuzzy +msgid "Database" +msgstr "日期" -#: lib/fog/fogpage.class.php:358 -msgid "Other Tag 1" -msgstr "其他标签1" +#, fuzzy +msgid "Database Failure" +msgstr "数据库更新失败" -#: lib/fog/fogpage.class.php:359 -msgid "Other Tag 2" -msgstr "其他标签2" +#, fuzzy +msgid "Database Reverted" +msgstr "数据库恢复的变化" -#: lib/fog/fogpage.class.php:360 lib/pages/hostmanagementpage.class.php:2450 -msgid "System Manufacturer" -msgstr "系统制造商" +msgid "Database SQL" +msgstr "" -#: lib/fog/fogpage.class.php:361 lib/pages/groupmanagementpage.class.php:1735 -#: lib/pages/hostmanagementpage.class.php:2451 -#: lib/reports/inventory_report.report.php:209 -msgid "System Product" -msgstr "系统产品" +msgid "Database Schema Installer / Updater" +msgstr "数据库模式安装/更新" -#: lib/fog/fogpage.class.php:362 lib/pages/hostmanagementpage.class.php:2452 -msgid "System Version" -msgstr "系统版本" +msgid "Database Update Failed" +msgstr "数据库更新失败" -#: lib/fog/fogpage.class.php:363 lib/pages/groupmanagementpage.class.php:1736 -#: lib/reports/inventory_report.report.php:210 -msgid "System Serial" -msgstr "系统序列" +#, fuzzy +msgid "Database changes reverted!" +msgstr "数据库恢复的变化" -#: lib/fog/fogpage.class.php:364 lib/pages/hostmanagementpage.class.php:2455 -msgid "System Type" -msgstr "系统类型" +#, fuzzy +msgid "Database connection unavailable" +msgstr "数据库更新失败" -#: lib/fog/fogpage.class.php:365 lib/pages/hostmanagementpage.class.php:2457 -msgid "BIOS Version" -msgstr "BIOS版本" +#, fuzzy +msgid "Database imported and added successfully!" +msgstr "数据库导入并成功添加" -#: lib/fog/fogpage.class.php:366 lib/pages/hostmanagementpage.class.php:2456 -msgid "BIOS Vendor" -msgstr "BIOS供应商" +#, fuzzy +msgid "Database not available" +msgstr "数据库更新失败" -#: lib/fog/fogpage.class.php:367 lib/pages/hostmanagementpage.class.php:2458 -msgid "BIOS Date" -msgstr "BIOS日期" +#, fuzzy +msgid "Database save failed" +msgstr "数据库更新失败" -#: lib/fog/fogpage.class.php:368 -msgid "MB Manufacturer" -msgstr "MB厂商" +msgid "Date" +msgstr "日期" -#: lib/fog/fogpage.class.php:369 -msgid "MB Name" -msgstr "MB名称" +#, fuzzy +msgid "Date and Time" +msgstr "主机更新失败" -#: lib/fog/fogpage.class.php:370 -msgid "MB Version" -msgstr "MB版本" +msgid "Date of checkout" +msgstr "结帐日期" -#: lib/fog/fogpage.class.php:371 -msgid "MB Serial" -msgstr "MB系列" +msgid "Day of month value is not valid" +msgstr "月份值的天无效" -#: lib/fog/fogpage.class.php:372 -msgid "MB Asset" -msgstr "MB资产" +msgid "Day of week value is not valid" +msgstr "周值的天无效" -#: lib/fog/fogpage.class.php:373 lib/pages/hostmanagementpage.class.php:2464 -msgid "CPU Manufacturer" -msgstr "CPU制造商" +msgid "Debug" +msgstr "调试" -#: lib/fog/fogpage.class.php:374 lib/pages/hostmanagementpage.class.php:2465 -msgid "CPU Version" -msgstr "CPU版本" +msgid "Debug Options" +msgstr "调试选项" -#: lib/fog/fogpage.class.php:375 lib/pages/serverinfo.class.php:177 -msgid "CPU Speed" -msgstr "CPU速度" +msgid "Default" +msgstr "默认" -#: lib/fog/fogpage.class.php:376 lib/pages/hostmanagementpage.class.php:2467 -msgid "CPU Max Speed" -msgstr "CPU最大速度" +msgid "Default Height" +msgstr "默认高度" -#: lib/fog/fogpage.class.php:377 lib/pages/groupmanagementpage.class.php:1734 -#: lib/pages/hostmanagementpage.class.php:2468 -#: lib/reports/inventory_report.report.php:208 -#: lib/reports/inventory_report.report.php:313 -msgid "Memory" -msgstr "记忆" +#, fuzzy +msgid "Default Item" +msgstr "默认项:" -#: lib/fog/fogpage.class.php:378 -msgid "HD Model" -msgstr "HD型号" +msgid "Default Refresh Rate" +msgstr "默认刷新频率" -#: lib/fog/fogpage.class.php:379 -msgid "HD Firmware" -msgstr "HD固件" +msgid "Default Width" +msgstr "默认宽度" -#: lib/fog/fogpage.class.php:380 -msgid "HD Serial" -msgstr "HD系列" +#, fuzzy +msgid "Default is disabled" +msgstr "捐款将被禁用" -#: lib/fog/fogpage.class.php:381 lib/pages/hostmanagementpage.class.php:2472 -msgid "Chassis Manufacturer" -msgstr "机箱制造商" +msgid "Default log out time (in minutes)" +msgstr "默认注销时间(分钟)" -#: lib/fog/fogpage.class.php:382 lib/pages/hostmanagementpage.class.php:2473 -msgid "Chassis Version" -msgstr "机箱版本" +msgid "Delayed" +msgstr "延迟" -#: lib/fog/fogpage.class.php:383 lib/pages/hostmanagementpage.class.php:2474 -msgid "Chassis Serial" -msgstr "机箱序列" +msgid "Delayed Start" +msgstr "延时启动" -#: lib/fog/fogpage.class.php:384 lib/pages/hostmanagementpage.class.php:2475 -msgid "Chassis Asset" -msgstr "机箱资产" +msgid "Delete" +msgstr "删除" -#: lib/fog/fogpage.class.php:643 #, fuzzy -msgid "Group Associations" -msgstr "集团定位" - -#: lib/fog/fogpage.class.php:657 -msgid "Create new group" -msgstr "创建新组" +msgid "Delete Fail" +msgstr "删除的文件数据" -#: lib/fog/fogpage.class.php:677 -msgid "Add to group" -msgstr "添加到组" +msgid "Delete MACs" +msgstr "删除的MAC" -#: lib/fog/fogpage.class.php:686 lib/fog/fogpage.class.php:2403 -#: lib/pages/groupmanagementpage.class.php:232 #, fuzzy -msgid "Make changes?" -msgstr "保存更改" +msgid "Delete Menu Item" +msgstr "删除所有选中的项目" -#: lib/fog/fogpage.class.php:710 lib/fog/fogpage.class.php:4289 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:98 -#: lib/plugins/accesscontrol/hooks/accesscontrolindexdiv.hook.php:109 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:684 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:700 msgid "Delete Selected" msgstr "删除所选" -#: lib/fog/fogpage.class.php:728 lib/fog/fogpage.class.php:4305 -#: lib/pages/hostmanagementpage.class.php:852 #, fuzzy -msgid "Delete selected" -msgstr "删除所选" - -#: lib/fog/fogpage.class.php:783 -msgid "Requires templates to process" -msgstr "需要模板来处理" +msgid "Delete Selected Items" +msgstr "删除所有选中的项目" -#: lib/fog/fogpage.class.php:1019 #, fuzzy -msgid "Cannot set tasking to invalid hosts" -msgstr "无法设置taskings未决的或无效的项目" +msgid "Delete Selected MACs" +msgstr "删除所选" -#: lib/fog/fogpage.class.php:1026 lib/fog/fogpage.class.php:1655 #, fuzzy -msgid "Cannot set tasking to pending hosts" -msgstr "无法设置taskings未决的或无效的项目" +msgid "Delete Success" +msgstr "用户创建" -#: lib/fog/fogpage.class.php:1034 #, fuzzy -msgid "Invalid object to try tasking" -msgstr "无效的对象类型传递" +msgid "Delete all PM tasks?" +msgstr "删除所有选定%s小号" -#: lib/fog/fogpage.class.php:1041 -msgid "Cannot set tasking as image is not enabled" -msgstr "因为没有启用图像无法设置任务" +#, fuzzy +msgid "Delete files" +msgstr "删除的文件数据" -#: lib/fog/fogpage.class.php:1092 #, fuzzy -msgid "Host Associated Snapins" -msgstr "无关联的节点" +msgid "Delete hosts within" +msgstr "删除组内的所有主机" -#: lib/fog/fogpage.class.php:1119 #, fuzzy -msgid "Host Unassociated Snapins" -msgstr "无关联的节点" +msgid "Delete selected" +msgstr "删除所选" -#: lib/fog/fogpage.class.php:1153 lib/pages/taskmanagementpage.class.php:87 -#: lib/pages/taskmanagementpage.class.php:947 -msgid "Edit Host" -msgstr "编辑主机" +#, fuzzy +msgid "Delete selected hosts" +msgstr "删除选定的主机" -#: lib/fog/fogpage.class.php:1154 lib/pages/taskmanagementpage.class.php:92 -msgid "Edit Image" -msgstr "编辑图像" +msgid "Deleted" +msgstr "已删除" -#: lib/fog/fogpage.class.php:1218 #, fuzzy -msgid "Confirm tasking" -msgstr "任务无效" +msgid "Deleted Success" +msgstr "用户创建" -#: lib/fog/fogpage.class.php:1223 #, fuzzy -msgid "Image Associated: " -msgstr "图像协会" +msgid "Deleting remote file" +msgstr "菜单创建失败" -#: lib/fog/fogpage.class.php:1236 -msgid "Advanced Settings" -msgstr "高级设置" +msgid "Deploy" +msgstr "部署" -#: lib/fog/fogpage.class.php:1243 -#, fuzzy -msgid "Please select the snapin you want to install" -msgstr "请选择管理单元要部署" +msgid "Deploy Method" +msgstr "部署方法" -#: lib/fog/fogpage.class.php:1253 #, fuzzy -msgid "Account name to reset" -msgstr "事件必须是字符串" +msgid "Deploy/Capture" +msgstr "部署" + +msgid "Description" +msgstr "描述" -#: lib/fog/fogpage.class.php:1274 #, fuzzy -msgid "Schedule with shutdown" -msgstr "时间表" +msgid "Destroy failed" +msgstr "摧毁失败: %s" -#: lib/fog/fogpage.class.php:1293 -msgid "Wake on lan?" -msgstr "网络唤醒?" +msgid "Destroyed assignment" +msgstr "销毁作业" -#: lib/fog/fogpage.class.php:1313 #, fuzzy -msgid "Schedule as debug task" -msgstr "计划任务作为调试任务" +msgid "Destroyed assignments" +msgstr "销毁作业" -#: lib/fog/fogpage.class.php:1323 #, fuzzy -msgid "Schedule instant" -msgstr "时间表" +msgid "Detailed documentation" +msgstr "无法创建会话" -#: lib/fog/fogpage.class.php:1335 #, fuzzy -msgid "Schedule delayed" -msgstr "时间表" +msgid "Device must be a string" +msgstr "事件必须是字符串" -#: lib/fog/fogpage.class.php:1340 -#, fuzzy -msgid "Date and Time" -msgstr "主机更新失败" +msgid "Diff parameter must be numeric" +msgstr "" -#: lib/fog/fogpage.class.php:1373 #, fuzzy -msgid "Schedule cron-style" -msgstr "调度" +msgid "Directories" +msgstr "目录" -#: lib/fog/fogpage.class.php:1425 lib/pages/usermanagementpage.class.php:226 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:947 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:347 -#: lib/plugins/site/pages/sitemanagementpage.class.php:169 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:183 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:167 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:137 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:111 -msgid "Create" -msgstr "创建" +msgid "Directory" +msgstr "目录" -#: lib/fog/fogpage.class.php:1429 lib/pages/groupmanagementpage.class.php:101 -#: lib/pages/taskmanagementpage.class.php:347 -#: lib/pages/taskmanagementpage.class.php:450 -msgid "Tasking" -msgstr "任务" +msgid "Directory Already Exists" +msgstr "目录已经存在" -#: lib/fog/fogpage.class.php:1445 -#, fuzzy -msgid "Hosts in task" -msgstr "在任务主机" +msgid "Directory Cleaner" +msgstr "目录清洁" -#: lib/fog/fogpage.class.php:1556 #, fuzzy -msgid "Invalid scheduling type" -msgstr "无效类型" +msgid "Disabled" +msgstr "启用" -#: lib/fog/fogpage.class.php:1595 -#, fuzzy -msgid "minute" -msgstr "分钟" +msgid "Display" +msgstr "显示" -#: lib/fog/fogpage.class.php:1604 -#, fuzzy -msgid "hour" -msgstr "1小时" +msgid "Do not list on menu" +msgstr "不要列出菜单上" -#: lib/fog/fogpage.class.php:1613 -msgid "day of month" -msgstr "" +msgid "Domain Password" +msgstr "域密码" -#: lib/fog/fogpage.class.php:1622 -#, fuzzy -msgid "month" -msgstr "每月一次" +msgid "Domain Password Legacy" +msgstr "域密码遗产" -#: lib/fog/fogpage.class.php:1631 -msgid "day of week" -msgstr "" +msgid "Domain Username" +msgstr "域用户名" -#: lib/fog/fogpage.class.php:1640 -msgid "Task type is not valid" -msgstr "任务类型无效" +msgid "Domain name" +msgstr "域名" -#: lib/fog/fogpage.class.php:1648 -msgid "Password reset requires a user account to reset" -msgstr "密码重置需要一个用户帐户重置" +msgid "Donate to FOG" +msgstr "捐赠雾" -#: lib/fog/fogpage.class.php:1663 -#, fuzzy -msgid "There are no hosts to task in this group" -msgstr "有此服务器上没有组。" +msgid "Done" +msgstr "做" -#: lib/fog/fogpage.class.php:1673 -msgid "To perform an imaging task an image must be assigned" -msgstr "" +msgid "Done, Failed to create tasking" +msgstr "完成后,无法创建任务" + +msgid "Done, with imaging!" +msgstr "完成后,随着影像!" + +msgid "Done, without imaging!" +msgstr "完成后,没有影像!" -#: lib/fog/fogpage.class.php:1678 #, fuzzy -msgid "Cannot create tasking as image is not enabled" -msgstr "因为没有启用图像无法设置任务" +msgid "Done, without imaging! Invalid Login!" +msgstr "完成后,没有影像!" -#: lib/fog/fogpage.class.php:1685 #, fuzzy -msgid "The assigned image is protected" -msgstr "未选择或项目被保护" +msgid "Done, without imaging! No image assigned!" +msgstr "完成后,没有图像分配!" -#: lib/fog/fogpage.class.php:1687 -msgid "and cannot be captured" +msgid "Dot in Filename not allowed!" msgstr "" -#: lib/fog/fogpage.class.php:1693 -msgid "Groups are not allowed to schedule upload tasks" -msgstr "" +msgid "Download Failed" +msgstr "下载失败" -#: lib/fog/fogpage.class.php:1700 #, fuzzy -msgid "Multicast tasks from groups" -msgstr "MulticastTask" +msgid "Downloading Initrd" +msgstr "下载" -#: lib/fog/fogpage.class.php:1702 #, fuzzy -msgid "require all hosts have the same image" -msgstr "主机没有分配相同的图像" +msgid "Downloading Kernel" +msgstr "下载" -#: lib/fog/fogpage.class.php:1722 -#, fuzzy -msgid "No valid hosts found and" -msgstr "发送无有效类" +msgid "Dropped" +msgstr "下降" -#: lib/fog/fogpage.class.php:1723 -#, fuzzy -msgid "or no valid images specified" -msgstr "没有指定的图像" +msgid "Duration" +msgstr "为期" -#: lib/fog/fogpage.class.php:1735 lib/fog/fogpage.class.php:1835 #, fuzzy -msgid "Tasking Failed" -msgstr "任务" +msgid "ESC is defaulted" +msgstr "启用默认" -#: lib/fog/fogpage.class.php:1740 lib/fog/fogpage.class.php:1840 -#, fuzzy -msgid "Failed to create tasking" -msgstr "无法创建任务" +msgid "Edit" +msgstr "编辑" -#: lib/fog/fogpage.class.php:1803 -#, fuzzy -msgid "Failed to create scheduled tasking" -msgstr "无法创建任务" +msgid "Edit Host" +msgstr "编辑主机" -#: lib/fog/fogpage.class.php:1806 -#, fuzzy -msgid "Scheduled tasks successfully created" -msgstr "已成功更新" +msgid "Edit Image" +msgstr "编辑图像" -#: lib/fog/fogpage.class.php:1812 -#, fuzzy -msgid "Failed to start tasking type" -msgstr "无法启动部署任务" +msgid "Edit Node" +msgstr "编辑节点" -#: lib/fog/fogpage.class.php:1854 lib/pages/hostmanagementpage.class.php:730 -msgid "Cron Schedule" -msgstr "Cron排程" +msgid "Edit User" +msgstr "编辑用户" -#: lib/fog/fogpage.class.php:1865 -msgid "Delayed Start" -msgstr "延时启动" +msgid "Either reboot or shutdown action must be used." +msgstr "" -#: lib/fog/fogpage.class.php:1874 lib/pages/taskmanagementpage.class.php:588 -#, fuzzy -msgid "Tasked Successfully" -msgstr "保存成功" +msgid "Email" +msgstr "电子邮件" -#: lib/fog/fogpage.class.php:1882 -#, fuzzy -msgid "Successfully created" -msgstr "成功更新" +msgid "Enable location Sending" +msgstr "" -#: lib/fog/fogpage.class.php:1889 -#, fuzzy -msgid "Created Tasks For" -msgstr "创建用户" +msgid "Enabled" +msgstr "启用" -#: lib/fog/fogpage.class.php:2000 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:798 -#, fuzzy -msgid "Remove these items?" -msgstr "删除选定snapins" +msgid "Enabled as default" +msgstr "启用默认" + +msgid "End" +msgstr "结束" + +msgid "End Date" +msgstr "结束日期" + +msgid "End Time" +msgstr "时间结束" + +msgid "Engineer" +msgstr "工程师" -#: lib/fog/fogpage.class.php:2053 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:845 #, fuzzy -msgid "Unable to Authenticate" -msgstr "服务器连接出错" +msgid "Enter a group name to search for" +msgstr "输入用户名搜索" + +msgid "Enter a hostname to search for" +msgstr "输入主机名来搜索" -#: lib/fog/fogpage.class.php:2082 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:871 #, fuzzy -msgid "Successfully deleted" -msgstr "成功更新" +msgid "Enter a location name to search for" +msgstr "输入主机名来搜索" -#: lib/fog/fogpage.class.php:2083 lib/fog/fogpage.class.php:3308 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:872 #, fuzzy -msgid "Delete Success" -msgstr "用户创建" +msgid "Enter a model name to search for" +msgstr "输入用户名搜索" -#: lib/fog/fogpage.class.php:2145 -msgid "View advanced tasks for this" -msgstr "查看该高级任务" +#, fuzzy +msgid "Enter a site name to search for" +msgstr "输入用户名搜索" -#: lib/fog/fogpage.class.php:2181 -msgid "Advanced Actions" -msgstr "高级操作" +#, fuzzy +msgid "Enter a snapin name to search for" +msgstr "输入用户名搜索" -#: lib/fog/fogpage.class.php:2314 #, fuzzy -msgid "Clear all fields?" -msgstr "清除所有历史" +msgid "Enter a term to search for" +msgstr "输入用户名搜索" + +msgid "Enter a username to search for" +msgstr "输入用户名搜索" -#: lib/fog/fogpage.class.php:2317 #, fuzzy -msgid "Clear Fields" -msgstr "清除所有历史" +msgid "Enter an image name to search for" +msgstr "输入用户名搜索" -#: lib/fog/fogpage.class.php:2321 #, fuzzy -msgid "Join Domain after deploy" -msgstr "图像任务之后加入域" - -#: lib/fog/fogpage.class.php:2332 -msgid "Domain name" -msgstr "域名" +msgid "Enter an user name to search for" +msgstr "输入用户名搜索" -#: lib/fog/fogpage.class.php:2344 -msgid "Organizational Unit" -msgstr "组织单位" +msgid "Equipment Loan" +msgstr "器材信贷" -#: lib/fog/fogpage.class.php:2345 -msgid "Blank for default" -msgstr "预设为空白" +msgid "Error" +msgstr "错误" -#: lib/fog/fogpage.class.php:2349 -msgid "Domain Username" -msgstr "域用户名" +msgid "Error Code" +msgstr "错误代码" -#: lib/fog/fogpage.class.php:2360 -msgid "Domain Password" -msgstr "域密码" +msgid "Error Message" +msgstr "错误信息" -#: lib/fog/fogpage.class.php:2373 -msgid "Domain Password Legacy" -msgstr "域密码遗产" +msgid "Error Opening DB File" +msgstr "错误打开数据库文件" -#: lib/fog/fogpage.class.php:2374 -msgid "Must be encrypted" -msgstr "必须加密" +msgid "Error multiple hosts returned for list of mac addresses" +msgstr "错误多个主机返回的MAC地址列表" -#: lib/fog/fogpage.class.php:2387 -msgid "Name Change/AD Join Forced reboot" -msgstr "" +msgid "Error performing query" +msgstr "错误执行查询" -#: lib/fog/fogpage.class.php:2574 -msgid "Filename not allowed!" -msgstr "" +#, fuzzy +msgid "Error: Failed to download initrd" +msgstr "错误:无法下载内核" -#: lib/fog/fogpage.class.php:2580 -msgid "Specified download URL not allowed!" -msgstr "" +msgid "Error: Failed to download kernel" +msgstr "错误:无法下载内核" -#: lib/fog/fogpage.class.php:2588 msgid "Error: Failed to open temp file" msgstr "错误:无法打开临时文件" -#: lib/fog/fogpage.class.php:2602 -msgid "Error: Failed to download kernel" -msgstr "错误:无法下载内核" - -#: lib/fog/fogpage.class.php:2613 -msgid "Download Failed" -msgstr "下载失败" +msgid "Errors" +msgstr "错误" -#: lib/fog/fogpage.class.php:2615 -msgid "filesize" -msgstr "文件大小" +#, fuzzy +msgid "Errors on revert detected!" +msgstr "在复归错误检测" -#: lib/fog/fogpage.class.php:2733 -msgid "Load MAC Vendors" -msgstr "加载MAC供应商" +msgid "Especially when your organization has many hosts" +msgstr "" -#: lib/fog/fogpage.class.php:2746 -msgid "Not found" -msgstr "未找到" +msgid "Estimated FOG Sites" +msgstr "预估FOG网站" -#: lib/fog/fogpage.class.php:2779 #, fuzzy -msgid "Delete hosts within" -msgstr "删除组内的所有主机" +msgid "Event" +msgstr "添加事件" -#: lib/fog/fogpage.class.php:2788 #, fuzzy -msgid "Delete files" -msgstr "删除的文件数据" +msgid "Event Data must be an array" +msgstr "事件必须是字符串" -#: lib/fog/fogpage.class.php:3272 -msgid "is protected, removal not allowed" -msgstr "被保护,去除不允许" +msgid "Event and data are not set" +msgstr "" -#: lib/fog/fogpage.class.php:3289 -msgid "Failed to destroy" -msgstr "未能摧毁" +msgid "Event must be a string" +msgstr "事件必须是字符串" -#: lib/fog/fogpage.class.php:3305 -msgid "deleted" -msgstr "删除" +msgid "Exists item must be boolean" +msgstr "" -#: lib/fog/fogpage.class.php:3323 -#, fuzzy -msgid "Delete Fail" -msgstr "删除的文件数据" +msgid "Exit to Hard Drive Type" +msgstr "退出硬盘类型" -#: lib/fog/fogpage.class.php:3450 lib/fog/fogpage.class.php:3576 -#, fuzzy -msgid " Name" -msgstr "名称" +msgid "Exit to Hard Drive Type(EFI)" +msgstr "退出硬盘类型(EFI)" -#: lib/fog/fogpage.class.php:3600 -#, fuzzy -msgid "Remove " -msgstr "去掉" +msgid "Expand All" +msgstr "" + +msgid "Export" +msgstr "出口" -#: lib/fog/fogpage.class.php:3607 #, fuzzy -msgid "Remove selected " -msgstr "删除选定snapins" +msgid "Export Accesscontrols" +msgstr "访问控制" -#: lib/fog/fogpage.class.php:3703 lib/pages/groupmanagementpage.class.php:1714 -#: lib/pages/groupmanagementpage.class.php:1715 -#: lib/reports/history_report.report.php:205 -#: lib/reports/history_report.report.php:206 -#: lib/reports/host_list.report.php:317 lib/reports/host_list.report.php:318 -#: lib/reports/hosts_and_users.report.php:335 -#: lib/reports/hosts_and_users.report.php:336 -#: lib/reports/imaging_log.report.php:331 -#: lib/reports/imaging_log.report.php:332 -#: lib/reports/inventory_report.report.php:339 -#: lib/reports/inventory_report.report.php:340 -#: lib/reports/pending_mac_list.report.php:137 -#: lib/reports/pending_mac_list.report.php:138 -#: lib/reports/product_keys.report.php:138 -#: lib/reports/product_keys.report.php:139 -#: lib/reports/snapin_log.report.php:336 lib/reports/snapin_log.report.php:337 -#: lib/reports/user_tracking.report.php:345 -#: lib/reports/user_tracking.report.php:346 -#: lib/reports/virus_history.report.php:138 -#: lib/reports/virus_history.report.php:139 msgid "Export CSV" msgstr "导出CSV" -#: lib/fog/fogpage.class.php:3784 lib/fog/fogpage.class.php:3828 -#: lib/fog/fogpage.class.php:4021 lib/pages/fogconfigurationpage.class.php:3342 -#: lib/pages/reportmanagementpage.class.php:230 -msgid "Import" -msgstr "进口" - -#: lib/fog/fogpage.class.php:3788 #, fuzzy -msgid "List" -msgstr "线" +msgid "Export Checksums" +msgstr "主机出口" -#: lib/fog/fogpage.class.php:3806 #, fuzzy -msgid "Import CSV" -msgstr "导出CSV" - -#: lib/fog/fogpage.class.php:3808 lib/pages/fogconfigurationpage.class.php:1712 -#: lib/pages/fogconfigurationpage.class.php:3321 -#: lib/pages/reportmanagementpage.class.php:209 -#: lib/pages/snapinmanagementpage.class.php:594 -#: lib/pages/snapinmanagementpage.class.php:1084 -msgid "Max Size" -msgstr "最大尺寸" +msgid "Export Complete" +msgstr "完成" -#: lib/fog/fogpage.class.php:3815 lib/pages/fogconfigurationpage.class.php:1718 -#: lib/pages/fogconfigurationpage.class.php:2469 -#: lib/pages/fogconfigurationpage.class.php:3328 -#: lib/pages/reportmanagementpage.class.php:216 -#: lib/pages/snapinmanagementpage.class.php:600 -#: lib/pages/snapinmanagementpage.class.php:1090 -msgid "Browse" -msgstr "" +msgid "Export Configuration" +msgstr "导出配置" -#: lib/fog/fogpage.class.php:3824 #, fuzzy -msgid "Import CSV?" -msgstr "导出CSV" +msgid "Export Database" +msgstr "日期" -#: lib/fog/fogpage.class.php:3852 #, fuzzy -msgid "This page allows you to upload a CSV file into FOG to ease" -msgstr "此设置定义代理用户名使用。" - -#: lib/fog/fogpage.class.php:3854 -msgid "migration or mass import new items" -msgstr "" +msgid "Export Database?" +msgstr "日期" -#: lib/fog/fogpage.class.php:3856 -msgid "It will operate based on the fields the area typically requires" -msgstr "" +msgid "Export Groups" +msgstr "出口组" -#: lib/fog/fogpage.class.php:3888 -#, fuzzy -msgid "File must be a csv" -msgstr "事件必须是字符串" +msgid "Export Hosts" +msgstr "主机出口" -#: lib/fog/fogpage.class.php:3903 -msgid "Could not find temp filename" -msgstr "找不到临时文件名" +msgid "Export Images" +msgstr "导出图像" -#: lib/fog/fogpage.class.php:3929 #, fuzzy -msgid "Invalid data being parsed" -msgstr "无效的令牌传递" +msgid "Export LDAPs" +msgstr "导出PDF" -#: lib/fog/fogpage.class.php:3941 #, fuzzy -msgid "One or more macs are associated with a host" -msgstr "错误,与此主机关联的图像" +msgid "Export Locations" +msgstr "主机位置" -#: lib/fog/fogpage.class.php:3966 -#, fuzzy -msgid "This host already exists" -msgstr "打印机已经存在" +msgid "Export PDF" +msgstr "导出PDF" -#: lib/fog/fogpage.class.php:4023 -msgid "Results" -msgstr "结果" +msgid "Export Printers" +msgstr "出口打印机" -#: lib/fog/fogpage.class.php:4035 -msgid "Total Rows" -msgstr "共行" +#, fuzzy +msgid "Export Sites" +msgstr "出口打印机" -#: lib/fog/fogpage.class.php:4038 -msgid "Successful" -msgstr "成功" +msgid "Export Snapins" +msgstr "出口Snapins" -#: lib/fog/fogpage.class.php:4154 #, fuzzy -msgid "Schedule Power" -msgstr "调度" - -#: lib/fog/fogpage.class.php:4198 -msgid "Perform Immediately?" -msgstr "" +msgid "Export Subnetgroups" +msgstr "出口组" -#: lib/fog/fogpage.class.php:4217 #, fuzzy -msgid "Create new PM Schedule" -msgstr "新建%s" +msgid "Export Task States" +msgstr "任务的国家" -#: lib/fog/fogpage.class.php:4227 #, fuzzy -msgid "New power management task" -msgstr "用户管理" +msgid "Export Task Types" +msgstr "任务类型" -#: lib/fog/fogpagemanager.class.php:160 -msgid "No FOGPage Class found for this node" -msgstr "没有FOGPage类中找到此节点" +msgid "Export Users" +msgstr "导出用户" -#: lib/fog/fogpagemanager.class.php:188 -#, php-format -msgid "Failed to Render Page: Node: %s, Error: %s" -msgstr "未能生成页面:节点: %s ,错误: %s" +#, fuzzy +msgid "Export WOLBroadcasts" +msgstr "主机位置" -#: lib/fog/fogpagemanager.class.php:234 -msgid "No class value sent" -msgstr "发送无类值" +#, fuzzy +msgid "Export Windows Keys" +msgstr "Windows 8的" -#: lib/fog/fogpagemanager.class.php:241 -msgid "No node associated" -msgstr "无关联的节点" +msgid "Extension" +msgstr "延期" -#: lib/fog/fogpagemanager.class.php:245 -#, php-format -msgid "Adding FOGPage: %s, Node: %s" -msgstr "添加FOGPage: %s ,节点: %s" +msgid "FOG" +msgstr "雾" -#: lib/fog/fogurlrequests.class.php:363 -msgid "Window size must be greater than 1" +msgid "FOG 1.2.0 and earlier" msgstr "" -#: lib/fog/group.class.php:394 -msgid "Select a valid image" -msgstr "选择一个有效的图像" - -#: lib/fog/group.class.php:408 -msgid "There is a host in a tasking" -msgstr "有在一个任务的主机" - -#: lib/fog/group.class.php:452 -#, fuzzy -msgid "No hosts to task" -msgstr "在任务主机" - -#: lib/fog/group.class.php:475 -#, fuzzy -msgid "No hosts available to task" -msgstr "在任务主机" - -#: lib/fog/group.class.php:494 lib/fog/host.class.php:1357 -#: lib/fog/host.class.php:1541 -msgid "Image is not enabled" -msgstr "图片未启用" +msgid "FOG 1.2.0 and earlier." +msgstr "" -#: lib/fog/group.class.php:502 #, fuzzy -msgid "Unable to find master Storage Node" -msgstr "未能摧毁存储节点" - -#: lib/fog/host.class.php:339 -msgid "This MAC Belongs to another host" -msgstr "该MAC属于另一台主机" +msgid "FOG Client" +msgstr "FOG客户维基" -#: lib/fog/host.class.php:399 -msgid "Cannot add Primary mac as additional mac" -msgstr "无法添加主MAC作为附加MAC" +msgid "FOG Client Download" +msgstr "FOG客户端下载" -#: lib/fog/host.class.php:498 -#, fuzzy -msgid "Cannot add a pre-existing primary mac" -msgstr "无法添加预先存在的主MAC为待MAC" +msgid "FOG Client Installer" +msgstr "FOG客户端安装程序" -#: lib/fog/host.class.php:1178 -msgid "Cancelled due to new tasking." -msgstr "由于新的任务取消。" +msgid "FOG Client Service Updater" +msgstr "FOG客户服务更新" -#: lib/fog/host.class.php:1237 -msgid "Failed to create Snapin Job" -msgstr "无法创建管理单元工作" +msgid "FOG Client Wiki" +msgstr "FOG客户维基" -#: lib/fog/host.class.php:1371 -#, fuzzy -msgid "Could not find any" -msgstr "找不到临时文件名" +msgid "FOG Client on Github" +msgstr "在Github FOG客户端" -#: lib/fog/host.class.php:1372 -#, fuzzy -msgid "nodes containing this image" -msgstr "找不到包含该图像的任何节点" +msgid "FOG Configuration" +msgstr "FOG配置" -#: lib/fog/host.class.php:1538 -#, fuzzy -msgid "No valid Image defined for this host" -msgstr "没有找到主机定义图片" +msgid "FOG Crypt" +msgstr "FOG地穴" -#: lib/fog/host.class.php:1689 -#, fuzzy -msgid "No viable macs to use" -msgstr "不能够更新" +msgid "FOG Equipment Loan Form" +msgstr "FOG器材信贷形式" -#: lib/fog/host.class.php:1699 -msgid "MAC address is already in use by another host" -msgstr "MAC地址已被其他主机使用" +msgid "FOG Forums" +msgstr "FOG论坛" -#: lib/fog/host.class.php:1766 lib/service/snapinhash.class.php:171 -#, fuzzy -msgid "snapin" -msgstr "管理单元" +msgid "FOG General Help" +msgstr "FOG一般帮助" -#: lib/fog/host.class.php:1768 #, fuzzy -msgid "per host" -msgstr "每个主机管理单元" +msgid "FOG History - Search" +msgstr "FOG用户登录的历史总结 - 搜索" -#: lib/fog/host.class.php:1773 -msgid "You are only allowed to assign" -msgstr "您只能分配" +msgid "FOG Home Page" +msgstr "FOG首页" -#: lib/fog/system.class.php:38 #, fuzzy -msgid "Your system PHP Version is not sufficient" -msgstr "您的系统PHP版本是不充分的。你有版本%s ,版本%s是必需的。" +msgid "FOG Host - Search" +msgstr "FOG用户登录的历史总结 - 搜索" -#: lib/fog/system.class.php:39 #, fuzzy -msgid "You have version" -msgstr "最新版本" +msgid "FOG Host Inventory - Search" +msgstr "FOG用户登录的历史总结 - 搜索" -#: lib/fog/system.class.php:41 #, fuzzy -msgid "version" -msgstr "版" +msgid "FOG Host and Users - Search" +msgstr "FOG主机和用户登录" + +msgid "FOG Hosts and Users Login" +msgstr "FOG主机和用户登录" -#: lib/fog/system.class.php:43 #, fuzzy -msgid "is required" -msgstr "%s是必需的" +msgid "FOG Imaging - Search" +msgstr "FOG用户登录的历史总结 - 搜索" -#: lib/fog/image.class.php:384 lib/fog/snapin.class.php:338 -msgid "No viable storage groups found" -msgstr "" +msgid "FOG Imaging Log" +msgstr "FOG成像测井" -#: lib/fog/powermanagementmanager.class.php:112 -#, fuzzy -msgid "Wake On Lan" -msgstr "网络唤醒?" +msgid "FOG License Information" +msgstr "FOG许可证信息" -#: lib/fog/printer.class.php:212 lib/pages/printermanagementpage.class.php:199 -#: lib/pages/printermanagementpage.class.php:607 -msgid "TCP/IP Port Printer" -msgstr "TCP / IP端口打印机" +msgid "FOG Log Viewer" +msgstr "FOG日志查看器" -#: lib/fog/printer.class.php:213 lib/pages/printermanagementpage.class.php:200 -#: lib/pages/printermanagementpage.class.php:608 -msgid "iPrint Printer" -msgstr "iPrint的打印机" +msgid "FOG Managed Printers" +msgstr "FOG管理的打印机" -#: lib/fog/printer.class.php:214 lib/pages/printermanagementpage.class.php:201 -#: lib/pages/printermanagementpage.class.php:609 -msgid "Network Printer" -msgstr "网络打印机" +msgid "FOG PXE Boot Menu Configuration" +msgstr "FOG PXE启动菜单配置" -#: lib/fog/printer.class.php:215 lib/pages/printermanagementpage.class.php:202 -#: lib/pages/printermanagementpage.class.php:610 -msgid "CUPS Printer" -msgstr "CUPS打印机" +#, fuzzy +msgid "FOG Project" +msgstr "FOG项目在Github" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Cron" -msgstr "克龙" +msgid "FOG Project on Github" +msgstr "FOG项目在Github" -#: lib/fog/scheduledtask.class.php:130 -#: lib/pages/taskmanagementpage.class.php:1229 -msgid "Delayed" -msgstr "延迟" +msgid "FOG Reports exist to give you information about what" +msgstr "" -#: lib/fog/schema.class.php:202 -msgid "Could not read tmp file." -msgstr "无法读取tmp文件。" +msgid "FOG Settings" +msgstr "FOG设置" -#: lib/fog/schema.class.php:236 -msgid "Error Opening DB File" -msgstr "错误打开数据库文件" +#, fuzzy +msgid "FOG Snapin - Search" +msgstr "FOG用户登录的历史总结 - 搜索" -#: lib/fog/schema.class.php:247 -msgid "Error performing query" -msgstr "错误执行查询" +msgid "FOG Sourceforge Page" +msgstr "FOG Sourceforge上页" -#: lib/fog/schema.class.php:275 -msgid "Exists item must be boolean" -msgstr "" +msgid "FOG System Settings" +msgstr "FOG系统设置" -#: lib/fog/schema.class.php:320 -msgid "Must have a name to create the table" -msgstr "" +#, fuzzy +msgid "FOG User tracking - Search" +msgstr "FOG用户登录的历史总结 - 搜索" -#: lib/fog/schema.class.php:325 #, fuzzy -msgid "Fields and types must have equal count" -msgstr "场和值不具有相等的参数。" +msgid "FOG User tracking history" +msgstr "FOG用户登录历史摘要" -#: lib/fog/schema.class.php:414 -msgid "Need the table name to drop" -msgstr "" +#, fuzzy +msgid "FOG Version" +msgstr "BIOS版本" -#: lib/fog/service.class.php:221 -msgid "Please Select an option" -msgstr "请选择一个选项" +msgid "FOG Version Information" +msgstr "FOG版本信息" -#: lib/fog/timer.class.php:133 -msgid "This is a single run task that should run now." +msgid "FOG Virus Summary" +msgstr "FOG病毒摘要" + +msgid "FOG Wiki" +msgstr "FOG维基" + +msgid "FOG database you can do so using" msgstr "" -#: lib/fog/timer.class.php:135 -msgid "This is a single run task that should not run now." +msgid "FOG did is now called Power Management" msgstr "" -#: lib/fog/timer.class.php:138 -msgid "This is a cron style task that should run now." +msgid "FOG is unable to communicate with the database" msgstr "" -#: lib/fog/timer.class.php:140 -msgid "This is a cron style task that should not run now." +msgid "FOG server defaulting under the folder" msgstr "" -#: lib/fog/foggetset.class.php:58 -msgid "Invalid numeric entry" -msgstr "无效的数字输入" +msgid "FTP Connection has failed" +msgstr "FTP连接失败" -#: lib/fog/foggetset.class.php:65 lib/fog/foggetset.class.php:119 -msgid "Object" -msgstr "目的" +msgid "FTP Path" +msgstr "FTP路径" -#: lib/fog/foggetset.class.php:73 -msgid "Array" -msgstr "" +#, fuzzy +msgid "FTP connection failed" +msgstr "FTP连接失败" -#: lib/fog/foggetset.class.php:89 #, fuzzy -msgid "Set Failed" +msgid "Fail to destroy" +msgstr "未能摧毁" + +msgid "Failed" msgstr "失败" -#: lib/fog/foggetset.class.php:125 -msgid "Returning array within key" -msgstr "返回键在阵列" +msgid "Failed to" +msgstr "失败" -#: lib/fog/reportmaker.class.php:157 -#, fuzzy -msgid "Invalid Type" -msgstr "无效类型" +#, php-format +msgid "Failed to Render Page: Node: %s, Error: %s" +msgstr "未能生成页面:节点: %s ,错误: %s" -#: lib/fog/reportmaker.class.php:333 #, fuzzy -msgid "Export Complete" -msgstr "完成" - -#: lib/fog/tasktype.class.php:71 -msgid "Icon File not found" -msgstr "图标文件未找到" +msgid "Failed to add snapin" +msgstr "无法添加/更新管理单元文件" -#: lib/fog/tasktype.class.php:97 -msgid "No icons found" -msgstr "发现没有图标" +msgid "Failed to add/update snapin file" +msgstr "无法添加/更新管理单元文件" -#: lib/fog/uploadexception.class.php:50 -#, fuzzy -msgid "The uploaded file exceeds the upload_max_filesize" -msgstr "上传的文件超过php.ini中定义的upload_max_filesize指令" +msgid "Failed to connect" +msgstr "连接失败" -#: lib/fog/uploadexception.class.php:51 -msgid "directive in php.ini" -msgstr "" +msgid "Failed to create" +msgstr "无法创建" -#: lib/fog/uploadexception.class.php:57 -#, fuzzy -msgid "The uploaded file exceeds the max_file_size" -msgstr "上传的文件超过php.ini中定义的upload_max_filesize指令" +msgid "Failed to create Host" +msgstr "无法创建主机" -#: lib/fog/uploadexception.class.php:58 -#, fuzzy -msgid "directive specified in the HTML form" -msgstr "上传的文件超过了HTML表单中指定的MAX_FILE_SIZE指令" +msgid "Failed to create Session" +msgstr "无法创建会话" -#: lib/fog/uploadexception.class.php:62 -msgid "The uploaded file was only partially uploaded" -msgstr "上传的文件只有部分被上传" +msgid "Failed to create Snapin Job" +msgstr "无法创建管理单元工作" -#: lib/fog/uploadexception.class.php:65 -msgid "No file was uploaded" -msgstr "没有文件被上传" +#, fuzzy +msgid "Failed to create inventory for this host" +msgstr "无法为这个主机创建库存!" -#: lib/fog/uploadexception.class.php:68 -msgid "Missing a temporary folder" -msgstr "缺少一个临时文件夹" +msgid "Failed to create new Group" +msgstr "无法创建新的组" -#: lib/fog/uploadexception.class.php:71 -msgid "Failed to write file to disk" -msgstr "无法写入文件到磁盘" +#, fuzzy +msgid "Failed to create scheduled tasking" +msgstr "无法创建任务" -#: lib/fog/uploadexception.class.php:74 -msgid "File upload stopped by an extension" -msgstr "上传文件通过一个扩展停止" +msgid "Failed to create task" +msgstr "无法创建任务" -#: lib/fog/uploadexception.class.php:79 #, fuzzy -msgid "Unknown upload error occurred" -msgstr "发生未知上传错误。返回代码:" +msgid "Failed to create tasking" +msgstr "无法创建任务" -#: lib/fog/uploadexception.class.php:80 #, fuzzy -msgid "Return code" -msgstr "返回代码" +msgid "Failed to decrypt data on server" +msgstr "数据解密失败" -#: lib/fog/user.class.php:252 lib/fog/user.class.php:298 -msgid "user successfully logged in" -msgstr "用户成功登录" +msgid "Failed to delete file" +msgstr "无法删除文件" -#: lib/fog/user.class.php:312 -msgid "user failed to login" -msgstr "用户登录失败" +msgid "Failed to delete image files" +msgstr "无法删除图像文件" -#: lib/fog/user.class.php:417 -msgid "IP Address Changed" -msgstr "更改IP地址" +msgid "Failed to destroy" +msgstr "未能摧毁" -#: lib/fog/user.class.php:426 -msgid "User Agent Changed" -msgstr "用户代理更改" +msgid "Failed to destroy Storage Group" +msgstr "未能摧毁存储组" + +msgid "Failed to destroy Storage Node" +msgstr "未能摧毁存储节点" + +msgid "Failed to install plugin" +msgstr "无法安装插件" + +msgid "Failed to save assignment" +msgstr "无法保存分配" -#: lib/fog/user.class.php:435 -msgid "Session altered improperly" -msgstr "会议修改不当" +msgid "Failed to save plugin" +msgstr "无法保存插件" -#: lib/fog/fogsubmenu.class.php:141 lib/fog/fogsubmenu.class.php:205 -#: lib/fog/fogsubmenu.class.php:264 #, fuzzy -msgid "Node must be a string" -msgstr "事件必须是字符串" - -#: lib/fog/fogsubmenu.class.php:146 lib/fog/fogsubmenu.class.php:210 -msgid "Items must be an array" -msgstr "" +msgid "Failed to start tasking type" +msgstr "无法启动部署任务" -#: lib/fog/fogsubmenu.class.php:269 -msgid "Data must be an array or a callable item." -msgstr "" +msgid "Failed to update" +msgstr "无法更新" -#: lib/fog/fogsubmenu.class.php:313 #, fuzzy -msgid "Info" -msgstr "在" +msgid "Failed to update Host" +msgstr "无法更新" -#: lib/fog/fogsubmenu.class.php:563 -#, fuzzy -msgid "Title must be a string" -msgstr "事件必须是字符串" +msgid "Failed to update Session" +msgstr "无法更新会话" + +msgid "Failed to update Task" +msgstr "无法更新任务" -#: lib/fog/fogsubmenu.class.php:579 lib/fog/fogsubmenu.class.php:596 #, fuzzy -msgid "Link must be a string" -msgstr "事件必须是字符串" +msgid "Failed to update imaging log" +msgstr "无法更新/创建图像日志" -#: lib/hooks/addhostserial.hook.php:123 -msgid "Serial" -msgstr "串行" +msgid "Failed to update task" +msgstr "无法更新任务" -#: lib/hooks/hostvnclink.hook.php:91 -msgid "Open VNC connection to" -msgstr "打开VNC连接" +#, fuzzy +msgid "Failed to update task log" +msgstr "无法更新任务" -#: lib/hooks/hostvnclink.hook.php:108 -msgid "VNC" -msgstr "" +msgid "Failed to update/create image log" +msgstr "无法更新/创建图像日志" -#: lib/pages/clientmanagementpage.class.php:57 -msgid "FOG Client Installer" -msgstr "FOG客户端安装程序" +msgid "Failed to update/create task log" +msgstr "无法更新/创建任务日志" -#: lib/pages/clientmanagementpage.class.php:84 -msgid "New Client and Utilities" -msgstr "新客户端和实用程序" +msgid "Failed to write file to disk" +msgstr "无法写入文件到磁盘" -#: lib/pages/clientmanagementpage.class.php:87 #, fuzzy -msgid "The installers for the fog client" -msgstr "此设置定义使用SSH客户端的用户名。" +msgid "Fields and types must have equal count" +msgstr "场和值不具有相等的参数。" -#: lib/pages/clientmanagementpage.class.php:89 #, fuzzy -msgid "Client Version" -msgstr "CPU版本" +msgid "Fields not defined for this class" +msgstr "该类定义没有数据库字段" -#: lib/pages/clientmanagementpage.class.php:97 -msgid "Cross platform" -msgstr "" +msgid "File" +msgstr "文件" -#: lib/pages/clientmanagementpage.class.php:98 #, fuzzy -msgid "more secure" -msgstr "导入用户" +msgid "File Integrity Management" +msgstr "打印机管理" -#: lib/pages/clientmanagementpage.class.php:99 -#, fuzzy -msgid "faster" -msgstr "日期" +msgid "File System Information" +msgstr "文件系统信息" -#: lib/pages/clientmanagementpage.class.php:100 -msgid "and much easier on the server" -msgstr "" +#, fuzzy +msgid "File does not exist" +msgstr "文件不存在" -#: lib/pages/clientmanagementpage.class.php:104 -msgid "Especially when your organization has many hosts" -msgstr "" +msgid "File hash mismatch" +msgstr "文件哈希不匹配" -#: lib/pages/clientmanagementpage.class.php:112 -msgid "Use this for network installs" -msgstr "" +#, fuzzy +msgid "File must be a csv" +msgstr "事件必须是字符串" -#: lib/pages/clientmanagementpage.class.php:113 -msgid "For example, a GPO policy to push" -msgstr "" +#, fuzzy +msgid "File or path cannot be reached" +msgstr "|文件或无法达成通道" -#: lib/pages/clientmanagementpage.class.php:114 -msgid "This file will only work on Windows" -msgstr "" +#, fuzzy +msgid "File size mismatch" +msgstr "文件大小不匹配" -#: lib/pages/clientmanagementpage.class.php:117 -msgid "MSI" -msgstr "" +msgid "File upload stopped by an extension" +msgstr "上传文件通过一个扩展停止" -#: lib/pages/clientmanagementpage.class.php:119 #, fuzzy -msgid "Network Installer" -msgstr "网络打印机" +msgid "Filesize" +msgstr "文件大小" -#: lib/pages/clientmanagementpage.class.php:126 #, fuzzy -msgid "This is the recommended installer to use now" -msgstr "这是推荐的安装程序现在使用。它可以在Windows,Linux和Mac OS X上使用" - -#: lib/pages/clientmanagementpage.class.php:127 -msgid "It can be used on Windows" -msgstr "" - -#: lib/pages/clientmanagementpage.class.php:128 -msgid "Linux" -msgstr "Linux的" +msgid "Filter" +msgstr "文件" -#: lib/pages/clientmanagementpage.class.php:129 -msgid "and Mac OS X" -msgstr "" +#, fuzzy +msgid "Finding any images associated" +msgstr "没有snapins相关" -#: lib/pages/clientmanagementpage.class.php:130 #, fuzzy -msgid "Smart Installer" -msgstr "智能安装(推荐)" +msgid "Finding any snapins associated" +msgstr "没有snapins相关" -#: lib/pages/clientmanagementpage.class.php:131 -msgid "Recommended" +msgid "For example, a GPO policy to push" msgstr "" -#: lib/pages/clientmanagementpage.class.php:141 -msgid "Help and Guide" -msgstr "帮助和引导" - -#: lib/pages/clientmanagementpage.class.php:144 -msgid "Where to get help" -msgstr "" +msgid "Force" +msgstr "力" -#: lib/pages/clientmanagementpage.class.php:150 -msgid "Use the links below if you need assistance" -msgstr "" +msgid "Force task to start" +msgstr "强制任务启动" -#: lib/pages/clientmanagementpage.class.php:151 -#: lib/plugins/windowskey/config/plugin.config.php:34 #, fuzzy -msgid "NOTE" -msgstr "不" +msgid "Form" +msgstr "格式" -#: lib/pages/clientmanagementpage.class.php:152 msgid "Forums are the most common and fastest method of getting" msgstr "" -#: lib/pages/clientmanagementpage.class.php:153 -msgid "help with any aspect of FOG" +msgid "Found" msgstr "" -#: lib/pages/clientmanagementpage.class.php:161 -#, fuzzy -msgid "Detailed documentation" -msgstr "无法创建会话" - -#: lib/pages/clientmanagementpage.class.php:162 -#, fuzzy -msgid "It is primarily geared for the smart installer methodology now" -msgstr "详细文档。它主要面向的智能安装方法吧。" - -#: lib/pages/clientmanagementpage.class.php:163 -msgid "FOG Client Wiki" -msgstr "FOG客户维基" - -#: lib/pages/clientmanagementpage.class.php:170 -msgid "Need more support" +msgid "Found a scheduled task that should run." msgstr "" -#: lib/pages/clientmanagementpage.class.php:171 -msgid "Somebody will be able to help in some form" +msgid "Found a wake on lan task that should run." msgstr "" -#: lib/pages/clientmanagementpage.class.php:172 -msgid "Use the forums to post issues so others" -msgstr "" +#, fuzzy +msgid "Found login information" +msgstr "FOG版本信息" -#: lib/pages/clientmanagementpage.class.php:173 -msgid "may see the issue and help and/or use the solutions" -msgstr "" +#, fuzzy +msgid "Found snapin information" +msgstr "FOG版本信息" -#: lib/pages/clientmanagementpage.class.php:174 -msgid "Chat is also available on the forums for more realtime help" +msgid "Free" msgstr "" -#: lib/pages/clientmanagementpage.class.php:175 -#: lib/pages/fogconfigurationpage.class.php:62 -msgid "FOG Forums" -msgstr "FOG论坛" - -#: lib/pages/dashboardpage.class.php:186 -msgid "Pending hosts" -msgstr "待主机" - -#: lib/pages/dashboardpage.class.php:187 lib/pages/dashboardpage.class.php:196 -#: lib/pages/schemaupdaterpage.class.php:268 -msgid "Click" -msgstr "点击" - -#: lib/pages/dashboardpage.class.php:191 lib/pages/dashboardpage.class.php:200 -msgid "to review." -msgstr "回顾。" - -#: lib/pages/dashboardpage.class.php:195 -msgid "Pending macs" -msgstr "待淅淅沥沥" +#, fuzzy +msgid "Free Disk Space" +msgstr "使用的磁盘空间" -#: lib/pages/dashboardpage.class.php:219 -msgid "Web Server" -msgstr "网络服务器" +msgid "Free Memory" +msgstr "可用内存" -#: lib/pages/dashboardpage.class.php:223 -msgid "Load Average" -msgstr "平均负载" +#, fuzzy +msgid "Friendly Name" +msgstr "内核名称" -#: lib/pages/dashboardpage.class.php:224 -msgid "System Uptime" -msgstr "系统正常运行时间" +#, fuzzy +msgid "Full History Export" +msgstr "完整清单导出" -#: lib/pages/dashboardpage.class.php:251 -msgid "System Overview" -msgstr "系统总览" +msgid "Full Inventory Export" +msgstr "完整清单导出" -#: lib/pages/dashboardpage.class.php:254 #, fuzzy -msgid "Server information at a glance." -msgstr "LDAP信息更新!" +msgid "Function" +msgstr "行动" -#: lib/pages/dashboardpage.class.php:275 -msgid "Storage Group Activity" -msgstr "存储组活动" +#, fuzzy +msgid "Function does not exist" +msgstr "方法不存在" -#: lib/pages/dashboardpage.class.php:278 -msgid "Selected groups's current activity" +msgid "GNU Gneral Public License" msgstr "" -#: lib/pages/dashboardpage.class.php:300 -msgid "Storage Node Disk Usage" -msgstr "存储节点的磁盘使用情况" - -#: lib/pages/dashboardpage.class.php:303 -#, fuzzy -msgid "Selected node's disk usage" -msgstr "所选节点的图像存储磁盘使用情况" - -#: lib/pages/dashboardpage.class.php:327 -msgid "Imaging Over the last 30 days" -msgstr "成像在过去30天" +msgid "General" +msgstr "一般" -#: lib/pages/dashboardpage.class.php:384 lib/pages/dashboardpage.class.php:392 -msgid "2 Minutes" -msgstr "2分钟" +msgid "General Information" +msgstr "一般信息" -#: lib/pages/dashboardpage.class.php:397 -msgid "10 Minutes" -msgstr "10分钟" +#, fuzzy +msgid "Generate" +msgstr "一般" -#: lib/pages/dashboardpage.class.php:402 -msgid "30 Minutes" -msgstr "30分钟" +msgid "Generic LDAP" +msgstr "" -#: lib/pages/dashboardpage.class.php:407 -#, fuzzy -msgid "1 Hour" -msgstr "1小时" +msgid "Getting image size for" +msgstr "" -#: lib/pages/dashboardpage.class.php:433 -msgid "No activity information available for this group" +msgid "Getting snapin hash and size for" msgstr "" -#: lib/pages/dashboardpage.class.php:437 lib/pages/dashboardpage.class.php:476 -#: lib/pages/dashboardpage.class.php:494 -msgid "Free" +msgid "Goto task list" msgstr "" -#: lib/pages/dashboardpage.class.php:447 -#, fuzzy -msgid "No Data Available" -msgstr "不可用" +msgid "Graph Enabled" +msgstr "图启用" + +msgid "Graphical" +msgstr "图形" -#: lib/pages/dashboardpage.class.php:477 -msgid "used" -msgstr "" +msgid "Green FOG" +msgstr "绿雾" -#: lib/pages/dashboardpage.class.php:481 -#, fuzzy -msgid "Node is unavailable" -msgstr "没有可用的散列" +msgid "Group" +msgstr "组" -#: lib/pages/dashboardpage.class.php:482 -msgid "Node Offline" -msgstr "" +#, fuzzy +msgid "Group Associations" +msgstr "集团定位" -#: lib/pages/dashboardpage.class.php:495 -msgid "Used" +msgid "Group Auto Logout" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:56 -msgid "FOG Project on Github" -msgstr "FOG项目在Github" - -#: lib/pages/fogconfigurationpage.class.php:59 -msgid "FOG Client on Github" -msgstr "在Github FOG客户端" +msgid "Group Bios Exit Type" +msgstr "集团的Bios退出类型" -#: lib/pages/fogconfigurationpage.class.php:61 -msgid "FOG Wiki" -msgstr "FOG维基" +#, fuzzy +msgid "Group Create Fail" +msgstr "集团创建失败" -#: lib/pages/fogconfigurationpage.class.php:66 management/other/index.php:175 -msgid "Donate to FOG" -msgstr "捐赠雾" +#, fuzzy +msgid "Group Create Success" +msgstr "用户创建" -#: lib/pages/fogconfigurationpage.class.php:96 -msgid "FOG Version Information" -msgstr "FOG版本信息" +msgid "Group Description" +msgstr "团体简介" -#: lib/pages/fogconfigurationpage.class.php:114 -msgid "Kernel Versions" -msgstr "内核版本" +msgid "Group EFI Exit Type" +msgstr "集团EFI退出类型" -#: lib/pages/fogconfigurationpage.class.php:145 #, fuzzy -msgid "FOG Version" -msgstr "BIOS版本" +msgid "Group FOG Client Module configuration" +msgstr "主机打印机配置" -#: lib/pages/fogconfigurationpage.class.php:170 -msgid "FOG License Information" -msgstr "FOG许可证信息" +msgid "Group Kernel" +msgstr "集团核心" -#: lib/pages/fogconfigurationpage.class.php:180 -msgid "GNU Gneral Public License" -msgstr "" +msgid "Group Kernel Arguments" +msgstr "集团内核参数" -#: lib/pages/fogconfigurationpage.class.php:217 -msgid "This section allows you to update" -msgstr "" +msgid "Group Management" +msgstr "集团管理" -#: lib/pages/fogconfigurationpage.class.php:218 -msgid "the Linux kernel which is used to" +msgid "Group Member Attribute" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:219 -msgid "boot the client computers" -msgstr "" +msgid "Group Name" +msgstr "组名称" -#: lib/pages/fogconfigurationpage.class.php:220 #, fuzzy -msgid "In FOG" -msgstr "在" +msgid "Group Power Management Remove" +msgstr "用户管理" -#: lib/pages/fogconfigurationpage.class.php:221 -msgid "this kernel holds all the drivers for the client computer" -msgstr "" +msgid "Group Primary Disk" +msgstr "集团主磁盘" -#: lib/pages/fogconfigurationpage.class.php:222 -msgid "so if you are unable to boot a client you may wish to" -msgstr "" +#, fuzzy +msgid "Group Printers" +msgstr "出口打印机" -#: lib/pages/fogconfigurationpage.class.php:223 -msgid "update to a newer kernel which may have more drivers built in" -msgstr "" +msgid "Group Product Key" +msgstr "集团产品密钥" -#: lib/pages/fogconfigurationpage.class.php:224 -msgid "This installation process may take a few minutes" -msgstr "" +#, fuzzy +msgid "Group Quick Deploy" +msgstr "快速部署" -#: lib/pages/fogconfigurationpage.class.php:225 -msgid "as FOG will attempt to go out to the internet" -msgstr "" +msgid "Group Screen Resolution" +msgstr "集团屏幕分辨率" -#: lib/pages/fogconfigurationpage.class.php:226 #, fuzzy -msgid "to get the requested Kernel" -msgstr "没有要求的关键" +msgid "Group Search DN" +msgstr "主机搜索" -#: lib/pages/fogconfigurationpage.class.php:227 -msgid "so if it seems like the process is hanging please be patient" +msgid "Group Search DN did not return any results" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:279 #, fuzzy -msgid "Downloading Kernel" -msgstr "下载" +msgid "Group Snapins" +msgstr "出口Snapins" -#: lib/pages/fogconfigurationpage.class.php:285 #, fuzzy -msgid "Starting process" -msgstr "启动过程中..." +msgid "Group Update Fail" +msgstr "集团创建失败" -#: lib/pages/fogconfigurationpage.class.php:307 #, fuzzy -msgid "Save Kernel" -msgstr "核心" - -#: lib/pages/fogconfigurationpage.class.php:319 -msgid "Kernel Name" -msgstr "内核名称" +msgid "Group Update Success" +msgstr "用户创建" -#: lib/pages/fogconfigurationpage.class.php:332 #, fuzzy -msgid "Install Kernel" -msgstr "主机内核" +msgid "Group added!" +msgstr "集团补充" -#: lib/pages/fogconfigurationpage.class.php:338 -#: lib/pages/pluginmanagementpage.class.php:336 #, fuzzy -msgid "Install" -msgstr "安装/更新失败!" - -#: lib/pages/fogconfigurationpage.class.php:354 -msgid "FOG PXE Boot Menu Configuration" -msgstr "FOG PXE启动菜单配置" - -#: lib/pages/fogconfigurationpage.class.php:457 -msgid "Main Colors" -msgstr "" +msgid "Group general" +msgstr "集团核心" -#: lib/pages/fogconfigurationpage.class.php:465 #, fuzzy -msgid "Option specifies the color settings of the main menu items" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Group image" +msgstr "组名称" -#: lib/pages/fogconfigurationpage.class.php:469 #, fuzzy -msgid "Valid Host Colors" -msgstr "无效的主机" +msgid "Group image association" +msgstr "集团定位" -#: lib/pages/fogconfigurationpage.class.php:477 -#: lib/pages/fogconfigurationpage.class.php:492 #, fuzzy -msgid "Option specifies the color text on the menu if the host" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Group is not valid" +msgstr "集团是无效的" -#: lib/pages/fogconfigurationpage.class.php:479 #, fuzzy -msgid "is valid" -msgstr "数据是无效" +msgid "Group module settings" +msgstr "主机描述" -#: lib/pages/fogconfigurationpage.class.php:483 #, fuzzy -msgid "Invalid Host Colors" -msgstr "无效的主机" +msgid "Group update failed!" +msgstr "用户更新失败" -#: lib/pages/fogconfigurationpage.class.php:494 #, fuzzy -msgid "is invalid" -msgstr "数据是无效" +msgid "Group updated!" +msgstr "集团补充" -#: lib/pages/fogconfigurationpage.class.php:498 -msgid "Main pairings" -msgstr "" +msgid "Groups" +msgstr "组" -#: lib/pages/fogconfigurationpage.class.php:507 -msgid "Option specifies the pairings of colors to" +msgid "Groups are not allowed to schedule upload tasks" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:509 -msgid "present and where/how they need to display" +msgid "HD Device" +msgstr "高清设备" + +msgid "HD Firmware" +msgstr "HD固件" + +msgid "HD Model" +msgstr "HD型号" + +msgid "HD Serial" +msgstr "HD系列" + +msgid "Hard Disk Firmware" +msgstr "硬盘的固件" + +msgid "Hard Disk Model" +msgstr "硬盘型号" + +msgid "Hard Disk Serial Number" +msgstr "硬盘序列号" + +msgid "Hardware Information" +msgstr "硬件信息" + +msgid "Hash" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:513 -msgid "Main fallback pairings" +msgid "Have not locked the host for access" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:522 -msgid "Option specifies the pairings as a fallback" +msgid "Height must be 120 pixels." msgstr "" -#: lib/pages/fogconfigurationpage.class.php:526 +msgid "Help and Guide" +msgstr "帮助和引导" + +msgid "Hide Menu" +msgstr "隐藏菜单" + +msgid "Hide Menu Timeout" +msgstr "隐藏菜单超时" + #, fuzzy -msgid "Host pairings" -msgstr "主机列表" +msgid "History Graph" +msgstr "查看历史记录" -#: lib/pages/fogconfigurationpage.class.php:534 -msgid "Option specifies the pairings after host checks" -msgstr "" +#, fuzzy +msgid "History ID" +msgstr "主机ID" -#: lib/pages/fogconfigurationpage.class.php:538 #, fuzzy -msgid "Menu Timeout" -msgstr "隐藏菜单超时" +msgid "History IP" +msgstr "查看历史记录" -#: lib/pages/fogconfigurationpage.class.php:540 -msgid "in seconds" -msgstr "" +#, fuzzy +msgid "History Info" +msgstr "查看历史记录" -#: lib/pages/fogconfigurationpage.class.php:549 #, fuzzy -msgid "Option specifies the menu timeout" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "History Time" +msgstr "查看历史记录" -#: lib/pages/fogconfigurationpage.class.php:551 -msgid "This is set in seconds and causes the default option" -msgstr "" +#, fuzzy +msgid "History User" +msgstr "查看历史记录" -#: lib/pages/fogconfigurationpage.class.php:553 -msgid "to be booted if no keys are pressed when the menu is" -msgstr "" +msgid "Home" +msgstr "家" -#: lib/pages/fogconfigurationpage.class.php:555 -msgid "open" -msgstr "" +msgid "Home Address" +msgstr "家庭地址" -#: lib/pages/fogconfigurationpage.class.php:559 -msgid "Menu Background File" -msgstr "" +msgid "Home Phone" +msgstr "家庭电话" + +msgid "Host" +msgstr "主办" + +#, fuzzy +msgid "Host AD Domain" +msgstr "AD域" + +#, fuzzy +msgid "Host AD Join" +msgstr "公元加入" + +#, fuzzy +msgid "Host AD OU" +msgstr "主机ID" + +#, fuzzy +msgid "Host Add to Group Fail" +msgstr "添加到组" + +#, fuzzy +msgid "Host Add to Group Success" +msgstr "安装/升级成功!" + +#, fuzzy +msgid "Host Associated" +msgstr "无关联的节点" -#: lib/pages/fogconfigurationpage.class.php:567 #, fuzzy -msgid "Option specifies the background file to use" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Host Associated Snapins" +msgstr "无关联的节点" -#: lib/pages/fogconfigurationpage.class.php:569 -msgid "for the menu background" +msgid "Host Auto Logout" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:573 -#: lib/pages/fogconfigurationpage.class.php:682 -#: lib/pages/fogconfigurationpage.class.php:733 -#: lib/pages/fogconfigurationpage.class.php:806 -#: lib/pages/fogconfigurationpage.class.php:1146 -#: lib/pages/fogconfigurationpage.class.php:1463 -#: lib/pages/fogconfigurationpage.class.php:2123 -#: lib/pages/fogconfigurationpage.class.php:2556 -#: lib/pages/groupmanagementpage.class.php:524 -#: lib/pages/groupmanagementpage.class.php:614 -#: lib/pages/hostmanagementpage.class.php:1169 -#: lib/pages/hostmanagementpage.class.php:2477 -#: lib/pages/imagemanagementpage.class.php:1011 -#: lib/pages/pluginmanagementpage.class.php:434 -#: lib/pages/pluginmanagementpage.class.php:461 -#: lib/pages/printermanagementpage.class.php:883 -#: lib/pages/serviceconfigurationpage.class.php:281 -#: lib/pages/serviceconfigurationpage.class.php:346 -#: lib/pages/serviceconfigurationpage.class.php:570 -#: lib/pages/snapinmanagementpage.class.php:1175 -#: lib/pages/storagemanagementpage.class.php:842 -#: lib/pages/storagemanagementpage.class.php:1375 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:509 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1126 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:799 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:151 -#: lib/plugins/location/pages/locationmanagementpage.class.php:353 -#: lib/plugins/site/hooks/addsitegroup.hook.php:145 -#: lib/plugins/site/pages/sitemanagementpage.class.php:309 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:362 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:354 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:509 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:344 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:279 -#, fuzzy -msgid "Make Changes?" -msgstr "保存更改" +msgid "Host Bios Exit Type" +msgstr "主机BIOS退出类型" -#: lib/pages/fogconfigurationpage.class.php:598 #, fuzzy -msgid "iPXE Menu Settings" -msgstr "设置" +msgid "Host Create Fail" +msgstr "主机创建失败" -#: lib/pages/fogconfigurationpage.class.php:609 -msgid "Menu colors, pairings, settings" -msgstr "" +#, fuzzy +msgid "Host Create Success" +msgstr "主机创建" -#: lib/pages/fogconfigurationpage.class.php:619 -msgid "No Menu" -msgstr "无菜单" +msgid "Host Created" +msgstr "主机创建" -#: lib/pages/fogconfigurationpage.class.php:625 -msgid "Option sets if there will even" -msgstr "" +msgid "Host Desc" +msgstr "主持人说明" -#: lib/pages/fogconfigurationpage.class.php:627 -msgid "be the presence of a menu" -msgstr "" +msgid "Host Description" +msgstr "主机描述" -#: lib/pages/fogconfigurationpage.class.php:629 -msgid "to the client systems" -msgstr "" +msgid "Host EFI Exit Type" +msgstr "主持人EFI退出类型" -#: lib/pages/fogconfigurationpage.class.php:631 #, fuzzy -msgid "If there is not a task set" -msgstr "有在一个任务的主机" - -#: lib/pages/fogconfigurationpage.class.php:633 -msgid "it boots to the first device" -msgstr "" +msgid "Host FOG Client Module configuration" +msgstr "主机打印机配置" -#: lib/pages/fogconfigurationpage.class.php:635 #, fuzzy -msgid "if there is a task" -msgstr "有在一个任务的主机" +msgid "Host HD Device" +msgstr "高清设备" -#: lib/pages/fogconfigurationpage.class.php:637 -msgid "it performs that task" -msgstr "" +msgid "Host Hardware Inventory" +msgstr "主机硬件清单" -#: lib/pages/fogconfigurationpage.class.php:641 -msgid "Hide Menu" -msgstr "隐藏菜单" +msgid "Host ID" +msgstr "主机ID" -#: lib/pages/fogconfigurationpage.class.php:647 -msgid "Option sets the key sequence" -msgstr "" +msgid "Host Image" +msgstr "主机图片" + +msgid "Host Imaging History" +msgstr "主持人成像历史" -#: lib/pages/fogconfigurationpage.class.php:649 #, fuzzy -msgid "If none is specified" -msgstr "没有指定的图像" +msgid "Host Init" +msgstr "主机列表" -#: lib/pages/fogconfigurationpage.class.php:651 #, fuzzy -msgid "ESC is defaulted" -msgstr "启用默认" +msgid "Host Invalid" +msgstr "主机列表" -#: lib/pages/fogconfigurationpage.class.php:653 -msgid "Login with the FOG credentials and you will see the menu" -msgstr "" +msgid "Host Kernel" +msgstr "主机内核" -#: lib/pages/fogconfigurationpage.class.php:655 -msgid "Otherwise it will just boot like normal" -msgstr "" +msgid "Host Kernel Arguments" +msgstr "主机内核参数" -#: lib/pages/fogconfigurationpage.class.php:659 -msgid "Hide Menu Timeout" -msgstr "隐藏菜单超时" +msgid "Host List" +msgstr "主机列表" -#: lib/pages/fogconfigurationpage.class.php:668 -msgid "Option specifies the timeout value for the hidden menu system" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Host Listing Export" +msgstr "主机上市出口" -#: lib/pages/fogconfigurationpage.class.php:672 -msgid "Boot Key Sequence" -msgstr "开机按键顺序" +msgid "Host Location" +msgstr "主机位置" -#: lib/pages/fogconfigurationpage.class.php:676 -msgid "Option sets the ipxe keysequence to enter to gain menu" -msgstr "" +msgid "Host Login History" +msgstr "主机登录历史" + +msgid "Host MAC" +msgstr "主机的MAC" + +msgid "Host Management" +msgstr "主机管理" -#: lib/pages/fogconfigurationpage.class.php:678 #, fuzzy -msgid "access to the hidden menu system" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Host Membership" +msgstr "籍" -#: lib/pages/fogconfigurationpage.class.php:707 -msgid "Menu Hide/No Menu settings" -msgstr "" +msgid "Host Memory" +msgstr "主机内存" -#: lib/pages/fogconfigurationpage.class.php:717 -msgid "Exit to Hard Drive Type" -msgstr "退出硬盘类型" +msgid "Host Name" +msgstr "主机名" -#: lib/pages/fogconfigurationpage.class.php:721 -#, fuzzy -msgid "Option specifies the legacy boot exit method ipxe will use" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Host Pending MAC" +msgstr "主持人待定MAC" -#: lib/pages/fogconfigurationpage.class.php:725 -msgid "Exit to Hard Drive Type(EFI)" -msgstr "退出硬盘类型(EFI)" +msgid "Host Primary Disk" +msgstr "主机主磁盘" -#: lib/pages/fogconfigurationpage.class.php:729 -#, fuzzy -msgid "Option specifies the efi boot exit method ipxe will use" -msgstr "选项​​为隐藏的菜单系统的超时值" +msgid "Host Primary MAC" +msgstr "主机主MAC" -#: lib/pages/fogconfigurationpage.class.php:758 #, fuzzy -msgid "Boot Exit settings" -msgstr "主机描述" - -#: lib/pages/fogconfigurationpage.class.php:768 -msgid "Advanced Menu Login" -msgstr "高级菜单登录" +msgid "Host Printers" +msgstr "出口打印机" -#: lib/pages/fogconfigurationpage.class.php:774 -msgid "Option below enforces a login system" -msgstr "" +msgid "Host Product Key" +msgstr "主机产品密钥" -#: lib/pages/fogconfigurationpage.class.php:776 -msgid "for the advanced menu parameters" -msgstr "" +#, fuzzy +msgid "Host Product Keys" +msgstr "主机产品密钥" -#: lib/pages/fogconfigurationpage.class.php:778 -msgid "If off" -msgstr "" +msgid "Host Registration" +msgstr "主机注册" -#: lib/pages/fogconfigurationpage.class.php:780 -msgid "no login will appear" -msgstr "" +msgid "Host Screen Resolution" +msgstr "主机屏幕分辨率" -#: lib/pages/fogconfigurationpage.class.php:782 #, fuzzy -msgid "If on" -msgstr "图标" +msgid "Host Site" +msgstr "主机列表" -#: lib/pages/fogconfigurationpage.class.php:784 -msgid "it will enforce login to gain access to the advanced" -msgstr "" +#, fuzzy +msgid "Host Snapin History" +msgstr "历史管理单元" -#: lib/pages/fogconfigurationpage.class.php:786 #, fuzzy -msgid "menu system" -msgstr "菜单项:" +msgid "Host Snapins" +msgstr "出口Snapins" -#: lib/pages/fogconfigurationpage.class.php:790 #, fuzzy -msgid "Advanced menu command" -msgstr "高级菜单登录" +msgid "Host Status" +msgstr "状态" -#: lib/pages/fogconfigurationpage.class.php:798 -msgid "Add any custom text you would like" +msgid "Host Status is a plugin that adds a new entry in the Host edit Page" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:800 #, fuzzy -msgid "the advanced menu to use" -msgstr "高级菜单登录" - -#: lib/pages/fogconfigurationpage.class.php:802 -msgid "This is ipxe script commands to operate with" -msgstr "" +msgid "Host Unassociated Snapins" +msgstr "无关联的节点" -#: lib/pages/fogconfigurationpage.class.php:831 #, fuzzy -msgid "Advanced Menu settings" -msgstr "高级设置" +msgid "Host Update Fail" +msgstr "主机更新失败" -#: lib/pages/fogconfigurationpage.class.php:881 -#: lib/pages/fogconfigurationpage.class.php:906 -msgid "Invalid Timeout Value" -msgstr "无效的超时值" +msgid "Host Update Failed" +msgstr "主机更新失败" -#: lib/pages/fogconfigurationpage.class.php:974 #, fuzzy -msgid "iPXE Settings updated successfully!" +msgid "Host Update Success" msgstr "安装/升级成功!" -#: lib/pages/fogconfigurationpage.class.php:975 #, fuzzy -msgid "iPXE Update Success" -msgstr "安装/升级成功!" +msgid "Host Virus History" +msgstr "病毒历史" -#: lib/pages/fogconfigurationpage.class.php:982 #, fuzzy -msgid "iPXE Update Fail" -msgstr "管理单元更新失败" +msgid "Host added!" +msgstr "添加主机" -#: lib/pages/fogconfigurationpage.class.php:1014 -msgid "This item allows you to edit all of the iPXE Menu items as you" -msgstr "" +msgid "Host approval failed." +msgstr "主机批准失败。" -#: lib/pages/fogconfigurationpage.class.php:1016 -msgid "see fit" -msgstr "" +msgid "Host approved" +msgstr "主机批准" -#: lib/pages/fogconfigurationpage.class.php:1018 -msgid "Mind you" -msgstr "" +#, fuzzy +msgid "Host description" +msgstr "主机描述" -#: lib/pages/fogconfigurationpage.class.php:1020 -msgid "iPXE syntax is very finicky when it comes to editing" -msgstr "" +#, fuzzy +msgid "Host general" +msgstr "主机内核" -#: lib/pages/fogconfigurationpage.class.php:1022 -msgid "If you need help understanding what items are needed please" -msgstr "" +msgid "Host is already a member of an active task" +msgstr "主机已经是一个活动任务中的一员" -#: lib/pages/fogconfigurationpage.class.php:1024 -msgid "see the forums or lookup the commands and scripts available" -msgstr "" +msgid "Host is not valid" +msgstr "主机是无效的" -#: lib/pages/fogconfigurationpage.class.php:1026 #, fuzzy -msgid "from" -msgstr "从" +msgid "Host module settings" +msgstr "主机描述" + +msgid "Host name" +msgstr "主机名" -#: lib/pages/fogconfigurationpage.class.php:1058 -#: lib/pages/fogconfigurationpage.class.php:1398 #, fuzzy -msgid "Menu Item" -msgstr "菜单项:" +msgid "Host pairings" +msgstr "主机列表" -#: lib/pages/fogconfigurationpage.class.php:1080 -#: lib/pages/fogconfigurationpage.class.php:1414 #, fuzzy -msgid "Parameters" -msgstr "参数:" +msgid "Host printer configuration" +msgstr "主机打印机配置" + +msgid "Host token is currently in use" +msgstr "" + +#, fuzzy +msgid "Host updated!" +msgstr "用户更新" + +msgid "Host/Group Name" +msgstr "主机/组名称" + +msgid "Hostname" +msgstr "主机名" + +msgid "Hostname / IP" +msgstr "主机名/ IP" + +msgid "Hostname Changer" +msgstr "换主机名" + +msgid "Hosts" +msgstr "主机" -#: lib/pages/fogconfigurationpage.class.php:1091 -#: lib/pages/fogconfigurationpage.class.php:1422 #, fuzzy -msgid "Boot Options" -msgstr "启动选项:" +msgid "Hosts Associated" +msgstr "没有snapins相关" + +msgid "Hosts do not have the same image assigned" +msgstr "主机没有分配相同的图像" -#: lib/pages/fogconfigurationpage.class.php:1103 -#: lib/pages/fogconfigurationpage.class.php:1431 #, fuzzy -msgid "Default Item" -msgstr "默认项:" +msgid "Hosts in task" +msgstr "在任务主机" -#: lib/pages/fogconfigurationpage.class.php:1113 -#: lib/pages/fogconfigurationpage.class.php:1438 #, fuzzy msgid "Hot Key Enabled" msgstr "图片启用" -#: lib/pages/fogconfigurationpage.class.php:1122 -#: lib/pages/fogconfigurationpage.class.php:1444 #, fuzzy msgid "Hot Key to use" msgstr "不能够更新" -#: lib/pages/fogconfigurationpage.class.php:1133 -#: lib/pages/fogconfigurationpage.class.php:1452 -#, fuzzy -msgid "Menu Show with" -msgstr "菜单显示有:" - -#: lib/pages/fogconfigurationpage.class.php:1161 -#, fuzzy -msgid "Delete Menu Item" -msgstr "删除所有选中的项目" +msgid "Hour value is not valid" +msgstr "小时值无效" -#: lib/pages/fogconfigurationpage.class.php:1310 -#, fuzzy -msgid "iPXE Item Update Success" -msgstr "安装/升级成功!" +msgid "Hourly" +msgstr "每小时" -#: lib/pages/fogconfigurationpage.class.php:1328 -#, fuzzy -msgid "successfully removed!" -msgstr "成功切除" +msgid "I am not the fog web server" +msgstr "我不是雾Web服务器" -#: lib/pages/fogconfigurationpage.class.php:1329 #, fuzzy -msgid "iPXE Item Remove Success" -msgstr "安装/升级成功!" - -#: lib/pages/fogconfigurationpage.class.php:1357 -msgid "Create New iPXE Menu Entry" -msgstr "新建iPXE菜单项" +msgid "I am the group manager" +msgstr "|我唯一​​的成员" -#: lib/pages/fogconfigurationpage.class.php:1488 #, fuzzy -msgid "New iPXE Menu" -msgstr "新菜单" +msgid "I have read" +msgstr "创建图像" -#: lib/pages/fogconfigurationpage.class.php:1536 -msgid "Menu Item or title cannot be blank" -msgstr "菜单项或标题不能为空" +msgid "I.M.C." +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1539 -msgid "A description needs to be set" -msgstr "描述需要设置" +msgid "I.M.I." +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1559 -#, fuzzy -msgid "iPXE Item create failed!" -msgstr "菜单创建失败" +msgid "ID" +msgstr "ID" -#: lib/pages/fogconfigurationpage.class.php:1575 #, fuzzy -msgid "iPXE Item added!" -msgstr "打印机名称" +msgid "ID Must be set to edit" +msgstr "必须加密" -#: lib/pages/fogconfigurationpage.class.php:1576 -#, fuzzy -msgid "iPXE Item Create Success" -msgstr "打印机已经存在" +msgid "IP" +msgstr "IP" -#: lib/pages/fogconfigurationpage.class.php:1584 -#, fuzzy -msgid "iPXE Item Create Fail" -msgstr "打印机更新失败!" +msgid "IP Address" +msgstr "IP地址" -#: lib/pages/fogconfigurationpage.class.php:1608 -msgid "FOG Client Service Updater" -msgstr "FOG客户服务更新" +msgid "IP Address Changed" +msgstr "更改IP地址" -#: lib/pages/fogconfigurationpage.class.php:1611 -msgid "Module Name" -msgstr "模块名称" +msgid "IP Passed is incorrect" +msgstr "IP传递是不正确" -#: lib/pages/fogconfigurationpage.class.php:1612 -msgid "Module MD5" -msgstr "模块MD5" +msgid "Icon" +msgstr "图标" -#: lib/pages/fogconfigurationpage.class.php:1613 -msgid "Module Type" -msgstr "模块类型" +msgid "Icon File not found" +msgstr "图标文件未找到" -#: lib/pages/fogconfigurationpage.class.php:1666 #, fuzzy -msgid "Current files" -msgstr "当前记录" +msgid "If a new module is published the client will" +msgstr "此设置定义使用SSH客户端的用户名。" -#: lib/pages/fogconfigurationpage.class.php:1670 -#: lib/pages/serviceconfigurationpage.class.php:449 -#: lib/pages/serviceconfigurationpage.class.php:667 -#: lib/pages/serviceconfigurationpage.class.php:781 #, fuzzy -msgid "NOTICE" -msgstr "不" +msgid "If action of ask or get" +msgstr "需要问,得到的,或列表的操作字符串" + +msgid "If credentials are correct" +msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1672 #, fuzzy -msgid "The below items are only used for the old client." -msgstr "此设置定义使用SSH客户端的用户名。" +msgid "If none is specified" +msgstr "没有指定的图像" -#: lib/pages/fogconfigurationpage.class.php:1674 -msgid "Old clients are the clients that came with FOG" +msgid "If off" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1676 -msgid "Version 1.2.0 and earlier" -msgstr "" +#, fuzzy +msgid "If on" +msgstr "图标" -#: lib/pages/fogconfigurationpage.class.php:1678 #, fuzzy -msgid "This section allows you to update the modules and" -msgstr "此设置定义代理用户名使用。" +msgid "If there is not a task set" +msgstr "有在一个任务的主机" -#: lib/pages/fogconfigurationpage.class.php:1680 -msgid "config files that run on the client computers." +msgid "If this is an upgrade" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1682 -msgid "The clients will checkin with the server from time" +msgid "If you add a blank node" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1684 -msgid "to time to see if a new module is published." +msgid "If you are looking to configure settings for a specific host" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1686 -#, fuzzy -msgid "If a new module is published the client will" -msgstr "此设置定义使用SSH客户端的用户名。" - -#: lib/pages/fogconfigurationpage.class.php:1688 -msgid "download the module and use it on the next" +msgid "If you need help understanding what items are needed please" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1690 -msgid "time the service is started." +msgid "If you would like to backup your" msgstr "" -#: lib/pages/fogconfigurationpage.class.php:1710 -#, fuzzy -msgid "Upload file" -msgstr "上传文件" +msgid "Ignore MAC on Client" +msgstr "忽略MAC客户端上" -#: lib/pages/fogconfigurationpage.class.php:1739 -#: lib/pages/serviceconfigurationpage.class.php:481 -#: lib/pages/serviceconfigurationpage.class.php:700 -#: lib/pages/serviceconfigurationpage.class.php:803 #, fuzzy -msgid "Delete Selected Items" -msgstr "删除所有选中的项目" +msgid "Ignore MAC on Image" +msgstr "忽略MAC成像" + +msgid "Image" +msgstr "图片" -#: lib/pages/fogconfigurationpage.class.php:1750 -#: lib/pages/serviceconfigurationpage.class.php:492 -#: lib/pages/serviceconfigurationpage.class.php:814 #, fuzzy -msgid "Make Changes" -msgstr "保存更改" +msgid "Image Associated: " +msgstr "图像协会" + +msgid "Image Association" +msgstr "图像协会" -#: lib/pages/fogconfigurationpage.class.php:1795 #, fuzzy -msgid "Item removed successfully!" -msgstr "保存成功" +msgid "Image Associations" +msgstr "图像协会" -#: lib/pages/fogconfigurationpage.class.php:1796 -#: lib/pages/fogconfigurationpage.class.php:1850 #, fuzzy -msgid "Client Modules Change Success" -msgstr "打印机已经存在" +msgid "Image Create Fail" +msgstr "用户创建" -#: lib/pages/fogconfigurationpage.class.php:1803 #, fuzzy -msgid "No file uploaded!" -msgstr "没有文件上传" +msgid "Image Create Success" +msgstr "用户创建" + +msgid "Image Definition" +msgstr "图像清晰度" + +msgid "Image Desc" +msgstr "图片说明" + +msgid "Image Description" +msgstr "图片说明" + +msgid "Image Enabled" +msgstr "图片启用" -#: lib/pages/fogconfigurationpage.class.php:1849 #, fuzzy -msgid "Modules added/updated successfully!" -msgstr "模块新增/更新" +msgid "Image General" +msgstr "更新打印机" -#: lib/pages/fogconfigurationpage.class.php:1857 -msgid "Client Modules Change Fail" -msgstr "" +msgid "Image History" +msgstr "历史形象" -#: lib/pages/fogconfigurationpage.class.php:1871 -msgid "MAC Address Manufacturer Listing" -msgstr "MAC地址制造商上市" +msgid "Image ID" +msgstr "图片ID" + +msgid "Image Management" +msgstr "图像管理" + +msgid "Image Manager" +msgstr "图像管理器" -#: lib/pages/fogconfigurationpage.class.php:1881 #, fuzzy -msgid "" -"This section allows you to import known mac address makers into the FOG " -"database for easier identification" -msgstr "这部分可以导入已知MAC地址厂商成雾数据库更容易识别。" +msgid "Image Membership" +msgstr "籍" -#: lib/pages/fogconfigurationpage.class.php:1886 -msgid "Current Records" -msgstr "当前记录" +msgid "Image Name" +msgstr "图片名称" -#: lib/pages/fogconfigurationpage.class.php:1903 -msgid "Delete MACs" -msgstr "删除的MAC" +msgid "Image Path" +msgstr "图像路径" -#: lib/pages/fogconfigurationpage.class.php:1909 -msgid "Update MACs" -msgstr "更新的MAC" +msgid "Image Replicator" +msgstr "图像复制" -#: lib/pages/fogconfigurationpage.class.php:2054 -msgid "FOG System Settings" -msgstr "FOG系统设置" +#, fuzzy +msgid "Image Size" +msgstr "图片名称" + +msgid "Image Size: ON CLIENT" +msgstr "图片大小:在客户端" + +msgid "Image Size: ON SERVER" +msgstr "图像大小:服务器" -#: lib/pages/fogconfigurationpage.class.php:2073 #, fuzzy -msgid "This section allows you to customize or alter" -msgstr "此设置定义代理用户名使用。" +msgid "Image Storage Groups" +msgstr "存储组" -#: lib/pages/fogconfigurationpage.class.php:2075 -msgid "the way in which FOG operates" -msgstr "" +#, fuzzy +msgid "Image Task Completed" +msgstr "任务完成后," -#: lib/pages/fogconfigurationpage.class.php:2077 -msgid "Please be very careful changing any of the following settings" -msgstr "" +msgid "Image Transfer Log" +msgstr "图像传输日志" -#: lib/pages/fogconfigurationpage.class.php:2079 -msgid "as they can cause issues that are difficult to troubleshoot" -msgstr "" +msgid "Image Type" +msgstr "图像类型" -#: lib/pages/fogconfigurationpage.class.php:2096 -msgid "Expand All" -msgstr "" +#, fuzzy +msgid "Image Update Fail" +msgstr "图片更新" -#: lib/pages/fogconfigurationpage.class.php:2210 -#: lib/pages/imagemanagementpage.class.php:528 -#: lib/pages/imagemanagementpage.class.php:893 #, fuzzy -msgid "Partclone Gzip" -msgstr "Partclone" +msgid "Image Update Success" +msgstr "安装/升级成功!" -#: lib/pages/fogconfigurationpage.class.php:2211 -#: lib/pages/imagemanagementpage.class.php:540 -#: lib/pages/imagemanagementpage.class.php:905 -msgid "Partclone Gzip Split 200MiB" -msgstr "" +#, fuzzy +msgid "Image Used" +msgstr "成像" + +#, fuzzy +msgid "Image added!" +msgstr "图片名称" + +msgid "Image is not enabled" +msgstr "图片未启用" + +msgid "Image is not valid" +msgstr "图片无效" -#: lib/pages/fogconfigurationpage.class.php:2212 -#: lib/pages/imagemanagementpage.class.php:371 -#: lib/pages/imagemanagementpage.class.php:546 -#: lib/pages/imagemanagementpage.class.php:911 -msgid "Partclone Uncompressed" -msgstr "" +msgid "Image is protected and cannot be deleted" +msgstr "图像被保护,不能被删除" -#: lib/pages/fogconfigurationpage.class.php:2213 -#: lib/pages/imagemanagementpage.class.php:552 -#: lib/pages/imagemanagementpage.class.php:917 #, fuzzy -msgid "Partclone Uncompressed Split 200MiB" -msgstr "Partclone" +msgid "Image to DMI Mappings" +msgstr "添加图片到DMI协会" -#: lib/pages/fogconfigurationpage.class.php:2214 -#: lib/pages/imagemanagementpage.class.php:558 -#: lib/pages/imagemanagementpage.class.php:923 #, fuzzy -msgid "Partclone Zstd" -msgstr "Partclone" +msgid "Image update failed!" +msgstr "图片更新" -#: lib/pages/fogconfigurationpage.class.php:2215 -#: lib/pages/imagemanagementpage.class.php:564 -#: lib/pages/imagemanagementpage.class.php:929 #, fuzzy -msgid "Partclone Zstd Split 200MiB" -msgstr "Partclone" +msgid "Image updated!" +msgstr "图片更新" -#: lib/pages/fogconfigurationpage.class.php:2355 -msgid "No image specified" -msgstr "没有指定的图像" +msgid "Imaged" +msgstr "成像" -#: lib/pages/fogconfigurationpage.class.php:2424 -#: lib/pages/usermanagementpage.class.php:568 #, fuzzy -msgid "Reset Token" -msgstr "访问令牌" +msgid "Imaged By" +msgstr "成像" -#: lib/pages/fogconfigurationpage.class.php:2587 -msgid "No Image specified" -msgstr "没有指定的Image" +#, fuzzy +msgid "Imaged For" +msgstr "成像" -#: lib/pages/fogconfigurationpage.class.php:2821 -msgid "Width must be 650 pixels." -msgstr "" +#, fuzzy +msgid "Imaged From" +msgstr "成像" -#: lib/pages/fogconfigurationpage.class.php:2826 -msgid "Height must be 120 pixels." -msgstr "" +msgid "Images" +msgstr "图片" -#: lib/pages/fogconfigurationpage.class.php:2865 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1136 #, fuzzy -msgid "Settings successfully stored!" -msgstr "已成功更新" +msgid "Imaging Completed" +msgstr "任务完成后," -#: lib/pages/fogconfigurationpage.class.php:2866 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1137 #, fuzzy -msgid "Settings Update Success" -msgstr "安装/升级成功!" +msgid "Imaging Duration" +msgstr "成像测井" -#: lib/pages/fogconfigurationpage.class.php:2874 -#, fuzzy -msgid "Service Setting Update Success" -msgstr "安装/升级成功!" +msgid "Imaging Log" +msgstr "成像测井" -#: lib/pages/fogconfigurationpage.class.php:2878 -#, fuzzy -msgid "Rebranding element has been successfully updated!" -msgstr "已成功更新" +msgid "Imaging Over the last 30 days" +msgstr "成像在过去30天" -#: lib/pages/fogconfigurationpage.class.php:2888 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1128 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1145 #, fuzzy -msgid "Settings Update Fail" -msgstr "设置更新" +msgid "Imaging Started" +msgstr "国家管理单元" + +msgid "Import" +msgstr "进口" -#: lib/pages/fogconfigurationpage.class.php:2896 #, fuzzy -msgid "Service Setting Update Failed" -msgstr "设置更新" +msgid "Import Accesscontrols" +msgstr "访问控制" -#: lib/pages/fogconfigurationpage.class.php:3016 -msgid "Service Master" -msgstr "服务主" +#, fuzzy +msgid "Import CSV" +msgstr "导出CSV" -#: lib/pages/fogconfigurationpage.class.php:3034 -msgid "Scheduler" -msgstr "调度" +#, fuzzy +msgid "Import CSV?" +msgstr "导出CSV" -#: lib/pages/fogconfigurationpage.class.php:3043 -msgid "Image Replicator" -msgstr "图像复制" +msgid "Import Configuration" +msgstr "导入配置" -#: lib/pages/fogconfigurationpage.class.php:3052 #, fuzzy -msgid "Image Size" -msgstr "图片名称" +msgid "Import Database" +msgstr "日期" -#: lib/pages/fogconfigurationpage.class.php:3061 -msgid "Snapin Replicator" -msgstr "管理单元复制" +#, fuzzy +msgid "Import Database?" +msgstr "日期" -#: lib/pages/fogconfigurationpage.class.php:3070 #, fuzzy -msgid "Snapin Hash" -msgstr "管理单元路径" +msgid "Import FOG Reports" +msgstr "进口主机" -#: lib/pages/fogconfigurationpage.class.php:3079 -msgid "Ping Hosts" -msgstr "平主机" +#, fuzzy +msgid "Import Failed" +msgstr "进口打印机" -#: lib/pages/fogconfigurationpage.class.php:3121 -msgid "Image Transfer Log" -msgstr "图像传输日志" +msgid "Import Groups" +msgstr "导入组" -#: lib/pages/fogconfigurationpage.class.php:3135 -msgid "Snapin Transfer Log" -msgstr "管理单元传输日志" +msgid "Import Hosts" +msgstr "进口主机" -#: lib/pages/fogconfigurationpage.class.php:3213 -msgid "FOG Log Viewer" -msgstr "FOG日志查看器" +msgid "Import Images" +msgstr "导入图像" -#: lib/pages/fogconfigurationpage.class.php:3235 #, fuzzy -msgid "Lines" -msgstr "线" - -#: lib/pages/fogconfigurationpage.class.php:3245 -msgid "Reverse the file: (newest on top)" -msgstr "反转文件:(最新的在上面)" +msgid "Import LDAPs" +msgstr "进口" -#: lib/pages/fogconfigurationpage.class.php:3251 #, fuzzy -msgid "Pause" -msgstr "用户" +msgid "Import Locations" +msgstr "主机位置" -#: lib/pages/fogconfigurationpage.class.php:3270 -#, fuzzy -msgid "Configuration Import/Export" -msgstr "组态" +msgid "Import Printers" +msgstr "进口打印机" -#: lib/pages/fogconfigurationpage.class.php:3290 #, fuzzy -msgid "Export Database?" -msgstr "日期" +msgid "Import Report?" +msgstr "进口主机" -#: lib/pages/fogconfigurationpage.class.php:3309 #, fuzzy -msgid "Export Database" -msgstr "日期" +msgid "Import Reports" +msgstr "进口主机" -#: lib/pages/fogconfigurationpage.class.php:3319 -#: lib/pages/fogconfigurationpage.class.php:3338 #, fuzzy -msgid "Import Database?" -msgstr "日期" +msgid "Import Sites" +msgstr "进口打印机" + +msgid "Import Snapins" +msgstr "进口Snapins" -#: lib/pages/fogconfigurationpage.class.php:3351 #, fuzzy -msgid "Import Database" -msgstr "日期" +msgid "Import Subnetgroups" +msgstr "导入组" -#: lib/pages/fogconfigurationpage.class.php:3399 #, fuzzy msgid "Import Successful" msgstr "成功" -#: lib/pages/fogconfigurationpage.class.php:3403 #, fuzzy -msgid "Database imported and added successfully!" -msgstr "数据库导入并成功添加" +msgid "Import Task States" +msgstr "任务的国家" -#: lib/pages/fogconfigurationpage.class.php:3414 #, fuzzy -msgid "Import Failed" -msgstr "进口打印机" +msgid "Import Task Types" +msgstr "任务类型" -#: lib/pages/fogconfigurationpage.class.php:3418 -#, fuzzy -msgid "There were errors during import!" -msgstr "进口过程中有错误" +msgid "Import Users" +msgstr "导入用户" -#: lib/pages/fogconfigurationpage.class.php:3427 #, fuzzy -msgid "Database Reverted" -msgstr "数据库恢复的变化" +msgid "Import WOLBroadcasts" +msgstr "主机位置" -#: lib/pages/fogconfigurationpage.class.php:3430 #, fuzzy -msgid "Database changes reverted!" -msgstr "数据库恢复的变化" +msgid "Import Windows Keys" +msgstr "Windows 8的" -#: lib/pages/fogconfigurationpage.class.php:3437 #, fuzzy -msgid "Database Failure" -msgstr "数据库更新失败" +msgid "In" +msgstr "在" -#: lib/pages/fogconfigurationpage.class.php:3441 #, fuzzy -msgid "Errors on revert detected!" -msgstr "在复归错误检测" - -#: lib/pages/groupmanagementpage.class.php:170 -msgid "New Group" -msgstr "新集团" +msgid "In FOG" +msgstr "在" -#: lib/pages/groupmanagementpage.class.php:188 -#: lib/pages/groupmanagementpage.class.php:470 -#: lib/pages/taskmanagementpage.class.php:449 -msgid "Group Name" -msgstr "组名称" +msgid "Included Items" +msgstr "包括项目" -#: lib/pages/groupmanagementpage.class.php:197 -#: lib/pages/groupmanagementpage.class.php:478 -msgid "Group Description" -msgstr "团体简介" +#, fuzzy +msgid "Info" +msgstr "在" -#: lib/pages/groupmanagementpage.class.php:205 -#: lib/pages/groupmanagementpage.class.php:494 -msgid "Group Kernel" -msgstr "集团核心" +msgid "Information" +msgstr "信息" -#: lib/pages/groupmanagementpage.class.php:214 -#: lib/pages/groupmanagementpage.class.php:502 -msgid "Group Kernel Arguments" -msgstr "集团内核参数" +#, fuzzy +msgid "Init" +msgstr "在" -#: lib/pages/groupmanagementpage.class.php:223 -#: lib/pages/groupmanagementpage.class.php:510 -msgid "Group Primary Disk" -msgstr "集团主磁盘" +#, fuzzy +msgid "Initial Template" +msgstr "模板管理单元" -#: lib/pages/groupmanagementpage.class.php:298 #, fuzzy -msgid "A group name is required!" -msgstr "图像名是必需的!" +msgid "Initrd Name" +msgstr "打印机名称" -#: lib/pages/groupmanagementpage.class.php:303 -#: lib/pages/groupmanagementpage.class.php:1894 #, fuzzy -msgid "A group already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Initrd Update" +msgstr "无效类型" -#: lib/pages/groupmanagementpage.class.php:313 #, fuzzy -msgid "Add group failed!" -msgstr "添加管理单元失败!" +msgid "Install" +msgstr "安装/更新失败!" + +msgid "Install / Update Failed!" +msgstr "安装/更新失败!" + +msgid "Install / Update Successful!" +msgstr "安装/升级成功!" -#: lib/pages/groupmanagementpage.class.php:318 #, fuzzy -msgid "Group added!" -msgstr "集团补充" +msgid "Install Initrd" +msgstr "安装/更新失败!" -#: lib/pages/groupmanagementpage.class.php:319 #, fuzzy -msgid "Group Create Success" -msgstr "用户创建" +msgid "Install Kernel" +msgstr "主机内核" -#: lib/pages/groupmanagementpage.class.php:327 #, fuzzy -msgid "Group Create Fail" -msgstr "集团创建失败" +msgid "Install Plugin" +msgstr "安装插件" -#: lib/pages/groupmanagementpage.class.php:486 -msgid "Group Product Key" -msgstr "集团产品密钥" +msgid "Install Plugins" +msgstr "安装插件" -#: lib/pages/groupmanagementpage.class.php:518 -msgid "Group Bios Exit Type" -msgstr "集团的Bios退出类型" +#, fuzzy +msgid "Install/Update" +msgstr "安装/更新失败!" -#: lib/pages/groupmanagementpage.class.php:521 -msgid "Group EFI Exit Type" -msgstr "集团EFI退出类型" +#, fuzzy +msgid "Install/Update Now" +msgstr "安装/立即升级" -#: lib/pages/groupmanagementpage.class.php:553 -#: lib/pages/hostmanagementpage.class.php:1202 -msgid "Reset Encryption Data" -msgstr "" +msgid "Installed Plugins" +msgstr "已安装的插件" -#: lib/pages/groupmanagementpage.class.php:562 #, fuzzy -msgid "Group general" -msgstr "集团核心" +msgid "Integrity Settings" +msgstr "设置" -#: lib/pages/groupmanagementpage.class.php:611 -#, fuzzy -msgid "Group image" -msgstr "组名称" +msgid "Interface" +msgstr "接口" + +msgid "Interface not ready, waiting for it to come up" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:644 #, fuzzy -msgid "Group image association" -msgstr "集团定位" +msgid "Invalid" +msgstr "无效的ID" -#: lib/pages/groupmanagementpage.class.php:698 -#, fuzzy -msgid "Group Power Management Remove" -msgstr "用户管理" +msgid "Invalid Class" +msgstr "无效类" -#: lib/pages/groupmanagementpage.class.php:703 #, fuzzy -msgid "Delete all PM tasks?" -msgstr "删除所有选定%s小号" - -#: lib/pages/groupmanagementpage.class.php:759 -#: lib/pages/hostmanagementpage.class.php:1436 -#: lib/pages/hostmanagementpage.class.php:1640 -msgid "Printer Alias" -msgstr "打印机别名" +msgid "Invalid File" +msgstr "无效的文件夹" -#: lib/pages/groupmanagementpage.class.php:760 -#: lib/pages/hostmanagementpage.class.php:1437 -#: lib/pages/hostmanagementpage.class.php:1641 -#: lib/pages/printermanagementpage.class.php:84 -#: lib/pages/printermanagementpage.class.php:217 -#: lib/pages/printermanagementpage.class.php:625 -msgid "Printer Type" -msgstr "打印机类型" +msgid "Invalid Folder" +msgstr "无效的文件夹" -#: lib/pages/groupmanagementpage.class.php:797 -#: lib/pages/hostmanagementpage.class.php:1474 -#: lib/pages/hostmanagementpage.class.php:1682 -#: lib/pages/printermanagementpage.class.php:49 -#: lib/pages/printermanagementpage.class.php:133 -msgid "TCP/IP" -msgstr "TCP / IP协议" +msgid "Invalid Host" +msgstr "无效的主机" -#: lib/pages/groupmanagementpage.class.php:817 #, fuzzy -msgid "Group Printers" -msgstr "出口打印机" +msgid "Invalid Host Colors" +msgstr "无效的主机" -#: lib/pages/groupmanagementpage.class.php:827 #, fuzzy -msgid "Printer Configuration" -msgstr "服务配置" +msgid "Invalid ID passed" +msgstr "无效的单元传递" -#: lib/pages/groupmanagementpage.class.php:832 #, fuzzy -msgid "Select management level for these hosts" -msgstr "该主机中选择管理水平" +msgid "Invalid IP" +msgstr "无效的ID" -#: lib/pages/groupmanagementpage.class.php:838 -#: lib/pages/hostmanagementpage.class.php:1506 -msgid "This setting turns off all FOG Printer Management" -msgstr "" +msgid "Invalid Login" +msgstr "登录无效" -#: lib/pages/groupmanagementpage.class.php:840 -#: lib/pages/hostmanagementpage.class.php:1508 -msgid "Although there are multiple levels already" -msgstr "" +msgid "Invalid MAC Address!" +msgstr "无效的MAC地址!" -#: lib/pages/groupmanagementpage.class.php:842 -#: lib/pages/hostmanagementpage.class.php:1510 -msgid "between host and global settings" -msgstr "" +#, fuzzy +msgid "Invalid Multicast Session" +msgstr "开始多播会话" -#: lib/pages/groupmanagementpage.class.php:844 -#: lib/pages/hostmanagementpage.class.php:1512 -msgid "this is just another to ensure safety" -msgstr "" +msgid "Invalid Plugin Passed" +msgstr "无效的插件传递" -#: lib/pages/groupmanagementpage.class.php:853 -#: lib/pages/hostmanagementpage.class.php:1522 -msgid "No Printer Management" -msgstr "没有打印机管理" +msgid "Invalid Server Information!" +msgstr "无效的服务器信息!" + +msgid "Invalid Snapin" +msgstr "无效的管理单元" + +msgid "Invalid Snapin Tasking" +msgstr "无效的管理单元任务处理" -#: lib/pages/groupmanagementpage.class.php:860 -#: lib/pages/hostmanagementpage.class.php:1529 #, fuzzy -msgid "" -"This setting only adds and removes printers that are managed by FOG. If the " -"printer exists in printer management but is not assigned to a host, it will " -"remove the printer if it exists on the unassigned host. It will add printers " -"to the host that are assigned." -msgstr "" -"此设置只添加和删除由FOG管理的打印机。如果打印机管理存在的打印机,但没有分配给" -"主机时,如果存在未分配的主机上删除打印机。这将增加打印机被分配主机。" +msgid "Invalid Snapin Tasking object" +msgstr "无效的管理单元任务处理" -#: lib/pages/groupmanagementpage.class.php:877 -#: lib/pages/hostmanagementpage.class.php:1547 -msgid "FOG Managed Printers" -msgstr "FOG管理的打印机" +msgid "Invalid Storage Group" +msgstr "无效的存储组" -#: lib/pages/groupmanagementpage.class.php:884 -#: lib/pages/hostmanagementpage.class.php:1554 -msgid "" -"This setting will only allow FOG Assigned printers to be added to the host. " -"Any printer that is not assigned will be removed including non-FOG managed " -"printers." -msgstr "" -"此设置仅允许FOG分配的打印机要添加到主机。没有分配任何打印机将包括非FOG管理的" -"打印机被删除。" +msgid "Invalid Storage Node" +msgstr "无效的存储节点" -#: lib/pages/groupmanagementpage.class.php:897 -#: lib/pages/hostmanagementpage.class.php:1568 -msgid "Only Assigned Printers" -msgstr "只有分配打印机" +msgid "Invalid Task Type" +msgstr "无效的任务类型" -#: lib/pages/groupmanagementpage.class.php:904 -#: lib/pages/hostmanagementpage.class.php:1575 #, fuzzy -msgid "Update printer configuration" -msgstr "主机打印机配置" +msgid "Invalid Tasking" +msgstr "任务无效" -#: lib/pages/groupmanagementpage.class.php:918 -#, fuzzy -msgid "Printer Associations" -msgstr "打印机说明" +msgid "Invalid Timeout Value" +msgstr "无效的超时值" -#: lib/pages/groupmanagementpage.class.php:928 #, fuzzy -msgid "Make Printer Changes" -msgstr "保存更改" +msgid "Invalid Type" +msgstr "无效类型" -#: lib/pages/groupmanagementpage.class.php:934 -#: lib/pages/hostmanagementpage.class.php:1610 #, fuzzy -msgid "Add Printers" -msgstr "打印机" +msgid "Invalid data being parsed" +msgstr "无效的令牌传递" -#: lib/pages/groupmanagementpage.class.php:945 #, fuzzy -msgid "Update Default Printer" -msgstr "更新打印机" +msgid "Invalid data found" +msgstr "数据无效" -#: lib/pages/groupmanagementpage.class.php:956 -#: lib/pages/hostmanagementpage.class.php:1720 #, fuzzy -msgid "Remove selected printers" -msgstr "删除选定snapins" +msgid "Invalid date" +msgstr "无效类型" -#: lib/pages/groupmanagementpage.class.php:998 -#: lib/pages/hostmanagementpage.class.php:1762 -#: lib/pages/hostmanagementpage.class.php:1865 -#: lib/pages/hostmanagementpage.class.php:3019 -#: lib/pages/snapinmanagementpage.class.php:166 -#: lib/pages/snapinmanagementpage.class.php:506 -#: lib/pages/snapinmanagementpage.class.php:999 -#: lib/reports/snapin_log.report.php:149 lib/reports/snapin_log.report.php:179 -msgid "Snapin Name" -msgstr "管理单元名称" +msgid "Invalid image" +msgstr "图片无效" -#: lib/pages/groupmanagementpage.class.php:999 -#: lib/pages/hostmanagementpage.class.php:1763 -#: lib/pages/hostmanagementpage.class.php:1866 -#, fuzzy -msgid "Snapin Created" -msgstr "更新管理单元" +msgid "Invalid image assigned to host" +msgstr "分配给主机图像无效" -#: lib/pages/groupmanagementpage.class.php:1044 -#, fuzzy -msgid "Group Snapins" -msgstr "出口Snapins" +msgid "Invalid key being added" +msgstr "添加键无效" -#: lib/pages/groupmanagementpage.class.php:1054 #, fuzzy -msgid "Available Snapins" -msgstr "所有管理单元" +msgid "Invalid key being destroyed" +msgstr "关键无效被删除" -#: lib/pages/groupmanagementpage.class.php:1064 -#, fuzzy -msgid "Make Snapin Changes" -msgstr "保存更改" +msgid "Invalid key being removed" +msgstr "关键无效被删除" -#: lib/pages/groupmanagementpage.class.php:1070 -#: lib/pages/hostmanagementpage.class.php:1842 #, fuzzy -msgid "Add selected snapins" -msgstr "打印机" +msgid "Invalid key being requested" +msgstr "关键无效被删除" -#: lib/pages/groupmanagementpage.class.php:1081 -#: lib/pages/hostmanagementpage.class.php:1918 -msgid "Remove selected snapins" -msgstr "删除选定snapins" +msgid "Invalid key being set" +msgstr "无效的关键字设定" + +msgid "Invalid method called" +msgstr "所谓的无效方法" + +msgid "Invalid numeric entry" +msgstr "无效的数字输入" -#: lib/pages/groupmanagementpage.class.php:1120 -#: lib/pages/groupmanagementpage.class.php:1127 -#: lib/pages/groupmanagementpage.class.php:1137 -#: lib/pages/hostmanagementpage.class.php:1959 -#: lib/pages/hostmanagementpage.class.php:1966 -#: lib/pages/hostmanagementpage.class.php:1976 #, fuzzy -msgid "This module is only used on the old client" -msgstr "此设置定义使用SSH客户端的用户名。" +msgid "Invalid object to try tasking" +msgstr "无效的对象类型传递" -#: lib/pages/groupmanagementpage.class.php:1121 -#: lib/pages/hostmanagementpage.class.php:1960 -msgid "The old client is what was distributed with FOG 1.2.0 and earlier" -msgstr "" +msgid "Invalid object type passed" +msgstr "无效的对象类型传递" -#: lib/pages/groupmanagementpage.class.php:1122 -#: lib/pages/hostmanagementpage.class.php:1961 -msgid "This module did not work past Windows XP due to" -msgstr "" +msgid "Invalid operational mode" +msgstr "无效的操作模式" -#: lib/pages/groupmanagementpage.class.php:1123 -#: lib/pages/hostmanagementpage.class.php:1962 -msgid "UAC introduced in Vista and up" -msgstr "" +#, fuzzy +msgid "Invalid scheduling type" +msgstr "无效类型" -#: lib/pages/groupmanagementpage.class.php:1128 -#: lib/pages/groupmanagementpage.class.php:1138 -#: lib/pages/hostmanagementpage.class.php:1967 -#: lib/pages/hostmanagementpage.class.php:1977 -msgid "The old client is what was distributed with" -msgstr "" +#, fuzzy +msgid "Invalid snapin" +msgstr "无效的管理单元" -#: lib/pages/groupmanagementpage.class.php:1129 -#: lib/pages/groupmanagementpage.class.php:1139 -#: lib/pages/hostmanagementpage.class.php:1968 -#: lib/pages/hostmanagementpage.class.php:1978 -msgid "FOG 1.2.0 and earlier" -msgstr "" +msgid "Invalid task" +msgstr "任务无效" -#: lib/pages/groupmanagementpage.class.php:1130 -#: lib/pages/hostmanagementpage.class.php:1969 -msgid "This module has been replaced in the new client" -msgstr "" +#, fuzzy +msgid "Invalid task id" +msgstr "任务无效" -#: lib/pages/groupmanagementpage.class.php:1131 -#: lib/pages/hostmanagementpage.class.php:1970 -msgid "and the equivalent module for what Green" -msgstr "" +#, fuzzy +msgid "Invalid task id sent" +msgstr "任务无效" -#: lib/pages/groupmanagementpage.class.php:1132 -#: lib/pages/hostmanagementpage.class.php:1971 -msgid "FOG did is now called Power Management" -msgstr "" +#, fuzzy +msgid "Invalid tasking type passed" +msgstr "无效的对象类型传递" -#: lib/pages/groupmanagementpage.class.php:1133 -#: lib/pages/hostmanagementpage.class.php:1972 -msgid "This is only here to maintain old client operations" -msgstr "" +#, fuzzy +msgid "Invalid tasking!" +msgstr "任务无效" -#: lib/pages/groupmanagementpage.class.php:1140 -#: lib/pages/hostmanagementpage.class.php:1979 -msgid "This module did not work past Windows XP due" -msgstr "" +msgid "Invalid token passed" +msgstr "无效的令牌传递" -#: lib/pages/groupmanagementpage.class.php:1141 -#: lib/pages/hostmanagementpage.class.php:1980 -msgid "to UAC introduced in Vista and up" -msgstr "" +#, fuzzy +msgid "Invalid token passed for host" +msgstr "无效的令牌传递" -#: lib/pages/groupmanagementpage.class.php:1145 -#: lib/pages/hostmanagementpage.class.php:1984 -msgid "This module is only used" +msgid "Invalid type, merge to add, diff to remove" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1146 -#: lib/pages/hostmanagementpage.class.php:1985 -msgid "with modules and config" -msgstr "" +msgid "Invalid user and/or channel passed" +msgstr "无效的用户和/或通道通过" -#: lib/pages/groupmanagementpage.class.php:1147 -#: lib/pages/hostmanagementpage.class.php:1986 -msgid "on the old client" -msgstr "" +msgid "Inventory" +msgstr "库存" -#: lib/pages/groupmanagementpage.class.php:1161 -#: lib/pages/hostmanagementpage.class.php:2000 -msgid "Select/Deselect All" -msgstr "选择/取消全部" +msgid "Inventory ID" +msgstr "库存ID" -#: lib/pages/groupmanagementpage.class.php:1300 -#, fuzzy -msgid "Group FOG Client Module configuration" -msgstr "主机打印机配置" +msgid "Is Advanced" +msgstr "是Advanced" -#: lib/pages/groupmanagementpage.class.php:1310 -#, fuzzy -msgid "Group module settings" -msgstr "主机描述" +msgid "Is Enabled" +msgstr "已启用" -#: lib/pages/groupmanagementpage.class.php:1316 -#: lib/pages/hostmanagementpage.class.php:2143 -#, fuzzy -msgid "Update module configurations" -msgstr "主机打印机配置" +msgid "Is Graph Enabled" +msgstr "被启用图" -#: lib/pages/groupmanagementpage.class.php:1390 -#: lib/pages/hostmanagementpage.class.php:2202 -msgid "Screen Width (in pixels)" -msgstr "屏幕宽度(以像素为单位)" +msgid "Is Group" +msgstr "是集团" -#: lib/pages/groupmanagementpage.class.php:1395 -#: lib/pages/hostmanagementpage.class.php:2207 -msgid "Screen Height (in pixels)" -msgstr "屏幕高度(以像素为单位)" +msgid "Is Master Node" +msgstr "是主节点" -#: lib/pages/groupmanagementpage.class.php:1400 -#: lib/pages/hostmanagementpage.class.php:2212 -msgid "Screen Refresh Rate (in Hz)" -msgstr "屏幕刷新率(赫兹)" +#, fuzzy +msgid "Is Pack" +msgstr "是" -#: lib/pages/groupmanagementpage.class.php:1457 -msgid "Group Screen Resolution" -msgstr "集团屏幕分辨率" +msgid "Is Restricted User " +msgstr "" + +msgid "Is a" +msgstr "是" -#: lib/pages/groupmanagementpage.class.php:1463 -#: lib/pages/hostmanagementpage.class.php:2264 #, fuzzy -msgid "Update display resolution" -msgstr "更新主要组" - -#: lib/pages/groupmanagementpage.class.php:1502 -#: lib/pages/hostmanagementpage.class.php:2299 -msgid "Auto Log Out Time (in minutes)" -msgstr "自动注销时间(分钟)" +msgid "Is restricted" +msgstr "任务开始" -#: lib/pages/groupmanagementpage.class.php:1532 -msgid "Group Auto Logout" +msgid "It can be used on Windows" msgstr "" -#: lib/pages/groupmanagementpage.class.php:1538 -#: lib/pages/hostmanagementpage.class.php:2335 #, fuzzy -msgid "Update auto-logout time" -msgstr "更新打印机" +msgid "It is primarily geared for the smart installer methodology now" +msgstr "详细文档。它主要面向的智能安装方法吧。" -#: lib/pages/groupmanagementpage.class.php:1721 -#: lib/pages/groupmanagementpage.class.php:1722 -#: lib/reports/equipment_loan.report.php:254 -#: lib/reports/equipment_loan.report.php:256 -#: lib/reports/history_report.report.php:209 -#: lib/reports/history_report.report.php:210 -#: lib/reports/host_list.report.php:321 lib/reports/host_list.report.php:322 -#: lib/reports/hosts_and_users.report.php:339 -#: lib/reports/hosts_and_users.report.php:340 -#: lib/reports/imaging_log.report.php:335 -#: lib/reports/imaging_log.report.php:336 -#: lib/reports/inventory_report.report.php:343 -#: lib/reports/inventory_report.report.php:344 -#: lib/reports/pending_mac_list.report.php:141 -#: lib/reports/pending_mac_list.report.php:142 -#: lib/reports/product_keys.report.php:142 -#: lib/reports/product_keys.report.php:143 -#: lib/reports/snapin_log.report.php:340 lib/reports/snapin_log.report.php:341 -#: lib/reports/user_tracking.report.php:349 -#: lib/reports/user_tracking.report.php:350 -#: lib/reports/virus_history.report.php:142 -#: lib/reports/virus_history.report.php:143 -msgid "Export PDF" -msgstr "导出PDF" +msgid "It operates by getting the max bandwidth setting of the node" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:1794 -msgid "Host Memory" -msgstr "主机内存" +msgid "It tells the client to download snapins from" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:2058 -#: lib/pages/hostmanagementpage.class.php:3339 -#, fuzzy -msgid "You must select an action to perform" -msgstr "您必须指定别名和端口" +msgid "It will operate based on the fields the area typically requires" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:2099 #, fuzzy -msgid "Group update failed!" -msgstr "用户更新失败" +msgid "Item removed successfully!" +msgstr "保存成功" -#: lib/pages/groupmanagementpage.class.php:2104 -#, fuzzy -msgid "Group updated!" -msgstr "集团补充" +msgid "Items must be an array" +msgstr "" -#: lib/pages/groupmanagementpage.class.php:2105 -#, fuzzy -msgid "Group Update Success" -msgstr "用户创建" +msgid "Job Create Date" +msgstr "作业创建日期" + +msgid "Job Create Time" +msgstr "作业创建时间" -#: lib/pages/groupmanagementpage.class.php:2113 #, fuzzy -msgid "Group Update Fail" -msgstr "集团创建失败" +msgid "Join Domain after deploy" +msgstr "图像任务之后加入域" -#: lib/pages/hostmanagementpage.class.php:176 -msgid "Imaged" -msgstr "成像" +msgid "Kernel" +msgstr "核心" -#: lib/pages/hostmanagementpage.class.php:178 -#: lib/pages/taskmanagementpage.class.php:346 -msgid "Assigned Image" -msgstr "分配图像" +msgid "Kernel Args" +msgstr "内核参数数量" -#: lib/pages/hostmanagementpage.class.php:223 -msgid "Goto task list" -msgstr "" +msgid "Kernel Arguments" +msgstr "内核参数" -#: lib/pages/hostmanagementpage.class.php:295 -msgid "Pending Host List" -msgstr "待主机列表" +msgid "Kernel Name" +msgstr "内核名称" -#: lib/pages/hostmanagementpage.class.php:333 -#, fuzzy -msgid "Approve selected hosts" -msgstr "批准选定主机" +msgid "Kernel Update" +msgstr "内核更新" + +msgid "Kernel Versions" +msgstr "内核版本" + +msgid "Kernels/Inits from location" +msgstr "从位置仁/ Inits" -#: lib/pages/hostmanagementpage.class.php:338 #, fuzzy -msgid "Delete selected hosts" -msgstr "删除选定的主机" +msgid "Key" +msgstr "DMI关键" -#: lib/pages/hostmanagementpage.class.php:367 #, fuzzy -msgid "Approve Success" -msgstr "批准该主机?" +msgid "Key Name" +msgstr "内核名称" -#: lib/pages/hostmanagementpage.class.php:368 #, fuzzy -msgid "Selected hosts approved successfully" -msgstr "保存成功" +msgid "Key field must be a string" +msgstr "事件必须是字符串" -#: lib/pages/hostmanagementpage.class.php:376 #, fuzzy -msgid "Deleted Success" -msgstr "用户创建" +msgid "Key must be a string" +msgstr "事件必须是字符串" -#: lib/pages/hostmanagementpage.class.php:377 #, fuzzy -msgid "Selected hosts deleted successfully" -msgstr "安装/升级成功!" +msgid "Key must be a string or index" +msgstr "事件必须是字符串" -#: lib/pages/hostmanagementpage.class.php:395 -msgid "New Host" -msgstr "新建主机" +msgid "Key must be an array of keys or a string." +msgstr "" -#: lib/pages/hostmanagementpage.class.php:413 -#: lib/pages/hostmanagementpage.class.php:1034 -#: lib/pages/taskmanagementpage.class.php:345 -#: lib/pages/taskmanagementpage.class.php:935 -#: lib/plugins/site/pages/sitemanagementpage.class.php:456 -#: lib/plugins/site/pages/sitemanagementpage.class.php:565 -#: lib/plugins/hostext/class/hostextmanager.class.php:94 -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:71 -#: lib/reg-task/taskqueue.class.php:302 lib/reports/host_list.report.php:172 -#: lib/reports/hosts_and_users.report.php:165 -#: lib/reports/imaging_log.report.php:204 -#: lib/reports/product_keys.report.php:34 lib/reports/snapin_log.report.php:148 -#: lib/reports/snapin_log.report.php:176 -#: lib/reports/virus_history.report.php:33 -msgid "Host Name" -msgstr "主机名" +msgid "Kill" +msgstr "杀" -#: lib/pages/hostmanagementpage.class.php:423 -#: lib/pages/hostmanagementpage.class.php:1042 -#: lib/plugins/hostext/class/hostextmanager.class.php:95 -msgid "Primary MAC" -msgstr "主MAC" +#, fuzzy +msgid "LDAP Connection Name" +msgstr "地点名称" -#: lib/pages/hostmanagementpage.class.php:433 -#: lib/plugins/hostext/class/hostextmanager.class.php:93 -#: lib/reports/user_tracking.report.php:260 -msgid "Host Description" -msgstr "主机描述" +#, fuzzy +msgid "LDAP Connection Name" +msgstr "地点名称" -#: lib/pages/hostmanagementpage.class.php:441 -#: lib/pages/hostmanagementpage.class.php:1121 -#: lib/plugins/location/hooks/addlocationhost.hook.php:248 -#: lib/plugins/site/hooks/addsitehost.hook.php:283 -#: lib/reports/product_keys.report.php:38 -#: lib/reports/product_keys.report.php:57 -#: lib/reports/product_keys.report.php:112 -msgid "Host Product Key" -msgstr "主机产品密钥" +#, fuzzy +msgid "LDAP Create Fail" +msgstr "用户创建" -#: lib/pages/hostmanagementpage.class.php:449 -#: lib/pages/hostmanagementpage.class.php:1128 -msgid "Host Image" -msgstr "主机图片" +#, fuzzy +msgid "LDAP Create Success" +msgstr "用户创建" -#: lib/pages/hostmanagementpage.class.php:458 -#: lib/pages/hostmanagementpage.class.php:1131 -#: lib/reports/host_list.report.php:179 lib/reports/product_keys.report.php:42 -msgid "Host Kernel" -msgstr "主机内核" +#, fuzzy +msgid "LDAP General" +msgstr "一般" -#: lib/pages/hostmanagementpage.class.php:466 -#: lib/pages/hostmanagementpage.class.php:1139 -msgid "Host Kernel Arguments" -msgstr "主机内核参数" +msgid "LDAP Management" +msgstr "LDAP管理" -#: lib/pages/hostmanagementpage.class.php:473 -#: lib/pages/hostmanagementpage.class.php:1147 #, fuzzy -msgid "Host Init" -msgstr "主机列表" +msgid "LDAP Ports" +msgstr "LDAP服务器" -#: lib/pages/hostmanagementpage.class.php:479 -#: lib/pages/hostmanagementpage.class.php:1155 -msgid "Host Primary Disk" -msgstr "主机主磁盘" +msgid "LDAP Server" +msgstr "LDAP服务器" -#: lib/pages/hostmanagementpage.class.php:486 -#: lib/pages/hostmanagementpage.class.php:1163 -msgid "Host Bios Exit Type" -msgstr "主机BIOS退出类型" +msgid "LDAP Server Address" +msgstr "LDAP服务器地址" -#: lib/pages/hostmanagementpage.class.php:491 -#: lib/pages/hostmanagementpage.class.php:1166 -msgid "Host EFI Exit Type" -msgstr "主持人EFI退出类型" +msgid "LDAP Server Description" +msgstr "LDAP服务器说明" -#: lib/pages/hostmanagementpage.class.php:616 #, fuzzy -msgid "A host name is required!" -msgstr "图像名是必需的!" +msgid "LDAP Server Port" +msgstr "LDAP服务器" -#: lib/pages/hostmanagementpage.class.php:621 #, fuzzy -msgid "A mac address is required!" -msgstr "MAC地址是必需的" +msgid "LDAP Server added!" +msgstr "LDAP服务器名称" -#: lib/pages/hostmanagementpage.class.php:626 #, fuzzy -msgid "A host already exists with this name!" -msgstr "图像已经存在具有此名称!" - -#: lib/pages/hostmanagementpage.class.php:631 -msgid "MAC Format is invalid" -msgstr "MAC格式无效" +msgid "LDAP Server updated!" +msgstr "LDAP服务器名称" -#: lib/pages/hostmanagementpage.class.php:638 #, fuzzy -msgid "A host with this mac already exists with name" -msgstr "与此MAC主机与主机名已经存在: %s" +msgid "LDAP Servers" +msgstr "LDAP服务器" -#: lib/pages/hostmanagementpage.class.php:673 #, fuzzy -msgid "Add host failed!" -msgstr "添加管理单元失败!" +msgid "LDAP Update Fail" +msgstr "管理单元更新失败" -#: lib/pages/hostmanagementpage.class.php:678 #, fuzzy -msgid "Host added!" -msgstr "添加主机" +msgid "LDAP Update Success" +msgstr "安装/升级成功!" + +msgid "Language" +msgstr "语言" -#: lib/pages/hostmanagementpage.class.php:679 #, fuzzy -msgid "Host Create Success" +msgid "Last Captured" msgstr "主机创建" -#: lib/pages/hostmanagementpage.class.php:687 -#, fuzzy -msgid "Host Create Fail" -msgstr "主机创建失败" +msgid "Last Deployed" +msgstr "最后部署" -#: lib/pages/hostmanagementpage.class.php:830 #, fuzzy -msgid "Current Power Management settings" -msgstr "用户管理" +msgid "Last Updated Time" +msgstr "主机更新失败" -#: lib/pages/hostmanagementpage.class.php:841 #, fuzzy -msgid "Update PM Values" -msgstr "更新映像" - -#: lib/pages/hostmanagementpage.class.php:906 -#: lib/pages/hostmanagementpage.class.php:1221 -msgid "Remove MAC" -msgstr "删除MAC" - -#: lib/pages/hostmanagementpage.class.php:914 -#: lib/pages/hostmanagementpage.class.php:1063 -#: lib/pages/hostmanagementpage.class.php:1229 -msgid "Ignore MAC on Client" -msgstr "忽略MAC客户端上" - -#: lib/pages/hostmanagementpage.class.php:916 -#: lib/pages/hostmanagementpage.class.php:1065 -#: lib/pages/hostmanagementpage.class.php:1231 -msgid "I.M.C." -msgstr "" +msgid "Last captured" +msgstr "主机创建" -#: lib/pages/hostmanagementpage.class.php:933 -#: lib/pages/hostmanagementpage.class.php:1082 -#: lib/pages/hostmanagementpage.class.php:1246 #, fuzzy -msgid "Ignore MAC on Image" -msgstr "忽略MAC成像" +msgid "Latest Development Version" +msgstr "最新版本" -#: lib/pages/hostmanagementpage.class.php:935 -#: lib/pages/hostmanagementpage.class.php:1084 -#: lib/pages/hostmanagementpage.class.php:1248 -msgid "I.M.I." -msgstr "" +msgid "Latest Version" +msgstr "最新版本" -#: lib/pages/hostmanagementpage.class.php:968 #, fuzzy -msgid "Approve MAC" -msgstr "批准所有Mac?" +msgid "Level must be an integer" +msgstr "事件必须是字符串" -#: lib/pages/hostmanagementpage.class.php:981 -#, fuzzy -msgid "Approve all pending? " -msgstr "批准未决选择Mac电脑" +msgid "License" +msgstr "执照" + +msgid "Line" +msgstr "线" -#: lib/pages/hostmanagementpage.class.php:987 #, fuzzy -msgid "Approve all pending macs" -msgstr "批准未决选择Mac电脑" +msgid "Lines" +msgstr "线" -#: lib/pages/hostmanagementpage.class.php:1055 -msgid "Add MAC" -msgstr "添加MAC" +msgid "Link New Account" +msgstr "链接新帐号" -#: lib/pages/hostmanagementpage.class.php:1100 -msgid "Additional MACs" -msgstr "附加的MAC" +msgid "Link Pushbullet Account" +msgstr "链接Pushbullet账户" -#: lib/pages/hostmanagementpage.class.php:1113 #, fuzzy -msgid "Host description" -msgstr "主机描述" +msgid "Link Pushbullet Account Fail" +msgstr "链接Pushbullet账户" -#: lib/pages/hostmanagementpage.class.php:1263 #, fuzzy -msgid "Host general" -msgstr "主机内核" - -#: lib/pages/hostmanagementpage.class.php:1337 -msgid "Please enter a hostname" -msgstr "请输入主机名" +msgid "Link Pushbullet Account Success" +msgstr "链接Pushbullet账户" -#: lib/pages/hostmanagementpage.class.php:1342 -msgid "Please enter a valid hostname" -msgstr "请输入一个有效的主机名" +msgid "Link Slack Account" +msgstr "链接松弛账户" -#: lib/pages/hostmanagementpage.class.php:1345 #, fuzzy -msgid "Please use another hostname" -msgstr "请输入主机名" +msgid "Link Slack Account Fail" +msgstr "链接松弛账户" -#: lib/pages/hostmanagementpage.class.php:1349 #, fuzzy -msgid "Please enter a mac address" -msgstr "请输入一个有效的IP地址" +msgid "Link Slack Account Success" +msgstr "链接松弛账户" -#: lib/pages/hostmanagementpage.class.php:1353 -#: lib/pages/hostmanagementpage.class.php:1357 #, fuzzy -msgid "Please enter a valid mac address" -msgstr "请输入一个有效的IP地址" +msgid "Link must be a string" +msgstr "事件必须是字符串" -#: lib/pages/hostmanagementpage.class.php:1363 -msgid "Cannot change image when in tasking" -msgstr "" +msgid "Linux" +msgstr "Linux的" -#: lib/pages/hostmanagementpage.class.php:1485 #, fuzzy -msgid "Host Printers" -msgstr "出口打印机" +msgid "List" +msgstr "线" -#: lib/pages/hostmanagementpage.class.php:1495 -#, fuzzy -msgid "Host printer configuration" -msgstr "主机打印机配置" +#, php-format +msgid "List All %s" +msgstr "列表中的所有%s" -#: lib/pages/hostmanagementpage.class.php:1500 -#, fuzzy -msgid "Select management level for this host" -msgstr "该主机中选择管理水平" +#, fuzzy, php-format +msgid "List all roles" +msgstr "列表中的所有%s" -#: lib/pages/hostmanagementpage.class.php:1602 -msgid "Check here to see what printers can be added" -msgstr "请查看这里以可以添加哪些打印机" +#, fuzzy, php-format +msgid "List all rules" +msgstr "列表中的所有%s" -#: lib/pages/hostmanagementpage.class.php:1617 -#, fuzzy -msgid "Add selected printers" -msgstr "打印机" +msgid "Listener must be an array or an object" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:1639 -msgid "Default" -msgstr "默认" +msgid "Load Average" +msgstr "平均负载" -#: lib/pages/hostmanagementpage.class.php:1702 -#, fuzzy -msgid "Update/Remove printers" -msgstr "删除选定的打印机" +msgid "Load MAC Vendors" +msgstr "加载MAC供应商" -#: lib/pages/hostmanagementpage.class.php:1709 #, fuzzy -msgid "Update default printer" -msgstr "更新打印机" +msgid "Load failed" +msgstr "加载失败: %s" -#: lib/pages/hostmanagementpage.class.php:1804 #, fuzzy -msgid "Host Snapins" -msgstr "出口Snapins" +msgid "Loading data to field" +msgstr "加载数据到现场%s" -#: lib/pages/hostmanagementpage.class.php:1827 -msgid "Check here to see what snapins can be added" -msgstr "请查看这里以可以添加什么snapins" +msgid "Location" +msgstr "位置" -#: lib/pages/hostmanagementpage.class.php:1835 #, fuzzy -msgid "Add Snapins" -msgstr "添加管理单元(S)" +msgid "Location Association" +msgstr "图像协会" -#: lib/pages/hostmanagementpage.class.php:1911 #, fuzzy -msgid "Remove snapins" -msgstr "删除管理单元(S)" +msgid "Location Create Fail" +msgstr "更新管理单元" -#: lib/pages/hostmanagementpage.class.php:2127 #, fuzzy -msgid "Host FOG Client Module configuration" -msgstr "主机打印机配置" +msgid "Location Create Success" +msgstr "更新管理单元" -#: lib/pages/hostmanagementpage.class.php:2137 #, fuzzy -msgid "Host module settings" -msgstr "主机描述" - -#: lib/pages/hostmanagementpage.class.php:2258 -msgid "Host Screen Resolution" -msgstr "主机屏幕分辨率" - -#: lib/pages/hostmanagementpage.class.php:2329 -msgid "Host Auto Logout" -msgstr "" - -#: lib/pages/hostmanagementpage.class.php:2437 -msgid "Other Tag #1" -msgstr "其他标签#1" +msgid "Location General" +msgstr "启用管理单元" -#: lib/pages/hostmanagementpage.class.php:2444 -msgid "Other Tag #2" -msgstr "其他标签#2" +msgid "Location Management" +msgstr "位置管理" -#: lib/pages/hostmanagementpage.class.php:2453 -msgid "System Serial Number" -msgstr "系统序列号" +msgid "Location Name" +msgstr "地点名称" -#: lib/pages/hostmanagementpage.class.php:2454 #, fuzzy -msgid "System UUID" -msgstr "系统正常运行时间" - -#: lib/pages/hostmanagementpage.class.php:2459 -msgid "Motherboard Manufacturer" -msgstr "主板制造商" +msgid "Location Update Fail" +msgstr "更新位置" -#: lib/pages/hostmanagementpage.class.php:2460 -msgid "Motherboard Product Name" -msgstr "主板产品名称" +#, fuzzy +msgid "Location Update Success" +msgstr "安装/升级成功!" -#: lib/pages/hostmanagementpage.class.php:2461 -msgid "Motherboard Version" -msgstr "主板版本" +#, fuzzy +msgid "Location added!" +msgstr "地点名称" -#: lib/pages/hostmanagementpage.class.php:2462 -msgid "Motherboard Serial Number" -msgstr "主板序列号" +msgid "Location already Exists, please try again." +msgstr "位置已经存在,请重试。" -#: lib/pages/hostmanagementpage.class.php:2463 -msgid "Motherboard Asset Tag" -msgstr "主板资产标签" +msgid "Location is a plugin that allows your FOG Server" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:2466 -msgid "CPU Normal Speed" -msgstr "CPU正常速度" +#, fuzzy +msgid "Location update failed!" +msgstr "管理单元更新失败" -#: lib/pages/hostmanagementpage.class.php:2469 -msgid "Hard Disk Model" -msgstr "硬盘型号" +#, fuzzy +msgid "Location updated!" +msgstr "更新位置" -#: lib/pages/hostmanagementpage.class.php:2470 -msgid "Hard Disk Firmware" -msgstr "硬盘的固件" +msgid "Location/Deployed" +msgstr "位置/部署" -#: lib/pages/hostmanagementpage.class.php:2471 -msgid "Hard Disk Serial Number" -msgstr "硬盘序列号" +msgid "Locations" +msgstr "位置" -#: lib/pages/hostmanagementpage.class.php:2483 -msgid "Host Hardware Inventory" -msgstr "主机硬件清单" +msgid "Log Viewer" +msgstr "日志查看器" -#: lib/pages/hostmanagementpage.class.php:2537 -#: lib/reports/virus_history.report.php:34 -#: lib/reports/virus_history.report.php:41 -msgid "Virus Name" -msgstr "病毒名称" +msgid "Login" +msgstr "登录" -#: lib/pages/hostmanagementpage.class.php:2582 -#: lib/reports/virus_history.report.php:92 -msgid "Quarantine" -msgstr "隔离" +msgid "Login History" +msgstr "登录历史记录" -#: lib/pages/hostmanagementpage.class.php:2619 #, fuzzy -msgid "Host Virus History" -msgstr "病毒历史" +msgid "Login Users" +msgstr "登录" -#: lib/pages/hostmanagementpage.class.php:2632 #, fuzzy -msgid "Clear all history" -msgstr "清除所有历史" +msgid "Login accepted" +msgstr "登录" -#: lib/pages/hostmanagementpage.class.php:2642 #, fuzzy -msgid "Virus Report" -msgstr "报告" +msgid "Login failed" +msgstr "加载失败: %s" -#: lib/pages/hostmanagementpage.class.php:2746 #, fuzzy -msgid "Logout not found" -msgstr "未发现记录,错误: %s" +msgid "Login time" +msgstr "登录" -#: lib/pages/hostmanagementpage.class.php:2748 -msgid "Setting logout to one second prior to next login" +msgid "Login with the FOG credentials and you will see the menu" msgstr "" -#: lib/pages/hostmanagementpage.class.php:2795 -msgid "Host Login History" -msgstr "主机登录历史" +msgid "Logout" +msgstr "登出" -#: lib/pages/hostmanagementpage.class.php:2805 #, fuzzy -msgid "View History For" -msgstr "查看历史记录" +msgid "Logout not found" +msgstr "未发现记录,错误: %s" -#: lib/pages/hostmanagementpage.class.php:2815 -#, fuzzy -msgid "Selected Logins" -msgstr "打印机" +msgid "MAC" +msgstr "苹果电脑" -#: lib/pages/hostmanagementpage.class.php:2825 #, fuzzy -msgid "History Graph" -msgstr "查看历史记录" - -#: lib/pages/hostmanagementpage.class.php:2858 -msgid "Engineer" -msgstr "工程师" +msgid "MAC Address" +msgstr "MAC地址列表" -#: lib/pages/hostmanagementpage.class.php:2859 -#, fuzzy -msgid "Imaged From" -msgstr "成像" +msgid "MAC Address List" +msgstr "MAC地址列表" -#: lib/pages/hostmanagementpage.class.php:2860 -#: lib/pages/imagemanagementpage.class.php:1527 -#: lib/reports/imaging_log.report.php:186 -msgid "Start" -msgstr "开始" +msgid "MAC Address Manufacturer Listing" +msgstr "MAC地址制造商上市" -#: lib/pages/hostmanagementpage.class.php:2861 -#: lib/reports/imaging_log.report.php:187 -msgid "End" -msgstr "结束" +msgid "MAC Format is invalid" +msgstr "MAC格式无效" -#: lib/pages/hostmanagementpage.class.php:2862 -#: lib/pages/hostmanagementpage.class.php:3023 -#: lib/reports/imaging_log.report.php:188 -#: lib/reports/imaging_log.report.php:213 -msgid "Duration" -msgstr "为期" +msgid "MAC address is already in use by another host" +msgstr "MAC地址已被其他主机使用" -#: lib/pages/hostmanagementpage.class.php:2988 -msgid "Host Imaging History" -msgstr "主持人成像历史" +msgid "MB Asset" +msgstr "MB资产" -#: lib/pages/hostmanagementpage.class.php:3020 -#: lib/pages/imagemanagementpage.class.php:1575 -#: lib/pages/taskmanagementpage.class.php:75 -#: lib/pages/taskmanagementpage.class.php:808 -#: lib/pages/taskmanagementpage.class.php:937 -#: lib/pages/taskmanagementpage.class.php:1136 -#: lib/reports/imaging_log.report.php:210 -msgid "Start Time" -msgstr "开始时间" +msgid "MB Manufacturer" +msgstr "MB厂商" -#: lib/pages/hostmanagementpage.class.php:3021 -#: lib/reports/imaging_log.report.php:212 -msgid "End Time" -msgstr "时间结束" +msgid "MB Name" +msgstr "MB名称" -#: lib/pages/hostmanagementpage.class.php:3024 -#: lib/reports/snapin_log.report.php:151 -msgid "Return Code" -msgstr "返回代码" +msgid "MB Serial" +msgstr "MB系列" -#: lib/pages/hostmanagementpage.class.php:3076 -#, fuzzy -msgid "Snapin task not completed" -msgstr "管理单元无效" +msgid "MB Version" +msgstr "MB版本" -#: lib/pages/hostmanagementpage.class.php:3078 -msgid "No complete time recorded" +msgid "MSI" msgstr "" -#: lib/pages/hostmanagementpage.class.php:3106 -#, fuzzy -msgid "Host Snapin History" -msgstr "历史管理单元" - -#: lib/pages/hostmanagementpage.class.php:3143 -msgid "Host approved" -msgstr "主机批准" - -#: lib/pages/hostmanagementpage.class.php:3145 -msgid "Host approval failed." -msgstr "主机批准失败。" - -#: lib/pages/hostmanagementpage.class.php:3158 -#, fuzzy -msgid "Approve Host" -msgstr "批准该主机?" - -#: lib/pages/hostmanagementpage.class.php:3165 -msgid "Approve this host?" -msgstr "批准该主机?" - -#: lib/pages/hostmanagementpage.class.php:3186 #, fuzzy -msgid "Approved" -msgstr "主机批准" +msgid "Machine Details" +msgstr "管理单元返回详细" -#: lib/pages/hostmanagementpage.class.php:3213 -#, fuzzy -msgid "All Pending MACs approved" -msgstr "所有待定的MAC批准。" +msgid "Main Colors" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3665 -#, fuzzy -msgid "Virus items removed!" -msgstr "病毒清除" +msgid "Main Menu" +msgstr "主菜单" -#: lib/pages/hostmanagementpage.class.php:3671 -msgid "Host Update Failed" -msgstr "主机更新失败" +msgid "Main fallback pairings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3693 -#, fuzzy -msgid "Host updated!" -msgstr "用户更新" +msgid "Main pairings" +msgstr "" -#: lib/pages/hostmanagementpage.class.php:3694 #, fuzzy -msgid "Host Update Success" -msgstr "安装/升级成功!" +msgid "Make Changes" +msgstr "保存更改" -#: lib/pages/hostmanagementpage.class.php:3702 #, fuzzy -msgid "Host Update Fail" -msgstr "主机更新失败" - -#: lib/pages/hostmanagementpage.class.php:3743 -msgid "Failed to create new Group" -msgstr "无法创建新的组" +msgid "Make Changes?" +msgstr "保存更改" -#: lib/pages/hostmanagementpage.class.php:3747 #, fuzzy -msgid "Successfully added selected hosts to the group!" -msgstr "成功关联主机与本集团" +msgid "Make Printer Changes" +msgstr "保存更改" -#: lib/pages/hostmanagementpage.class.php:3748 #, fuzzy -msgid "Host Add to Group Success" -msgstr "安装/升级成功!" +msgid "Make Snapin Changes" +msgstr "保存更改" -#: lib/pages/hostmanagementpage.class.php:3755 #, fuzzy -msgid "Host Add to Group Fail" -msgstr "添加到组" +msgid "Make changes?" +msgstr "保存更改" -#: lib/pages/imagemanagementpage.class.php:89 -#: lib/pages/imagemanagementpage.class.php:365 -#: lib/pages/imagemanagementpage.class.php:534 -#: lib/pages/imagemanagementpage.class.php:899 -msgid "Partimage" -msgstr "Partimage" +msgid "Management" +msgstr "管理" -#: lib/pages/imagemanagementpage.class.php:90 -msgid "Partclone" -msgstr "Partclone" +msgid "Management Login" +msgstr "管理登录" -#: lib/pages/imagemanagementpage.class.php:97 -msgid "Primary Storage Group" -msgstr "主存储组" +msgid "Management Password" +msgstr "管理密码" -#: lib/pages/imagemanagementpage.class.php:132 -#: lib/pages/imagemanagementpage.class.php:568 -#: lib/pages/imagemanagementpage.class.php:933 -#: lib/pages/pluginmanagementpage.class.php:482 -#: lib/pages/taskmanagementpage.class.php:74 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:488 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:601 -#: lib/reports/host_list.report.php:182 lib/reports/host_list.report.php:194 -#: lib/reports/host_list.report.php:279 -#: lib/reports/hosts_and_users.report.php:170 -#: lib/reports/hosts_and_users.report.php:188 -#: lib/reports/hosts_and_users.report.php:285 -#: lib/reports/imaging_log.report.php:207 -#: lib/reports/product_keys.report.php:45 -#: lib/reports/product_keys.report.php:58 -#: lib/reports/product_keys.report.php:97 -msgid "Image Name" -msgstr "图片名称" +msgid "Management Username" +msgstr "管理用户名" -#: lib/pages/imagemanagementpage.class.php:134 -msgid "Image Size: ON CLIENT" -msgstr "图片大小:在客户端" +msgid "Master Node" +msgstr "主节点" -#: lib/pages/imagemanagementpage.class.php:143 -msgid "Image Size: ON SERVER" -msgstr "图像大小:服务器" +msgid "Max" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:151 -#, fuzzy -msgid "Captured" -msgstr "创建" +msgid "Max Clients" +msgstr "最大客户" -#: lib/pages/imagemanagementpage.class.php:170 -#, fuzzy -msgid "Last captured" -msgstr "主机创建" +msgid "Max Size" +msgstr "最大尺寸" -#: lib/pages/imagemanagementpage.class.php:285 -msgid "Not set" -msgstr "没有设置" +msgid "Members" +msgstr "会员" -#: lib/pages/imagemanagementpage.class.php:298 -#, fuzzy -msgid "Invalid date" -msgstr "无效类型" +msgid "Membership" +msgstr "籍" -#: lib/pages/imagemanagementpage.class.php:329 -#: lib/pages/snapinmanagementpage.class.php:260 -#, fuzzy -msgid "Not protected" -msgstr "不受保护" +msgid "Memory" +msgstr "记忆" -#: lib/pages/imagemanagementpage.class.php:336 -#: lib/pages/imagemanagementpage.class.php:977 -#: lib/pages/snapinmanagementpage.class.php:266 -msgid "Protected" -msgstr "受保护" +msgid "Menu Background File" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:352 -#: lib/pages/snapinmanagementpage.class.php:281 -#, fuzzy -msgid "Disabled" -msgstr "启用" +msgid "Menu Hide/No Menu settings" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:362 #, fuzzy -msgid "Partclone Compressed" -msgstr "Partclone" +msgid "Menu Item" +msgstr "菜单项:" -#: lib/pages/imagemanagementpage.class.php:368 -msgid "Partclone Compressed 200MiB split" -msgstr "" +msgid "Menu Item or title cannot be blank" +msgstr "菜单项或标题不能为空" -#: lib/pages/imagemanagementpage.class.php:374 -msgid "Partclone Uncompressed 200MiB split" -msgstr "" +#, fuzzy +msgid "Menu Show with" +msgstr "菜单显示有:" -#: lib/pages/imagemanagementpage.class.php:377 #, fuzzy -msgid "ZSTD Compressed" -msgstr "Partclone" +msgid "Menu Timeout" +msgstr "隐藏菜单超时" -#: lib/pages/imagemanagementpage.class.php:380 -msgid "ZSTD Compressed 200MiB split" +msgid "Menu colors, pairings, settings" msgstr "" -#: lib/pages/imagemanagementpage.class.php:445 -msgid "New Image" -msgstr "新图片" +msgid "Message" +msgstr "信息" -#: lib/pages/imagemanagementpage.class.php:577 -#: lib/pages/imagemanagementpage.class.php:942 -msgid "Image Description" -msgstr "图片说明" +msgid "Method does not exist" +msgstr "方法不存在" -#: lib/pages/imagemanagementpage.class.php:587 -#: lib/pages/imagemanagementpage.class.php:949 -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:134 -msgid "Operating System" -msgstr "操作系统" +msgid "Microsoft AD" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:612 -#: lib/pages/imagemanagementpage.class.php:974 -msgid "Partition" -msgstr "划分" +msgid "Midnight" +msgstr "午夜" -#: lib/pages/imagemanagementpage.class.php:615 -#: lib/pages/imagemanagementpage.class.php:983 -msgid "Image Enabled" -msgstr "图片启用" +msgid "Mind you" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:619 -#: lib/pages/imagemanagementpage.class.php:989 -#: lib/pages/snapinmanagementpage.class.php:648 -#: lib/pages/snapinmanagementpage.class.php:1150 -msgid "Replicate?" -msgstr "复制?" +msgid "Minute value is not valid" +msgstr "分钟值无效" -#: lib/pages/imagemanagementpage.class.php:623 -#: lib/pages/imagemanagementpage.class.php:995 -msgid "Compression" -msgstr "压缩" +msgid "Miscellaneous" +msgstr "杂" -#: lib/pages/imagemanagementpage.class.php:636 -#: lib/pages/imagemanagementpage.class.php:1008 -msgid "Image Manager" -msgstr "图像管理器" +msgid "Missing a temporary folder" +msgstr "缺少一个临时文件夹" -#: lib/pages/imagemanagementpage.class.php:639 #, fuzzy -msgid "Create Image" -msgstr "创建日期" - -#: lib/pages/imagemanagementpage.class.php:709 -#: lib/pages/imagemanagementpage.class.php:1360 -msgid "An image already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Missing one or more extensions." +msgstr "缺少扩展" -#: lib/pages/imagemanagementpage.class.php:717 -#: lib/pages/imagemanagementpage.class.php:1369 -#: lib/pages/snapinmanagementpage.class.php:778 -#: lib/pages/snapinmanagementpage.class.php:1540 #, fuzzy -msgid "Please choose a different name" -msgstr "请选择一个图像" +msgid "Mobile Group" +msgstr "修改组" -#: lib/pages/imagemanagementpage.class.php:718 -#: lib/pages/imagemanagementpage.class.php:1370 -#: lib/pages/snapinmanagementpage.class.php:779 -#: lib/pages/snapinmanagementpage.class.php:1541 -#, fuzzy -msgid "this one is reserved for FOG" -msgstr "请选择一个不同的名字,这个人是留给雾。" +msgid "Mode" +msgstr "模式" -#: lib/pages/imagemanagementpage.class.php:726 -#: lib/pages/imagemanagementpage.class.php:1386 -#, fuzzy -msgid "Please choose a different path" -msgstr "请选择一个图像" +msgid "Model" +msgstr "模型" -#: lib/pages/imagemanagementpage.class.php:727 -#: lib/pages/imagemanagementpage.class.php:1387 -msgid "this one is already in use by another image" -msgstr "" +msgid "Module MD5" +msgstr "模块MD5" -#: lib/pages/imagemanagementpage.class.php:744 -#, fuzzy -msgid "Add image failed!" -msgstr "添加管理单元失败!" +msgid "Module Name" +msgstr "模块名称" -#: lib/pages/imagemanagementpage.class.php:754 -#, fuzzy -msgid "Image added!" -msgstr "图片名称" +msgid "Module Type" +msgstr "模块类型" -#: lib/pages/imagemanagementpage.class.php:755 #, fuzzy -msgid "Image Create Success" -msgstr "用户创建" +msgid "Module Update Fail" +msgstr "集团创建失败" -#: lib/pages/imagemanagementpage.class.php:763 #, fuzzy -msgid "Image Create Fail" +msgid "Module Update Success" msgstr "用户创建" -#: lib/pages/imagemanagementpage.class.php:1041 #, fuzzy -msgid "Image General" -msgstr "更新打印机" +msgid "Module updated!" +msgstr "集团补充" -#: lib/pages/imagemanagementpage.class.php:1132 #, fuzzy -msgid "Image Storage Groups" -msgstr "存储组" +msgid "Modules added/updated successfully!" +msgstr "模块新增/更新" -#: lib/pages/imagemanagementpage.class.php:1145 -#: lib/pages/snapinmanagementpage.class.php:1304 -#, fuzzy -msgid "Check here to see what storage groups can be added" -msgstr "请查看这里以可以添加什么snapins" +msgid "Month value is not valid" +msgstr "一个月值无效" -#: lib/pages/imagemanagementpage.class.php:1154 -#: lib/pages/snapinmanagementpage.class.php:1313 -#, fuzzy -msgid "Add Storage Groups" -msgstr "添加存储组" +msgid "Monthly" +msgstr "每月一次" -#: lib/pages/imagemanagementpage.class.php:1161 -#: lib/pages/snapinmanagementpage.class.php:1320 -#, fuzzy -msgid "Add selected storage groups" -msgstr "打印机" +msgid "Motherboard Asset Tag" +msgstr "主板资产标签" -#: lib/pages/imagemanagementpage.class.php:1247 -#: lib/pages/snapinmanagementpage.class.php:1406 -#, fuzzy -msgid "Update/Remove Storage Groups" -msgstr "删除选定的打印机" +msgid "Motherboard Manufacturer" +msgstr "主板制造商" + +msgid "Motherboard Product Name" +msgstr "主板产品名称" + +msgid "Motherboard Serial Number" +msgstr "主板序列号" + +msgid "Motherboard Version" +msgstr "主板版本" + +msgid "Multicast" +msgstr "组播" -#: lib/pages/imagemanagementpage.class.php:1254 -#: lib/pages/snapinmanagementpage.class.php:1413 #, fuzzy -msgid "Update primary group" -msgstr "更新主要组" +msgid "Multicast Image" +msgstr "组播" + +msgid "Multicast Quick Deploy" +msgstr "组播快速部署" + +msgid "Multicast session created" +msgstr "组播会话创建" -#: lib/pages/imagemanagementpage.class.php:1265 -#: lib/pages/snapinmanagementpage.class.php:1424 #, fuzzy -msgid "Remove selected groups" -msgstr "删除选定snapins" +msgid "Multicast tasks from groups" +msgstr "MulticastTask" + +msgid "MulticastTask" +msgstr "MulticastTask" + +msgid "Must be 0 through 23 for hours in a day." +msgstr "" + +msgid "Must be 0 through 59 for minutes in an hour." +msgstr "" + +msgid "Must be encrypted" +msgstr "必须加密" + +msgid "Must have a name to create the table" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1415 -#: lib/pages/snapinmanagementpage.class.php:1662 #, fuzzy -msgid "No groups selected to be removed" -msgstr "没有组选中,没有输入新的组名" +msgid "Must have an image associated" +msgstr "必须有管理单元与组关联" + +msgid "Must use an" +msgstr "" + +msgid "MySQL Administrator or by running" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1420 -#: lib/pages/snapinmanagementpage.class.php:1667 -#, fuzzy -msgid "You must have at least one group associated" -msgstr "您必须至少有一个存储组" +msgid "N/A" +msgstr "N / A" -#: lib/pages/imagemanagementpage.class.php:1433 -#, fuzzy -msgid "Image update failed!" -msgstr "图片更新" +msgid "NAME" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1439 -#, fuzzy -msgid "Image updated!" -msgstr "图片更新" +msgid "NOT" +msgstr "不" -#: lib/pages/imagemanagementpage.class.php:1440 #, fuzzy -msgid "Image Update Success" -msgstr "安装/升级成功!" +msgid "NOTE" +msgstr "不" -#: lib/pages/imagemanagementpage.class.php:1448 #, fuzzy -msgid "Image Update Fail" -msgstr "图片更新" +msgid "NOTICE" +msgstr "不" -#: lib/pages/imagemanagementpage.class.php:1490 -msgid "Session Name" -msgstr "会话名称" +msgid "Name" +msgstr "名称" -#: lib/pages/imagemanagementpage.class.php:1498 -msgid "Client Count" -msgstr "客户端计数" +msgid "Name Change/AD Join Forced reboot" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1506 -msgid "Timeout" -msgstr "时间到" +msgid "Need more support" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1508 -msgid "minutes" -msgstr "分钟" +msgid "Need the table name to drop" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1517 -msgid "Select Image" -msgstr "选择图片" +msgid "Needs a 256-bit key" +msgstr "" -#: lib/pages/imagemanagementpage.class.php:1524 -#, fuzzy -msgid "Start Session" -msgstr "开始多播会话" +msgid "Needs action string of ask, get, or list" +msgstr "需要问,得到的,或列表的操作字符串" -#: lib/pages/imagemanagementpage.class.php:1548 -#, fuzzy -msgid "Multicast Image" -msgstr "组播" +msgid "Network Information" +msgstr "网络信息" -#: lib/pages/imagemanagementpage.class.php:1558 -msgid "Start Multicast Session" -msgstr "开始多播会话" +#, fuzzy +msgid "Network Installer" +msgstr "网络打印机" -#: lib/pages/imagemanagementpage.class.php:1573 -#: lib/pages/taskmanagementpage.class.php:806 -#: lib/pages/taskmanagementpage.class.php:1134 -msgid "Task Name" -msgstr "任务名称" +msgid "Network Printer" +msgstr "网络打印机" -#: lib/pages/imagemanagementpage.class.php:1574 -msgid "Clients" -msgstr "客户端" +msgid "New" +msgstr "新" -#: lib/pages/imagemanagementpage.class.php:1576 -msgid "Percent" -msgstr "百分" +msgid "New Broadcast Address" +msgstr "新的广播地址" -#: lib/pages/imagemanagementpage.class.php:1578 -msgid "Stop Task" -msgstr "停止任务" +msgid "New Client and Utilities" +msgstr "新客户端和实用程序" -#: lib/pages/imagemanagementpage.class.php:1647 #, fuzzy -msgid "Current Sessions" -msgstr "图像协会" +msgid "New Event" +msgstr "添加事件" -#: lib/pages/imagemanagementpage.class.php:1674 -msgid "Please input a session name" -msgstr "请输入会话名称" +msgid "New Group" +msgstr "新集团" -#: lib/pages/imagemanagementpage.class.php:1680 -msgid "Please choose an image" -msgstr "请选择一个图像" +msgid "New Host" +msgstr "新建主机" -#: lib/pages/imagemanagementpage.class.php:1683 -msgid "Session with that name already exists" -msgstr "会话使用该名称已经存在" +msgid "New Image" +msgstr "新图片" -#: lib/pages/imagemanagementpage.class.php:1687 -msgid "Session name cannot be the same as an existing hostname" -msgstr "会话名称不能相同的现有的主机名" +msgid "New LDAP Server" +msgstr "新建LDAP服务器" + +msgid "New Location" +msgstr "新位置" -#: lib/pages/imagemanagementpage.class.php:1710 #, fuzzy -msgid "Please wait until a slot is open" -msgstr "请输入访问令牌" +msgid "New Role" +msgstr "新菜单" -#: lib/pages/imagemanagementpage.class.php:1711 #, fuzzy -msgid "There are currently" -msgstr "有" +msgid "New Rule" +msgstr "新菜单" -#: lib/pages/imagemanagementpage.class.php:1713 -msgid "tasks in queue" -msgstr "" +msgid "New Search" +msgstr "新搜索" -#: lib/pages/imagemanagementpage.class.php:1714 #, fuzzy -msgid "Your server only allows" -msgstr "您只能分配" +msgid "New Site" +msgstr "添加新的管理单元" -#: lib/pages/imagemanagementpage.class.php:1732 -msgid "Failed to create Session" -msgstr "无法创建会话" +#, fuzzy +msgid "New Snapin" +msgstr "添加新的管理单元" -#: lib/pages/imagemanagementpage.class.php:1742 -msgid "Multicast session created" -msgstr "组播会话创建" +#, fuzzy +msgid "New Storage Group" +msgstr "存储组" -#: lib/pages/imagemanagementpage.class.php:1744 -msgid "has been started on port" -msgstr "已经开始在端口" +#, fuzzy +msgid "New Storage Node" +msgstr "存储节点" -#: lib/pages/imagemanagementpage.class.php:1775 -msgid "Cancelled task" -msgstr "取消任务" +#, fuzzy +msgid "New Subnetgroup" +msgstr "存储组" -#: lib/pages/pluginmanagementpage.class.php:74 -msgid "Plugin Name" -msgstr "插件名称" +msgid "New Task State" +msgstr "新的任务状态" -#: lib/pages/pluginmanagementpage.class.php:299 -msgid "Unable to determine plugin details." -msgstr "无法确定插件的详细信息。" +msgid "New Task Type" +msgstr "键入新任务" -#: lib/pages/pluginmanagementpage.class.php:320 -#: lib/plugins/example/html/run.php:40 -msgid "Plugin Description" -msgstr "插件说明" +msgid "New User" +msgstr "新用户" -#: lib/pages/pluginmanagementpage.class.php:326 -msgid "Plugin Installation" -msgstr "插件安装" +#, fuzzy +msgid "New Windows Key" +msgstr "Windows 8的" -#: lib/pages/pluginmanagementpage.class.php:326 #, fuzzy -msgid "This plugin is not installed" -msgstr "这个插件是当前未安装,你想现在安装?" +msgid "New iPXE Menu" +msgstr "新菜单" -#: lib/pages/pluginmanagementpage.class.php:328 #, fuzzy -msgid "would you like to install it now" -msgstr "这个插件是当前未安装,你想现在安装?" +msgid "New key must be a string" +msgstr "事件必须是字符串" -#: lib/pages/pluginmanagementpage.class.php:333 #, fuzzy -msgid "Install Plugin" -msgstr "安装插件" +msgid "New power management task" +msgstr "用户管理" -#: lib/pages/pluginmanagementpage.class.php:383 -msgid "Reboot after deploy" -msgstr "部署后重新启动" +msgid "No" +msgstr "没有" -#: lib/pages/pluginmanagementpage.class.php:384 -msgid "Shutdown after deploy" -msgstr "部署后关机" +msgid "No Active Snapin Jobs Found For Host" +msgstr "无活动管理单元乔布斯发现主机" -#: lib/pages/pluginmanagementpage.class.php:393 -#, fuzzy -msgid "Basic Settings" -msgstr "设置" +msgid "No Active Task found for Host" +msgstr "发现主机没有活动任务" -#: lib/pages/pluginmanagementpage.class.php:428 -msgid "DMI Field" -msgstr "DMI场" +msgid "No Data" +msgstr "没有数据" -#: lib/pages/pluginmanagementpage.class.php:431 #, fuzzy -msgid "After image Action" -msgstr "集团定位" +msgid "No Data Available" +msgstr "不可用" -#: lib/pages/pluginmanagementpage.class.php:449 -#, fuzzy -msgid "Image Associations" -msgstr "图像协会" +msgid "No FOGPage Class found for this node" +msgstr "没有FOGPage类中找到此节点" -#: lib/pages/pluginmanagementpage.class.php:452 -msgid "Image Definition" -msgstr "图像清晰度" +msgid "No Host found for MAC Address" +msgstr "找不到主机MAC地址" -#: lib/pages/pluginmanagementpage.class.php:455 -msgid "DMI Result" -msgstr "DMI结果" +msgid "No Image specified" +msgstr "没有指定的Image" + +msgid "No Menu" +msgstr "无菜单" + +msgid "No Printer Management" +msgstr "没有打印机管理" -#: lib/pages/pluginmanagementpage.class.php:476 #, fuzzy -msgid "Image to DMI Mappings" -msgstr "添加图片到DMI协会" +msgid "No Site" +msgstr "没有设置" -#: lib/pages/pluginmanagementpage.class.php:483 -#: lib/reports/host_list.report.php:184 -#: lib/reports/hosts_and_users.report.php:177 -#: lib/reports/product_keys.report.php:47 -msgid "OS Name" -msgstr "操作系统名称" +msgid "No access is allowed" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:484 -msgid "DMI Key" -msgstr "DMI关键" +msgid "No activity information available for this group" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:531 -#, fuzzy -msgid "Current Associations" -msgstr "图像协会" +msgid "No class value sent" +msgstr "发送无类值" -#: lib/pages/pluginmanagementpage.class.php:555 -#, fuzzy -msgid "Remove Selected?" -msgstr "删除选定snapins" +msgid "No complete time recorded" +msgstr "" + +msgid "No connection available" +msgstr "没有可用的连接" + +msgid "No connection to the database" +msgstr "没有连接到数据库" + +msgid "No data returned" +msgstr "无数据返回" -#: lib/pages/pluginmanagementpage.class.php:565 #, fuzzy -msgid "Remove Associations" -msgstr "图像协会" +msgid "No data to insert" +msgstr "无数据返回" -#: lib/pages/pluginmanagementpage.class.php:619 -msgid "Invalid Plugin Passed" -msgstr "无效的插件传递" +msgid "No database to work off" +msgstr "没有数据库工作关闭" -#: lib/pages/pluginmanagementpage.class.php:625 -msgid "Failed to install plugin" -msgstr "无法安装插件" +msgid "No directories defined to be cleaned up" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:636 -msgid "Failed to save plugin" -msgstr "无法保存插件" +msgid "No fields passed" +msgstr "否字段通过" + +#, fuzzy +msgid "No file uploaded!" +msgstr "没有文件上传" + +msgid "No file was uploaded" +msgstr "没有文件被上传" -#: lib/pages/pluginmanagementpage.class.php:645 -msgid "Plugin Installed!" -msgstr "插件安装好了!" +msgid "No friendly name defined" +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:666 -#, fuzzy -msgid "Must have an image associated" -msgstr "必须有管理单元与组关联" +msgid "No groups defined, search will return all hosts." +msgstr "" -#: lib/pages/pluginmanagementpage.class.php:674 -msgid "Failed to save assignment" -msgstr "无法保存分配" +#, fuzzy +msgid "No groups selected to be removed" +msgstr "没有组选中,没有输入新的组名" -#: lib/pages/pluginmanagementpage.class.php:676 -msgid "Assignment saved successfully" -msgstr "转让成功保存" +#, fuzzy +msgid "No hosts available to task" +msgstr "在任务主机" -#: lib/pages/pluginmanagementpage.class.php:691 #, fuzzy -msgid "Destroyed assignments" -msgstr "销毁作业" +msgid "No hosts to task" +msgstr "在任务主机" -#: lib/pages/pluginmanagementpage.class.php:693 -msgid "Destroyed assignment" -msgstr "销毁作业" +msgid "No icons found" +msgstr "发现没有图标" -#: lib/pages/printermanagementpage.class.php:83 -msgid "Printer Name" -msgstr "打印机名称" +msgid "No image specified" +msgstr "没有指定的图像" -#: lib/pages/printermanagementpage.class.php:86 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:74 -msgid "Port" -msgstr "港口" +#, fuzzy +msgid "No images associated with this group as master" +msgstr "没有与此主机关联snapins" -#: lib/pages/printermanagementpage.class.php:89 #, fuzzy -msgid "Config File" -msgstr "打印机配置文件" +msgid "No items found" +msgstr "发现没有图标" + +msgid "No key being requested" +msgstr "没有要求的关键" -#: lib/pages/printermanagementpage.class.php:212 -#: lib/pages/printermanagementpage.class.php:620 #, fuzzy -msgid "Copy from existing" -msgstr "无法创建打印机" +msgid "No link established to the database" +msgstr "没有连接到数据库" + +msgid "No master nodes are enabled to delete this image" +msgstr "无主节点启用删除这张图片" + +msgid "No need to sync" +msgstr "" -#: lib/pages/printermanagementpage.class.php:242 -#: lib/pages/printermanagementpage.class.php:282 -#: lib/pages/printermanagementpage.class.php:331 -#: lib/pages/printermanagementpage.class.php:387 -#: lib/pages/printermanagementpage.class.php:650 -#: lib/pages/printermanagementpage.class.php:690 -#: lib/pages/printermanagementpage.class.php:739 -#: lib/pages/printermanagementpage.class.php:795 #, fuzzy -msgid "Printer Name/Alias" -msgstr "打印机别名" +msgid "No new tasks found" +msgstr "发送无有效类" -#: lib/pages/printermanagementpage.class.php:245 -#: lib/pages/printermanagementpage.class.php:285 -#: lib/pages/printermanagementpage.class.php:334 -#: lib/pages/printermanagementpage.class.php:390 -#: lib/pages/printermanagementpage.class.php:653 -#: lib/pages/printermanagementpage.class.php:693 -#: lib/pages/printermanagementpage.class.php:742 -#: lib/pages/printermanagementpage.class.php:798 -msgid "e.g." +msgid "No node associated" +msgstr "无关联的节点" + +msgid "No node associated with any addresses of this system" msgstr "" -#: lib/pages/printermanagementpage.class.php:253 -#: lib/pages/printermanagementpage.class.php:293 -#: lib/pages/printermanagementpage.class.php:342 -#: lib/pages/printermanagementpage.class.php:398 -#: lib/pages/printermanagementpage.class.php:661 -#: lib/pages/printermanagementpage.class.php:701 -#: lib/pages/printermanagementpage.class.php:750 -#: lib/pages/printermanagementpage.class.php:806 -msgid "Printer Description" -msgstr "打印机说明" +msgid "No open slots" +msgstr "没有开口槽" -#: lib/pages/printermanagementpage.class.php:300 -#: lib/pages/printermanagementpage.class.php:405 -#: lib/pages/printermanagementpage.class.php:708 -#: lib/pages/printermanagementpage.class.php:813 -msgid "Printer Port" -msgstr "打印机端口" +#, fuzzy +msgid "No query passed" +msgstr "没有查询发送" -#: lib/pages/printermanagementpage.class.php:349 -#: lib/pages/printermanagementpage.class.php:414 -#: lib/pages/printermanagementpage.class.php:757 -#: lib/pages/printermanagementpage.class.php:822 -msgid "Printer INF File" -msgstr "打印机INF文件" +msgid "No query result, use query() first" +msgstr "没有查询结果,使用query()首先" -#: lib/pages/printermanagementpage.class.php:357 -#: lib/pages/printermanagementpage.class.php:422 -#: lib/pages/printermanagementpage.class.php:765 -#: lib/pages/printermanagementpage.class.php:830 -msgid "Printer IP" -msgstr "打印机IP" +msgid "No query sent" +msgstr "没有查询发送" -#: lib/pages/printermanagementpage.class.php:430 -#: lib/pages/printermanagementpage.class.php:838 -msgid "Printer Model" -msgstr "打印机型号" +msgid "No results found" +msgstr "未找到结果" -#: lib/pages/printermanagementpage.class.php:438 -#: lib/pages/printermanagementpage.class.php:846 #, fuzzy -msgid "Printer Config File" -msgstr "服务配置" +msgid "No role selected" +msgstr "删除所选" -#: lib/pages/printermanagementpage.class.php:459 #, fuzzy -msgid "Create New Printer" -msgstr "新建%s" +msgid "No rule selected" +msgstr "删除所选" -#: lib/pages/printermanagementpage.class.php:473 #, fuzzy -msgid "Add New Printer" -msgstr "打印机" +msgid "No site" +msgstr "没有设置" -#: lib/pages/printermanagementpage.class.php:515 #, fuzzy -msgid "A name must be set" -msgstr "事件必须是字符串" +msgid "No snapins associated with this group as master" +msgstr "没有与此主机关联snapins" -#: lib/pages/printermanagementpage.class.php:518 -#, fuzzy -msgid "Printer name already exists" -msgstr "打印机已经存在" +msgid "No token passed to authenticate this host" +msgstr "" -#: lib/pages/printermanagementpage.class.php:545 #, fuzzy -msgid "Add printer failed!" -msgstr "添加管理单元失败!" +msgid "No valid Image defined for this host" +msgstr "没有找到主机定义图片" -#: lib/pages/printermanagementpage.class.php:551 -#, fuzzy -msgid "Printer added!" -msgstr "打印机名称" +msgid "No valid class sent" +msgstr "发送无有效类" -#: lib/pages/printermanagementpage.class.php:552 #, fuzzy -msgid "Printer Create Success" -msgstr "打印机已经存在" +msgid "No valid hosts found and" +msgstr "发送无有效类" -#: lib/pages/printermanagementpage.class.php:560 #, fuzzy -msgid "Printer Create Fail" -msgstr "打印机更新失败!" +msgid "No valid storage nodes found" +msgstr "无效的存储节点" -#: lib/pages/printermanagementpage.class.php:869 #, fuzzy -msgid "Printer General" -msgstr "打印机型号" +msgid "No valid tasks found" +msgstr "发送无有效类" -#: lib/pages/printermanagementpage.class.php:936 -#, fuzzy -msgid "A printer name is required!" -msgstr "图像名是必需的!" +msgid "No values passed" +msgstr "没有值传递" -#: lib/pages/printermanagementpage.class.php:957 #, fuzzy -msgid "A printer already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "No viable macs to use" +msgstr "不能够更新" -#: lib/pages/printermanagementpage.class.php:990 -msgid "Printer update failed!" -msgstr "打印机更新失败!" +msgid "No viable storage groups found" +msgstr "" -#: lib/pages/printermanagementpage.class.php:995 -msgid "Printer updated!" -msgstr "打印机更新!" +msgid "Node" +msgstr "节点" + +msgid "Node Offline" +msgstr "" -#: lib/pages/printermanagementpage.class.php:996 #, fuzzy -msgid "Printer Update Success" -msgstr "打印机更新!" +msgid "Node Parent" +msgstr "百分" -#: lib/pages/printermanagementpage.class.php:1004 #, fuzzy -msgid "Printer Update Fail" -msgstr "打印机更新失败!" +msgid "Node is unavailable" +msgstr "没有可用的散列" -#: lib/pages/reportmanagementpage.class.php:158 #, fuzzy -msgid "Import Reports" -msgstr "进口主机" +msgid "Node must be a string" +msgstr "事件必须是字符串" -#: lib/pages/reportmanagementpage.class.php:189 #, fuzzy -msgid "Import FOG Reports" -msgstr "进口主机" +msgid "Nodes" +msgstr "节点" -#: lib/pages/reportmanagementpage.class.php:207 -#: lib/pages/reportmanagementpage.class.php:226 #, fuzzy -msgid "Import Report?" -msgstr "进口主机" +msgid "Normal Snapin" +msgstr "无效的管理单元" + +msgid "Not Available" +msgstr "不可用" + +msgid "Not Registered Hosts" +msgstr "未注册主机" -#: lib/pages/reportmanagementpage.class.php:250 #, fuzzy -msgid "This section allows you to uploade user" -msgstr "此设置定义代理用户名使用。" +msgid "Not Valid" +msgstr "数据无效" -#: lib/pages/reportmanagementpage.class.php:252 -msgid "defined reports that may not be a part of" +msgid "Not a number" +msgstr "不是一个数字" + +msgid "Not able to add" +msgstr "不能添加" + +msgid "Not all elements in filter or ports setting are integer" msgstr "" -#: lib/pages/reportmanagementpage.class.php:254 +msgid "Not allowed here" +msgstr "这里不允许" + +msgid "Not found" +msgstr "未找到" + #, fuzzy -msgid "the base FOG install" -msgstr "重启后安装" +msgid "Not protected" +msgstr "不受保护" -#: lib/pages/reportmanagementpage.class.php:273 -msgid "About FOG Reports" -msgstr "关于FOG报告" +msgid "Not set" +msgstr "没有设置" -#: lib/pages/reportmanagementpage.class.php:282 -msgid "FOG Reports exist to give you information about what" +msgid "Not syncing" msgstr "" -#: lib/pages/reportmanagementpage.class.php:284 -msgid "is going on with your FOG System" +msgid "Not syncing Image" msgstr "" -#: lib/pages/reportmanagementpage.class.php:286 -msgid "To view a report, select an item from the menu" -msgstr "" +#, fuzzy +msgid "Not syncing Snapin" +msgstr "无连接来获取管理单元" -#: lib/pages/schemaupdaterpage.class.php:55 -msgid "Database Schema Installer / Updater" -msgstr "数据库模式安装/更新" +msgid "Notes" +msgstr "笔记" -#: lib/pages/schemaupdaterpage.class.php:63 #, fuzzy -msgid "Install/Update" -msgstr "安装/更新失败!" +msgid "Nothing passed to search for" +msgstr "输入用户名搜索" -#: lib/pages/schemaupdaterpage.class.php:71 -msgid "If you would like to backup your" -msgstr "" +msgid "O/S" +msgstr "O / S" -#: lib/pages/schemaupdaterpage.class.php:72 -msgid "FOG database you can do so using" -msgstr "" +msgid "OS Name" +msgstr "操作系统名称" -#: lib/pages/schemaupdaterpage.class.php:73 -msgid "MySQL Administrator or by running" -msgstr "" +msgid "Object" +msgstr "目的" -#: lib/pages/schemaupdaterpage.class.php:74 -msgid "the following command in a terminal" +msgid "Old clients are the clients that came with FOG" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:75 #, fuzzy -msgid "window" -msgstr "Windows 7的" +msgid "Old key must be a string" +msgstr "事件必须是字符串" -#: lib/pages/schemaupdaterpage.class.php:76 -#, fuzzy -msgid "Applications" -msgstr "操作" +msgid "On Dashboard" +msgstr "仪表板上" -#: lib/pages/schemaupdaterpage.class.php:77 -#, fuzzy -msgid "System Tools" -msgstr "系统类型" +msgid "On reboot we will try to find a new node" +msgstr "" -#: lib/pages/schemaupdaterpage.class.php:78 #, fuzzy -msgid "Terminal" -msgstr "串行" +msgid "One or more macs are associated with a host" +msgstr "错误,与此主机关联的图像" -#: lib/pages/schemaupdaterpage.class.php:79 -msgid "this will save the backup in your home" -msgstr "" +msgid "Only Assigned Printers" +msgstr "只有分配打印机" -#: lib/pages/schemaupdaterpage.class.php:80 #, fuzzy -msgid "directory" -msgstr "目录" +msgid "Only allowed to have" +msgstr "您只能分配" + +msgid "Open Source Computer Cloning Solution" +msgstr "开源计算机克隆解决方案" -#: lib/pages/schemaupdaterpage.class.php:88 -msgid "Your FOG database schema is not up to date" -msgstr "" +msgid "Open VNC connection to" +msgstr "打开VNC连接" -#: lib/pages/schemaupdaterpage.class.php:89 -msgid "either because you have updated" +msgid "OpenLDAP" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:90 -msgid "or this is a new FOG installation" -msgstr "" +msgid "Operating System" +msgstr "操作系统" -#: lib/pages/schemaupdaterpage.class.php:91 -msgid "If this is an upgrade" -msgstr "" +#, fuzzy +msgid "Operation field not set" +msgstr "操作字段没有设置: %s" -#: lib/pages/schemaupdaterpage.class.php:92 -msgid "there will be a database backup stored on your" +msgid "Option below enforces a login system" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:93 -msgid "FOG server defaulting under the folder" +msgid "Option sets if there will even" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:95 -msgid "Should anything go wrong" +msgid "Option sets the ipxe keysequence to enter to gain menu" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:96 -msgid "this backup will enable you to return to the" +msgid "Option sets the key sequence" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:97 -msgid "previous install if needed" -msgstr "" +#, fuzzy +msgid "Option specifies the background file to use" +msgstr "选项​​为隐藏的菜单系统的超时值" -#: lib/pages/schemaupdaterpage.class.php:103 #, fuzzy -msgid "Are you sure you wish to" -msgstr "您确定要删除这些项目" +msgid "Option specifies the color settings of the main menu items" +msgstr "选项​​为隐藏的菜单系统的超时值" -#: lib/pages/schemaupdaterpage.class.php:104 #, fuzzy -msgid "install or update the FOG database" -msgstr "你确定要安装或更新FOG数据库?" +msgid "Option specifies the color text on the menu if the host" +msgstr "选项​​为隐藏的菜单系统的超时值" -#: lib/pages/schemaupdaterpage.class.php:115 #, fuzzy -msgid "Install/Update Now" -msgstr "安装/立即升级" +msgid "Option specifies the efi boot exit method ipxe will use" +msgstr "选项​​为隐藏的菜单系统的超时值" -#: lib/pages/schemaupdaterpage.class.php:125 #, fuzzy -msgid "Database not available" -msgstr "数据库更新失败" +msgid "Option specifies the legacy boot exit method ipxe will use" +msgstr "选项​​为隐藏的菜单系统的超时值" -#: lib/pages/schemaupdaterpage.class.php:131 -msgid "Your database connection appears to be invalid" +#, fuzzy +msgid "Option specifies the menu timeout" +msgstr "选项​​为隐藏的菜单系统的超时值" + +msgid "Option specifies the pairings after host checks" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:132 -msgid "FOG is unable to communicate with the database" +msgid "Option specifies the pairings as a fallback" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:133 -msgid "There are many reasons why this could be the case" +msgid "Option specifies the pairings of colors to" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:134 -msgid "Please check your credentials in" +msgid "Option specifies the timeout value for the hidden menu system" +msgstr "选项​​为隐藏的菜单系统的超时值" + +msgid "Or there was no number defined for joining session" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:138 -#, fuzzy -msgid "Also confirm that the database is indeed running" -msgstr "检查数据库运行" +msgid "Organizational Unit" +msgstr "组织单位" -#: lib/pages/schemaupdaterpage.class.php:139 -msgid "If credentials are correct" +msgid "Other Tag #1" +msgstr "其他标签#1" + +msgid "Other Tag #2" +msgstr "其他标签#2" + +msgid "Other Tag 1" +msgstr "其他标签1" + +msgid "Other Tag 2" +msgstr "其他标签2" + +msgid "Otherwise it will just boot like normal" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:140 +msgid "PC Check-out Agreement" +msgstr "PC退房协议" + #, fuzzy -msgid "and if the Database service is running" -msgstr "检查数据库运行" +msgid "Parameters" +msgstr "参数:" -#: lib/pages/schemaupdaterpage.class.php:141 -msgid "check to ensure your filesystem has enough space" -msgstr "" +#, fuzzy +msgid "Parent" +msgstr "百分" -#: lib/pages/schemaupdaterpage.class.php:168 -msgid "No connection available" -msgstr "没有可用的连接" +#, fuzzy +msgid "Parent Node" +msgstr "打印机型号" -#: lib/pages/schemaupdaterpage.class.php:171 -msgid "Update not required!" -msgstr "更新不需要!" +msgid "Partclone" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:197 -#: lib/pages/schemaupdaterpage.class.php:200 #, fuzzy -msgid "Function" -msgstr "行动" +msgid "Partclone Compressed" +msgstr "Partclone" + +msgid "Partclone Compressed 200MiB split" +msgstr "" -#: lib/pages/schemaupdaterpage.class.php:230 #, fuzzy -msgid "Database" -msgstr "日期" +msgid "Partclone Gzip" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:233 -msgid "Variable contains" +msgid "Partclone Gzip Split 200MiB" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:235 -msgid "Database SQL" +msgid "Partclone Uncompressed" msgstr "" -#: lib/pages/schemaupdaterpage.class.php:252 -msgid "Install / Update Failed!" -msgstr "安装/更新失败!" +msgid "Partclone Uncompressed 200MiB split" +msgstr "" -#: lib/pages/schemaupdaterpage.class.php:257 -msgid "The following errors occurred" -msgstr "出现以下错误" +#, fuzzy +msgid "Partclone Uncompressed Split 200MiB" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:267 -msgid "Install / Update Successful!" -msgstr "安装/升级成功!" +#, fuzzy +msgid "Partclone Zstd" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:270 -msgid "to login" -msgstr "登陆" +#, fuzzy +msgid "Partclone Zstd Split 200MiB" +msgstr "Partclone" -#: lib/pages/schemaupdaterpage.class.php:275 -msgid "The following errors occured" -msgstr "下面的错误发生" +msgid "Partimage" +msgstr "Partimage" -#: lib/pages/serverinfo.class.php:44 -msgid "Edit Node" -msgstr "编辑节点" +msgid "Partition" +msgstr "划分" -#: lib/pages/serverinfo.class.php:52 -msgid "Hostname / IP" -msgstr "主机名/ IP" +msgid "Password" +msgstr "密码" -#: lib/pages/serverinfo.class.php:75 -#, fuzzy -msgid "Server information" -msgstr "一般信息" +msgid "Password reset requires a user account to reset" +msgstr "密码重置需要一个用户帐户重置" -#: lib/pages/serverinfo.class.php:80 -msgid "Invalid Server Information!" -msgstr "无效的服务器信息!" +msgid "Path" +msgstr "路径" -#: lib/pages/serverinfo.class.php:94 #, fuzzy -msgid "Unable to get server infromation!" -msgstr "无法拉服务器的信息!" +msgid "Path is unavailable" +msgstr "没有可用的散列" -#: lib/pages/serverinfo.class.php:145 #, fuzzy -msgid "Unable to find basic information!" -msgstr "无法找到基本信息" - -#: lib/pages/serverinfo.class.php:158 -msgid "TX" -msgstr "TX" +msgid "Pause" +msgstr "用户" -#: lib/pages/serverinfo.class.php:159 -msgid "RX" -msgstr "RX" +msgid "Pending Host List" +msgstr "待主机列表" -#: lib/pages/serverinfo.class.php:161 -msgid "Dropped" -msgstr "下降" +msgid "Pending Hosts" +msgstr "待主机" -#: lib/pages/serverinfo.class.php:165 -msgid "General Information" -msgstr "一般信息" +#, fuzzy +msgid "Pending MAC Actions" +msgstr "待定的MAC" -#: lib/pages/serverinfo.class.php:173 -msgid "Uptime" -msgstr "正常运行时间" +msgid "Pending MAC Export" +msgstr "待MAC出口" -#: lib/pages/serverinfo.class.php:174 -msgid "CPU Type" -msgstr "CPU类型" +msgid "Pending MACs" +msgstr "待定的MAC" -#: lib/pages/serverinfo.class.php:175 -msgid "CPU Count" -msgstr "CPU计数" +msgid "Pending Registered Hosts" +msgstr "待注册主机" -#: lib/pages/serverinfo.class.php:176 -msgid "CPU Model" -msgstr "CPU型号" +msgid "Pending Registration created by FOG_CLIENT" +msgstr "通过创建FOG_CLIENT登记待定" -#: lib/pages/serverinfo.class.php:178 -msgid "CPU Cache" -msgstr "CPU缓存" +msgid "Pending hosts" +msgstr "待主机" -#: lib/pages/serverinfo.class.php:179 -msgid "Total Memory" -msgstr "总内存" +msgid "Pending macs" +msgstr "待淅淅沥沥" -#: lib/pages/serverinfo.class.php:180 -msgid "Used Memory" -msgstr "使用的内存" +msgid "Pending..." +msgstr "待..." -#: lib/pages/serverinfo.class.php:181 -msgid "Free Memory" -msgstr "可用内存" +msgid "Percent" +msgstr "百分" -#: lib/pages/serverinfo.class.php:199 -msgid "File System Information" -msgstr "文件系统信息" +msgid "Perform Immediately?" +msgstr "" -#: lib/pages/serverinfo.class.php:201 -msgid "Total Disk Space" -msgstr "总磁盘空间" +msgid "Perform search" +msgstr "" -#: lib/pages/serverinfo.class.php:202 -msgid "Used Disk Space" -msgstr "使用的磁盘空间" +msgid "Personal Information" +msgstr "个人信息" -#: lib/pages/serverinfo.class.php:203 #, fuzzy -msgid "Free Disk Space" -msgstr "使用的磁盘空间" - -#: lib/pages/serverinfo.class.php:220 -msgid "Network Information" -msgstr "网络信息" +msgid "Pick a template" +msgstr "模板管理单元" -#: lib/pages/serverinfo.class.php:246 lib/reports/history_report.report.php:136 -msgid "Information" -msgstr "信息" +msgid "Ping Hosts" +msgstr "平主机" -#: lib/pages/serviceconfigurationpage.class.php:133 #, fuzzy -msgid "Service general" -msgstr "主机内核" +msgid "Please Enter an admin or mobile lookup name" +msgstr "这个位置输入名称。" -#: lib/pages/serviceconfigurationpage.class.php:137 -msgid "This will allow you to configure how services" -msgstr "" +msgid "Please Select an option" +msgstr "请选择一个选项" -#: lib/pages/serviceconfigurationpage.class.php:139 -msgid "function on client computers." +msgid "Please be very careful changing any of the following settings" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:140 -msgid "The settings tend to be global which affects all hosts." +msgid "Please check your credentials in" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:141 -msgid "If you are looking to configure settings for a specific host" -msgstr "" +#, fuzzy +msgid "Please choose a different name" +msgstr "请选择一个图像" + +#, fuzzy +msgid "Please choose a different path" +msgstr "请选择一个图像" + +msgid "Please choose an image" +msgstr "请选择一个图像" -#: lib/pages/serviceconfigurationpage.class.php:143 -msgid "please see the hosts service settings section." -msgstr "" +msgid "Please confirm you want to delete" +msgstr "请确认您要删除" -#: lib/pages/serviceconfigurationpage.class.php:144 -msgid "To get started please select an item from the menu." -msgstr "" +#, fuzzy +msgid "Please enter a Group Member Attribute" +msgstr "请输入LDAP服务器地址" -#: lib/pages/serviceconfigurationpage.class.php:150 -msgid "FOG Client Download" -msgstr "FOG客户端下载" +msgid "Please enter a LDAP server address" +msgstr "请输入LDAP服务器地址" -#: lib/pages/serviceconfigurationpage.class.php:154 -msgid "Use the following link to go to the client page." -msgstr "" +#, fuzzy +msgid "Please enter a Search Base DN" +msgstr "请输入主机名" -#: lib/pages/serviceconfigurationpage.class.php:156 -msgid "There you can download utilities such as FOG Prep" -msgstr "" +#, fuzzy +msgid "Please enter a User Name Attribute" +msgstr "请输入主机名" -#: lib/pages/serviceconfigurationpage.class.php:158 -msgid "FOG Crypt" -msgstr "FOG地穴" +msgid "Please enter a hostname" +msgstr "请输入主机名" -#: lib/pages/serviceconfigurationpage.class.php:160 -msgid "and both the legacy and new FOG clients." -msgstr "" +#, fuzzy +msgid "Please enter a mac address" +msgstr "请输入一个有效的IP地址" -#: lib/pages/serviceconfigurationpage.class.php:163 -msgid "Click Here" -msgstr "点击这里" +msgid "Please enter a name for this LDAP server." +msgstr "这个LDAP服务器输入名称。" -#: lib/pages/serviceconfigurationpage.class.php:236 -msgid "Enabled as default" -msgstr "启用默认" +msgid "Please enter a name for this location." +msgstr "这个位置输入名称。" -#: lib/pages/serviceconfigurationpage.class.php:307 -msgid "Service Status" -msgstr "服务状态" +#, fuzzy +msgid "Please enter a valid CIDR subnet." +msgstr "请输入一个有效的主机名" -#: lib/pages/serviceconfigurationpage.class.php:327 -#: lib/pages/serviceconfigurationpage.class.php:392 -#: lib/pages/serviceconfigurationpage.class.php:445 -#: lib/pages/serviceconfigurationpage.class.php:581 -#: lib/pages/serviceconfigurationpage.class.php:663 -#: lib/pages/serviceconfigurationpage.class.php:777 #, fuzzy -msgid "Current settings" -msgstr "设置" +msgid "Please enter a valid CIDR subnets comma separated list" +msgstr "请输入一个有效的IP地址" -#: lib/pages/serviceconfigurationpage.class.php:333 -msgid "Default log out time (in minutes)" -msgstr "默认注销时间(分钟)" +msgid "Please enter a valid hostname" +msgstr "请输入一个有效的主机名" -#: lib/pages/serviceconfigurationpage.class.php:451 -#: lib/pages/serviceconfigurationpage.class.php:669 -#: lib/pages/serviceconfigurationpage.class.php:783 -#, fuzzy -msgid "This module is only used on the old client." -msgstr "此设置定义使用SSH客户端的用户名。" +msgid "Please enter a valid ip" +msgstr "请输入一个有效的IP" -#: lib/pages/serviceconfigurationpage.class.php:452 -msgid "The old client iswhat was distributed with" -msgstr "" +#, fuzzy +msgid "Please enter a valid mac address" +msgstr "请输入一个有效的IP地址" -#: lib/pages/serviceconfigurationpage.class.php:454 -msgid "FOG 1.2.0 and earlier." -msgstr "" +msgid "Please enter an access token" +msgstr "请输入访问令牌" -#: lib/pages/serviceconfigurationpage.class.php:456 -msgid "This module did not work past Windows XP" -msgstr "" +msgid "Please input a session name" +msgstr "请输入会话名称" -#: lib/pages/serviceconfigurationpage.class.php:458 -msgid "due to UAC introduced in Vista and up." +msgid "Please physically associate" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:463 #, fuzzy -msgid "Directories" -msgstr "目录" +msgid "Please select a valid ldap port" +msgstr "请输入一个有效的IP" -#: lib/pages/serviceconfigurationpage.class.php:470 -msgid "Add Directory" -msgstr "添加目录" +#, fuzzy +msgid "Please select an LDAP port to use" +msgstr "请选择一个选项" -#: lib/pages/serviceconfigurationpage.class.php:546 -msgid "Default Width" -msgstr "默认宽度" +msgid "Please select an option" +msgstr "请选择一个选项" -#: lib/pages/serviceconfigurationpage.class.php:554 -msgid "Default Height" -msgstr "默认高度" +#, fuzzy +msgid "Please select the snapin you want to install" +msgstr "请选择管理单元要部署" -#: lib/pages/serviceconfigurationpage.class.php:562 -msgid "Default Refresh Rate" -msgstr "默认刷新频率" +msgid "Please select the storage group this location relates to." +msgstr "请选择此位置涉及存储组。" -#: lib/pages/serviceconfigurationpage.class.php:671 -#: lib/pages/serviceconfigurationpage.class.php:785 -msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgid "Please update your FOG Client, this is old and insecure" msgstr "" -#: lib/pages/serviceconfigurationpage.class.php:673 -msgid "This module has since been replaced with Power Management." -msgstr "" +#, fuzzy +msgid "Please use another hostname" +msgstr "请输入主机名" -#: lib/pages/serviceconfigurationpage.class.php:678 #, fuzzy -msgid "New Event" -msgstr "添加事件" +msgid "Please wait until a slot is open" +msgstr "请输入访问令牌" -#: lib/pages/serviceconfigurationpage.class.php:712 -msgid "Add Event" -msgstr "添加事件" +msgid "Plugin" +msgstr "插入" -#: lib/pages/serviceconfigurationpage.class.php:787 -msgid "This module did not work past Windows XP due to UAC." -msgstr "" +#, fuzzy +msgid "Plugin Configuration" +msgstr "服务配置" -#: lib/pages/serviceconfigurationpage.class.php:792 -msgid "Add User" -msgstr "添加用户" +msgid "Plugin Description" +msgstr "插件说明" -#: lib/pages/serviceconfigurationpage.class.php:926 -msgid "Must be 0 through 23 for hours in a day." -msgstr "" +msgid "Plugin Installation" +msgstr "插件安装" -#: lib/pages/serviceconfigurationpage.class.php:931 -msgid "Must be 0 through 59 for minutes in an hour." -msgstr "" +msgid "Plugin Installed!" +msgstr "插件安装好了!" -#: lib/pages/serviceconfigurationpage.class.php:936 -msgid "Either reboot or shutdown action must be used." -msgstr "" +msgid "Plugin Management" +msgstr "插件管理" -#: lib/pages/serviceconfigurationpage.class.php:981 -msgid "Service update failed" -msgstr "服务更新失败" +msgid "Plugin Name" +msgstr "插件名称" -#: lib/pages/serviceconfigurationpage.class.php:986 #, fuzzy -msgid "Module updated!" -msgstr "集团补充" +msgid "Plugins" +msgstr "插入" -#: lib/pages/serviceconfigurationpage.class.php:987 -#, fuzzy -msgid "Module Update Success" -msgstr "用户创建" +msgid "Port" +msgstr "港口" -#: lib/pages/serviceconfigurationpage.class.php:995 #, fuzzy -msgid "Module Update Fail" -msgstr "集团创建失败" +msgid "Port is not valid ldap/ldaps port" +msgstr "端口是无效的LDAP / LDAPS端口" -#: lib/pages/snapinmanagementpage.class.php:134 #, fuzzy -msgid "Filesize" -msgstr "文件大小" +msgid "Postfix requires an action of login" +msgstr "Postfix的需要登录的一个动作,注销,或开始工作" + +msgid "Postfix requires an action of login, logout, or start to operate" +msgstr "Postfix的需要登录的一个动作,注销,或开始工作" -#: lib/pages/snapinmanagementpage.class.php:167 #, fuzzy -msgid "Is Pack" -msgstr "是" +msgid "Power Management" +msgstr "用户管理" -#: lib/pages/snapinmanagementpage.class.php:243 -#: lib/pages/storagemanagementpage.class.php:208 -#: lib/pages/storagemanagementpage.class.php:213 -#: lib/pages/taskmanagementpage.class.php:1222 -#: lib/pages/taskmanagementpage.class.php:1227 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:231 -#: lib/reports/host_list.report.php:290 -#: lib/reports/hosts_and_users.report.php:296 -#: lib/reports/product_keys.report.php:108 -msgid "No" -msgstr "没有" +#, fuzzy +msgid "Power Management Task run time" +msgstr "用户管理" -#: lib/pages/snapinmanagementpage.class.php:245 -#: lib/pages/storagemanagementpage.class.php:207 -#: lib/pages/storagemanagementpage.class.php:212 -#: lib/pages/taskmanagementpage.class.php:1221 -#: lib/pages/taskmanagementpage.class.php:1226 -#: lib/pages/usermanagementpage.class.php:138 -#: lib/plugins/location/pages/locationmanagementpage.class.php:114 -#: lib/plugins/site/hooks/addsiteuser.hook.php:230 -#: lib/reports/host_list.report.php:289 -#: lib/reports/hosts_and_users.report.php:295 -#: lib/reports/product_keys.report.php:107 -msgid "Yes" -msgstr "是" +msgid "Primary Group" +msgstr "主要组" -#: lib/pages/snapinmanagementpage.class.php:397 -#, fuzzy -msgid "New Snapin" -msgstr "添加新的管理单元" +msgid "Primary MAC" +msgstr "主MAC" -#: lib/pages/snapinmanagementpage.class.php:513 -#: lib/pages/snapinmanagementpage.class.php:1006 -#: lib/reports/snapin_log.report.php:180 -msgid "Snapin Description" -msgstr "管理单元说明" +msgid "Primary Storage Group" +msgstr "主存储组" -#: lib/pages/snapinmanagementpage.class.php:524 -#: lib/pages/snapinmanagementpage.class.php:1014 -#, fuzzy -msgid "Snapin Type" -msgstr "模板管理单元" +msgid "Primary User" +msgstr "主要用户" -#: lib/pages/snapinmanagementpage.class.php:534 -#: lib/pages/snapinmanagementpage.class.php:1024 -#, fuzzy -msgid "Normal Snapin" -msgstr "无效的管理单元" +msgid "Printed" +msgstr "印刷的" -#: lib/pages/snapinmanagementpage.class.php:543 -#: lib/pages/snapinmanagementpage.class.php:1033 -#, fuzzy -msgid "Snapin Pack" -msgstr "管理单元路径" +msgid "Printer" +msgstr "打印机" -#: lib/pages/snapinmanagementpage.class.php:548 -#: lib/pages/snapinmanagementpage.class.php:1038 -msgid "Snapin Template" -msgstr "模板管理单元" +msgid "Printer Alias" +msgstr "打印机别名" -#: lib/pages/snapinmanagementpage.class.php:553 -#: lib/pages/snapinmanagementpage.class.php:1043 #, fuzzy -msgid "Snapin Pack Template" -msgstr "模板管理单元" +msgid "Printer Associations" +msgstr "打印机说明" -#: lib/pages/snapinmanagementpage.class.php:563 -#: lib/pages/snapinmanagementpage.class.php:1053 -#: lib/reports/snapin_log.report.php:183 -msgid "Snapin Run With" -msgstr "管理单元运行方式" +#, fuzzy +msgid "Printer Config File" +msgstr "服务配置" -#: lib/pages/snapinmanagementpage.class.php:568 -#: lib/pages/snapinmanagementpage.class.php:1058 #, fuzzy -msgid "Snapin Pack File" -msgstr "文件管理单元" +msgid "Printer Configuration" +msgstr "服务配置" -#: lib/pages/snapinmanagementpage.class.php:578 -#: lib/pages/snapinmanagementpage.class.php:1068 -msgid "Snapin Run With Argument" -msgstr "管理单元运行带有参数" +#, fuzzy +msgid "Printer Create Fail" +msgstr "打印机更新失败!" -#: lib/pages/snapinmanagementpage.class.php:583 -#: lib/pages/snapinmanagementpage.class.php:1073 #, fuzzy -msgid "Snapin Pack Arguments" -msgstr "管理单元参数" +msgid "Printer Create Success" +msgstr "打印机已经存在" -#: lib/pages/snapinmanagementpage.class.php:592 -#: lib/pages/snapinmanagementpage.class.php:1082 -#: lib/reports/snapin_log.report.php:181 -msgid "Snapin File" -msgstr "文件管理单元" +msgid "Printer Description" +msgstr "打印机说明" -#: lib/pages/snapinmanagementpage.class.php:610 -#: lib/pages/snapinmanagementpage.class.php:1102 -msgid "Snapin File (exists)" -msgstr "文件管理单元(存在)" +#, fuzzy +msgid "Printer General" +msgstr "打印机型号" -#: lib/pages/snapinmanagementpage.class.php:620 -#: lib/pages/snapinmanagementpage.class.php:1112 -msgid "Snapin Arguments" -msgstr "管理单元参数" +msgid "Printer INF File" +msgstr "打印机INF文件" -#: lib/pages/snapinmanagementpage.class.php:631 -#: lib/pages/snapinmanagementpage.class.php:1129 -msgid "Snapin Enabled" -msgstr "启用管理单元" +msgid "Printer IP" +msgstr "打印机IP" -#: lib/pages/snapinmanagementpage.class.php:635 -#: lib/pages/snapinmanagementpage.class.php:1135 #, fuzzy -msgid "Snapin Arguments Hidden" -msgstr "管理单元参数" +msgid "Printer IP/Hostname" +msgstr "打印机名称" -#: lib/pages/snapinmanagementpage.class.php:639 -#: lib/pages/snapinmanagementpage.class.php:1141 -#, fuzzy -msgid "Snapin Timeout (seconds)" -msgstr "菜单超时(以秒为单位)" +msgid "Printer Management" +msgstr "打印机管理" -#: lib/pages/snapinmanagementpage.class.php:652 -#: lib/pages/snapinmanagementpage.class.php:1156 -msgid "Reboot after install" -msgstr "重启后安装" +msgid "Printer Model" +msgstr "打印机型号" -#: lib/pages/snapinmanagementpage.class.php:657 -#: lib/pages/snapinmanagementpage.class.php:1162 -msgid "Shutdown after install" -msgstr "关机后安装" +msgid "Printer Name" +msgstr "打印机名称" -#: lib/pages/snapinmanagementpage.class.php:661 -#: lib/pages/snapinmanagementpage.class.php:1168 -msgid "Snapin Command" -msgstr "管理单元命令" +#, fuzzy +msgid "Printer Name/Alias" +msgstr "打印机别名" -#: lib/pages/snapinmanagementpage.class.php:663 -#: lib/pages/snapinmanagementpage.class.php:1170 -msgid "read-only" -msgstr "" +msgid "Printer Port" +msgstr "打印机端口" -#: lib/pages/snapinmanagementpage.class.php:668 -#, fuzzy -msgid "Create New Snapin" -msgstr "新建%s" +msgid "Printer Type" +msgstr "打印机类型" -#: lib/pages/snapinmanagementpage.class.php:745 -#: lib/pages/snapinmanagementpage.class.php:1502 #, fuzzy -msgid "Snapin file is too big, increase post_max_size in php.ini." -msgstr "Snapin文件太大,在php.ini中增加post_max_size。" - -#: lib/pages/snapinmanagementpage.class.php:751 -#: lib/pages/snapinmanagementpage.class.php:1508 -msgid "$_POST variable is empty, check apache error log." -msgstr "$ _POST变量为空,检查apache错误日志。" +msgid "Printer Update Fail" +msgstr "打印机更新失败!" -#: lib/pages/snapinmanagementpage.class.php:756 -#: lib/pages/snapinmanagementpage.class.php:1513 #, fuzzy -msgid "A snapin name is required!" -msgstr "图像名是必需的!" +msgid "Printer Update Success" +msgstr "打印机更新!" -#: lib/pages/snapinmanagementpage.class.php:761 -#: lib/pages/snapinmanagementpage.class.php:1523 #, fuzzy -msgid "A snapin already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Printer added!" +msgstr "打印机名称" -#: lib/pages/snapinmanagementpage.class.php:768 -#: lib/pages/snapinmanagementpage.class.php:1530 #, fuzzy -msgid "A file" -msgstr "文件" +msgid "Printer name already exists" +msgstr "打印机已经存在" -#: lib/pages/snapinmanagementpage.class.php:769 -#: lib/pages/snapinmanagementpage.class.php:1531 -msgid "either already selected or uploaded" -msgstr "" +msgid "Printer update failed!" +msgstr "打印机更新失败!" -#: lib/pages/snapinmanagementpage.class.php:770 -#: lib/pages/snapinmanagementpage.class.php:1532 -#, fuzzy -msgid "must be specified" -msgstr "没有指定的图像" +msgid "Printer updated!" +msgstr "打印机更新!" -#: lib/pages/snapinmanagementpage.class.php:818 -#: lib/pages/snapinmanagementpage.class.php:1590 -msgid "FTP Connection has failed" -msgstr "FTP连接失败" +msgid "Printers" +msgstr "打印机" -#: lib/pages/snapinmanagementpage.class.php:825 -#: lib/pages/snapinmanagementpage.class.php:1597 -#, fuzzy -msgid "Failed to add snapin" -msgstr "无法添加/更新管理单元文件" +msgid "Private key failed" +msgstr "私钥失败" -#: lib/pages/snapinmanagementpage.class.php:832 -#: lib/pages/snapinmanagementpage.class.php:1604 -msgid "Failed to add/update snapin file" -msgstr "无法添加/更新管理单元文件" +msgid "Private key not found" +msgstr "私钥未找到" -#: lib/pages/snapinmanagementpage.class.php:857 -msgid "Add snapin failed!" -msgstr "添加管理单元失败!" +msgid "Private key not readable" +msgstr "私钥不可读" -#: lib/pages/snapinmanagementpage.class.php:867 -#, fuzzy -msgid "Snapin added!" -msgstr "管理单元名称" +msgid "Private key path not found" +msgstr "私钥未找到路径" -#: lib/pages/snapinmanagementpage.class.php:868 -#, fuzzy -msgid "Snapin Create Success" -msgstr "更新管理单元" +msgid "Protected" +msgstr "受保护" -#: lib/pages/snapinmanagementpage.class.php:877 -#, fuzzy -msgid "Snapin Create Fail" -msgstr "更新管理单元" +msgid "Pushbullet Accounts" +msgstr "Pushbullet账户" -#: lib/pages/snapinmanagementpage.class.php:904 #, fuzzy -msgid "Snapin General" -msgstr "启用管理单元" +msgid "Pushbullet Management" +msgstr "客户管理" -#: lib/pages/snapinmanagementpage.class.php:1123 -#, fuzzy -msgid "Snapin Protected" -msgstr "更新管理单元" +msgid "Quarantine" +msgstr "隔离" -#: lib/pages/snapinmanagementpage.class.php:1291 -#, fuzzy -msgid "Snapin Storage Groups" -msgstr "无效的存储组" +msgid "Queued" +msgstr "排队" -#: lib/pages/snapinmanagementpage.class.php:1701 #, fuzzy -msgid "Snapin update failed!" -msgstr "管理单元更新失败" +msgid "Quick" +msgstr "点击" -#: lib/pages/snapinmanagementpage.class.php:1706 -#, fuzzy -msgid "Snapin updated!" -msgstr "更新管理单元" +msgid "RX" +msgstr "RX" -#: lib/pages/snapinmanagementpage.class.php:1707 -#, fuzzy -msgid "Snapin Update Success" -msgstr "安装/升级成功!" +msgid "Reboot" +msgstr "重启" -#: lib/pages/snapinmanagementpage.class.php:1716 -#, fuzzy -msgid "Snapin Update Fail" -msgstr "管理单元更新失败" +msgid "Reboot after deploy" +msgstr "部署后重新启动" -#: lib/pages/storagemanagementpage.class.php:59 -#: lib/pages/storagemanagementpage.class.php:98 -#, php-format -msgid "%s ID %s is not valid" -msgstr "%s ID %s是无效的" +msgid "Reboot after install" +msgstr "重启后安装" -#: lib/pages/storagemanagementpage.class.php:342 -#: lib/pages/storagemanagementpage.class.php:719 -msgid "Web root" -msgstr "Web根目录" +#, fuzzy +msgid "Rebranding element has been successfully updated!" +msgstr "已成功更新" -#: lib/pages/storagemanagementpage.class.php:415 -#: lib/pages/storagemanagementpage.class.php:792 -msgid "Bitrate" -msgstr "比特率" +msgid "Receive" +msgstr "接收" -#: lib/pages/storagemanagementpage.class.php:422 -msgid "Rexmit Hello Interval" +msgid "Recommended" msgstr "" -#: lib/pages/storagemanagementpage.class.php:462 #, fuzzy -msgid "Create Storage Node" -msgstr "存储节点" +msgid "Record not found" +msgstr "未发现记录,错误: %s" -#: lib/pages/storagemanagementpage.class.php:483 -#, fuzzy -msgid "New Storage Node" -msgstr "存储节点" +msgid "Register must be managed from hooks or events" +msgstr "" -#: lib/pages/storagemanagementpage.class.php:551 -#: lib/pages/storagemanagementpage.class.php:941 -msgid "Bandwidth should be numeric and greater than 0" -msgstr "带宽应该是数字和大于0" +msgid "Registered" +msgstr "注册" + +msgid "Registered Hosts" +msgstr "注册主机" + +msgid "Releasing Staff Initials" +msgstr "释放员工缩写" + +msgid "Remit Hello Interval" +msgstr "" + +msgid "Remote address attempting to login" +msgstr "" + +msgid "Remove" +msgstr "去掉" -#: lib/pages/storagemanagementpage.class.php:578 #, fuzzy -msgid "Add storage node failed!" -msgstr "添加管理单元失败!" +msgid "Remove " +msgstr "去掉" -#: lib/pages/storagemanagementpage.class.php:603 #, fuzzy -msgid "Storage Node added!" -msgstr "存储节点名称" +msgid "Remove Accesscontrol Rules" +msgstr "所有访问控制" -#: lib/pages/storagemanagementpage.class.php:604 #, fuzzy -msgid "Storage Node Create Success" -msgstr "存储节点创建" +msgid "Remove Associations" +msgstr "图像协会" -#: lib/pages/storagemanagementpage.class.php:612 #, fuzzy -msgid "Storage Node Create Fail" -msgstr "存储节点创建" +msgid "Remove Hosts" +msgstr "去掉" -#: lib/pages/storagemanagementpage.class.php:686 #, fuzzy -msgid "Storage Node General" -msgstr "存储节点接口" +msgid "Remove Images" +msgstr "去掉" -#: lib/pages/storagemanagementpage.class.php:799 -msgid "Remit Hello Interval" -msgstr "" +msgid "Remove MAC" +msgstr "删除MAC" -#: lib/pages/storagemanagementpage.class.php:968 #, fuzzy -msgid "Storage Node update failed!" -msgstr "存储节点更新" +msgid "Remove Selected?" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:993 #, fuzzy -msgid "Storage Node updated!" -msgstr "存储节点更新" +msgid "Remove Users" +msgstr "去掉" -#: lib/pages/storagemanagementpage.class.php:994 #, fuzzy -msgid "Storage Node Update Success" -msgstr "存储节点更新" +msgid "Remove failed" +msgstr "去除" -#: lib/pages/storagemanagementpage.class.php:1002 #, fuzzy -msgid "Storage Node Update Fail" -msgstr "存储节点更新" - -#: lib/pages/storagemanagementpage.class.php:1169 -msgid "Max" -msgstr "" +msgid "Remove selected " +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1250 #, fuzzy -msgid "Create Storage Group" -msgstr "存储节点" +msgid "Remove selected groups" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1271 #, fuzzy -msgid "New Storage Group" -msgstr "存储组" +msgid "Remove selected hosts" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1311 #, fuzzy -msgid "Storage Group Create Success" -msgstr "用户创建" +msgid "Remove selected images" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1319 #, fuzzy -msgid "Storage Group Create Fail" -msgstr "存储组创建" +msgid "Remove selected printers" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1346 #, fuzzy -msgid "Storage Group General" -msgstr "存储组名称" +msgid "Remove selected rules" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1444 -#, fuzzy -msgid "Storage Group update failed!" -msgstr "用户更新失败" +msgid "Remove selected snapins" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1449 #, fuzzy -msgid "Storage Group updated!" -msgstr "存储组更新" +msgid "Remove selected users" +msgstr "删除选定snapins" -#: lib/pages/storagemanagementpage.class.php:1450 #, fuzzy -msgid "Storage Group Update Success" -msgstr "用户创建" +msgid "Remove snapins" +msgstr "删除管理单元(S)" -#: lib/pages/storagemanagementpage.class.php:1457 #, fuzzy -msgid "Storage Group Update Fail" -msgstr "存储组更新" +msgid "Remove these items?" +msgstr "删除选定snapins" -#: lib/pages/taskmanagementpage.class.php:68 -msgid "Started By:" -msgstr "发起者:" +msgid "Removed" +msgstr "去除" -#: lib/pages/taskmanagementpage.class.php:76 -msgid "Working with node" -msgstr "" +#, fuzzy +msgid "Removing Key" +msgstr "设置键" -#: lib/pages/taskmanagementpage.class.php:167 -msgid "Task forced to start" -msgstr "任务强行启动" +#, fuzzy +msgid "Replay from journal" +msgstr "从日记回放:实时插入时间" -#: lib/pages/taskmanagementpage.class.php:172 -msgid "Force task to start" -msgstr "强制任务启动" +msgid "Replicate?" +msgstr "复制?" -#: lib/pages/taskmanagementpage.class.php:426 -msgid "All Groups" -msgstr "所有组" +#, fuzzy +msgid "Replicating" +msgstr "复制?" -#: lib/pages/taskmanagementpage.class.php:519 -#: lib/pages/taskmanagementpage.class.php:658 -msgid "Invalid object type passed" -msgstr "无效的对象类型传递" +msgid "Replication Bandwidth" +msgstr "复制带宽" + +#, fuzzy +msgid "Replication already running with PID" +msgstr "复制带宽" -#: lib/pages/taskmanagementpage.class.php:529 -msgid "Invalid Task Type" -msgstr "无效的任务类型" +msgid "Report" +msgstr "报告" -#: lib/pages/taskmanagementpage.class.php:534 -msgid "Invalid image assigned to host" -msgstr "分配给主机图像无效" +msgid "Report Management" +msgstr "报告管理" -#: lib/pages/taskmanagementpage.class.php:544 -msgid "is protected" -msgstr "被保护" +msgid "Reports" +msgstr "报告" -#: lib/pages/taskmanagementpage.class.php:550 -#, fuzzy -msgid "Quick" -msgstr "点击" +msgid "Required database field is empty" +msgstr "所需的数据库字段为空" -#: lib/pages/taskmanagementpage.class.php:558 -msgid "Hosts do not have the same image assigned" -msgstr "主机没有分配相同的图像" +msgid "Requires templates to process" +msgstr "需要模板来处理" -#: lib/pages/taskmanagementpage.class.php:563 -msgid "Multicast Quick Deploy" -msgstr "组播快速部署" +msgid "Reset Encryption Data" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:564 #, fuzzy -msgid "Group Quick Deploy" -msgstr "快速部署" +msgid "Reset Token" +msgstr "访问令牌" -#: lib/pages/taskmanagementpage.class.php:592 -msgid "Tasked successfully, click active tasks to view in line." -msgstr "" +#, fuzzy +msgid "Result" +msgstr "结果" -#: lib/pages/taskmanagementpage.class.php:758 -msgid "Invalid task" -msgstr "任务无效" +msgid "Results" +msgstr "结果" + +msgid "Return Code" +msgstr "返回代码" + +msgid "Return Desc" +msgstr "返回说明" -#: lib/pages/taskmanagementpage.class.php:801 #, fuzzy -msgid "Active Multi-cast Tasks" -msgstr "活动组播任务" +msgid "Return code" +msgstr "返回代码" -#: lib/pages/taskmanagementpage.class.php:853 -msgid "MulticastTask" -msgstr "MulticastTask" +msgid "Returning array within key" +msgstr "返回键在阵列" -#: lib/pages/taskmanagementpage.class.php:1052 -msgid "Cannot cancel tasks this way" -msgstr "无法取消任务,这种方式" +msgid "Returning value of key" +msgstr "返回键的值" -#: lib/pages/taskmanagementpage.class.php:1132 -msgid "Host/Group Name" -msgstr "主机/组名称" +msgid "Reverse the file: (newest on top)" +msgstr "反转文件:(最新的在上面)" -#: lib/pages/taskmanagementpage.class.php:1133 -msgid "Is Group" -msgstr "是集团" +msgid "Rexmit Hello Interval" +msgstr "" -#: lib/pages/taskmanagementpage.class.php:1135 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:44 -msgid "Task Type" -msgstr "任务类型" +#, fuzzy +msgid "Role" +msgstr "去掉" -#: lib/pages/taskmanagementpage.class.php:1204 #, fuzzy -msgid "All snapins" -msgstr "所有管理单元" +msgid "Role Create Fail" +msgstr "用户创建" -#: lib/pages/taskmanagementpage.class.php:1208 #, fuzzy -msgid "Invalid snapin" -msgstr "无效的管理单元" +msgid "Role Create Success" +msgstr "用户创建" -#: lib/pages/taskmanagementpage.class.php:1210 #, fuzzy -msgid "Snapin to be installed" -msgstr "启用管理单元" +msgid "Role Description" +msgstr "描述" -#: lib/pages/taskmanagementpage.class.php:1232 -#: lib/service/taskscheduler.class.php:206 -msgid "group" -msgstr "组" +#, fuzzy +msgid "Role Name" +msgstr "模块名称" -#: lib/pages/taskmanagementpage.class.php:1233 -#: lib/service/pinghosts.class.php:148 lib/service/taskscheduler.class.php:202 -msgid "host" -msgstr "主办" +#, fuzzy +msgid "Role Update Fail" +msgstr "集团创建失败" -#: lib/pages/usermanagementpage.class.php:52 #, fuzzy -msgid "Change password" -msgstr "管理密码" +msgid "Role Update Success" +msgstr "用户创建" -#: lib/pages/usermanagementpage.class.php:56 #, fuzzy -msgid "API Settings" -msgstr "设置" +msgid "Role added!" +msgstr "打印机名称" -#: lib/pages/usermanagementpage.class.php:60 -#: lib/pages/usermanagementpage.class.php:88 -#: lib/pages/usermanagementpage.class.php:188 -#: lib/pages/usermanagementpage.class.php:383 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1713 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1828 -#: lib/plugins/site/pages/sitemanagementpage.class.php:657 -#: lib/plugins/site/pages/sitemanagementpage.class.php:772 #, fuzzy -msgid "Friendly Name" -msgstr "内核名称" +msgid "Role update failed!" +msgstr "用户更新失败" -#: lib/pages/usermanagementpage.class.php:63 -msgid "No friendly name defined" -msgstr "" +#, fuzzy +msgid "Role updated!" +msgstr "客户端更新" -#: lib/pages/usermanagementpage.class.php:86 -msgid "API?" +msgid "Routes should be an array or an instance of Traversable" msgstr "" -#: lib/pages/usermanagementpage.class.php:100 -msgid "Edit User" -msgstr "编辑用户" - -#: lib/pages/usermanagementpage.class.php:159 -msgid "New User" -msgstr "新用户" +msgid "Row" +msgstr "行" -#: lib/pages/usermanagementpage.class.php:179 -#: lib/pages/usermanagementpage.class.php:374 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:197 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1827 -#: lib/plugins/site/hooks/addsiteuser.hook.php:268 -#: lib/plugins/site/pages/sitemanagementpage.class.php:656 -#: lib/plugins/site/pages/sitemanagementpage.class.php:771 -msgid "User Name" -msgstr "用户名" +msgid "Row number not set properly" +msgstr "行数设置不正确" -#: lib/pages/usermanagementpage.class.php:197 -#: lib/pages/usermanagementpage.class.php:466 -msgid "User Password" -msgstr "用户密码" +#, fuzzy +msgid "Rule Associate Fail" +msgstr "图像协会" -#: lib/pages/usermanagementpage.class.php:205 -#: lib/pages/usermanagementpage.class.php:474 -msgid "User Password (confirm)" -msgstr "用户密码(确认)" +#, fuzzy +msgid "Rule Associate Success" +msgstr "用户创建" -#: lib/pages/usermanagementpage.class.php:212 -#: lib/pages/usermanagementpage.class.php:546 #, fuzzy -msgid "User API Enabled" -msgstr "已启用" +msgid "Rule Association" +msgstr "图像协会" -#: lib/pages/usermanagementpage.class.php:223 #, fuzzy -msgid "Create user?" -msgstr "创建用户" +msgid "Rule Create Fail" +msgstr "用户创建" -#: lib/pages/usermanagementpage.class.php:283 #, fuzzy -msgid "A user name is required!" -msgstr "图像名是必需的!" +msgid "Rule Create Success" +msgstr "用户创建" -#: lib/pages/usermanagementpage.class.php:294 -msgid "Username does not meet requirements" -msgstr "" +#, fuzzy +msgid "Rule Delete Fail" +msgstr "删除的文件数据" -#: lib/pages/usermanagementpage.class.php:295 -msgid "Username must start with a word character" +msgid "Rule Delete Success" msgstr "" -#: lib/pages/usermanagementpage.class.php:296 -msgid "Username must be at least 3 characters" -msgstr "" +#, fuzzy +msgid "Rule Membership" +msgstr "籍" -#: lib/pages/usermanagementpage.class.php:297 -msgid "Username must be less than 41 characters" -msgstr "" +#, fuzzy +msgid "Rule Name" +msgstr "模块名称" -#: lib/pages/usermanagementpage.class.php:298 -msgid "Username cannot contain contiguous special characters" -msgstr "" +#, fuzzy +msgid "Rule Type" +msgstr "模块类型" -#: lib/pages/usermanagementpage.class.php:304 #, fuzzy -msgid "A username already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Rule Update Fail" +msgstr "集团创建失败" -#: lib/pages/usermanagementpage.class.php:309 #, fuzzy -msgid "A password is required!" -msgstr "%s是必需的" +msgid "Rule Update Success" +msgstr "用户创建" -#: lib/pages/usermanagementpage.class.php:321 #, fuzzy -msgid "Add user failed!" -msgstr "添加管理单元失败!" +msgid "Rule Value" +msgstr "值" -#: lib/pages/usermanagementpage.class.php:327 #, fuzzy -msgid "User added!" +msgid "Rule added!" msgstr "打印机名称" -#: lib/pages/usermanagementpage.class.php:328 #, fuzzy -msgid "User Create Success" +msgid "Rule associate success!" msgstr "用户创建" -#: lib/pages/usermanagementpage.class.php:336 #, fuzzy -msgid "User Create Fail" -msgstr "用户创建" +msgid "Rule deleted successfully!" +msgstr "安装/升级成功!" -#: lib/pages/usermanagementpage.class.php:363 #, fuzzy -msgid "User General" -msgstr "主机内核" +msgid "Rule type" +msgstr "模块类型" -#: lib/pages/usermanagementpage.class.php:392 #, fuzzy -msgid "Update General?" -msgstr "更新打印机" +msgid "Rule updated!" +msgstr "客户端更新" -#: lib/pages/usermanagementpage.class.php:455 -#, fuzzy -msgid "User Change Password" -msgstr "管理密码" +msgid "Rule value" +msgstr "" -#: lib/pages/usermanagementpage.class.php:481 #, fuzzy -msgid "Update Password?" -msgstr "用户密码" +msgid "Running Windows" +msgstr "运行版本" -#: lib/pages/usermanagementpage.class.php:535 #, fuzzy -msgid "User API Settings" -msgstr "设置" +msgid "SQL Error" +msgstr "SQL错误:" + +msgid "SSL Path" +msgstr "SSL通道" + +msgid "Save Changes" +msgstr "保存更改" + +msgid "Save Initrd" +msgstr "" -#: lib/pages/usermanagementpage.class.php:557 #, fuzzy -msgid "User API Token" -msgstr "访问令牌" +msgid "Save Kernel" +msgstr "核心" -#: lib/pages/usermanagementpage.class.php:573 #, fuzzy -msgid "Update API?" -msgstr "更新的MAC" +msgid "Saving data for" +msgstr "保存数据%s对象" + +msgid "Schedule" +msgstr "时间表" -#: lib/pages/usermanagementpage.class.php:667 #, fuzzy -msgid "A user already exists with this name" -msgstr "图像已经存在具有此名称!" +msgid "Schedule Power" +msgstr "调度" -#: lib/pages/usermanagementpage.class.php:728 #, fuzzy -msgid "User update failed!" -msgstr "用户更新失败" +msgid "Schedule as debug task" +msgstr "计划任务作为调试任务" -#: lib/pages/usermanagementpage.class.php:733 #, fuzzy -msgid "User updated!" -msgstr "用户更新" +msgid "Schedule cron-style" +msgstr "调度" -#: lib/pages/usermanagementpage.class.php:734 #, fuzzy -msgid "User Update Success" -msgstr "安装/升级成功!" +msgid "Schedule delayed" +msgstr "时间表" -#: lib/pages/usermanagementpage.class.php:742 #, fuzzy -msgid "User Update Fail" -msgstr "用户更新失败" +msgid "Schedule instant" +msgstr "时间表" -#: lib/pages/processlogin.class.php:161 #, fuzzy -msgid "Login failed" -msgstr "加载失败: %s" +msgid "Schedule with shutdown" +msgstr "时间表" -#: lib/pages/processlogin.class.php:162 lib/pages/processlogin.class.php:186 #, fuzzy -msgid "username" -msgstr "用户名" +msgid "Scheduled Task run time" +msgstr "计划任务" + +msgid "Scheduled Tasks" +msgstr "计划任务" -#: lib/pages/processlogin.class.php:164 -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:70 -#: lib/plugins/slack/events/loginfailure_slack.event.php:75 -msgid "failed to login" -msgstr "登录失败" +msgid "Scheduled date is in the past" +msgstr "预定日期是过去" -#: lib/pages/processlogin.class.php:185 #, fuzzy -msgid "Login accepted" -msgstr "登录" +msgid "Scheduled tasks successfully created" +msgstr "已成功更新" -#: lib/pages/processlogin.class.php:188 -msgid "logged in" -msgstr "" +msgid "Scheduler" +msgstr "调度" -#: lib/pages/processlogin.class.php:246 -#, fuzzy -msgid "FOG Project" -msgstr "FOG项目在Github" +msgid "Screen Height (in pixels)" +msgstr "屏幕高度(以像素为单位)" -#: lib/plugins/accesscontrol/hooks/addaccesscontrolmenuitem.hook.php:96 -#, fuzzy -msgid "Access Controls" -msgstr "所有访问控制" +msgid "Screen Refresh Rate (in Hz)" +msgstr "屏幕刷新率(赫兹)" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:101 -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:305 -#, fuzzy -msgid "Role" -msgstr "去掉" +msgid "Screen Width (in pixels)" +msgstr "屏幕宽度(以像素为单位)" -#: lib/plugins/accesscontrol/hooks/addaccesscontroluser.hook.php:200 -#, fuzzy -msgid "User Access Control" -msgstr "访问控制" +msgid "Search" +msgstr "搜索" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:52 #, fuzzy -msgid "Export Accesscontrols" -msgstr "访问控制" +msgid "Search Base DN" +msgstr "搜索" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:53 #, fuzzy -msgid "Import Accesscontrols" -msgstr "访问控制" +msgid "Search DN" +msgstr "搜索" + +msgid "Search DN did not return any results" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:70 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:140 #, fuzzy -msgid "Rule Association" -msgstr "图像协会" +msgid "Search Method" +msgstr "搜索" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:74 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:144 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:247 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:345 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:494 #, fuzzy -msgid "Role Name" -msgstr "模块名称" +msgid "Search Scope" +msgstr "搜索" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:175 #, fuzzy -msgid "Rule type" -msgstr "模块类型" +msgid "Search pattern" +msgstr "搜索" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:176 -msgid "Rule value" +msgid "Search results returned false" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:177 #, fuzzy -msgid "Parent Node" -msgstr "打印机型号" +msgid "Second paramater must be in array(class,function)" +msgstr "第二个参数的形式必须是数组(钩类,函数运行)" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:235 -#, fuzzy, php-format -msgid "List all roles" -msgstr "列表中的所有%s" +msgid "Select Image" +msgstr "选择图片" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:236 -#, fuzzy, php-format -msgid "Add new role" -msgstr "添加新的用户帐户" +msgid "Select User" +msgstr "选择用户" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:237 -#, fuzzy, php-format -msgid "List all rules" -msgstr "列表中的所有%s" +msgid "Select a cron type" +msgstr "选择一个cron类型" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:238 -#, fuzzy, php-format -msgid "Add new rule" -msgstr "添加新的用户帐户" +msgid "Select a valid image" +msgstr "选择一个有效的图像" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:248 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:352 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:501 #, fuzzy -msgid "Role Description" -msgstr "描述" +msgid "Select management level for these hosts" +msgstr "该主机中选择管理水平" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:332 #, fuzzy -msgid "New Role" -msgstr "新菜单" +msgid "Select management level for this host" +msgstr "该主机中选择管理水平" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:360 -#, fuzzy -msgid "Create New Access Control Role" -msgstr "所有访问控制" +msgid "Select/Deselect All" +msgstr "选择/取消全部" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:420 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:230 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:186 #, fuzzy -msgid "A name is required!" -msgstr "图像名是必需的!" +msgid "Selected Logins" +msgstr "打印机" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:427 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:572 -#, fuzzy -msgid "A role already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Selected groups's current activity" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:434 #, fuzzy -msgid "Add role failed!" -msgstr "添加管理单元失败!" +msgid "Selected hosts approved successfully" +msgstr "保存成功" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:439 #, fuzzy -msgid "Role added!" -msgstr "打印机名称" +msgid "Selected hosts deleted successfully" +msgstr "安装/升级成功!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:440 #, fuzzy -msgid "Role Create Success" -msgstr "用户创建" +msgid "Selected node's disk usage" +msgstr "所选节点的图像存储磁盘使用情况" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:448 -#, fuzzy -msgid "Role Create Fail" -msgstr "用户创建" +msgid "Serial" +msgstr "串行" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:531 -#, fuzzy -msgid "Access Control Role General" -msgstr "所有访问控制" +msgid "Serial Number" +msgstr "序列号" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:579 -#, fuzzy -msgid "Role update failed!" -msgstr "用户更新失败" +msgid "Server Shell" +msgstr "服务器外壳" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:584 #, fuzzy -msgid "Role updated!" -msgstr "客户端更新" +msgid "Server information" +msgstr "一般信息" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:585 #, fuzzy -msgid "Role Update Success" -msgstr "用户创建" +msgid "Server information at a glance." +msgstr "LDAP信息更新!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:594 -#, fuzzy -msgid "Role Update Fail" -msgstr "集团创建失败" +msgid "Service" +msgstr "服务" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:620 -#, fuzzy -msgid "Access Control Rules" -msgstr "所有访问控制" +msgid "Service Configuration" +msgstr "服务配置" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:626 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:920 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1102 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1410 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1534 -#, fuzzy -msgid "Parent" -msgstr "百分" +msgid "Service Master" +msgstr "服务主" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:740 #, fuzzy -msgid "Access Control Rule" -msgstr "所有访问控制" +msgid "Service Setting Update Failed" +msgstr "设置更新" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:884 #, fuzzy -msgid "New Rule" -msgstr "新菜单" +msgid "Service Setting Update Success" +msgstr "安装/升级成功!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:912 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1094 #, fuzzy -msgid "Rule Type" -msgstr "模块类型" +msgid "Service Start" +msgstr "服务状态" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:928 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1110 -#, fuzzy -msgid "Node Parent" -msgstr "百分" +msgid "Service Status" +msgstr "服务状态" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:936 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1118 -#, fuzzy -msgid "Rule Value" -msgstr "值" +msgid "Service Tag" +msgstr "服务标签" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:944 #, fuzzy -msgid "Create Rule?" -msgstr "创建用户" +msgid "Service general" +msgstr "主机内核" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1021 -#, fuzzy -msgid "A rule already exists with this name." -msgstr "图像已经存在具有此名称!" +msgid "Service update failed" +msgstr "服务更新失败" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1030 -#, fuzzy -msgid "Add rule failed!" -msgstr "添加管理单元失败!" +msgid "Session Name" +msgstr "会话名称" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1035 -#, fuzzy -msgid "Rule added!" -msgstr "打印机名称" +msgid "Session altered improperly" +msgstr "会议修改不当" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1036 -#, fuzzy -msgid "Rule Create Success" -msgstr "用户创建" +msgid "Session name cannot be the same as an existing hostname" +msgstr "会话名称不能相同的现有的主机名" + +msgid "Session timeout" +msgstr "会话超时" + +msgid "Session with that name already exists" +msgstr "会话使用该名称已经存在" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1044 #, fuzzy -msgid "Rule Create Fail" -msgstr "用户创建" +msgid "Set Failed" +msgstr "失败" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1154 #, fuzzy -msgid "Access Control Rule General" -msgstr "所有访问控制" +msgid "Set failed" +msgstr "服务更新失败" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1221 -msgid "Failed to update" -msgstr "无法更新" +msgid "Setting Key" +msgstr "设置键" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1226 -#, fuzzy -msgid "Rule updated!" -msgstr "客户端更新" +msgid "Setting logout to one second prior to next login" +msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1227 -#, fuzzy -msgid "Rule Update Success" -msgstr "用户创建" +msgid "Settings" +msgstr "设置" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1236 #, fuzzy -msgid "Rule Update Fail" -msgstr "集团创建失败" +msgid "Settings Update Fail" +msgstr "设置更新" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1355 #, fuzzy -msgid "Fail to destroy" -msgstr "未能摧毁" +msgid "Settings Update Success" +msgstr "安装/升级成功!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1361 #, fuzzy -msgid "Rule deleted successfully!" -msgstr "安装/升级成功!" +msgid "Settings successfully stored!" +msgstr "已成功更新" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1362 -msgid "Rule Delete Success" +msgid "Should anything go wrong" msgstr "" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1374 -#, fuzzy -msgid "Rule Delete Fail" -msgstr "删除的文件数据" +msgid "Shutdown" +msgstr "关掉" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1408 -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1532 -#, fuzzy -msgid "Rule Name" -msgstr "模块名称" +msgid "Shutdown after deploy" +msgstr "部署后关机" + +msgid "Shutdown after install" +msgstr "关机后安装" + +msgid "Signed" +msgstr "签" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1472 #, fuzzy -msgid "Rule Membership" -msgstr "籍" +msgid "Site" +msgstr "最大尺寸" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1493 #, fuzzy -msgid "Check here to see what rules can be added" -msgstr "请查看这里以可以添加哪些打印机" +msgid "Site Association" +msgstr "图像协会" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1503 #, fuzzy -msgid "Add Rules" -msgstr "添加用户" +msgid "Site Control Management" +msgstr "门禁管理" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1510 #, fuzzy -msgid "Add selected rules" -msgstr "打印机" +msgid "Site Create Fail" +msgstr "打印机更新失败!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1571 #, fuzzy -msgid "Remove Accesscontrol Rules" -msgstr "所有访问控制" +msgid "Site Create Success" +msgstr "打印机已经存在" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1578 #, fuzzy -msgid "Remove selected rules" -msgstr "删除选定snapins" +msgid "Site Description" +msgstr "打印机说明" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1647 #, fuzzy -msgid "No role selected" -msgstr "删除所选" +msgid "Site General" +msgstr "打印机型号" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1650 #, fuzzy -msgid "No rule selected" -msgstr "删除所选" +msgid "Site Name" +msgstr "打印机名称" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1664 #, fuzzy -msgid "Associate rule failed!" -msgstr "添加管理单元失败!" +msgid "Site Update Fail" +msgstr "打印机更新失败!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1673 #, fuzzy -msgid "Rule associate success!" -msgstr "用户创建" +msgid "Site Update Success" +msgstr "打印机更新!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1674 #, fuzzy -msgid "Rule Associate Success" -msgstr "用户创建" +msgid "Site Updated!" +msgstr "打印机更新!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1682 #, fuzzy -msgid "Rule Associate Fail" -msgstr "图像协会" +msgid "Site added!" +msgstr "打印机名称" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1712 #, fuzzy -msgid "User name" -msgstr "用户名" +msgid "Site update failed!" +msgstr "打印机更新失败!" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1788 -#: lib/plugins/site/pages/sitemanagementpage.class.php:732 #, fuzzy -msgid "Check here to see what users can be added" -msgstr "请查看这里以可以添加哪些打印机" +msgid "Sites" +msgstr "分钟" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1798 -#: lib/plugins/site/pages/sitemanagementpage.class.php:742 #, fuzzy -msgid "Add Users" -msgstr "添加用户" +msgid "Size" +msgstr "最大尺寸" + +msgid "Slack Accounts" +msgstr "斯莱克账户" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1805 -#: lib/plugins/site/pages/sitemanagementpage.class.php:749 #, fuzzy -msgid "Add selected users" -msgstr "打印机" +msgid "Slack Management" +msgstr "任务管理" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1846 -#: lib/plugins/site/pages/sitemanagementpage.class.php:790 #, fuzzy -msgid "Remove Users" -msgstr "去掉" +msgid "Smart Installer" +msgstr "智能安装(推荐)" + +msgid "Snapin" +msgstr "管理单元" + +msgid "Snapin Args" +msgstr "管理单元参数数量" + +msgid "Snapin Arguments" +msgstr "管理单元参数" -#: lib/plugins/accesscontrol/pages/accesscontrolmanagementpage.class.php:1853 -#: lib/plugins/site/pages/sitemanagementpage.class.php:797 #, fuzzy -msgid "Remove selected users" -msgstr "删除选定snapins" +msgid "Snapin Arguments Hidden" +msgstr "管理单元参数" -#: lib/plugins/capone/hooks/addbootmenuitem.hook.php:89 -msgid "Capone Deploy" -msgstr "卡波恩部署" +msgid "Snapin Client" +msgstr "客户端管理单元" + +msgid "Snapin Command" +msgstr "管理单元命令" -#: lib/plugins/ldap/class/ldap.class.php:107 #, fuzzy -msgid "Function does not exist" -msgstr "方法不存在" +msgid "Snapin Create Fail" +msgstr "更新管理单元" -#: lib/plugins/ldap/class/ldap.class.php:147 #, fuzzy -msgid "Port is not valid ldap/ldaps port" -msgstr "端口是无效的LDAP / LDAPS端口" +msgid "Snapin Create Success" +msgstr "更新管理单元" -#: lib/plugins/ldap/class/ldap.class.php:295 #, fuzzy -msgid "We cannot connect to LDAP server" -msgstr "无法连接到数据库" +msgid "Snapin Created" +msgstr "更新管理单元" -#: lib/plugins/ldap/class/ldap.class.php:379 -msgid "Using the group match function" -msgstr "" +msgid "Snapin Creation Date" +msgstr "管理单元创建日期" -#: lib/plugins/ldap/class/ldap.class.php:380 -msgid "but bind password is not set" -msgstr "" +msgid "Snapin Creation Time" +msgstr "管理单元创建时间" -#: lib/plugins/ldap/class/ldap.class.php:398 -#, fuzzy -msgid "Cannot bind to the LDAP server" -msgstr "无法连接到数据库" +msgid "Snapin Description" +msgstr "管理单元说明" -#: lib/plugins/ldap/class/ldap.class.php:430 -msgid "Search results returned false" -msgstr "" +msgid "Snapin Enabled" +msgstr "启用管理单元" -#: lib/plugins/ldap/class/ldap.class.php:431 -#: lib/plugins/ldap/class/ldap.class.php:531 -#, fuzzy -msgid "Search DN" -msgstr "搜索" +msgid "Snapin File" +msgstr "文件管理单元" -#: lib/plugins/ldap/class/ldap.class.php:433 -#: lib/plugins/ldap/class/ldap.class.php:533 -#: lib/plugins/ldap/class/ldap.class.php:850 -#, fuzzy -msgid "Filter" -msgstr "文件" +msgid "Snapin File (exists)" +msgstr "文件管理单元(存在)" -#: lib/plugins/ldap/class/ldap.class.php:460 #, fuzzy -msgid "User was not authorized by the LDAP server" -msgstr "这个LDAP服务器输入名称。" +msgid "Snapin General" +msgstr "启用管理单元" -#: lib/plugins/ldap/class/ldap.class.php:461 #, fuzzy -msgid "User DN" -msgstr "用户名" +msgid "Snapin Hash" +msgstr "管理单元路径" -#: lib/plugins/ldap/class/ldap.class.php:510 -msgid "All methods of binding have failed" -msgstr "" +msgid "Snapin History" +msgstr "历史管理单元" -#: lib/plugins/ldap/class/ldap.class.php:530 -msgid "Search DN did not return any results" -msgstr "" +msgid "Snapin ID" +msgstr "管理单元ID" -#: lib/plugins/ldap/class/ldap.class.php:573 -msgid "Access level is still 0 or false" -msgstr "" +#, fuzzy +msgid "Snapin Locations" +msgstr "位置" -#: lib/plugins/ldap/class/ldap.class.php:574 -msgid "No access is allowed" -msgstr "" +msgid "Snapin Log" +msgstr "日志管理单元" -#: lib/plugins/ldap/class/ldap.class.php:689 -msgid "Group Search DN did not return any results" -msgstr "" +msgid "Snapin Management" +msgstr "管理单元管理" + +msgid "Snapin Name" +msgstr "管理单元名称" -#: lib/plugins/ldap/class/ldap.class.php:690 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:269 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:724 #, fuzzy -msgid "Group Search DN" -msgstr "主机搜索" +msgid "Snapin Pack" +msgstr "管理单元路径" -#: lib/plugins/ldap/class/ldap.class.php:848 #, fuzzy -msgid "Search Method" -msgstr "搜索" +msgid "Snapin Pack Arguments" +msgstr "管理单元参数" -#: lib/plugins/ldap/class/ldap.class.php:852 #, fuzzy -msgid "Result" -msgstr "结果" +msgid "Snapin Pack File" +msgstr "文件管理单元" -#: lib/plugins/ldap/hooks/addldapmenuitem.hook.php:100 #, fuzzy -msgid "LDAP Servers" -msgstr "LDAP服务器" +msgid "Snapin Pack Template" +msgstr "模板管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:45 -msgid "LDAP Management" -msgstr "LDAP管理" +msgid "Snapin Path" +msgstr "管理单元路径" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:46 #, fuzzy -msgid "Export LDAPs" -msgstr "导出PDF" +msgid "Snapin Protected" +msgstr "更新管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:47 -#, fuzzy -msgid "Import LDAPs" -msgstr "进口" +msgid "Snapin Replicator" +msgstr "管理单元复制" + +msgid "Snapin Return Code" +msgstr "管理单元返回代码" + +msgid "Snapin Return Detail" +msgstr "管理单元返回详细" + +msgid "Snapin Run With" +msgstr "管理单元运行方式" + +msgid "Snapin Run With Args" +msgstr "管理单元运行方式参数数量" + +msgid "Snapin Run With Argument" +msgstr "管理单元运行带有参数" + +msgid "Snapin State" +msgstr "国家管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:51 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1036 #, fuzzy -msgid "Plugin Configuration" -msgstr "服务配置" +msgid "Snapin Storage Groups" +msgstr "无效的存储组" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:64 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:231 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:684 #, fuzzy -msgid "LDAP Connection Name" -msgstr "地点名称" +msgid "Snapin Task is invalid" +msgstr "管理单元无效" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:65 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:246 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:699 -msgid "LDAP Server Address" -msgstr "LDAP服务器地址" +msgid "Snapin Template" +msgstr "模板管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:71 #, fuzzy -msgid "LDAP Connection Name" -msgstr "地点名称" +msgid "Snapin Timeout (seconds)" +msgstr "菜单超时(以秒为单位)" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:72 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:239 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:692 -msgid "LDAP Server Description" -msgstr "LDAP服务器说明" +msgid "Snapin Transfer Log" +msgstr "管理单元传输日志" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:73 -msgid "LDAP Server" -msgstr "LDAP服务器" +#, fuzzy +msgid "Snapin Type" +msgstr "模板管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:75 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:277 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:732 #, fuzzy -msgid "Admin Group" -msgstr "修改组" +msgid "Snapin Update Fail" +msgstr "管理单元更新失败" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:143 -msgid "New LDAP Server" -msgstr "新建LDAP服务器" +#, fuzzy +msgid "Snapin Update Success" +msgstr "安装/升级成功!" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:205 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:652 -msgid "Base Only" -msgstr "" +#, fuzzy +msgid "Snapin Used" +msgstr "Snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:206 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:653 -msgid "Subtree Only" -msgstr "" +#, fuzzy +msgid "Snapin added!" +msgstr "管理单元名称" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:207 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:654 -msgid "Subree and Below" -msgstr "" +#, fuzzy +msgid "Snapin file is too big, increase post_max_size in php.ini." +msgstr "Snapin文件太大,在php.ini中增加post_max_size。" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:254 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:707 #, fuzzy -msgid "LDAP Server Port" -msgstr "LDAP服务器" +msgid "Snapin is invalid" +msgstr "管理单元无效" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:257 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:710 -msgid "Use Group Matching (recommended)" -msgstr "" +msgid "Snapin is protected and cannot be deleted" +msgstr "管理单元被保护,不能被删除" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:261 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:716 #, fuzzy -msgid "Search Base DN" -msgstr "搜索" +msgid "Snapin task not completed" +msgstr "管理单元无效" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:285 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:740 #, fuzzy -msgid "Mobile Group" -msgstr "修改组" +msgid "Snapin to be installed" +msgstr "启用管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:293 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:748 #, fuzzy -msgid "Initial Template" -msgstr "模板管理单元" +msgid "Snapin update failed!" +msgstr "管理单元更新失败" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:296 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:751 #, fuzzy -msgid "Pick a template" -msgstr "模板管理单元" +msgid "Snapin updated!" +msgstr "更新管理单元" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:299 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:754 -msgid "Microsoft AD" -msgstr "" +msgid "Snapins" +msgstr "Snapins" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:302 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:757 -msgid "OpenLDAP" +msgid "Snapins Are already deployed to this host" +msgstr "Snapins已经部署到该主机" + +msgid "So if you are trying to transmit to remote node A" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:305 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:760 -msgid "Generic LDAP" +msgid "Somebody will be able to help in some form" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:309 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:764 -#, fuzzy -msgid "User Name Attribute" -msgstr "用户名" +msgid "Space variable must be boolean" +msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:317 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:772 -msgid "Group Member Attribute" +msgid "Specified download URL not allowed!" msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:325 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:780 -#, fuzzy -msgid "Search Scope" -msgstr "搜索" +msgid "Start" +msgstr "开始" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:328 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:783 -msgid "Bind DN" -msgstr "" +msgid "Start Date" +msgstr "开始日期" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:336 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:791 -#, fuzzy -msgid "Bind Password" -msgstr "域密码" +msgid "Start Multicast Session" +msgstr "开始多播会话" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:344 #, fuzzy -msgid "Create New LDAP" -msgstr "新建%s" +msgid "Start Session" +msgstr "开始多播会话" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:457 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:229 -msgid "Not able to add" -msgstr "不能添加" +msgid "Start Time" +msgstr "开始时间" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:464 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:939 -msgid "Please enter a name for this LDAP server." -msgstr "这个LDAP服务器输入名称。" +msgid "Started By:" +msgstr "发起者:" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:469 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:944 -msgid "Please enter a LDAP server address" -msgstr "请输入LDAP服务器地址" +msgid "Started sync for" +msgstr "对于同步启动" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:474 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:949 #, fuzzy -msgid "Please enter a Search Base DN" -msgstr "请输入主机名" +msgid "Starting Image Replication" +msgstr "图像复制" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:479 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:954 #, fuzzy -msgid "Please select an LDAP port to use" -msgstr "请选择一个选项" +msgid "Starting Image Size Service" +msgstr "图像复制" + +msgid "Starting Snapin Hashing Service" +msgstr "" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:484 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:959 #, fuzzy -msgid "Please select a valid ldap port" -msgstr "请输入一个有效的IP" +msgid "Starting Snapin Replication" +msgstr "管理单元复制" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:489 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:964 #, fuzzy -msgid "Please Enter an admin or mobile lookup name" -msgstr "这个位置输入名称。" +msgid "Starting Sync Actions" +msgstr "启动同步操作" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:494 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:969 #, fuzzy -msgid "Please enter a User Name Attribute" -msgstr "请输入主机名" +msgid "Starting process" +msgstr "启动过程中..." + +msgid "State" +msgstr "州" + +msgid "Status" +msgstr "状态" + +msgid "Stop Task" +msgstr "停止任务" + +msgid "Storage" +msgstr "存储" + +msgid "Storage Group" +msgstr "存储组" + +msgid "Storage Group Activity" +msgstr "存储组活动" + +msgid "Storage Group Already Exists" +msgstr "存储组已存在" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:499 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:974 #, fuzzy -msgid "Please enter a Group Member Attribute" -msgstr "请输入LDAP服务器地址" +msgid "Storage Group Create Fail" +msgstr "存储组创建" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:504 -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:981 #, fuzzy -msgid "A LDAP setup already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Storage Group Create Success" +msgstr "用户创建" + +msgid "Storage Group Created" +msgstr "存储组创建" + +msgid "Storage Group Description" +msgstr "存储组说明" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:523 #, fuzzy -msgid "Add LDAP server failed!" -msgstr "添加管理单元失败!" +msgid "Storage Group General" +msgstr "存储组名称" + +msgid "Storage Group Name" +msgstr "存储组名称" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:528 #, fuzzy -msgid "LDAP Server added!" -msgstr "LDAP服务器名称" +msgid "Storage Group Update Fail" +msgstr "存储组更新" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:529 #, fuzzy -msgid "LDAP Create Success" +msgid "Storage Group Update Success" msgstr "用户创建" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:537 +msgid "Storage Group Updated" +msgstr "存储组更新" + +msgid "Storage Group deleted" +msgstr "存储组中删除" + #, fuzzy -msgid "LDAP Create Fail" -msgstr "用户创建" +msgid "Storage Group update failed!" +msgstr "用户更新失败" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:564 #, fuzzy -msgid "LDAP General" -msgstr "一般" +msgid "Storage Group updated!" +msgstr "存储组更新" + +msgid "Storage Management" +msgstr "存储管理" + +msgid "Storage Node" +msgstr "存储节点" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1000 #, fuzzy -msgid "Update LDAP server failed!" -msgstr "添加管理单元失败!" +msgid "Storage Node Create Fail" +msgstr "存储节点创建" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1005 #, fuzzy -msgid "LDAP Server updated!" -msgstr "LDAP服务器名称" +msgid "Storage Node Create Success" +msgstr "存储节点创建" + +msgid "Storage Node Created" +msgstr "存储节点创建" + +msgid "Storage Node Description" +msgstr "存储节点描述" + +msgid "Storage Node Disk Usage" +msgstr "存储节点的磁盘使用情况" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1006 #, fuzzy -msgid "LDAP Update Success" -msgstr "安装/升级成功!" +msgid "Storage Node General" +msgstr "存储节点接口" + +msgid "Storage Node IP" +msgstr "存储节点的IP" + +msgid "Storage Node Interface" +msgstr "存储节点接口" + +msgid "Storage Node Max Clients" +msgstr "存储节点最大客户" + +msgid "Storage Node Name" +msgstr "存储节点名称" + +msgid "Storage Node Password" +msgstr "存储节点密码" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1014 #, fuzzy -msgid "LDAP Update Fail" -msgstr "管理单元更新失败" +msgid "Storage Node Protocol" +msgstr "存储节点的IP" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1051 #, fuzzy -msgid "User Filter" -msgstr "文件" +msgid "Storage Node Update Fail" +msgstr "存储节点更新" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1058 #, fuzzy -msgid "LDAP Ports" -msgstr "LDAP服务器" +msgid "Storage Node Update Success" +msgstr "存储节点更新" -#: lib/plugins/ldap/pages/ldapmanagementpage.class.php:1127 -msgid "Not all elements in filter or ports setting are integer" -msgstr "" +msgid "Storage Node Updated" +msgstr "存储节点更新" -#: lib/plugins/location/config/plugin.config.php:28 -msgid "Location is a plugin that allows your FOG Server" -msgstr "" +msgid "Storage Node Username" +msgstr "存储节点的用户名" -#: lib/plugins/location/config/plugin.config.php:29 -msgid "to operate in an environment where there may be" -msgstr "" +#, fuzzy +msgid "Storage Node added!" +msgstr "存储节点名称" -#: lib/plugins/location/config/plugin.config.php:30 -msgid "multiple places to get your image" -msgstr "" +msgid "Storage Node already exists" +msgstr "存储节点已经存在" -#: lib/plugins/location/config/plugin.config.php:31 -msgid "This is especially useful if you have multiple" -msgstr "" +msgid "Storage Node deleted" +msgstr "存储节点删除" -#: lib/plugins/location/config/plugin.config.php:32 -msgid "sites with clients moving back and forth" -msgstr "" +#, fuzzy +msgid "Storage Node update failed!" +msgstr "存储节点更新" -#: lib/plugins/location/config/plugin.config.php:33 -msgid "between different sites" -msgstr "" +#, fuzzy +msgid "Storage Node updated!" +msgstr "存储节点更新" -#: lib/plugins/location/hooks/addlocationgroup.hook.php:102 -#: lib/plugins/location/hooks/addlocationgroup.hook.php:171 #, fuzzy -msgid "Location Association" -msgstr "图像协会" +msgid "String must be a string" +msgstr "事件必须是字符串" -#: lib/plugins/location/hooks/addlocationhost.hook.php:157 -msgid "Location/Deployed" -msgstr "位置/部署" +#, fuzzy +msgid "Subnet Groups" +msgstr "修改组" -#: lib/plugins/location/hooks/addlocationhost.hook.php:252 -msgid "Host Location" -msgstr "主机位置" +#, fuzzy +msgid "SubnetGroup General" +msgstr "存储组名称" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:113 #, fuzzy -msgid "This setting defines sending the" -msgstr "此设置定义" +msgid "Subnetgroup Create Fail" +msgstr "集团创建失败" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:114 -msgid "location url based on the host that checks in" -msgstr "" +#, fuzzy +msgid "Subnetgroup Create Success" +msgstr "用户创建" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:115 -msgid "It tells the client to download snapins from" -msgstr "" +#, fuzzy +msgid "Subnetgroup Management" +msgstr "集团管理" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:116 -msgid "the host defined location where available" -msgstr "" +#, fuzzy +msgid "Subnetgroup Update Fail" +msgstr "集团创建失败" -#: lib/plugins/location/hooks/addlocationmenuitem.hook.php:117 #, fuzzy -msgid "Default is disabled" -msgstr "捐款将被禁用" +msgid "Subnetgroup Update Success" +msgstr "用户创建" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:97 #, fuzzy -msgid "Snapin Locations" -msgstr "位置" +msgid "Subnetgroup added!" +msgstr "集团补充" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:100 -msgid "This area will allow the host checking in to tell" -msgstr "" +#, fuzzy +msgid "Subnetgroup update failed!" +msgstr "用户更新失败" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:101 #, fuzzy -msgid "where to download the snapin" -msgstr "无法找到该管理单元文件" +msgid "Subnetgroup updated!" +msgstr "集团补充" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:102 -msgid "This is useful in the case of slow links between" +msgid "Subnets" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:103 -msgid "the main and the host" +msgid "Subree and Below" msgstr "" -#: lib/plugins/location/hooks/addserviceconfiguration.hook.php:107 -msgid "Enable location Sending" +msgid "Subtree Only" msgstr "" -#: lib/plugins/location/pages/locationmanagementpage.class.php:42 -#, fuzzy -msgid "Export Locations" -msgstr "主机位置" +msgid "Successful" +msgstr "成功" -#: lib/plugins/location/pages/locationmanagementpage.class.php:43 #, fuzzy -msgid "Import Locations" -msgstr "主机位置" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:73 -#: lib/plugins/location/pages/locationmanagementpage.class.php:163 -#: lib/plugins/location/pages/locationmanagementpage.class.php:332 -msgid "Location Name" -msgstr "地点名称" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:76 -msgid "Kernels/Inits from location" -msgstr "从位置仁/ Inits" - -#: lib/plugins/location/pages/locationmanagementpage.class.php:133 -msgid "New Location" -msgstr "新位置" +msgid "Successfully added selected hosts to the group!" +msgstr "成功关联主机与本集团" -#: lib/plugins/location/pages/locationmanagementpage.class.php:178 -#: lib/plugins/location/pages/locationmanagementpage.class.php:347 -msgid "Use inits and kernels from this node" -msgstr "从这个节点inits和内核上使用" +#, fuzzy +msgid "Successfully created" +msgstr "成功更新" -#: lib/plugins/location/pages/locationmanagementpage.class.php:184 #, fuzzy -msgid "Create New Location" -msgstr "新建%s" +msgid "Successfully deleted" +msgstr "成功更新" -#: lib/plugins/location/pages/locationmanagementpage.class.php:232 -msgid "Location already Exists, please try again." -msgstr "位置已经存在,请重试。" +msgid "System Manufacturer" +msgstr "系统制造商" -#: lib/plugins/location/pages/locationmanagementpage.class.php:237 -msgid "Please enter a name for this location." -msgstr "这个位置输入名称。" +msgid "System Overview" +msgstr "系统总览" -#: lib/plugins/location/pages/locationmanagementpage.class.php:242 -msgid "Please select the storage group this location relates to." -msgstr "请选择此位置涉及存储组。" +msgid "System Product" +msgstr "系统产品" -#: lib/plugins/location/pages/locationmanagementpage.class.php:257 -#, fuzzy -msgid "Add location failed!" -msgstr "添加管理单元失败!" +msgid "System Serial" +msgstr "系统序列" -#: lib/plugins/location/pages/locationmanagementpage.class.php:263 -#, fuzzy -msgid "Location added!" -msgstr "地点名称" +msgid "System Serial Number" +msgstr "系统序列号" -#: lib/plugins/location/pages/locationmanagementpage.class.php:264 #, fuzzy -msgid "Location Create Success" -msgstr "更新管理单元" +msgid "System Tools" +msgstr "系统类型" -#: lib/plugins/location/pages/locationmanagementpage.class.php:272 -#, fuzzy -msgid "Location Create Fail" -msgstr "更新管理单元" +msgid "System Type" +msgstr "系统类型" -#: lib/plugins/location/pages/locationmanagementpage.class.php:299 #, fuzzy -msgid "Location General" -msgstr "启用管理单元" +msgid "System UUID" +msgstr "系统正常运行时间" -#: lib/plugins/location/pages/locationmanagementpage.class.php:421 -msgid "A location with that name already exists." -msgstr "具有该名称的位置已经存在。" +msgid "System Uptime" +msgstr "系统正常运行时间" -#: lib/plugins/location/pages/locationmanagementpage.class.php:427 -#, fuzzy -msgid "A group is required for a location" -msgstr "存储组是必需的!" +msgid "System Version" +msgstr "系统版本" -#: lib/plugins/location/pages/locationmanagementpage.class.php:442 -#, fuzzy -msgid "Location update failed!" -msgstr "管理单元更新失败" +msgid "TCP/IP" +msgstr "TCP / IP协议" -#: lib/plugins/location/pages/locationmanagementpage.class.php:448 -#, fuzzy -msgid "Location updated!" -msgstr "更新位置" +msgid "TCP/IP Port Printer" +msgstr "TCP / IP端口打印机" -#: lib/plugins/location/pages/locationmanagementpage.class.php:449 -#, fuzzy -msgid "Location Update Success" -msgstr "安装/升级成功!" +msgid "TX" +msgstr "TX" -#: lib/plugins/location/pages/locationmanagementpage.class.php:458 #, fuzzy -msgid "Location Update Fail" -msgstr "更新位置" - -#: lib/plugins/pushbullet/events/loginfailure_pushbullet.event.php:71 -#: lib/plugins/slack/events/loginfailure_slack.event.php:76 -msgid "Remote address attempting to login" -msgstr "" +msgid "Table not defined for this class" +msgstr "该类定义没有数据库表" -#: lib/plugins/pushbullet/hooks/addpushbulletmenuitem.hook.php:98 -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:44 -msgid "Pushbullet Accounts" -msgstr "Pushbullet账户" +msgid "Task" +msgstr "任务" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:46 -msgid "Link Pushbullet Account" -msgstr "链接Pushbullet账户" +msgid "Task Checkin Date" +msgstr "任务登记入住日期" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:56 -msgid "Email" -msgstr "电子邮件" +msgid "Task Checkin Time" +msgstr "任务登录时间" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:103 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:111 -msgid "Link New Account" -msgstr "链接新帐号" +#, fuzzy +msgid "Task Complete Date" +msgstr "任务登记入住日期" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:118 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:130 -msgid "Access Token" -msgstr "访问令牌" +#, fuzzy +msgid "Task Complete Time" +msgstr "任务登录时间" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:126 #, fuzzy -msgid "Add Pushbullet Account" -msgstr "Pushbullet账户" +msgid "Task ID" +msgstr "任务" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:182 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:253 -msgid "Account already linked" -msgstr "帐户已链接" +msgid "Task Management" +msgstr "任务管理" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:187 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:220 -msgid "Please enter an access token" -msgstr "请输入访问令牌" +msgid "Task Name" +msgstr "任务名称" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:200 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:258 -msgid "Failed to create" -msgstr "无法创建" +msgid "Task Reboot" +msgstr "任务重新启动" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:213 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:276 -#, fuzzy -msgid "Account successfully added!" -msgstr "成功更新" +msgid "Task State" +msgstr "任务状态" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:214 #, fuzzy -msgid "Link Pushbullet Account Success" -msgstr "链接Pushbullet账户" +msgid "Task State Create Fail" +msgstr "用户创建" -#: lib/plugins/pushbullet/pages/pushbulletmanagementpage.class.php:221 #, fuzzy -msgid "Link Pushbullet Account Fail" -msgstr "链接Pushbullet账户" +msgid "Task State Create Success" +msgstr "用户创建" -#: lib/plugins/site/hooks/addsitegroup.hook.php:101 -#: lib/plugins/site/hooks/addsitegroup.hook.php:165 #, fuzzy -msgid "Site Association" -msgstr "图像协会" +msgid "Task State General" +msgstr "任务状态" -#: lib/plugins/site/hooks/addsitegroup.hook.php:140 -#: lib/plugins/site/pages/sitemanagementpage.class.php:68 #, fuzzy -msgid "Site" -msgstr "最大尺寸" +msgid "Task State Management" +msgstr "任务管理" -#: lib/plugins/site/hooks/addsitehost.hook.php:149 -#: lib/plugins/site/hooks/addsiteuser.hook.php:123 #, fuzzy -msgid "Associated Sites" -msgstr "预估FOG网站" +msgid "Task State Update Fail" +msgstr "用户创建" -#: lib/plugins/site/hooks/addsitehost.hook.php:287 #, fuzzy -msgid "Host Site" -msgstr "主机列表" +msgid "Task State Update Success" +msgstr "用户创建" -#: lib/plugins/site/hooks/addsitemenuitem.hook.php:96 -#: lib/plugins/site/hooks/addsiteuser.hook.php:368 #, fuzzy -msgid "Sites" -msgstr "分钟" +msgid "Task State Updated!" +msgstr "任务状态添加,编辑" -#: lib/plugins/site/hooks/addsiteuser.hook.php:124 #, fuzzy -msgid "Is restricted" -msgstr "任务开始" +msgid "Task State added!" +msgstr "任务状态添加,编辑" -#: lib/plugins/site/hooks/addsiteuser.hook.php:204 -#, fuzzy -msgid "No site" -msgstr "没有设置" +msgid "Task States" +msgstr "任务的国家" -#: lib/plugins/site/hooks/addsiteuser.hook.php:271 -msgid "Is Restricted User " -msgstr "" +msgid "Task Type" +msgstr "任务类型" -#: lib/plugins/site/hooks/addsiteuser.hook.php:350 #, fuzzy -msgid "No Site" -msgstr "没有设置" +msgid "Task Type Create Fail" +msgstr "用户创建" -#: lib/plugins/site/pages/sitemanagementpage.class.php:52 #, fuzzy -msgid "Export Sites" -msgstr "出口打印机" +msgid "Task Type Create Success" +msgstr "用户创建" -#: lib/plugins/site/pages/sitemanagementpage.class.php:53 #, fuzzy -msgid "Import Sites" -msgstr "进口打印机" +msgid "Task Type General" +msgstr "任务状态" -#: lib/plugins/site/pages/sitemanagementpage.class.php:64 #, fuzzy -msgid "Hosts Associated" -msgstr "没有snapins相关" +msgid "Task Type Management" +msgstr "任务管理" -#: lib/plugins/site/pages/sitemanagementpage.class.php:73 #, fuzzy -msgid "Host Associated" -msgstr "无关联的节点" +msgid "Task Type Update Fail" +msgstr "用户更新失败" -#: lib/plugins/site/pages/sitemanagementpage.class.php:82 -#: lib/plugins/site/pages/sitemanagementpage.class.php:150 -#: lib/plugins/site/pages/sitemanagementpage.class.php:292 #, fuzzy -msgid "Site Name" -msgstr "打印机名称" +msgid "Task Type Update Success" +msgstr "安装/升级成功!" -#: lib/plugins/site/pages/sitemanagementpage.class.php:83 -#: lib/plugins/site/pages/sitemanagementpage.class.php:158 -#: lib/plugins/site/pages/sitemanagementpage.class.php:301 #, fuzzy -msgid "Site Description" -msgstr "打印机说明" +msgid "Task Type Updated!" +msgstr "任务类型" -#: lib/plugins/site/pages/sitemanagementpage.class.php:130 #, fuzzy -msgid "New Site" -msgstr "添加新的管理单元" +msgid "Task Type added!" +msgstr "任务状态添加,编辑" + +msgid "Task Type is not valid" +msgstr "任务类型是无效" + +msgid "Task Types" +msgstr "任务类型" + +msgid "Task forced to start" +msgstr "任务强行启动" -#: lib/plugins/site/pages/sitemanagementpage.class.php:166 -#, fuzzy -msgid "Create Site" -msgstr "创建" +msgid "Task not created as there are no associated tasks" +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:227 #, fuzzy -msgid "A site already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Task sent to" +msgstr "任务状态" -#: lib/plugins/site/pages/sitemanagementpage.class.php:233 #, fuzzy -msgid "Add site failed!" -msgstr "添加管理单元失败!" +msgid "Task started" +msgstr "任务开始" -#: lib/plugins/site/pages/sitemanagementpage.class.php:238 #, fuzzy -msgid "Site added!" -msgstr "打印机名称" +msgid "Task started for" +msgstr "任务开始了" -#: lib/plugins/site/pages/sitemanagementpage.class.php:239 -#, fuzzy -msgid "Site Create Success" -msgstr "打印机已经存在" +msgid "Task type is not valid" +msgstr "任务类型无效" -#: lib/plugins/site/pages/sitemanagementpage.class.php:247 #, fuzzy -msgid "Site Create Fail" -msgstr "打印机更新失败!" +msgid "Tasked Successfully" +msgstr "保存成功" -#: lib/plugins/site/pages/sitemanagementpage.class.php:339 -#, fuzzy -msgid "Site General" -msgstr "打印机型号" +msgid "Tasked successfully, click active tasks to view in line." +msgstr "" -#: lib/plugins/site/pages/sitemanagementpage.class.php:401 -#, fuzzy -msgid "A site alread exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Tasking" +msgstr "任务" -#: lib/plugins/site/pages/sitemanagementpage.class.php:410 #, fuzzy -msgid "Site update failed!" -msgstr "打印机更新失败!" +msgid "Tasking Failed" +msgstr "任务" -#: lib/plugins/site/pages/sitemanagementpage.class.php:415 -#, fuzzy -msgid "Site Updated!" -msgstr "打印机更新!" +msgid "Tasks" +msgstr "任务" -#: lib/plugins/site/pages/sitemanagementpage.class.php:416 -#, fuzzy -msgid "Site Update Success" -msgstr "打印机更新!" +msgid "Team" +msgstr "球队" -#: lib/plugins/site/pages/sitemanagementpage.class.php:424 #, fuzzy -msgid "Site Update Fail" -msgstr "打印机更新失败!" +msgid "Terminal" +msgstr "串行" -#: lib/plugins/site/pages/sitemanagementpage.class.php:505 -#, fuzzy -msgid "Host Membership" -msgstr "籍" +msgid "Terms and Conditions" +msgstr "条款和条件" -#: lib/plugins/site/pages/sitemanagementpage.class.php:526 -#, fuzzy -msgid "Check here to see what hosts can be added" -msgstr "请查看这里以可以添加哪些打印机" +msgid "Text" +msgstr "文本" -#: lib/plugins/site/pages/sitemanagementpage.class.php:536 #, fuzzy -msgid "Add Hosts" -msgstr "所有主机" +msgid "The 'Is Master Node' setting defines which" +msgstr "此设置定义" -#: lib/plugins/site/pages/sitemanagementpage.class.php:543 #, fuzzy -msgid "Add selected hosts" -msgstr "打印机" +msgid "The assigned image is protected" +msgstr "未选择或项目被保护" -#: lib/plugins/site/pages/sitemanagementpage.class.php:582 #, fuzzy -msgid "Remove Hosts" -msgstr "去掉" +msgid "The below items are only used for the old client." +msgstr "此设置定义使用SSH客户端的用户名。" -#: lib/plugins/site/pages/sitemanagementpage.class.php:589 -#, fuzzy -msgid "Remove selected hosts" -msgstr "删除选定snapins" +msgid "The clients will checkin with the server from time" +msgstr "" -#: lib/plugins/slack/class/slack.class.php:19 -msgid "Channel call is invalid" -msgstr "通道调用无效" +msgid "The following errors occured" +msgstr "下面的错误发生" -#: lib/plugins/slack/class/slack.class.php:35 -msgid "User call is invalid" -msgstr "用户调用无效" +msgid "The following errors occurred" +msgstr "出现以下错误" -#: lib/plugins/slack/class/slackhandler.class.php:128 -msgid "Invalid method called" -msgstr "所谓的无效方法" +msgid "The image storage group assigned is not valid" +msgstr "分配图像存储组无效" -#: lib/plugins/slack/events/imagecomplete_slack.event.php:76 #, fuzzy -msgid "Completed imaging" -msgstr "完成" - -#: lib/plugins/slack/hooks/addslackmenuitem.hook.php:87 -#: lib/plugins/slack/pages/slackmanagementpage.class.php:44 -msgid "Slack Accounts" -msgstr "斯莱克账户" +msgid "The installers for the fog client" +msgstr "此设置定义使用SSH客户端的用户名。" -#: lib/plugins/slack/hooks/removeslackitem.hook.php:92 -#: lib/plugins/slack/hooks/removeslackitem.hook.php:121 -msgid "Account removed from FOG GUI at" -msgstr "应收FOG GUI中删除在" +msgid "The key will be assigned to registered hosts when a" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:46 -msgid "Link Slack Account" -msgstr "链接松弛账户" +msgid "The node trying to be used is currently" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:55 -msgid "Team" -msgstr "球队" +msgid "The old client is what was distributed with" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:56 -#: lib/reports/imaging_log.report.php:184 -#: lib/reports/imaging_log.report.php:202 -msgid "Created By" -msgstr "由...制作" +msgid "The old client is what was distributed with FOG 1.2.0 and earlier" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:57 -msgid "User/Channel Name" -msgstr "用户/通道名称" +msgid "The old client iswhat was distributed with" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:138 -msgid "User/Channel to post to" -msgstr "用户/通道张贴到" +msgid "The old client was distributed with FOG 1.2.0 and earlier." +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:146 -#, fuzzy -msgid "Add Slack Account" -msgstr "斯莱克账户" +msgid "The primary mac associated is" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:212 -msgid "Must use an" +msgid "The settings tend to be global which affects all hosts." msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:214 +msgid "The storage groups associated storage node is not valid" +msgstr "存储组相关联的存储节点无效" + #, fuzzy -msgid "to signify if this is a user or channel to send to" -msgstr "必须使用@或#来表示,如果这是一个用户或通道发送消息到!" +msgid "The uploaded file exceeds the max_file_size" +msgstr "上传的文件超过php.ini中定义的upload_max_filesize指令" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:228 -msgid "Invalid token passed" -msgstr "无效的令牌传递" +#, fuzzy +msgid "The uploaded file exceeds the upload_max_filesize" +msgstr "上传的文件超过php.ini中定义的upload_max_filesize指令" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:240 -msgid "Invalid user and/or channel passed" -msgstr "无效的用户和/或通道通过" +msgid "The uploaded file was only partially uploaded" +msgstr "上传的文件只有部分被上传" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:266 -msgid "Account linked to FOG GUI at" -msgstr "帐户相关联的雾GUI" +msgid "There are" +msgstr "有" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:277 #, fuzzy -msgid "Link Slack Account Success" -msgstr "链接松弛账户" +msgid "There are currently" +msgstr "有" + +msgid "There are many reasons why this could be the case" +msgstr "" -#: lib/plugins/slack/pages/slackmanagementpage.class.php:284 #, fuzzy -msgid "Link Slack Account Fail" -msgstr "链接松弛账户" +msgid "There are no groups on this server" +msgstr "有此服务器上没有组。" -#: lib/plugins/subnetgroup/hooks/addsubnetgroupmenuitem.hook.php:98 #, fuzzy -msgid "Subnet Groups" -msgstr "修改组" +msgid "There are no hosts to task in this group" +msgstr "有此服务器上没有组。" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:48 #, fuzzy -msgid "Export Subnetgroups" -msgstr "出口组" +msgid "There are no images on this server" +msgstr "有此服务器上没有图像。" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:49 #, fuzzy -msgid "Import Subnetgroups" -msgstr "导入组" +msgid "There are no locations on this server" +msgstr "有此服务器上没有的位置。" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:61 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:68 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:167 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:350 -msgid "Subnets" +msgid "There are no other members to sync to" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:146 -#, fuzzy -msgid "New Subnetgroup" -msgstr "存储组" +msgid "There are no snapins associated with this host" +msgstr "没有与此主机关联snapins" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:180 #, fuzzy -msgid "Create New SubnetGroup?" -msgstr "创建新组" +msgid "There are no snapins on this server" +msgstr "有此服务器上没有snapins。" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:235 #, fuzzy -msgid "A subnetgroup already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "There are open slots" +msgstr "有开口槽,但" + +msgid "There is a host in a tasking" +msgstr "有在一个任务的主机" + +msgid "There is nothing to replicate" +msgstr "没有什么可以复制" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:240 #, fuzzy -msgid "A group is required!" -msgstr "图像名是必需的!" +msgid "There were errors during import!" +msgstr "进口过程中有错误" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:247 -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:456 -msgid "A subnet group is already using this group." +msgid "There you can download utilities such as FOG Prep" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:256 -#, fuzzy -msgid "Please enter a valid CIDR subnets comma separated list" -msgstr "请输入一个有效的IP地址" +msgid "This MAC Belongs to another host" +msgstr "该MAC属于另一台主机" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:269 -#, fuzzy -msgid "Add Subnetgroup failed!" -msgstr "添加管理单元失败!" +msgid "This area will allow the host checking in to tell" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:274 -#, fuzzy -msgid "Subnetgroup added!" -msgstr "集团补充" +msgid "This file will only work on Windows" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:275 #, fuzzy -msgid "Subnetgroup Create Success" -msgstr "用户创建" +msgid "This host already exists" +msgstr "打印机已经存在" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:283 -#, fuzzy -msgid "Subnetgroup Create Fail" -msgstr "集团创建失败" +msgid "This installation process may take a few minutes" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:329 -#, fuzzy -msgid "SubnetGroup General" -msgstr "存储组名称" +msgid "This is a cron style task that should not run now." +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:442 -#, fuzzy -msgid "A subnet group already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "This is a cron style task that should run now." +msgstr "" + +msgid "This is a single run task that should not run now." +msgstr "" + +msgid "This is a single run task that should run now." +msgstr "" + +msgid "This is especially useful if you have multiple" +msgstr "" + +msgid "This is ipxe script commands to operate with" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:447 #, fuzzy -msgid "A group must be selected." -msgstr "事件必须是字符串" +msgid "This is not the master for this group" +msgstr "|这不是主要组" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:461 #, fuzzy -msgid "Please enter a valid CIDR subnet." -msgstr "请输入一个有效的主机名" +msgid "This is not the primary group" +msgstr "|这不是主要组" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:463 -msgid "Can be a comma seperated list." +msgid "This is only here to maintain old client operations" msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:493 -#, fuzzy -msgid "Subnetgroup update failed!" -msgstr "用户更新失败" - -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:498 -#, fuzzy -msgid "Subnetgroup updated!" -msgstr "集团补充" +msgid "This is set in seconds and causes the default option" +msgstr "" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:499 #, fuzzy -msgid "Subnetgroup Update Success" -msgstr "用户创建" +msgid "This is the recommended installer to use now" +msgstr "这是推荐的安装程序现在使用。它可以在Windows,Linux和Mac OS X上使用" -#: lib/plugins/subnetgroup/pages/subnetgroupmanagementpage.class.php:507 -#, fuzzy -msgid "Subnetgroup Update Fail" -msgstr "集团创建失败" +msgid "This is useful in the case of slow links between" +msgstr "" -#: lib/plugins/taskstateedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task States fog currently has." +msgid "This item allows you to edit all of the iPXE Menu items as you" msgstr "" -#: lib/plugins/taskstateedit/hooks/addtaskstateeditmenuitem.hook.php:103 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:43 -msgid "Task States" -msgstr "任务的国家" +msgid "This module did not work past Windows XP" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:40 -#, fuzzy -msgid "Export Task States" -msgstr "任务的国家" +msgid "This module did not work past Windows XP due" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task States" -msgstr "任务的国家" +msgid "This module did not work past Windows XP due to" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:44 -msgid "Task State" -msgstr "任务状态" +msgid "This module did not work past Windows XP due to UAC." +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:54 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:63 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:154 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:343 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:54 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:189 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:465 -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:54 -msgid "Icon" -msgstr "图标" +msgid "This module has been replaced in the new client" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:111 -msgid "New Task State" -msgstr "新的任务状态" +msgid "This module has since been replaced with Power Management." +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:157 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:346 -msgid "Additional Icon elements" -msgstr "其他图标元素" +msgid "This module is only used" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:165 #, fuzzy -msgid "Create Task state" -msgstr "新的任务状态" +msgid "This module is only used on the old client" +msgstr "此设置定义使用SSH客户端的用户名。" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:237 -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:453 #, fuzzy -msgid "A task state already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "This module is only used on the old client." +msgstr "此设置定义使用SSH客户端的用户名。" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:245 -#, fuzzy -msgid "Add task state failed!" -msgstr "添加管理单元失败!" +msgid "This node does not appear to be online" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:254 #, fuzzy -msgid "Task State added!" -msgstr "任务状态添加,编辑" +msgid "This page allows you to upload a CSV file into FOG to ease" +msgstr "此设置定义代理用户名使用。" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:255 #, fuzzy -msgid "Task State Create Success" -msgstr "用户创建" +msgid "This plugin is not installed" +msgstr "这个插件是当前未安装,你想现在安装?" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:263 #, fuzzy -msgid "Task State Create Fail" -msgstr "用户创建" +msgid "This section allows you to customize or alter" +msgstr "此设置定义代理用户名使用。" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:384 #, fuzzy -msgid "Task State General" -msgstr "任务状态" +msgid "" +"This section allows you to import known mac address makers into the FOG " +"database for easier identification" +msgstr "这部分可以导入已知MAC地址厂商成雾数据库更容易识别。" + +msgid "This section allows you to update" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:461 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:634 #, fuzzy -msgid "Update task state failed!" -msgstr "添加管理单元失败!" +msgid "This section allows you to update the modules and" +msgstr "此设置定义代理用户名使用。" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:466 #, fuzzy -msgid "Task State Updated!" -msgstr "任务状态添加,编辑" +msgid "This section allows you to uploade user" +msgstr "此设置定义代理用户名使用。" + +msgid "This servers ip(s)" +msgstr "" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:467 #, fuzzy -msgid "Task State Update Success" -msgstr "用户创建" +msgid "This setting" +msgstr "此设置定义" -#: lib/plugins/taskstateedit/pages/taskstateeditmanagementpage.class.php:475 #, fuzzy -msgid "Task State Update Fail" -msgstr "用户创建" +msgid "This setting defines sending the" +msgstr "此设置定义" -#: lib/plugins/tasktypeedit/config/plugin.config.php:25 -msgid "Allows editing/creating of Task Types fog currently has." +msgid "This setting limits the bandwidth for replication between nodes" msgstr "" -#: lib/plugins/tasktypeedit/hooks/addtasktypeeditmenuitem.hook.php:103 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:43 -msgid "Task Types" -msgstr "任务类型" - -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:40 #, fuzzy -msgid "Export Task Types" -msgstr "任务类型" +msgid "" +"This setting only adds and removes printers that are managed by FOG. If the " +"printer exists in printer management but is not assigned to a host, it will " +"remove the printer if it exists on the unassigned host. It will add printers " +"to the host that are assigned." +msgstr "" +"此设置只添加和删除由FOG管理的打印机。如果打印机管理存在的打印机,但没有分配给" +"主机时,如果存在未分配的主机上删除打印机。这将增加打印机被分配主机。" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:41 -#, fuzzy -msgid "Import Task Types" -msgstr "任务类型" +msgid "This setting turns off all FOG Printer Management" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:65 -msgid "Access" -msgstr "访问" +msgid "" +"This setting will only allow FOG Assigned printers to be added to the host. " +"Any printer that is not assigned will be removed including non-FOG managed " +"printers." +msgstr "" +"此设置仅允许FOG分配的打印机要添加到主机。没有分配任何打印机将包括非FOG管理的" +"打印机被删除。" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:66 -msgid "Kernel Args" -msgstr "内核参数数量" +msgid "This will allow you to configure how services" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:113 -msgid "New Task Type" -msgstr "键入新任务" +msgid "Those images should be activated with the associated" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:200 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:476 -msgid "Kernel Arguments" -msgstr "内核参数" +msgid "Time" +msgstr "时间" + +msgid "Time Already Exists" +msgstr "时间已存在" + +msgid "Timeout" +msgstr "时间到" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:208 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:484 #, fuzzy -msgid "Init" -msgstr "在" +msgid "Title must be a string" +msgstr "事件必须是字符串" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:224 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:500 -msgid "Is Advanced" -msgstr "是Advanced" +msgid "To be released only by" +msgstr "如果只公布由" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:230 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:506 -msgid "Accessed By" -msgstr "通过访问" +msgid "To get started please select an item from the menu." +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:233 -#, fuzzy -msgid "Create Task type" -msgstr "新的任务状态" +msgid "To perform an imaging task an image must be assigned" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:318 -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:620 -#, fuzzy -msgid "A task type already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "To view a report, select an item from the menu" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:332 -#, fuzzy -msgid "Add task type failed!" -msgstr "添加管理单元失败!" +msgid "Toggle Navigation" +msgstr "" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:337 #, fuzzy -msgid "Task Type added!" -msgstr "任务状态添加,编辑" +msgid "Too many MACs" +msgstr "主机主MAC" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:338 -#, fuzzy -msgid "Task Type Create Success" -msgstr "用户创建" +msgid "Total Disk Space" +msgstr "总磁盘空间" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:346 -#, fuzzy -msgid "Task Type Create Fail" -msgstr "用户创建" +msgid "Total Memory" +msgstr "总内存" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:539 -#, fuzzy -msgid "Task Type General" -msgstr "任务状态" +msgid "Total Rows" +msgstr "共行" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:639 -#, fuzzy -msgid "Task Type Updated!" -msgstr "任务类型" +msgid "Transmit" +msgstr "发送" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:640 #, fuzzy -msgid "Task Type Update Success" -msgstr "安装/升级成功!" +msgid "Trying Snapin hash for" +msgstr "管理单元路径" -#: lib/plugins/tasktypeedit/pages/tasktypeeditmanagementpage.class.php:648 #, fuzzy -msgid "Task Type Update Fail" -msgstr "用户更新失败" +msgid "Trying image size for" +msgstr "管理单元路径" -#: lib/plugins/windowskey/config/plugin.config.php:28 -msgid "Windows keys is a plugin that associates product keys" -msgstr "" +#, fuzzy +msgid "Txt must be a string" +msgstr "事件必须是字符串" -#: lib/plugins/windowskey/config/plugin.config.php:29 -msgid "for Microsoft Windows to images" -msgstr "" +msgid "Type" +msgstr "类型" -#: lib/plugins/windowskey/config/plugin.config.php:30 -msgid "Those images should be activated with the associated" +msgid "UAC introduced in Vista and up" msgstr "" -#: lib/plugins/windowskey/config/plugin.config.php:31 #, fuzzy -msgid "key" -msgstr "DMI关键" - -#: lib/plugins/windowskey/config/plugin.config.php:32 -msgid "The key will be assigned to registered hosts when a" -msgstr "" - -#: lib/plugins/windowskey/config/plugin.config.php:33 -msgid "deploy task occurs for it" -msgstr "" +msgid "Unable to Authenticate" +msgstr "服务器连接出错" -#: lib/plugins/windowskey/config/plugin.config.php:35 -msgid "When the plugin is removed, the assigned key will remain" -msgstr "" +msgid "Unable to determine plugin details." +msgstr "无法确定插件的详细信息。" -#: lib/plugins/windowskey/config/plugin.config.php:36 #, fuzzy -msgid "with the host" -msgstr "不在此" +msgid "Unable to find basic information!" +msgstr "无法找到基本信息" -#: lib/plugins/windowskey/hooks/addwindowskeyimage.hook.php:136 #, fuzzy -msgid "Windows Key for Image" -msgstr "用户管理" +msgid "Unable to find master Storage Node" +msgstr "未能摧毁存储节点" -#: lib/plugins/windowskey/hooks/addwindowskeymenuitem.hook.php:98 #, fuzzy -msgid "Windows Keys" -msgstr "Windows 8的" +msgid "Unable to get server infromation!" +msgstr "无法拉服务器的信息!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:56 -#, fuzzy -msgid "Export Windows Keys" -msgstr "Windows 8的" +msgid "Unable to open file for reading" +msgstr "无法打开文件进行读取" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:57 -#, fuzzy -msgid "Import Windows Keys" -msgstr "Windows 8的" +msgid "Unauthorized" +msgstr "" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:69 #, fuzzy -msgid "Key Name" -msgstr "内核名称" +msgid "Unavailable" +msgstr "不可用" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:118 #, fuzzy -msgid "New Windows Key" -msgstr "Windows 8的" +msgid "Unicaset" +msgstr "单播" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:141 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:321 #, fuzzy -msgid "Windows Key Name" -msgstr "用户管理" +msgid "Unit of time must be a string" +msgstr "事件必须是字符串" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:149 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:329 -#, fuzzy -msgid "Windows Key Description" -msgstr "主机描述" +msgid "Unknown" +msgstr "未知" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:156 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:336 #, fuzzy -msgid "Windows Key" -msgstr "Windows 8的" +msgid "Unknown upload error occurred" +msgstr "发生未知上传错误。返回代码:" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:164 -#, fuzzy -msgid "Create New Key" -msgstr "新建%s" +msgid "Update" +msgstr "更新" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:235 -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:439 #, fuzzy -msgid "A Windows Key already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Update API?" +msgstr "更新的MAC" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:243 #, fuzzy -msgid "Add Windows Key failed!" -msgstr "添加管理单元失败!" +msgid "Update Default Printer" +msgstr "更新打印机" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:248 #, fuzzy -msgid "Windows Key added!" -msgstr "用户管理" +msgid "Update General?" +msgstr "更新打印机" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:249 #, fuzzy -msgid "Windows Key Create Success" -msgstr "用户创建" +msgid "Update LDAP server failed!" +msgstr "添加管理单元失败!" + +msgid "Update MACs" +msgstr "更新的MAC" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:257 #, fuzzy -msgid "Windows Key Create Fail" -msgstr "用户创建" +msgid "Update PM Values" +msgstr "更新映像" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:284 #, fuzzy -msgid "Windows Key General" -msgstr "用户管理" +msgid "Update Password?" +msgstr "用户密码" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:447 #, fuzzy msgid "Update Windows Key failed!" msgstr "添加管理单元失败!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:452 #, fuzzy -msgid "Windows Key updated!" -msgstr "用户管理" +msgid "Update auto-logout time" +msgstr "更新打印机" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:453 #, fuzzy -msgid "Windows Key Update Success" -msgstr "用户管理" +msgid "Update default printer" +msgstr "更新打印机" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:461 #, fuzzy -msgid "Windows Key Update Fail" -msgstr "用户管理" +msgid "Update display resolution" +msgstr "更新主要组" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:538 #, fuzzy -msgid "Image Membership" -msgstr "籍" +msgid "Update module configurations" +msgstr "主机打印机配置" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:559 -#, fuzzy -msgid "Check here to see what images can be added" -msgstr "请查看这里以可以添加哪些打印机" +msgid "Update not required!" +msgstr "更新不需要!" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:578 #, fuzzy -msgid "Add selected images" -msgstr "打印机" +msgid "Update primary group" +msgstr "更新主要组" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:617 #, fuzzy -msgid "Remove Images" -msgstr "去掉" +msgid "Update printer configuration" +msgstr "主机打印机配置" -#: lib/plugins/windowskey/pages/windowskeymanagementpage.class.php:624 #, fuzzy -msgid "Remove selected images" -msgstr "删除选定snapins" +msgid "Update task state failed!" +msgstr "添加管理单元失败!" -#: lib/plugins/wolbroadcast/hooks/addwolmenuitem.hook.php:96 #, fuzzy -msgid "WOL Broadcasts" -msgstr "所有广播" +msgid "Update/Remove Storage Groups" +msgstr "删除选定的打印机" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:40 #, fuzzy -msgid "Export WOLBroadcasts" -msgstr "主机位置" +msgid "Update/Remove printers" +msgstr "删除选定的打印机" + +msgid "Upload Reports" +msgstr "上传报告" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:41 #, fuzzy -msgid "Import WOLBroadcasts" -msgstr "主机位置" +msgid "Upload file" +msgstr "上传文件" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:50 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:57 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:119 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:264 -msgid "Broadcast Name" -msgstr "广播名称" +msgid "Upload file extension must be, jpg, jpeg, or png" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:58 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:127 -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:272 -msgid "Broadcast IP" -msgstr "广播IP" +msgid "Uptime" +msgstr "正常运行时间" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:107 -msgid "New Broadcast Address" -msgstr "新的广播地址" +msgid "Use Group Matching (recommended)" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:134 -#, fuzzy -msgid "Create WOL Broadcast?" -msgstr "所有广播" +msgid "Use extreme caution with this setting" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:191 -#, fuzzy -msgid "A broadcast already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "Use inits and kernels from this node" +msgstr "从这个节点inits和内核上使用" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:196 -#, fuzzy -msgid "A broadcast address is required" -msgstr "MAC地址是必需的" +msgid "Use the following link to go to the client page." +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:201 -msgid "Please enter a valid ip" -msgstr "请输入一个有效的IP" +msgid "Use the forums to post issues so others" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:208 -#, fuzzy -msgid "Add broadcast failed!" -msgstr "添加管理单元失败!" +msgid "Use the links below if you need assistance" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:213 -#, fuzzy -msgid "Broadcast added!" -msgstr "广播名称" +msgid "Use this for network installs" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:214 -#, fuzzy -msgid "Broadcast Create Success" -msgstr "主机创建" +msgid "Used" +msgstr "" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:222 -#, fuzzy -msgid "Broadcast Create Fail" -msgstr "主机创建失败" +msgid "Used Disk Space" +msgstr "使用的磁盘空间" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:253 -#, fuzzy -msgid "WOL Broadcast General" -msgstr "所有广播" +msgid "Used Memory" +msgstr "使用的内存" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:353 -#, fuzzy -msgid "A broadcast already exists with this name" -msgstr "图像已经存在具有此名称!" +msgid "User" +msgstr "用户" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:380 #, fuzzy -msgid "Broadcast update failed!" -msgstr "广播更新" +msgid "User API Enabled" +msgstr "已启用" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:385 #, fuzzy -msgid "Broadcast updated!" -msgstr "广播更新" +msgid "User API Settings" +msgstr "设置" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:386 #, fuzzy -msgid "Broadcast Update Success" -msgstr "安装/升级成功!" +msgid "User API Token" +msgstr "访问令牌" -#: lib/plugins/wolbroadcast/pages/wolbroadcastmanagementpage.class.php:394 #, fuzzy -msgid "Broadcast Update Fail" -msgstr "广播更新" +msgid "User Access Control" +msgstr "访问控制" -#: lib/plugins/hostext/config/plugin.config.php:27 -msgid "" -"Host Ext is a plugin which allows to assign to each host an external url." -msgstr "" +msgid "User Agent Changed" +msgstr "用户代理更改" + +msgid "User Already Exists" +msgstr "用户已存在" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:82 -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:100 #, fuzzy -msgid "Host Ext" -msgstr "主机列表" +msgid "User Change Password" +msgstr "管理密码" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:120 -msgid "Host External URL - " -msgstr "" +msgid "User Cleanup" +msgstr "用户清理" -#: lib/plugins/hostext/hooks/addhostexthost.hook.php:149 #, fuzzy -msgid "External Links" -msgstr "延期" +msgid "User Create Fail" +msgstr "用户创建" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:87 -#: lib/plugins/hostext/reports/hostext_report.report.php:41 -#: lib/plugins/hostext/reports/hostext_report.report.php:46 #, fuzzy -msgid "Export Host Exts" -msgstr "主机出口" +msgid "User Create Success" +msgstr "用户创建" -#: lib/plugins/hostext/hooks/addhostextmenuitem.hook.php:88 #, fuzzy -msgid "Import Host Exts" -msgstr "进口主机" +msgid "User DN" +msgstr "用户名" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:46 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:75 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:79 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:170 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:174 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:328 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:332 #, fuzzy -msgid "Host Ext Name" -msgstr "主机名" +msgid "User Filter" +msgstr "文件" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:47 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:88 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:92 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:183 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:187 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:341 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:345 #, fuzzy -msgid "Host Ext URL" -msgstr "主机ID" +msgid "User General" +msgstr "主机内核" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:48 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:101 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:196 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:354 -#, fuzzy -msgid "Host Ext Variable" -msgstr "主机更新失败" +msgid "User Management" +msgstr "用户管理" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:63 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:139 -#, fuzzy -msgid "Create New Host Ext" -msgstr "新建%s" +msgid "User Name" +msgstr "用户名" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:250 -#: lib/plugins/hostext/pages/hostextmanagement.page.php:429 #, fuzzy -msgid "A hostext already exists with this name!" -msgstr "图像已经存在具有此名称!" +msgid "User Name Attribute" +msgstr "用户名" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:259 -#, fuzzy -msgid "Add ou failed!" -msgstr "添加管理单元失败!" +msgid "User Password" +msgstr "用户密码" + +msgid "User Password (confirm)" +msgstr "用户密码(确认)" + +msgid "User Tracker" +msgstr "用户跟踪" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:265 #, fuzzy -msgid "Hostext added!" -msgstr "添加主机" +msgid "User Update Fail" +msgstr "用户更新失败" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:266 #, fuzzy -msgid "Hostext Create Success" -msgstr "主机创建" +msgid "User Update Success" +msgstr "安装/升级成功!" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:279 #, fuzzy -msgid "Hostext Create Fail" -msgstr "主机创建失败" +msgid "User added!" +msgstr "打印机名称" + +msgid "User call is invalid" +msgstr "用户调用无效" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:485 #, fuzzy -msgid "Hostext update failed!" -msgstr "打印机更新失败!" +msgid "User name" +msgstr "用户名" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:491 #, fuzzy -msgid "Hostext updated!" -msgstr "用户更新" +msgid "User update failed!" +msgstr "用户更新失败" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:492 #, fuzzy -msgid "Hostext Update Success" -msgstr "安装/升级成功!" +msgid "User updated!" +msgstr "用户更新" -#: lib/plugins/hostext/pages/hostextmanagement.page.php:505 #, fuzzy -msgid "Hostext Update Fail" -msgstr "主机更新失败" +msgid "User was not authorized by the LDAP server" +msgstr "这个LDAP服务器输入名称。" -#: lib/plugins/hostext/reports/hostext_report.report.php:49 -msgid "Use the selector to choose how many items you want exported" -msgstr "" +msgid "User/Channel Name" +msgstr "用户/通道名称" -#: lib/plugins/example/html/run.php:30 -msgid "Unable to determine plugin details" -msgstr "无法确定插件的详细信息" +msgid "User/Channel to post to" +msgstr "用户/通道张贴到" -#: lib/plugins/fileintegrity/class/fileintegrity.class.php:93 -msgid "No node associated with any addresses of this system" -msgstr "" +msgid "Username" +msgstr "用户名" -#: lib/plugins/fileintegrity/config/plugin.config.php:28 -msgid "Associates the files on nodes" +msgid "Username cannot contain contiguous special characters" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:29 -msgid "and stores their respective checksums" +msgid "Username does not meet requirements" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:30 -msgid "mod dates" +msgid "Username must be at least 3 characters" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:31 -msgid "and the location of the file on that" +msgid "Username must be less than 41 characters" msgstr "" -#: lib/plugins/fileintegrity/config/plugin.config.php:32 -msgid "particular node" +msgid "Username must start with a word character" msgstr "" -#: lib/plugins/fileintegrity/hooks/addfileintegritymenuitem.hook.php:103 -#, fuzzy -msgid "Integrity Settings" -msgstr "设置" - -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:40 -#, fuzzy -msgid "Export Checksums" -msgstr "主机出口" +msgid "Users" +msgstr "用户" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:44 -msgid "Checksums" +msgid "Using the group match function" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:61 -msgid "Checksum" +msgid "VNC" msgstr "" -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:62 #, fuzzy -msgid "Last Updated Time" -msgstr "主机更新失败" - -#: lib/plugins/fileintegrity/pages/fileintegritymanagementpage.class.php:64 -msgid "Conflicting path/file" -msgstr "" +msgid "Valid Host Colors" +msgstr "无效的主机" -#: lib/plugins/hoststatus/config/plugin.config.php:15 -msgid "Host Status is a plugin that adds a new entry in the Host edit Page" -msgstr "" +msgid "Value" +msgstr "值" -#: lib/plugins/hoststatus/config/plugin.config.php:16 -msgid "" -"that detects the status on the fly, poweron or poweroff and the OS, of the " -"client" +msgid "Variable contains" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:17 -msgid "

Possible status: Windows, Linux, FOS and Unknown" -msgstr "" +msgid "Version" +msgstr "版" -#: lib/plugins/hoststatus/config/plugin.config.php:18 -msgid "

Dependencies: port TCP 445 open in the client side" +msgid "Version 1.2.0 and earlier" msgstr "" -#: lib/plugins/hoststatus/config/plugin.config.php:19 #, fuzzy -msgid "

Version 1.5.5" -msgstr "版" +msgid "View History For" +msgstr "查看历史记录" -#: lib/plugins/hoststatus/hooks/addhoststatushost.hook.php:75 -#, fuzzy -msgid "Host Status" -msgstr "状态" +msgid "View advanced tasks for this" +msgstr "查看该高级任务" -#: lib/reg-task/registration.class.php:89 -msgid "Created by FOG Reg on" -msgstr "创建者FOG上注册" +msgid "Virus History" +msgstr "病毒历史" -#: lib/reg-task/registration.class.php:117 -msgid "Already registered as" -msgstr "已注册为" +msgid "Virus Name" +msgstr "病毒名称" -#: lib/reg-task/registration.class.php:245 -#: lib/reg-task/registration.class.php:403 -#: lib/reg-task/registration.class.php:463 -msgid "Failed to create Host" -msgstr "无法创建主机" +#, fuzzy +msgid "Virus Report" +msgstr "报告" -#: lib/reg-task/registration.class.php:256 -msgid "Done, without imaging!" -msgstr "完成后,没有影像!" +#, fuzzy +msgid "Virus items removed!" +msgstr "病毒清除" -#: lib/reg-task/registration.class.php:261 -msgid "Done, No image assigned!" -msgstr "完成后,没有图像分配!" +#, fuzzy +msgid "WOL Broadcast General" +msgstr "所有广播" -#: lib/reg-task/registration.class.php:275 -#: lib/reg-task/registration.class.php:421 -msgid "Done, Failed to create tasking" -msgstr "完成后,无法创建任务" +#, fuzzy +msgid "WOL Broadcast Management" +msgstr "位置管理" -#: lib/reg-task/registration.class.php:279 -#: lib/reg-task/registration.class.php:425 -msgid "Done, with imaging!" -msgstr "完成后,随着影像!" +#, fuzzy +msgid "WOL Broadcasts" +msgstr "所有广播" -#: lib/reg-task/registration.class.php:429 -#: lib/reg-task/registration.class.php:467 service/inventory.php:93 -msgid "Done" -msgstr "做" +#, fuzzy +msgid "Wait time has changed to" +msgstr "打印机类型变更为" -#: lib/reg-task/taskingelement.class.php:162 service/progress.php:31 -msgid "No Active Task found for Host" -msgstr "发现主机没有活动任务" +msgid "Waiting for mysql to be available" +msgstr "等待的MySQL可用" -#: lib/reg-task/taskingelement.class.php:205 #, fuzzy -msgid "Could not find a Storage Node in this group" -msgstr "找不到存储节点,有一个图像,此组内启用?" +msgid "Wake On Lan" +msgstr "网络唤醒?" -#: lib/reg-task/taskingelement.class.php:206 -#, fuzzy -msgid "is there one enabled" -msgstr "图片未启用" +msgid "Wake on lan?" +msgstr "网络唤醒?" -#: lib/reg-task/taskingelement.class.php:232 -msgid "is open" +msgid "We are group ID" msgstr "" -#: lib/reg-task/taskingelement.class.php:233 #, fuzzy -msgid "but has recently failed for this host" -msgstr "是开放的,但最近没有这个主机" +msgid "We are group name" +msgstr "存储组名称" -#: lib/reg-task/taskqueue.class.php:39 -msgid "Failed to update task" -msgstr "无法更新任务" +msgid "We are node ID" +msgstr "" -#: lib/reg-task/taskqueue.class.php:57 #, fuzzy -msgid "Invalid Multicast Session" -msgstr "开始多播会话" +msgid "We are node name" +msgstr "存储节点名称" -#: lib/reg-task/taskqueue.class.php:67 -msgid "Failed to update Session" -msgstr "无法更新会话" +#, fuzzy +msgid "We cannot connect to LDAP server" +msgstr "无法连接到数据库" -#: lib/reg-task/taskqueue.class.php:84 lib/reg-task/taskqueue.class.php:146 -msgid "No open slots" -msgstr "没有开口槽" +msgid "Web Server" +msgstr "网络服务器" -#: lib/reg-task/taskqueue.class.php:85 lib/reg-task/taskqueue.class.php:147 -msgid "There are" -msgstr "有" +msgid "Web root" +msgstr "Web根目录" -#: lib/reg-task/taskqueue.class.php:87 lib/reg-task/taskqueue.class.php:149 -msgid "before me" -msgstr "我面前" +msgid "Weekly" +msgstr "每周" -#: lib/reg-task/taskqueue.class.php:132 -msgid "The node trying to be used is currently" +msgid "When the plugin is removed, the assigned key will remain" msgstr "" -#: lib/reg-task/taskqueue.class.php:133 -#, fuzzy -msgid "unavailable" -msgstr "不可用" +msgid "Where to get help" +msgstr "" -#: lib/reg-task/taskqueue.class.php:134 -msgid "On reboot we will try to find a new node" +msgid "Width must be 650 pixels." msgstr "" -#: lib/reg-task/taskqueue.class.php:135 -msgid "automatically" +msgid "Window size must be greater than 1" msgstr "" -#: lib/reg-task/taskqueue.class.php:156 #, fuzzy -msgid "There are open slots" -msgstr "有开口槽,但" - -#: lib/reg-task/taskqueue.class.php:157 -msgid "but" -msgstr "" +msgid "Windows Key" +msgstr "Windows 8的" -#: lib/reg-task/taskqueue.class.php:159 -msgid "before me on this node" -msgstr "" +#, fuzzy +msgid "Windows Key Create Fail" +msgstr "用户创建" -#: lib/reg-task/taskqueue.class.php:173 -msgid "Failed to update/create image log" -msgstr "无法更新/创建图像日志" +#, fuzzy +msgid "Windows Key Create Success" +msgstr "用户创建" -#: lib/reg-task/taskqueue.class.php:180 lib/reg-task/taskqueue.class.php:464 -#: lib/service/multicastmanager.class.php:269 -msgid "Failed to update Task" -msgstr "无法更新任务" +#, fuzzy +msgid "Windows Key Description" +msgstr "主机描述" -#: lib/reg-task/taskqueue.class.php:183 -msgid "Failed to update/create task log" -msgstr "无法更新/创建任务日志" +#, fuzzy +msgid "Windows Key General" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:301 #, fuzzy -msgid "Machine Details" -msgstr "管理单元返回详细" +msgid "Windows Key Management" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:303 #, fuzzy -msgid "Computer Model" -msgstr "打印机型号" +msgid "Windows Key Name" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:304 -#: lib/reports/equipment_loan.report.php:175 -msgid "Serial Number" -msgstr "序列号" +#, fuzzy +msgid "Windows Key Update Fail" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:305 #, fuzzy -msgid "MAC Address" -msgstr "MAC地址列表" +msgid "Windows Key Update Success" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:307 #, fuzzy -msgid "Image Used" -msgstr "成像" +msgid "Windows Key added!" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:308 #, fuzzy -msgid "Snapin Used" -msgstr "Snapins" +msgid "Windows Key for Image" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:310 #, fuzzy -msgid "Imaged By" -msgstr "成像" +msgid "Windows Key updated!" +msgstr "用户管理" -#: lib/reg-task/taskqueue.class.php:311 lib/reg-task/taskqueue.class.php:346 #, fuzzy -msgid "Imaged For" -msgstr "成像" +msgid "Windows Keys" +msgstr "Windows 8的" + +msgid "Windows keys is a plugin that associates product keys" +msgstr "" + +msgid "Working with node" +msgstr "" -#: lib/reg-task/taskqueue.class.php:312 #, fuzzy -msgid "Imaging Started" -msgstr "国家管理单元" +msgid "Wrong file name!" +msgstr "没有文件上传" + +msgid "Yearly" +msgstr "每年" + +msgid "Yes" +msgstr "是" + +msgid "You are only allowed to assign" +msgstr "您只能分配" -#: lib/reg-task/taskqueue.class.php:313 #, fuzzy -msgid "Imaging Completed" -msgstr "任务完成后," +msgid "You have version" +msgstr "最新版本" + +msgid "You must have at least one Storage Group" +msgstr "您必须至少有一个存储组" -#: lib/reg-task/taskqueue.class.php:314 #, fuzzy -msgid "Imaging Duration" -msgstr "成像测井" +msgid "You must have at least one group associated" +msgstr "您必须至少有一个存储组" -#: lib/reg-task/taskqueue.class.php:332 #, fuzzy -msgid "Image Task Completed" -msgstr "任务完成后," +msgid "You must select an action to perform" +msgstr "您必须指定别名和端口" -#: lib/reg-task/taskqueue.class.php:347 -msgid "Call" +msgid "Your FOG database schema is not up to date" +msgstr "" + +msgid "Your Location Here" +msgstr "您的位置在这里" + +msgid "Your database connection appears to be invalid" msgstr "" -#: lib/reg-task/taskqueue.class.php:461 #, fuzzy -msgid "Failed to update Host" -msgstr "无法更新" +msgid "Your form is ready" +msgstr "您的表单已准备就绪。" + +#, fuzzy +msgid "Your server only allows" +msgstr "您只能分配" -#: lib/reg-task/taskqueue.class.php:475 #, fuzzy -msgid "Failed to update task log" -msgstr "无法更新任务" +msgid "Your system PHP Version is not sufficient" +msgstr "您的系统PHP版本是不充分的。你有版本%s ,版本%s是必需的。" -#: lib/reg-task/taskqueue.class.php:479 #, fuzzy -msgid "Failed to update imaging log" -msgstr "无法更新/创建图像日志" +msgid "ZSTD Compressed" +msgstr "Partclone" -#: lib/reports/equipment_loan.report.php:31 -#: lib/reports/equipment_loan.report.php:103 -msgid "FOG Equipment Loan Form" -msgstr "FOG器材信贷形式" +msgid "ZSTD Compressed 200MiB split" +msgstr "" -#: lib/reports/equipment_loan.report.php:63 -msgid "Select User" -msgstr "选择用户" +#, fuzzy +msgid "access to the hidden menu system" +msgstr "选项​​为隐藏的菜单系统的超时值" -#: lib/reports/equipment_loan.report.php:66 #, fuzzy -msgid "Create Report?" -msgstr "创建报告" +msgid "additional macs" +msgstr "附加的MAC" -#: lib/reports/equipment_loan.report.php:69 #, fuzzy -msgid "Generate" -msgstr "一般" +msgid "ago" +msgstr "前" -#: lib/reports/equipment_loan.report.php:151 -#: lib/reports/equipment_loan.report.php:229 -msgid "of" -msgstr "的" +#, fuzzy +msgid "all current storage nodes" +msgstr "无效的存储节点" -#: lib/reports/equipment_loan.report.php:152 -#: lib/reports/equipment_loan.report.php:230 -msgid "Printed" -msgstr "印刷的" +msgid "and Mac OS X" +msgstr "" -#: lib/reports/equipment_loan.report.php:157 -msgid "PC Check-out Agreement" -msgstr "PC退房协议" +msgid "and agree to all the" +msgstr "" -#: lib/reports/equipment_loan.report.php:158 -msgid "Personal Information" -msgstr "个人信息" +msgid "and both the legacy and new FOG clients." +msgstr "" -#: lib/reports/equipment_loan.report.php:162 -msgid "Your Location Here" -msgstr "您的位置在这里" +msgid "and cannot be captured" +msgstr "" -#: lib/reports/equipment_loan.report.php:163 -msgid "Home Address" -msgstr "家庭地址" +#, fuzzy +msgid "and if the Database service is running" +msgstr "检查数据库运行" -#: lib/reports/equipment_loan.report.php:165 -msgid "City/State/Zip" -msgstr "邮政编码" +msgid "and much easier on the server" +msgstr "" -#: lib/reports/equipment_loan.report.php:167 -msgid "Extension" -msgstr "延期" +msgid "and node A only has a 5Mbps and you want the speed" +msgstr "" -#: lib/reports/equipment_loan.report.php:169 -msgid "Home Phone" -msgstr "家庭电话" +msgid "and set it to master" +msgstr "" -#: lib/reports/equipment_loan.report.php:171 -msgid "Computer Information" -msgstr "计算机信息" +msgid "and stores their respective checksums" +msgstr "" -#: lib/reports/equipment_loan.report.php:176 -msgid "Service Tag" -msgstr "服务标签" +msgid "and the equivalent module for what Green" +msgstr "" -#: lib/reports/equipment_loan.report.php:190 -msgid "Barcode Numbers" -msgstr "条码号" +msgid "and the location of the file on that" +msgstr "" -#: lib/reports/equipment_loan.report.php:203 -msgid "Date of checkout" -msgstr "结帐日期" +msgid "as FOG will attempt to go out to the internet" +msgstr "" -#: lib/reports/equipment_loan.report.php:207 -msgid "Notes" -msgstr "笔记" +#, fuzzy +msgid "as its primary group" +msgstr "更新主要组" -#: lib/reports/equipment_loan.report.php:208 -msgid "Miscellaneous" -msgstr "杂" +msgid "as they can cause issues that are difficult to troubleshoot" +msgstr "" -#: lib/reports/equipment_loan.report.php:209 -msgid "Included Items" -msgstr "包括项目" +msgid "automatically" +msgstr "" -#: lib/reports/equipment_loan.report.php:213 -msgid "Releasing Staff Initials" -msgstr "释放员工缩写" +#, fuzzy +msgid "based task." +msgstr "基于任务" -#: lib/reports/equipment_loan.report.php:215 -msgid "To be released only by" -msgstr "如果只公布由" +msgid "be the presence of a menu" +msgstr "" -#: lib/reports/equipment_loan.report.php:219 -#, fuzzy -msgid "I have read" -msgstr "创建图像" +msgid "before me" +msgstr "我面前" -#: lib/reports/equipment_loan.report.php:220 -msgid "understood" +msgid "before me on this node" msgstr "" -#: lib/reports/equipment_loan.report.php:221 -msgid "and agree to all the" +msgid "between" msgstr "" -#: lib/reports/equipment_loan.report.php:222 -#: lib/reports/equipment_loan.report.php:232 -msgid "Terms and Conditions" -msgstr "条款和条件" +msgid "between different sites" +msgstr "" -#: lib/reports/equipment_loan.report.php:223 -#, fuzzy -msgid "on the following pages of this document" -msgstr "下面的错误发生" +msgid "between host and global settings" +msgstr "" -#: lib/reports/equipment_loan.report.php:225 -#: lib/reports/equipment_loan.report.php:234 -msgid "Signed" -msgstr "签" +msgid "boot the client computers" +msgstr "" -#: lib/reports/equipment_loan.report.php:262 -#, fuzzy -msgid "Your form is ready" -msgstr "您的表单已准备就绪。" +msgid "but" +msgstr "" -#: lib/reports/equipment_loan.report.php:266 -#, fuzzy -msgid "Form" -msgstr "格式" +msgid "but bind password is not set" +msgstr "" -#: lib/reports/history_report.report.php:26 #, fuzzy -msgid "FOG History - Search" -msgstr "FOG用户登录的历史总结 - 搜索" +msgid "but has recently failed for this host" +msgstr "是开放的,但最近没有这个主机" + +msgid "check to ensure your filesystem has enough space" +msgstr "" -#: lib/reports/history_report.report.php:65 -#: lib/reports/imaging_log.report.php:108 #, fuzzy -msgid "Enter an user name to search for" -msgstr "输入用户名搜索" +msgid "client" +msgstr "客户" -#: lib/reports/history_report.report.php:68 #, fuzzy -msgid "Enter a term to search for" -msgstr "输入用户名搜索" +msgid "clients" +msgstr "客户" -#: lib/reports/history_report.report.php:77 -#: lib/reports/host_list.report.php:116 -#: lib/reports/hosts_and_users.report.php:107 -#: lib/reports/imaging_log.report.php:114 -#: lib/reports/inventory_report.report.php:137 -#: lib/reports/snapin_log.report.php:88 -#: lib/reports/user_tracking.report.php:101 -msgid "Perform search" +msgid "config files that run on the client computers." msgstr "" -#: lib/reports/history_report.report.php:111 #, fuzzy -msgid "Full History Export" -msgstr "完整清单导出" +msgid "could not be cancelled" +msgstr "已成功更新" -#: lib/reports/history_report.report.php:166 #, fuzzy -msgid "History ID" -msgstr "主机ID" +msgid "could not be completed" +msgstr "无法读取临时文件" -#: lib/reports/history_report.report.php:167 #, fuzzy -msgid "History Info" -msgstr "查看历史记录" +msgid "could not be killed" +msgstr "无法读取临时文件" -#: lib/reports/history_report.report.php:168 -#, fuzzy -msgid "History User" -msgstr "查看历史记录" +msgid "day" +msgstr "" -#: lib/reports/history_report.report.php:169 -#, fuzzy -msgid "History Time" -msgstr "查看历史记录" +msgid "day of month" +msgstr "" -#: lib/reports/history_report.report.php:170 -#, fuzzy -msgid "History IP" -msgstr "查看历史记录" +msgid "day of week" +msgstr "" -#: lib/reports/host_list.report.php:33 -#, fuzzy -msgid "FOG Host - Search" -msgstr "FOG用户登录的历史总结 - 搜索" +msgid "defined reports that may not be a part of" +msgstr "" -#: lib/reports/host_list.report.php:70 -#: lib/reports/hosts_and_users.report.php:61 -#: lib/reports/inventory_report.report.php:61 -#: lib/reports/inventory_report.report.php:66 -#, fuzzy -msgid "Enter a group name to search for" -msgstr "输入用户名搜索" +msgid "deleted" +msgstr "删除" -#: lib/reports/host_list.report.php:88 -#: lib/reports/hosts_and_users.report.php:79 -#: lib/reports/inventory_report.report.php:84 -#, fuzzy -msgid "Enter a location name to search for" -msgstr "输入主机名来搜索" +msgid "deploy task occurs for it" +msgstr "" + +msgid "directive in php.ini" +msgstr "" -#: lib/reports/host_list.report.php:107 -#: lib/reports/hosts_and_users.report.php:98 -#: lib/reports/inventory_report.report.php:103 #, fuzzy -msgid "Enter a site name to search for" -msgstr "输入用户名搜索" +msgid "directive specified in the HTML form" +msgstr "上传的文件超过了HTML表单中指定的MAX_FILE_SIZE指令" -#: lib/reports/host_list.report.php:113 -#: lib/reports/hosts_and_users.report.php:104 -#: lib/reports/inventory_report.report.php:134 #, fuzzy -msgid "Search pattern" -msgstr "搜索" +msgid "directory" +msgstr "目录" -#: lib/reports/host_list.report.php:147 -msgid "Host Listing Export" -msgstr "主机上市出口" +msgid "download the module and use it on the next" +msgstr "" -#: lib/reports/host_list.report.php:175 -#: lib/reports/hosts_and_users.report.php:168 -#: lib/reports/product_keys.report.php:37 -msgid "Host Created" -msgstr "主机创建" +msgid "due to UAC introduced in Vista and up." +msgstr "" -#: lib/reports/host_list.report.php:176 lib/reports/host_list.report.php:285 -#: lib/reports/product_keys.report.php:39 -#: lib/reports/product_keys.report.php:103 -#, fuzzy -msgid "Host AD Join" -msgstr "公元加入" +msgid "e.g." +msgstr "" -#: lib/reports/host_list.report.php:177 lib/reports/product_keys.report.php:40 -#, fuzzy -msgid "Host AD OU" -msgstr "主机ID" +msgid "either already selected or uploaded" +msgstr "" -#: lib/reports/host_list.report.php:178 lib/reports/product_keys.report.php:41 -#, fuzzy -msgid "Host AD Domain" -msgstr "AD域" +msgid "either because you have updated" +msgstr "" -#: lib/reports/host_list.report.php:180 lib/reports/product_keys.report.php:43 #, fuzzy -msgid "Host HD Device" -msgstr "高清设备" +msgid "failed to execute, image file: " +msgstr "无法删除图像文件" -#: lib/reports/host_list.report.php:181 lib/reports/host_list.report.php:276 -#: lib/reports/hosts_and_users.report.php:169 -#: lib/reports/hosts_and_users.report.php:282 -#: lib/reports/product_keys.report.php:44 -#: lib/reports/product_keys.report.php:94 -msgid "Image ID" -msgstr "图片ID" +msgid "failed to execute, port must be even and numeric" +msgstr "" -#: lib/reports/host_list.report.php:183 lib/reports/host_list.report.php:282 -#: lib/reports/hosts_and_users.report.php:171 -#: lib/reports/hosts_and_users.report.php:288 -#: lib/reports/product_keys.report.php:46 -#: lib/reports/product_keys.report.php:100 -msgid "Image Desc" -msgstr "图片说明" +msgid "failed to execute, there are no clients included" +msgstr "" -#: lib/reports/hosts_and_users.report.php:24 -#, fuzzy -msgid "FOG Host and Users - Search" -msgstr "FOG主机和用户登录" +msgid "failed to login" +msgstr "登录失败" -#: lib/reports/hosts_and_users.report.php:139 -msgid "FOG Hosts and Users Login" -msgstr "FOG主机和用户登录" +#, fuzzy +msgid "failed to start" +msgstr "未能摧毁" -#: lib/reports/hosts_and_users.report.php:172 -#: lib/reports/hosts_and_users.report.php:291 -msgid "AD Join" -msgstr "公元加入" +#, fuzzy +msgid "faster" +msgstr "日期" -#: lib/reports/hosts_and_users.report.php:173 -msgid "AD OU" -msgstr "AD OU" +msgid "filesize" +msgstr "文件大小" -#: lib/reports/hosts_and_users.report.php:174 -msgid "AD Domain" -msgstr "AD域" +msgid "for Microsoft Windows to images" +msgstr "" -#: lib/reports/hosts_and_users.report.php:176 -msgid "HD Device" -msgstr "高清设备" +msgid "for the advanced menu parameters" +msgstr "" -#: lib/reports/hosts_and_users.report.php:178 -#: lib/reports/hosts_and_users.report.php:189 -#: lib/reports/hosts_and_users.report.php:300 -#, fuzzy -msgid "Login Users" -msgstr "登录" +msgid "for the menu background" +msgstr "" -#: lib/reports/imaging_log.report.php:24 #, fuzzy -msgid "FOG Imaging - Search" -msgstr "FOG用户登录的历史总结 - 搜索" +msgid "found" +msgstr "未找到" -#: lib/reports/imaging_log.report.php:105 #, fuzzy -msgid "Enter an image name to search for" -msgstr "输入用户名搜索" - -#: lib/reports/imaging_log.report.php:111 lib/reports/snapin_log.report.php:85 -#: lib/reports/user_tracking.report.php:98 -msgid "Enter a hostname to search for" -msgstr "输入主机名来搜索" +msgid "from" +msgstr "从" -#: lib/reports/imaging_log.report.php:181 -msgid "FOG Imaging Log" -msgstr "FOG成像测井" +msgid "function on client computers." +msgstr "" -#: lib/reports/imaging_log.report.php:209 -msgid "Start Date" -msgstr "开始日期" +msgid "group" +msgstr "组" -#: lib/reports/imaging_log.report.php:211 -msgid "End Date" -msgstr "结束日期" +#, fuzzy +msgid "has been cancelled" +msgstr "已成功更新" -#: lib/reports/imaging_log.report.php:214 #, fuzzy -msgid "Deploy/Capture" -msgstr "部署" +msgid "has been completed" +msgstr "已被破坏" -#: lib/reports/imaging_log.report.php:268 #, fuzzy -msgid "Not Valid" -msgstr "数据无效" +msgid "has been killed" +msgstr "已成功更新" + +msgid "has been started on port" +msgstr "已经开始在端口" -#: lib/reports/inventory_report.report.php:24 #, fuzzy -msgid "FOG Host Inventory - Search" -msgstr "FOG用户登录的历史总结 - 搜索" +msgid "has been successfully destroyed" +msgstr "已成功更新" -#: lib/reports/inventory_report.report.php:67 -msgid "No groups defined, search will return all hosts." -msgstr "" +msgid "has been successfully updated" +msgstr "已成功更新" -#: lib/reports/inventory_report.report.php:129 #, fuzzy -msgid "Enter a model name to search for" -msgstr "输入用户名搜索" +msgid "has failed to destroy" +msgstr "未能被销毁" -#: lib/reports/inventory_report.report.php:169 -msgid "Full Inventory Export" -msgstr "完整清单导出" +msgid "has failed to save" +msgstr "未能保存" -#: lib/reports/pending_mac_list.report.php:41 -msgid "All Pending MACs approved." -msgstr "所有待定的MAC批准。" +#, fuzzy +msgid "has started" +msgstr "任务开始" -#: lib/reports/pending_mac_list.report.php:43 -msgid "Pending MAC Export" -msgstr "待MAC出口" +msgid "help with any aspect of FOG" +msgstr "" -#: lib/reports/pending_mac_list.report.php:48 -#: lib/reports/pending_mac_list.report.php:62 -msgid "Host Primary MAC" -msgstr "主机主MAC" +msgid "here" +msgstr "这里" -#: lib/reports/pending_mac_list.report.php:50 -#: lib/reports/pending_mac_list.report.php:63 -msgid "Host Pending MAC" -msgstr "主持人待定MAC" +msgid "host" +msgstr "主办" -#: lib/reports/pending_mac_list.report.php:130 #, fuzzy -msgid "Approve All Pending MACs for All Hosts" -msgstr "批准所有主机的所有待定的MAC" +msgid "hosts" +msgstr "主办" -#: lib/reports/pending_mac_list.report.php:154 #, fuzzy -msgid "Pending MAC Actions" -msgstr "待定的MAC" +msgid "hour" +msgstr "1小时" -#: lib/reports/pending_mac_list.report.php:160 #, fuzzy -msgid "Approve Selected MACs" -msgstr "批准选定主机" +msgid "hr" +msgstr "这里" -#: lib/reports/pending_mac_list.report.php:165 #, fuzzy -msgid "Approve" -msgstr "主机批准" +msgid "iPXE General Configuration" +msgstr "iPXE菜单配置" -#: lib/reports/pending_mac_list.report.php:171 #, fuzzy -msgid "Delete Selected MACs" -msgstr "删除所选" +msgid "iPXE Item Create Fail" +msgstr "打印机更新失败!" -#: lib/reports/product_keys.report.php:31 #, fuzzy -msgid "Host Product Keys" -msgstr "主机产品密钥" +msgid "iPXE Item Create Success" +msgstr "打印机已经存在" -#: lib/reports/snapin_log.report.php:18 #, fuzzy -msgid "FOG Snapin - Search" -msgstr "FOG用户登录的历史总结 - 搜索" +msgid "iPXE Item Remove Success" +msgstr "安装/升级成功!" -#: lib/reports/snapin_log.report.php:82 #, fuzzy -msgid "Enter a snapin name to search for" -msgstr "输入用户名搜索" +msgid "iPXE Item Update Success" +msgstr "安装/升级成功!" -#: lib/reports/snapin_log.report.php:120 #, fuzzy -msgid "Found snapin information" -msgstr "FOG版本信息" - -#: lib/reports/snapin_log.report.php:152 -msgid "Return Desc" -msgstr "返回说明" +msgid "iPXE Item added!" +msgstr "打印机名称" -#: lib/reports/snapin_log.report.php:153 #, fuzzy -msgid "Checkin Time" -msgstr "任务登录时间" +msgid "iPXE Item create failed!" +msgstr "菜单创建失败" -#: lib/reports/snapin_log.report.php:154 -#, fuzzy -msgid "Complete Time" -msgstr "任务登录时间" +msgid "iPXE Menu Customization" +msgstr "iPXE菜单定制" -#: lib/reports/snapin_log.report.php:178 -msgid "Snapin ID" -msgstr "管理单元ID" +#, fuzzy +msgid "iPXE Menu Item Settings" +msgstr "设置" -#: lib/reports/snapin_log.report.php:182 -msgid "Snapin Args" -msgstr "管理单元参数数量" +#, fuzzy +msgid "iPXE Menu Settings" +msgstr "设置" -#: lib/reports/snapin_log.report.php:184 -msgid "Snapin Run With Args" -msgstr "管理单元运行方式参数数量" +msgid "iPXE New Menu Entry" +msgstr "iPXE新的菜单项" -#: lib/reports/snapin_log.report.php:185 -msgid "Snapin State" -msgstr "国家管理单元" +#, fuzzy +msgid "iPXE Settings updated successfully!" +msgstr "安装/升级成功!" -#: lib/reports/snapin_log.report.php:186 -msgid "Snapin Return Code" -msgstr "管理单元返回代码" +#, fuzzy +msgid "iPXE Update Fail" +msgstr "管理单元更新失败" -#: lib/reports/snapin_log.report.php:187 -msgid "Snapin Return Detail" -msgstr "管理单元返回详细" +#, fuzzy +msgid "iPXE Update Success" +msgstr "安装/升级成功!" -#: lib/reports/snapin_log.report.php:188 -msgid "Snapin Creation Date" -msgstr "管理单元创建日期" +msgid "iPXE syntax is very finicky when it comes to editing" +msgstr "" -#: lib/reports/snapin_log.report.php:189 -msgid "Snapin Creation Time" -msgstr "管理单元创建时间" +msgid "iPrint Printer" +msgstr "iPrint的打印机" -#: lib/reports/snapin_log.report.php:190 -msgid "Job Create Date" -msgstr "作业创建日期" +#, fuzzy +msgid "if there is a task" +msgstr "有在一个任务的主机" -#: lib/reports/snapin_log.report.php:191 -msgid "Job Create Time" -msgstr "作业创建时间" +msgid "if used incorrectly could potentially" +msgstr "" -#: lib/reports/snapin_log.report.php:192 -msgid "Task Checkin Date" -msgstr "任务登记入住日期" +#, fuzzy +msgid "image" +msgstr "图片" -#: lib/reports/snapin_log.report.php:193 -msgid "Task Checkin Time" -msgstr "任务登录时间" +msgid "image file found, file: " +msgstr "" -#: lib/reports/snapin_log.report.php:194 #, fuzzy -msgid "Task Complete Date" -msgstr "任务登记入住日期" +msgid "image replication" +msgstr "图像复制" -#: lib/reports/snapin_log.report.php:195 #, fuzzy -msgid "Task Complete Time" -msgstr "任务登录时间" +msgid "images" +msgstr "图片" -#: lib/reports/user_tracking.report.php:31 #, fuzzy -msgid "FOG User tracking - Search" -msgstr "FOG用户登录的历史总结 - 搜索" - -#: lib/reports/user_tracking.report.php:95 -msgid "Enter a username to search for" -msgstr "输入用户名搜索" +msgid "images to a storage group" +msgstr "主存储组" -#: lib/reports/user_tracking.report.php:132 -#, fuzzy -msgid "Found login information" -msgstr "FOG版本信息" +msgid "in seconds" +msgstr "" -#: lib/reports/user_tracking.report.php:233 #, fuzzy -msgid "FOG User tracking history" -msgstr "FOG用户登录历史摘要" +msgid "install or update the FOG database" +msgstr "你确定要安装或更新FOG数据库?" -#: lib/reports/user_tracking.report.php:290 #, fuzzy -msgid "Service Start" -msgstr "服务状态" - -#: lib/reports/virus_history.report.php:31 -msgid "FOG Virus Summary" -msgstr "FOG病毒摘要" - -#: lib/router/altorouter.class.php:219 -msgid "Routes should be an array or an instance of Traversable" -msgstr "" +msgid "is already running with pid: " +msgstr "复制带宽" -#: lib/router/altorouter.class.php:339 -msgid "Can not redeclare route" +msgid "is going on with your FOG System" msgstr "" -#: lib/router/route.class.php:630 lib/router/route.class.php:920 #, fuzzy -msgid "Already created" -msgstr "已注册为" +msgid "is invalid" +msgstr "数据是无效" -#: lib/router/route.class.php:857 #, fuzzy -msgid "Invalid tasking type passed" -msgstr "无效的对象类型传递" +msgid "is new" +msgstr "线" -#: lib/service/imagereplicator.class.php:103 -msgid " * Image replication is globally disabled" -msgstr "" +#, fuzzy +msgid "is no longer running" +msgstr "不复存在" -#: lib/service/imagereplicator.class.php:109 -#: lib/service/snapinreplicator.class.php:108 #, fuzzy -msgid "I am the group manager" -msgstr "|我唯一​​的成员" +msgid "is now cancelled" +msgstr "已成功更新" -#: lib/service/imagereplicator.class.php:119 #, fuzzy -msgid "Starting Image Replication" -msgstr "图像复制" +msgid "is now completed" +msgstr "已被破坏" -#: lib/service/imagereplicator.class.php:125 -#: lib/service/snapinhash.class.php:117 -#: lib/service/snapinreplicator.class.php:124 -#: lib/service/imagesize.class.php:117 -msgid "We are group ID" +msgid "is open" msgstr "" -#: lib/service/imagereplicator.class.php:127 -#: lib/service/snapinhash.class.php:119 -#: lib/service/snapinreplicator.class.php:126 -#: lib/service/imagesize.class.php:119 -#, fuzzy -msgid "We are group name" -msgstr "存储组名称" +msgid "is protected" +msgstr "被保护" -#: lib/service/imagereplicator.class.php:134 -#: lib/service/snapinhash.class.php:126 -#: lib/service/snapinreplicator.class.php:133 -#: lib/service/imagesize.class.php:126 -msgid "We are node ID" -msgstr "" +msgid "is protected, removal not allowed" +msgstr "被保护,去除不允许" -#: lib/service/imagereplicator.class.php:136 -#: lib/service/snapinhash.class.php:128 -#: lib/service/snapinreplicator.class.php:135 -#: lib/service/imagesize.class.php:128 #, fuzzy -msgid "We are node name" -msgstr "存储节点名称" +msgid "is required" +msgstr "%s是必需的" -#: lib/service/imagereplicator.class.php:147 -#: lib/service/imagereplicator.class.php:285 -#: lib/service/snapinreplicator.class.php:146 -#: lib/service/snapinreplicator.class.php:276 #, fuzzy -msgid "Attempting to perform" -msgstr "尝试ping" +msgid "is there one enabled" +msgstr "图片未启用" -#: lib/service/imagereplicator.class.php:150 -#: lib/service/imagereplicator.class.php:288 #, fuzzy -msgid "image replication" -msgstr "图像复制" +msgid "is valid" +msgstr "数据是无效" -#: lib/service/imagereplicator.class.php:200 -#: lib/service/snapinreplicator.class.php:199 -msgid "There is nothing to replicate" -msgstr "没有什么可以复制" +msgid "it boots to the first device" +msgstr "" -#: lib/service/imagereplicator.class.php:206 -#: lib/service/snapinreplicator.class.php:205 -msgid "Please physically associate" +msgid "it performs that task" msgstr "" -#: lib/service/imagereplicator.class.php:207 -#, fuzzy -msgid "images to a storage group" -msgstr "主存储组" +msgid "it will distribute its store" +msgstr "" -#: lib/service/imagereplicator.class.php:241 -#, fuzzy -msgid "Replicating" -msgstr "复制?" +msgid "it will enforce login to gain access to the advanced" +msgstr "" -#: lib/service/imagereplicator.class.php:258 -msgid "Not syncing Image" +msgid "it's transmitting to" msgstr "" -#: lib/service/imagereplicator.class.php:265 -#: lib/service/snapinreplicator.class.php:256 -#, fuzzy -msgid "This is not the primary group" -msgstr "|这不是主要组" +msgid "kernel to boot the client computers" +msgstr "" -#: lib/service/imagereplicator.class.php:287 -#: lib/service/snapinreplicator.class.php:278 #, fuzzy -msgid "Nodes" -msgstr "节点" +msgid "key" +msgstr "DMI关键" -#: lib/service/imagereplicator.class.php:323 -#: lib/service/snapinreplicator.class.php:314 -msgid "Checking if I am the group manager" +msgid "limited to 1Mbps on that node" msgstr "" -#: lib/service/multicasttask.class.php:88 -msgid "Task not created as there are no associated tasks" +msgid "location url based on the host that checks in" msgstr "" -#: lib/service/multicasttask.class.php:91 -msgid "Or there was no number defined for joining session" +msgid "logged in" msgstr "" -#: lib/service/multicasttask.class.php:104 #, fuzzy -msgid " | Unable to find image path" -msgstr "未能摧毁存储节点" +msgid "logout" +msgstr "登出" -#: lib/service/pinghosts.class.php:113 -msgid " * Ping hosts is globally disabled" +msgid "may see the issue and help and/or use the solutions" msgstr "" -#: lib/service/pinghosts.class.php:124 -msgid "I am not the fog web server" -msgstr "我不是雾Web服务器" - -#: lib/service/pinghosts.class.php:132 -msgid "This servers ip(s)" +msgid "meaning a node that has no images on it" msgstr "" -#: lib/service/pinghosts.class.php:143 -msgid "Attempting to ping" -msgstr "尝试ping" - -#: lib/service/pinghosts.class.php:147 -#, fuzzy -msgid "hosts" -msgstr "主办" - -#: lib/service/snapinhash.class.php:102 #, fuzzy -msgid " * Snapin hash is globally disabled" -msgstr "管理单元与该名称已经存在" +msgid "menu system" +msgstr "菜单项:" -#: lib/service/snapinhash.class.php:111 -msgid "Starting Snapin Hashing Service" +msgid "migration or mass import new items" msgstr "" -#: lib/service/snapinhash.class.php:135 #, fuzzy -msgid "Finding any snapins associated" -msgstr "没有snapins相关" +msgid "min" +msgstr "分钟" -#: lib/service/snapinhash.class.php:136 lib/service/imagesize.class.php:136 #, fuzzy -msgid "with this group" -msgstr "不在此" +msgid "minute" +msgstr "分钟" + +msgid "minutes" +msgstr "分钟" + +msgid "mod dates" +msgstr "" -#: lib/service/snapinhash.class.php:137 lib/service/imagesize.class.php:137 #, fuzzy -msgid "as its primary group" -msgstr "更新主要组" +msgid "month" +msgstr "每月一次" -#: lib/service/snapinhash.class.php:158 #, fuzzy -msgid "No snapins associated with this group as master" -msgstr "没有与此主机关联snapins" +msgid "more secure" +msgstr "导入用户" -#: lib/service/snapinhash.class.php:166 lib/service/fogservice.class.php:409 -#: lib/service/imagesize.class.php:166 -msgid "Found" +msgid "multiple places to get your image" msgstr "" -#: lib/service/snapinhash.class.php:170 #, fuzzy -msgid "snapins" -msgstr "Snapins" +msgid "must be specified" +msgstr "没有指定的图像" -#: lib/service/snapinhash.class.php:173 -msgid "to update hash values as needed" -msgstr "" +msgid "n/a" +msgstr "N / A" -#: lib/service/snapinhash.class.php:187 #, fuzzy -msgid "Trying Snapin hash for" -msgstr "管理单元路径" - -#: lib/service/snapinhash.class.php:206 -msgid "Getting snapin hash and size for" -msgstr "" +msgid "no database to" +msgstr "没有数据库工作关闭" -#: lib/service/snapinhash.class.php:216 -msgid "Hash" +msgid "no login will appear" msgstr "" -#: lib/service/snapinhash.class.php:232 lib/service/imagesize.class.php:240 -msgid "Completed" -msgstr "完成" - -#: lib/service/snapinreplicator.class.php:102 -msgid " * Snapin replication is globally disabled" +msgid "node is the distributor of the images" msgstr "" -#: lib/service/snapinreplicator.class.php:118 #, fuzzy -msgid "Starting Snapin Replication" -msgstr "管理单元复制" +msgid "nodes containing this image" +msgstr "找不到包含该图像的任何节点" -#: lib/service/snapinreplicator.class.php:149 -#: lib/service/snapinreplicator.class.php:279 #, fuzzy -msgid "snapin replication" -msgstr "管理单元复制" +msgid "not found on this node" +msgstr "图片没有节点发现" -#: lib/service/snapinreplicator.class.php:206 #, fuzzy -msgid "snapins to a storage group" -msgstr "管理单元存储组" +msgid "object" +msgstr "目的" -#: lib/service/snapinreplicator.class.php:232 -msgid "Replicating ssl less private key" -msgstr "" +msgid "of" +msgstr "的" -#: lib/service/snapinreplicator.class.php:249 #, fuzzy -msgid "Not syncing Snapin" -msgstr "无连接来获取管理单元" +msgid "on the following pages of this document" +msgstr "下面的错误发生" -#: lib/service/fogservice.class.php:141 -msgid " | This is not the master node" -msgstr "|这不是主节点" +msgid "on the old client" +msgstr "" -#: lib/service/fogservice.class.php:156 -msgid "Interface not ready, waiting for it to come up" +msgid "open" msgstr "" -#: lib/service/fogservice.class.php:185 -msgid "Waiting for mysql to be available" -msgstr "等待的MySQL可用" +msgid "or" +msgstr "要么" -#: lib/service/fogservice.class.php:356 #, fuzzy -msgid "This is not the master for this group" -msgstr "|这不是主要组" +msgid "or no valid images specified" +msgstr "没有指定的图像" -#: lib/service/fogservice.class.php:361 -msgid "This node does not appear to be online" +msgid "or start to operate" msgstr "" -#: lib/service/fogservice.class.php:385 lib/service/fogservice.class.php:497 -msgid "Not syncing" +msgid "or this is a new FOG installation" msgstr "" -#: lib/service/fogservice.class.php:387 lib/service/fogservice.class.php:499 -msgid "between" +msgid "particular node" msgstr "" -#: lib/service/fogservice.class.php:402 -msgid "There are no other members to sync to" +#, fuzzy +msgid "per host" +msgstr "每个主机管理单元" + +msgid "please see the hosts service settings section." msgstr "" -#: lib/service/fogservice.class.php:411 #, fuzzy -msgid "to transfer to" -msgstr "图像传输日志" +msgid "power management task(s) to run" +msgstr "用户管理" -#: lib/service/fogservice.class.php:482 -#, fuzzy -msgid "Replication already running with PID" -msgstr "复制带宽" +msgid "present and where/how they need to display" +msgstr "" -#: lib/service/fogservice.class.php:514 -#, fuzzy -msgid "File or path cannot be reached" -msgstr "|文件或无法达成通道" +msgid "previous install if needed" +msgstr "" -#: lib/service/fogservice.class.php:530 -#, fuzzy -msgid "Cannot connect to" -msgstr "无法连接到节点。" +msgid "read-only" +msgstr "" -#: lib/service/fogservice.class.php:640 lib/service/fogservice.class.php:648 #, fuzzy -msgid "File does not exist" -msgstr "文件不存在" +msgid "real insert time" +msgstr "从日记回放:实时插入时间" -#: lib/service/fogservice.class.php:725 -msgid "File hash mismatch" -msgstr "文件哈希不匹配" +#, fuzzy +msgid "require all hosts have the same image" +msgstr "主机没有分配相同的图像" -#: lib/service/fogservice.class.php:735 #, fuzzy -msgid "File size mismatch" -msgstr "文件大小不匹配" +msgid "scheduled task(s) to run" +msgstr "计划任务" -#: lib/service/fogservice.class.php:743 #, fuzzy -msgid "Deleting remote file" -msgstr "菜单创建失败" +msgid "second" +msgstr "图标" -#: lib/service/fogservice.class.php:749 -msgid "No need to sync" +msgid "seconds" msgstr "" -#: lib/service/fogservice.class.php:760 -msgid "All files synced for this item." -msgstr "同步该项目的所有文件。" - -#: lib/service/fogservice.class.php:780 -#, fuzzy -msgid "Starting Sync Actions" -msgstr "启动同步操作" +msgid "see fit" +msgstr "" -#: lib/service/fogservice.class.php:835 -msgid "Started sync for" -msgstr "对于同步启动" +msgid "see the forums or lookup the commands and scripts available" +msgstr "" -#: lib/service/fogservice.class.php:868 #, fuzzy -msgid "Task started" -msgstr "任务开始" +msgid "sending on base port " +msgstr "待MAC出口" -#: lib/service/imagesize.class.php:102 -#, fuzzy -msgid " * Image size is globally disabled" -msgstr "管理单元与该名称已经存在" +msgid "sites with clients moving back and forth" +msgstr "" -#: lib/service/imagesize.class.php:111 #, fuzzy -msgid "Starting Image Size Service" -msgstr "图像复制" +msgid "snapin" +msgstr "管理单元" -#: lib/service/imagesize.class.php:135 #, fuzzy -msgid "Finding any images associated" -msgstr "没有snapins相关" +msgid "snapin replication" +msgstr "管理单元复制" -#: lib/service/imagesize.class.php:158 #, fuzzy -msgid "No images associated with this group as master" -msgstr "没有与此主机关联snapins" +msgid "snapins" +msgstr "Snapins" -#: lib/service/imagesize.class.php:170 #, fuzzy -msgid "images" -msgstr "图片" +msgid "snapins to a storage group" +msgstr "管理单元存储组" -#: lib/service/imagesize.class.php:171 -#, fuzzy -msgid "image" -msgstr "图片" +msgid "so if it seems like the process is hanging please be patient" +msgstr "" -#: lib/service/imagesize.class.php:173 -msgid "to update size values as needed" +msgid "so if you are unable to boot a client you may wish to" msgstr "" -#: lib/service/imagesize.class.php:187 #, fuzzy -msgid "Trying image size for" -msgstr "管理单元路径" +msgid "successfully removed!" +msgstr "成功切除" -#: lib/service/imagesize.class.php:208 status/getfiles.php:43 -#, fuzzy -msgid "Path is unavailable" -msgstr "没有可用的散列" +msgid "task found" +msgstr "发现任务" -#: lib/service/imagesize.class.php:216 -msgid "Getting image size for" +msgid "tasks in queue" msgstr "" -#: lib/service/imagesize.class.php:225 -#, fuzzy -msgid "Size" -msgstr "最大尺寸" +msgid "" +"that detects the status on the fly, poweron or poweroff and the OS, of the " +"client" +msgstr "" -#: lib/service/multicastmanager.class.php:217 -msgid " * Multicast service is globally disabled" +msgid "the Initrd (initial ramdisk) which is used alongside the" msgstr "" -#: lib/service/multicastmanager.class.php:222 -#, fuzzy -msgid "Task ID" -msgstr "任务" +msgid "the Linux kernel which is used to" +msgstr "" -#: lib/service/multicastmanager.class.php:234 #, fuzzy -msgid "No new tasks found" -msgstr "发送无有效类" +msgid "the advanced menu to use" +msgstr "高级菜单登录" -#: lib/service/multicastmanager.class.php:264 #, fuzzy -msgid " No open slots " -msgstr "没有开口槽" +msgid "the base FOG install" +msgstr "重启后安装" -#: lib/service/multicastmanager.class.php:276 -msgid " Task state has been updated, now the task is queued!" +msgid "the following command in a terminal" msgstr "" -#: lib/service/multicastmanager.class.php:289 -#, fuzzy -msgid "failed to execute, image file: " -msgstr "无法删除图像文件" - -#: lib/service/multicastmanager.class.php:291 -#, fuzzy -msgid "not found on this node" -msgstr "图片没有节点发现" +msgid "the host defined location where available" +msgstr "" -#: lib/service/multicastmanager.class.php:302 -msgid "failed to execute, there are no clients included" +msgid "the main and the host" msgstr "" -#: lib/service/multicastmanager.class.php:315 -msgid "failed to execute, port must be even and numeric" +msgid "the way in which FOG operates" msgstr "" -#: lib/service/multicastmanager.class.php:327 #, fuzzy -msgid "failed to start" -msgstr "未能摧毁" +msgid "there one enabled within this Storage Group" +msgstr "找不到存储节点是否有什么这个存储组中启用" -#: lib/service/multicastmanager.class.php:336 -#: lib/service/multicastmanager.class.php:511 -#: lib/service/multicastmanager.class.php:550 -#, fuzzy -msgid "could not be killed" -msgstr "无法读取临时文件" +msgid "there will be a database backup stored on your" +msgstr "" -#: lib/service/multicastmanager.class.php:345 -#: lib/service/multicastmanager.class.php:559 -#, fuzzy -msgid "has been killed" -msgstr "已成功更新" +msgid "this backup will enable you to return to the" +msgstr "" -#: lib/service/multicastmanager.class.php:363 -#, fuzzy -msgid "is new" -msgstr "线" +msgid "this is just another to ensure safety" +msgstr "" -#: lib/service/multicastmanager.class.php:374 -#: lib/service/multicastmanager.class.php:461 -#, fuzzy -msgid "unable to be updated" -msgstr "无法更新" +msgid "this kernel holds all the drivers for the client computer" +msgstr "" -#: lib/service/multicastmanager.class.php:384 -msgid "image file found, file: " +msgid "this one is already in use by another image" msgstr "" -#: lib/service/multicastmanager.class.php:397 #, fuzzy -msgid "client" -msgstr "客户" +msgid "this one is reserved for FOG" +msgstr "请选择一个不同的名字,这个人是留给雾。" -#: lib/service/multicastmanager.class.php:398 -#, fuzzy -msgid "clients" -msgstr "客户" +msgid "this will save the backup in your home" +msgstr "" -#: lib/service/multicastmanager.class.php:401 -#, fuzzy -msgid "found" -msgstr "未找到" +msgid "time the service is started." +msgstr "" -#: lib/service/multicastmanager.class.php:409 -#, fuzzy -msgid "sending on base port " -msgstr "待MAC出口" +msgid "to UAC introduced in Vista and up" +msgstr "" -#: lib/service/multicastmanager.class.php:416 #, fuzzy -msgid "Command" -msgstr "管理单元命令" +msgid "to all nodes in the group" +msgstr "删除组内的所有主机" -#: lib/service/multicastmanager.class.php:425 -#, fuzzy -msgid "has started" -msgstr "任务开始" +msgid "to be booted if no keys are pressed when the menu is" +msgstr "" -#: lib/service/multicastmanager.class.php:490 #, fuzzy -msgid "is already running with pid: " -msgstr "复制带宽" +msgid "to get the requested Initrd" +msgstr "没有要求的关键" -#: lib/service/multicastmanager.class.php:502 #, fuzzy -msgid "is no longer running" -msgstr "不复存在" +msgid "to get the requested Kernel" +msgstr "没有要求的关键" -#: lib/service/multicastmanager.class.php:528 -#, fuzzy -msgid "has been completed" -msgstr "已被破坏" +msgid "to login" +msgstr "登陆" -#: lib/service/multicastmanager.class.php:539 -#, fuzzy -msgid "has been cancelled" -msgstr "已成功更新" +msgid "to operate in an environment where there may be" +msgstr "" -#: lib/service/multicastmanager.class.php:584 -#, fuzzy -msgid "is now cancelled" -msgstr "已成功更新" +msgid "to review." +msgstr "回顾。" -#: lib/service/multicastmanager.class.php:585 #, fuzzy -msgid "could not be cancelled" -msgstr "已成功更新" +msgid "to signify if this is a user or channel to send to" +msgstr "必须使用@或#来表示,如果这是一个用户或通道发送消息到!" -#: lib/service/multicastmanager.class.php:600 -#, fuzzy -msgid "is now completed" -msgstr "已被破坏" +msgid "to the client systems" +msgstr "" -#: lib/service/multicastmanager.class.php:601 -#, fuzzy -msgid "could not be completed" -msgstr "无法读取临时文件" +msgid "to time to see if a new module is published." +msgstr "" -#: lib/service/multicastmanager.class.php:619 #, fuzzy -msgid "Wait time has changed to" -msgstr "打印机类型变更为" +msgid "to transfer to" +msgstr "图像传输日志" -#: lib/service/multicastmanager.class.php:623 -msgid "seconds" +msgid "to update hash values as needed" msgstr "" -#: lib/service/multicastmanager.class.php:624 -#, fuzzy -msgid "second" -msgstr "图标" - -#: lib/service/taskscheduler.class.php:97 -msgid " * Task Scheduler is globally disabled" +msgid "to update size values as needed" msgstr "" -#: lib/service/taskscheduler.class.php:172 #, fuzzy -msgid "scheduled task(s) to run" -msgstr "计划任务" +msgid "unable to be updated" +msgstr "无法更新" -#: lib/service/taskscheduler.class.php:179 #, fuzzy -msgid "power management task(s) to run" -msgstr "用户管理" +msgid "unavailable" +msgstr "不可用" -#: lib/service/taskscheduler.class.php:187 -#, fuzzy -msgid "Scheduled Task run time" -msgstr "计划任务" +msgid "understood" +msgstr "" -#: lib/service/taskscheduler.class.php:200 -msgid "Found a scheduled task that should run." +msgid "update to a newer kernel which may have more drivers built in" msgstr "" -#: lib/service/taskscheduler.class.php:212 -msgid "Is a" -msgstr "是" +msgid "used" +msgstr "" -#: lib/service/taskscheduler.class.php:216 -#, fuzzy -msgid "based task." -msgstr "基于任务" +msgid "user failed to login" +msgstr "用户登录失败" + +msgid "user successfully logged in" +msgstr "用户成功登录" -#: lib/service/taskscheduler.class.php:224 #, fuzzy -msgid "Unicaset" -msgstr "单播" +msgid "username" +msgstr "用户名" -#: lib/service/taskscheduler.class.php:226 -msgid "task found" -msgstr "发现任务" +#, fuzzy +msgid "version" +msgstr "版" -#: lib/service/taskscheduler.class.php:252 #, fuzzy -msgid "Task started for" -msgstr "任务开始了" +msgid "we need a file name in the request" +msgstr "如果行动要求或得到的,我们在请求需要的文件名" -#: lib/service/taskscheduler.class.php:275 #, fuzzy -msgid "Power Management Task run time" -msgstr "用户管理" +msgid "where to download the snapin" +msgstr "无法找到该管理单元文件" -#: lib/service/taskscheduler.class.php:288 -msgid "Found a wake on lan task that should run." +msgid "which is empty" msgstr "" -#: lib/service/taskscheduler.class.php:294 #, fuzzy -msgid "Task sent to" -msgstr "任务状态" +msgid "window" +msgstr "Windows 7的" -#: management/other/index.php:60 management/other/index.php:132 -msgid "Toggle Navigation" +msgid "wipe out all of your images stored on" +msgstr "" + +msgid "with modules and config" msgstr "" -#: management/other/index.php:167 #, fuzzy -msgid "Credits" -msgstr "创建" +msgid "with the host" +msgstr "不在此" -#: management/other/index.php:170 #, fuzzy -msgid "FOG Client" -msgstr "FOG客户维基" +msgid "with this group" +msgstr "不在此" -#: service/hostnameloop.php:36 #, fuzzy -msgid "A host with that name already exists" -msgstr "使用此名称的主机名已经存在。" +msgid "would you like to install it now" +msgstr "这个插件是当前未安装,你想现在安装?" -#: service/hostnameloop.php:37 -msgid "The primary mac associated is" +msgid "you set the bandwidth field on that node to 1000" msgstr "" -#: service/inventory.php:90 #, fuzzy -msgid "Failed to create inventory for this host" -msgstr "无法为这个主机创建库存!" +#~ msgid "A hostext already exists with this name!" +#~ msgstr "图像已经存在具有此名称!" -#: service/grouplisting.php:28 #, fuzzy -msgid "There are no groups on this server" -msgstr "有此服务器上没有组。" +#~ msgid "Add ou failed!" +#~ msgstr "添加管理单元失败!" -#: service/hostinfo.php:28 -msgid "Cannot view from browser" -msgstr "" +#~ msgid "Could not read temp file" +#~ msgstr "无法读取临时文件" -#: service/hostinfo.php:31 #, fuzzy -msgid "Invalid tasking!" -msgstr "任务无效" +#~ msgid "Create New Host Ext" +#~ msgstr "新建%s" -#: service/imagelisting.php:28 #, fuzzy -msgid "There are no images on this server" -msgstr "有此服务器上没有图像。" +#~ msgid "Export Host Exts" +#~ msgstr "主机出口" -#: service/locationlisting.php:28 #, fuzzy -msgid "There are no locations on this server" -msgstr "有此服务器上没有的位置。" +#~ msgid "External Links" +#~ msgstr "延期" -#: service/progress.php:39 -msgid "Invalid image" -msgstr "图片无效" +#~ msgid "FOG Snapin Log" +#~ msgstr "FOG管理单元日志" -#: service/Test.php:145 -msgid "Invalid unit passed" -msgstr "无效的单元传递" +#~ msgid "Hello FOG Client" +#~ msgstr "你好FOG客户端" -#: service/Test.php:217 #, fuzzy -msgid "Invalid Unit" -msgstr "无效的网址" +#~ msgid "Host Ext" +#~ msgstr "主机列表" -#: service/av.php:25 -msgid "Invalid operational mode" -msgstr "无效的操作模式" +#, fuzzy +#~ msgid "Host Ext Name" +#~ msgstr "主机名" -#: service/av.php:38 -msgid "Accepted" -msgstr "公认" +#, fuzzy +#~ msgid "Host Ext URL" +#~ msgstr "主机ID" -#: service/snapinlisting.php:28 #, fuzzy -msgid "There are no snapins on this server" -msgstr "有此服务器上没有snapins。" +#~ msgid "Host Ext Variable" +#~ msgstr "主机更新失败" -#: status/bandwidth.php:40 #, fuzzy -msgid "Device must be a string" -msgstr "事件必须是字符串" +#~ msgid "Hostext Create Fail" +#~ msgstr "主机创建失败" -#: status/getfiles.php:27 #, fuzzy -msgid "Invalid" -msgstr "无效的ID" +#~ msgid "Hostext Create Success" +#~ msgstr "主机创建" -#: status/logtoview.php:31 status/logtoview.php:130 #, fuzzy -msgid "Invalid IP" -msgstr "无效的ID" +#~ msgid "Hostext Update Fail" +#~ msgstr "主机更新失败" -#: status/logtoview.php:37 status/logtoview.php:136 #, fuzzy -msgid "Invalid File" -msgstr "无效的文件夹" +#~ msgid "Hostext Update Success" +#~ msgstr "安装/升级成功!" -#: status/logtoview.php:81 -msgid "Invalid Folder" -msgstr "无效的文件夹" +#, fuzzy +#~ msgid "Hostext added!" +#~ msgstr "添加主机" -#: status/logtoview.php:87 -msgid "Unable to open file for reading" -msgstr "无法打开文件进行读取" +#, fuzzy +#~ msgid "Hostext update failed!" +#~ msgstr "打印机更新失败!" -#: status/logtoview.php:162 -msgid "IP Passed is incorrect" -msgstr "IP传递是不正确" +#, fuzzy +#~ msgid "Hostext updated!" +#~ msgstr "用户更新" -#~ msgid "Hello FOG Client" -#~ msgstr "你好FOG客户端" +#, fuzzy +#~ msgid "Import Host Exts" +#~ msgstr "进口主机" -#~ msgid "FOG Snapin Log" -#~ msgstr "FOG管理单元日志" +#, fuzzy +#~ msgid "Invalid Unit" +#~ msgstr "无效的网址" + +#~ msgid "Invalid unit passed" +#~ msgstr "无效的单元传递" + +#~ msgid "Inventory Desc" +#~ msgstr "库存说明" #~ msgid "Legacy Client and Utilities" #~ msgstr "旧客户端和实用程序" @@ -11122,8 +7900,8 @@ msgstr "IP传递是不正确" #~ msgid "This file is used to encrypt the AD Password" #~ msgstr "这个文件被用于加密的AD密码。请勿使用本如果使用新的客户端。" -#~ msgid "Could not read temp file" -#~ msgstr "无法读取临时文件" +#~ msgid "Unable to determine plugin details" +#~ msgstr "无法确定插件的详细信息" #, fuzzy #~ msgid "file to" diff --git a/packages/web/status/mainversion.php b/packages/web/status/mainversion.php index 4c1a48db4b..85ef1b20cc 100644 --- a/packages/web/status/mainversion.php +++ b/packages/web/status/mainversion.php @@ -34,10 +34,8 @@ $tags = json_decode(array_shift($resp)); foreach ($tags as $tag) { - if (preg_match('/^[0-9]\.[0-9]\.[0-9][0-9]*$/', $tag->name)) { - $stableversion = $tag->name; - break; - } + $stableversion = $tag->name; + break; } $systemclass = array_shift($resp); if (preg_match("/FOG_VERSION', '([0-9.RCalphbet-]*)'/", $systemclass, $fogver)) { From 914cdd4689359ffaf793834e96cfe1fcf059aa7d Mon Sep 17 00:00:00 2001 From: JJ Fullmer Date: Wed, 7 Aug 2024 09:40:04 -0600 Subject: [PATCH 2/3] Added names and dummy code to stable release step workflows --- .../stable-releases-1_pull-request.yml | 2 ++ .../workflows/stable-releases-2_test-validity | 6 ----- .../stable-releases-2_test-validity.yml | 21 ++++++++++++++++ .../stable-releases-3_tag-and-release | 6 ----- .../stable-releases-3_tag-and-release.yml | 24 +++++++++++++++++++ 5 files changed, 47 insertions(+), 12 deletions(-) delete mode 100644 .github/workflows/stable-releases-2_test-validity create mode 100644 .github/workflows/stable-releases-2_test-validity.yml delete mode 100644 .github/workflows/stable-releases-3_tag-and-release create mode 100644 .github/workflows/stable-releases-3_tag-and-release.yml diff --git a/.github/workflows/stable-releases-1_pull-request.yml b/.github/workflows/stable-releases-1_pull-request.yml index 8c8e5654ad..4ee4a4a68b 100644 --- a/.github/workflows/stable-releases-1_pull-request.yml +++ b/.github/workflows/stable-releases-1_pull-request.yml @@ -1,3 +1,5 @@ +name: Stable Release Step 1 - Create PR + on: workflow_dispatch: schedule: diff --git a/.github/workflows/stable-releases-2_test-validity b/.github/workflows/stable-releases-2_test-validity deleted file mode 100644 index f1e963e633..0000000000 --- a/.github/workflows/stable-releases-2_test-validity +++ /dev/null @@ -1,6 +0,0 @@ -# on a monthly pr created from other workflow -# test validity of install -# down the road-test various functions (deploy, capture, API) -# Fix version if needed -# merge pull request with generic commit -# maybe update version if not handled in hook diff --git a/.github/workflows/stable-releases-2_test-validity.yml b/.github/workflows/stable-releases-2_test-validity.yml new file mode 100644 index 0000000000..4bcd1ed18c --- /dev/null +++ b/.github/workflows/stable-releases-2_test-validity.yml @@ -0,0 +1,21 @@ +name: Stable Release Step 2 - Validate PR + +on: + workflow_dispatch: + +jobs: + Confirm-All-Tests-Passed: + runs-on: ubuntu-latest + steps: + # - uses: actions/checkout@v4 + - name: 'placeholder for confirming tests passed' + run: return true; + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +# on a monthly pr created from other workflow +# test validity of install +# down the road-test various functions (deploy, capture, API) +# Fix version if needed +# merge pull request with generic commit +# maybe update version if not handled in hook diff --git a/.github/workflows/stable-releases-3_tag-and-release b/.github/workflows/stable-releases-3_tag-and-release deleted file mode 100644 index 118481e3e0..0000000000 --- a/.github/workflows/stable-releases-3_tag-and-release +++ /dev/null @@ -1,6 +0,0 @@ -#on merge of monthly release pr -# create tag of current version -# create release of new tag -# generate release notes -# update website? -# send announcements? diff --git a/.github/workflows/stable-releases-3_tag-and-release.yml b/.github/workflows/stable-releases-3_tag-and-release.yml new file mode 100644 index 0000000000..264e87b7d6 --- /dev/null +++ b/.github/workflows/stable-releases-3_tag-and-release.yml @@ -0,0 +1,24 @@ +name: Stable Release Step 3 - Tag and Release + +on: + workflow_dispatch: + +jobs: + Tag-and-release: + runs-on: ubuntu-latest + steps: + # - uses: actions/checkout@v4 + - name: 'placeholder for tag and release' + run: | + echo 'find the version to create as a tag' + echo 'create the tag and release probably like...' + echo 'gh release create --notes-from-tag --latest --generate-notes --target stable' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +# on merge of monthly release pr +# get/calculate current version +# create tag of current version +# create release of new tag +# generate release notes +# send announcements? From bd2139850f91b8349cf22a4f66cfa67551e93247 Mon Sep 17 00:00:00 2001 From: JJ Fullmer Date: Thu, 8 Aug 2024 14:29:10 -0600 Subject: [PATCH 3/3] Automated Releases of stable revisions #601 - Update workflows with tested manual steps (tested in fork). Still working out the proper triggers. Planning to have a separate repo for install tests. If it's possible to have tests for capture/deploy that will also be a separate repo. --- .githooks/pre-commit | 13 ++++++++-- .../stable-releases-1_pull-request.yml | 11 ++++++-- .../stable-releases-2_test-validity.yml | 26 +++++++++++++++---- .../stable-releases-3_tag-and-release.yml | 25 +++++++++++++----- 4 files changed, 60 insertions(+), 15 deletions(-) diff --git a/.githooks/pre-commit b/.githooks/pre-commit index 3495970c33..ba2a630373 100755 --- a/.githooks/pre-commit +++ b/.githooks/pre-commit @@ -8,7 +8,7 @@ # To enable this hook, rename this file to "pre-commit". # # Exit on error -set -e +#set -e project_dir=$(git rev-parse --show-toplevel) @@ -50,7 +50,7 @@ verbegin="" channel="" case $branchon in - dev|stable) + dev) # Describe the tag and append the commit count correctly tagversion=$(git describe --tags ${gitcom}) baseversion=${tagversion%.*} # Retain everything before the last segment @@ -58,6 +58,15 @@ case $branchon in trunkversion="${baseversion}.${gitcount}" channel="Patches" ;; + stable) + # For stable, don't increment version, use what is being pulled from dev-branch + tagversion=$(git describe --tags ${gitcom}) + baseversion=${tagversion%.*} # Retain everything before the last segment + lastrevision=${tagversion##*.} # Extracts the last segment + gitcount=$(git rev-list master..dev-branch --count) #get the gitcount from dev-branch instead + trunkversion="${baseversion}.${gitcount}" + channel="Patches" + ;; working) # Generate a version number based on the branchend and commit count for the working branch verbegin="${branchend}.0-beta" diff --git a/.github/workflows/stable-releases-1_pull-request.yml b/.github/workflows/stable-releases-1_pull-request.yml index 4ee4a4a68b..583bf3670c 100644 --- a/.github/workflows/stable-releases-1_pull-request.yml +++ b/.github/workflows/stable-releases-1_pull-request.yml @@ -7,9 +7,16 @@ on: jobs: create-release-pull-request: runs-on: ubuntu-latest + if: github.ref == 'refs/heads/stable' steps: - uses: actions/checkout@v4 + with: + ref: dev-branch - name: create pull request - run: gh pr create -B stable -H dev-branch --title "Monthly Release PR - $(date '+%Y-%m-%d')" --body "Monthly pull request for creating the latest stable release from staged security fixes, bug fixes, and minor enhancements." + run: | + echo 'Get version to be released and create PR with that in the name' + system_file="$(git rev-parse --show-toplevel)/packages/web/lib/fog/system.class.php" + tag=$(grep "define('FOG_VERSION'" $system_file | sed "s/.*FOG_VERSION', '\([^']*\)');/\1/") + gh pr create -B stable -H dev-branch --title "Stable Release PR For ${tag} - $(date '+%Y-%m-%d')" --body "Pull Request for creating the latest stable release from staged security fixes, bug fixes, and minor enhancements in dev-branch. Created as needed or monthly on 15th of every month, released once tests are passing" env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/stable-releases-2_test-validity.yml b/.github/workflows/stable-releases-2_test-validity.yml index 4bcd1ed18c..633ce3e29c 100644 --- a/.github/workflows/stable-releases-2_test-validity.yml +++ b/.github/workflows/stable-releases-2_test-validity.yml @@ -2,14 +2,30 @@ name: Stable Release Step 2 - Validate PR on: workflow_dispatch: + # pull_request: + # types: + # - open + # branches: + # - dev-branch + # - stable jobs: - Confirm-All-Tests-Passed: + Merge-After-All-Tests-Passed: runs-on: ubuntu-latest + if: github.ref == 'refs/heads/stable' steps: - # - uses: actions/checkout@v4 - - name: 'placeholder for confirming tests passed' - run: return true; + - name: Check out code + uses: actions/checkout@v4 + - name: Merge The PR + run: | + echo 'Get the tag' + git fetch origin dev-branch + git checkout dev-branch + system_file="$(git rev-parse --show-toplevel)/packages/web/lib/fog/system.class.php" + tag=$(grep "define('FOG_VERSION'" $system_file | sed "s/.*FOG_VERSION', '\([^']*\)');/\1/") + git checkout stable + echo "merge the pull request bringing dev-branch into stable"; + gh pr merge dev-branch --squash --subject "Stable Release - ${tag}"; env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -18,4 +34,4 @@ jobs: # down the road-test various functions (deploy, capture, API) # Fix version if needed # merge pull request with generic commit -# maybe update version if not handled in hook +# maybe update version if not handled in hook \ No newline at end of file diff --git a/.github/workflows/stable-releases-3_tag-and-release.yml b/.github/workflows/stable-releases-3_tag-and-release.yml index 264e87b7d6..bd875957be 100644 --- a/.github/workflows/stable-releases-3_tag-and-release.yml +++ b/.github/workflows/stable-releases-3_tag-and-release.yml @@ -2,23 +2,36 @@ name: Stable Release Step 3 - Tag and Release on: workflow_dispatch: - + # pull_request: + # types: + # - closed + jobs: Tag-and-release: runs-on: ubuntu-latest + if: github.ref == 'refs/heads/stable' steps: - # - uses: actions/checkout@v4 - - name: 'placeholder for tag and release' + - name: Check-out code to release + uses: actions/checkout@v4 + - name: Tag and release run: | + echo 'Find the version to use for the tag, create the release, and sync the dev and stable branches' echo 'find the version to create as a tag' - echo 'create the tag and release probably like...' - echo 'gh release create --notes-from-tag --latest --generate-notes --target stable' + system_file="$(git rev-parse --show-toplevel)/packages/web/lib/fog/system.class.php" + tag=$(grep "define('FOG_VERSION'" $system_file | sed "s/.*FOG_VERSION', '\([^']*\)');/\1/") + echo 'create the tag and release...' + gh release create $tag --latest --generate-notes --target stable + echo 'sync dev-branch with stable branch (merge stable into dev-branch)...' + # git config core.hooksPath .githooks #custom githooks not working in github runner + gh pr create -B dev-branch -H stable --title "merge stable - ${tag} into dev" --body "Pull Request for syncing stable release commit back to dev after a release" + gh pr merge stable --merge --subject "merge stable - ${tag} into dev"; env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # on merge of monthly release pr # get/calculate current version # create tag of current version # create release of new tag # generate release notes -# send announcements? +# send announcements? \ No newline at end of file