View | Details | Raw Unified | Return to bug 40782
Collapse All | Expand All

(-)debian/control (+1 lines)
 Lines 110-115    Link Here 
110
 univention-updater,
110
 univention-updater,
111
 univention-management-console-module-lib,
111
 univention-management-console-module-lib,
112
 univention-management-console-module-appcenter,
112
 univention-management-console-module-appcenter,
113
 univention-management-console-module-sysinfo,
113
 univention-management-console-frontend,
114
 univention-management-console-frontend,
114
 python-univention-lib (>= 4.0.5-12),
115
 python-univention-lib (>= 4.0.5-12),
115
 python-dnspython,
116
 python-dnspython,
(-)debian/univention-management-console-module-setup.postinst (-2 / +2 lines)
 Lines 34-44    Link Here 
34
adduser --system --no-create-home --disabled-password --force-badname '__systemsetup__'
34
adduser --system --no-create-home --disabled-password --force-badname '__systemsetup__'
35
35
36
# set UMC ACLs for special user
36
# set UMC ACLs for special user
37
/usr/sbin/univention-management-console-acls allow -u "__systemsetup__" -c "setup/*" -c "lib/server/*" -H "*"
37
/usr/sbin/univention-management-console-acls allow -u "__systemsetup__" -c "setup/*" -c "lib/server/*" -c "sysinfo/*" -H "*"
38
38
39
# For remote configuration give root the permission to see this module. Normally the
39
# For remote configuration give root the permission to see this module. Normally the
40
# ACL will be defined in the UMC package and can be removed here after UCS 3.0-2
40
# ACL will be defined in the UMC package and can be removed here after UCS 3.0-2
41
/usr/sbin/univention-management-console-acls allow -u "root" -c "setup/*" -c "lib/server/*" -H "*"
41
/usr/sbin/univention-management-console-acls allow -u "root" -c "setup/*" -c "lib/server/*" -c "sysinfo/*" -H "*"
42
42
43
ucr set umc/web/appliance/fast_setup_mode?true
43
ucr set umc/web/appliance/fast_setup_mode?true
44
44
(-)umc/js/setup/ApplianceWizard.js (-37 / +172 lines)
 Lines 50-58    Link Here 
50
	"dojox/html/entities",
50
	"dojox/html/entities",
51
	"umc/dialog",
51
	"umc/dialog",
52
	"umc/tools",
52
	"umc/tools",
53
	"umc/modules/sysinfo/lib",
53
	"umc/widgets/TextBox",
54
	"umc/widgets/TextBox",
54
	"umc/widgets/CheckBox",
55
	"umc/widgets/CheckBox",
55
	"umc/widgets/ComboBox",
56
	"umc/widgets/ComboBox",
57
	"umc/widgets/ContainerWidget",
56
	"umc/widgets/Text",
58
	"umc/widgets/Text",
57
	"umc/widgets/Button",
59
	"umc/widgets/Button",
58
	"umc/widgets/TitlePane",
60
	"umc/widgets/TitlePane",
 Lines 67-73    Link Here 
67
	"umc/i18n/tools",
69
	"umc/i18n/tools",
68
	"umc/i18n!umc/modules/setup",
70
	"umc/i18n!umc/modules/setup",
69
	"dojo/NodeList-manipulate"
71
	"dojo/NodeList-manipulate"
70
], function(dojo, declare, lang, array, dojoEvent, domClass, on, Evented, topic, Deferred, all, Memory, request, Select, Tooltip, focusUtil, timing, styles, entities, dialog, tools, TextBox, CheckBox, ComboBox, Text, Button, TitlePane, PasswordInputBox, PasswordBox, Wizard, Grid, RadioButton, ProgressBar, LiveSearch, VirtualKeyboardBox, i18nTools, _) {
72
], function(dojo, declare, lang, array, dojoEvent, domClass, on, Evented, topic, Deferred, all, Memory, request, Select, Tooltip, focusUtil, timing, styles, entities, dialog, tools, sysinfo, TextBox, CheckBox, ComboBox, ContainerWidget, Text, Button, TitlePane, PasswordInputBox, PasswordBox, Wizard, Grid, RadioButton, ProgressBar, LiveSearch, VirtualKeyboardBox, i18nTools, _) {
71
73
72
	var _Grid = declare(Grid, {
74
	var _Grid = declare(Grid, {
73
		_onRowClick: function(evt) {
75
		_onRowClick: function(evt) {
 Lines 865-874    Link Here 
865
				name: 'error',
867
				name: 'error',
866
				headerText: errorHeader,
868
				headerText: errorHeader,
867
				helpText: '_',
869
				helpText: '_',
870
				_errorFeedbackButtons: null,
868
				widgets: [{
871
				widgets: [{
869
					type: Text,
872
					type: Text,
873
					name: 'errors',
874
					style: 'width: 100%',
875
					content: ''
876
				}, {
877
					type: Text,
870
					name: 'info',
878
					name: 'info',
871
					style: 'font-style:italic;',
872
					content: ''
879
					content: ''
873
				}]
880
				}]
874
			}), lang.mixin({}, pageConf, {
881
			}), lang.mixin({}, pageConf, {
 Lines 1828-1876    Link Here 
1828
		},
1835
		},
1829
1836
1830
		_updateErrorPage: function(details, critical) {
1837
		_updateErrorPage: function(details, critical) {
1838
			var createErrorMessages = function() {
1839
				//make the occurred errors more readable
1840
				var previousErrorHeader = '';
1841
				array.forEach(details, function(idetail) {
1842
					var splitDetail = idetail.split(":");
1843
					if (splitDetail.length === 2) {
1844
						var errorHeader = splitDetail[0];
1845
						var error = splitDetail[1];
1846
						if (errorHeader === previousErrorHeader) {
1847
							errors += error.trim() + '\n\n';
1848
						} else {
1849
							errors += "* " + errorHeader + ':\n' + error.trim() + '\n\n';
1850
						}
1851
						previousErrorHeader = errorHeader;
1852
					} else {
1853
						var readableMessage = idetail.replace(/<br *\/?>/g, "\n");
1854
						errors += readableMessage + '\n';
1855
						previousErrorHeader = '';
1856
					}
1857
				});
1858
1859
				//compose an error message that is shown to the user
1860
				errorMsgHeader = _('The following errors occurred while applying the settings.');
1861
				var errorsBox = '<pre style="max-height: 200px">' + errors + '</pre>';
1862
				var errorFeedbackText = _('Help us improve UCS by sending the occurred errors as feedback.');
1863
1864
				errorMsg = '<p>' + errorMsgHeader + '</p>';
1865
				errorMsg += errorsBox;
1866
				errorMsg += '<p>' + errorFeedbackText + '</p>';
1867
			};
1868
1869
			var createInfoMessage = lang.hitch(this, function() {
1870
				infoMsg += '<hr>';
1871
				infoMsg += '<p>' + _('You may restart the configuration process again with modified settings.') + '</p>';
1872
1873
				// TODO: all these messages about joining are useless if (critical)? ... Maybe some hint about Univention support? Or sdb article how to deal with errors.
1874
				if (isMaster) {
1875
					infoMsg += '<p>';
1876
					infoMsg += _('Alternatively, you may click on the button <i>Finish</i> to exit the wizard and resolve the described problems via Univention Management Console.') + ' ';
1877
					infoMsg += _('Failed join scripts can be executed via the UMC module <i>Domain join</i>.');
1878
					infoMsg += '</p>';
1879
1880
					infoMsg += '<p>' + _('Connect to Univention Management Console on this system either as user <b>Administrator</b> or as user <b>root</b> in case the system has not yet created a new UCS domain:') + '</p>';
1881
					infoMsg += this._getUMCLinks();
1882
				} else if (isBaseSystem) {
1883
					var fqdn = this._getFQDN();
1884
					var ips = this._getIPAdresses();
1885
					infoMsg += '<p>';
1886
					infoMsg += _('Alternatively, you may click on the button <i>Finish</i> to exit the wizard and resolve the described problems at a later point.') + ' ';
1887
					infoMsg += _('The system is reachable at <i>%(fqdn)s</i> or via its IP address(es) <i>%(addresses)s</i>.', {fqdn: fqdn, addresses: ips.join(', ')});
1888
				} else { // if (isNonMaster || isAdMemberMaster || isAdMember) {
1889
					infoMsg += '<p>';
1890
					infoMsg += _('Alternatively, you may click on the button <i>Finish</i> to exit the wizard and resolve the described problems via Univention Management Console.') + ' ';
1891
					infoMsg += _('Failed join scripts or a new join of the system can be executed via the UMC module <i>Domain join</i>.');
1892
					infoMsg += '</p>';
1893
1894
					infoMsg += '<p>' + _('Connect to Univention Management Console on this system either as user <b>Administrator</b> or as user <b>root</b> in case the system has not yet joined the domain:') + '</p>';
1895
					infoMsg += this._getUMCLinks();
1896
				}
1897
			});
1898
1899
			var createFeedback = lang.hitch(this, function() {
1900
				feedbackMsg = lang.replace("{0}\n\n{1}\n\n{2}", [
1901
					tools.status('ucsVersion'),
1902
					errorMsgHeader,
1903
					errors
1904
				]);
1905
1906
				feedbackMailLabel = _('Send feedback as mail');
1907
				feedbackMailto = lang.replace('mailto:{email}?body={body}&subject={subject}', {
1908
					email: encodeURIComponent(tools.status('feedbackAddress')),
1909
					body: encodeURIComponent(entities.decode(feedbackMsg)),
1910
					subject: encodeURIComponent(tools.status('feedbackSubject'))
1911
				});
1912
				feedbackMailLink = '<a href="' + feedbackMailto + '">' + feedbackMailLabel + '</a>';
1913
			});
1914
1915
			var createFeedbackButtons = lang.hitch(this, function() {
1916
				var page = this.getPage('error');
1917
				var _errors = this.getWidget('error', 'errors');
1918
1919
				//cleanup old buttons
1920
				if (page._errorFeedbackButtons) {
1921
					page._errorFeedbackButtons.destroyRecursive();
1922
				}
1923
				//create new buttons
1924
				var _errorFeedbackButtons = new ContainerWidget();
1925
				var _sendErrorAsMailButton = null;
1926
				//var _sendErrorAsMailButton = getSendErrorsAsMailButton();
1927
				var _sendErrorButton = getSendErrorButton();
1928
				//add buttons
1929
				if (_sendErrorAsMailButton) {
1930
					_errorFeedbackButtons.addChild(_sendErrorAsMailButton);
1931
				}
1932
				if (_sendErrorButton) {
1933
					_errorFeedbackButtons.addChild(_sendErrorButton);
1934
				}
1935
1936
				page._errorFeedbackButtons = _errorFeedbackButtons;
1937
			});
1938
1939
			var getSendErrorButton = lang.hitch(this, function() {
1940
				var _sendErrorButton = null;
1941
1942
				_sendErrorButton = new Button({
1943
					label: _('Send feedback'),
1944
					style: 'float: right',
1945
					onClick: lang.hitch(this, function() {
1946
						values = {
1947
							traceback: details.join('\n'),
1948
							remark: feedbackMsg,
1949
							email: ''
1950
						};
1951
						tools.umcpCommand('sysinfo/traceback', values, false).then(
1952
							function() {
1953
								dialog.alert(_('Thank you for your help'));
1954
							},
1955
							function() {
1956
								dialog.alert(_('Sending the information to the vendor failed'));
1957
							}
1958
						);
1959
					})
1960
				});
1961
1962
				return _sendErrorButton;
1963
			});
1964
1965
			var getSendErrorsAsMailButton = lang.hitch(this, function() {
1966
				var _sendErrorAsMail = null;
1967
				if (!this.local_mode) {
1968
					_sendErrorAsMail = new Button({
1969
						label: feedbackMailLabel,
1970
						style: 'float: right',
1971
						onClick: function() {
1972
							window.location.href = feedbackMailto;
1973
						}
1974
					});
1975
				}	
1976
1977
				return _sendErrorAsMail;
1978
			});
1979
1980
			var displayInformation = lang.hitch(this, function() {
1981
				var page = this.getPage('error').set('helpText', helpText);
1982
				var errors = this.getWidget('error', 'errors').set('content', errorMsg);
1983
				//display feedback buttons
1984
				dojo.place(page._errorFeedbackButtons.domNode, errors.domNode, 'after');
1985
				this.getWidget('error', 'info').set('content', infoMsg);
1986
			});
1987
1831
			var isMaster = this._isRoleMaster();
1988
			var isMaster = this._isRoleMaster();
1832
			var isBaseSystem = this._isRoleBaseSystem();
1989
			var isBaseSystem = this._isRoleBaseSystem();
1833
1834
			var helpText = '<p>' + _('The system configuration could not be completed. Please choose to retry the configuration process or finish the wizard.') + '</p>';
1990
			var helpText = '<p>' + _('The system configuration could not be completed. Please choose to retry the configuration process or finish the wizard.') + '</p>';
1835
			var msg = '<p>' + _('The following errors occurred while applying the settings.') + '</p>';
1836
			msg += '<ul>';
1837
			array.forEach(details, function(idetail) {
1838
				msg += '<li>' + idetail + '</li>';
1839
			});
1840
			msg += '</ul>';
1841
1991
1842
			msg += '<p>' + _('You may restart the configuration process again with modified settings.') + '</p>';
1992
			var errorMsg = '';
1993
			var errorMsgHeader = '';
1994
			var errors = '';
1995
			createErrorMessages();
1843
1996
1844
			// TODO: all these messages about joining are useless if (critical)? ... Maybe some hint about Univention support? Or sdb article how to deal with errors.
1997
			var infoMsg = '';
1845
			if (isMaster) {
1998
			createInfoMessage();
1846
				msg += '<p>';
1847
				msg += _('Alternatively, you may click on the button <i>Finish</i> to exit the wizard and resolve the described problems via Univention Management Console.') + ' ';
1848
				msg += _('Failed join scripts can be executed via the UMC module <i>Domain join</i>.');
1849
				msg += '</p>';
1850
1999
1851
				msg += '<p>' + _('Connect to Univention Management Console on this system either as user <b>Administrator</b> or as user <b>root</b> in case the system has not yet created a new UCS domain:') + '</p>';
2000
			var feedbackMsg = '';
1852
				msg += this._getUMCLinks();
2001
			var feedbackMailLabel = '';
1853
			} else if (isBaseSystem) {
2002
			var feedbackMailto = '';
1854
				var fqdn = this._getFQDN();
2003
			var feedbackMailLink = '';
1855
				var ips = this._getIPAdresses();
2004
			createFeedback();
1856
				msg += '<p>';
2005
			createFeedbackButtons();
1857
				msg += _('Alternatively, you may click on the button <i>Finish</i> to exit the wizard and resolve the described problems at a later point.') + ' ';
1858
				msg += _('The system is reachable at <i>%(fqdn)s</i> or via its IP address(es) <i>%(addresses)s</i>.', {fqdn: fqdn, addresses: ips.join(', ')});
1859
				msg += '</p>';
1860
			} else { // if (isNonMaster || isAdMemberMaster || isAdMember) {
1861
				msg += '<p>';
1862
				msg += _('Alternatively, you may click on the button <i>Finish</i> to exit the wizard and resolve the described problems via Univention Management Console.') + ' ';
1863
				msg += _('Failed join scripts or a new join of the system can be executed via the UMC module <i>Domain join</i>.');
1864
				msg += '</p>';
1865
2006
1866
				msg += '<p>' + _('Connect to Univention Management Console on this system either as user <b>Administrator</b> or as user <b>root</b> in case the system has not yet joined the domain:') + '</p>';
2007
			displayInformation();
1867
				msg += this._getUMCLinks();
1868
			}
1869
2008
1870
			// display validation information
1871
			this.getPage('error').set('helpText', helpText);
1872
			this.getWidget('error', 'info').set('content', msg);
1873
1874
			// save the state
2009
			// save the state
1875
			this._criticalJoinErrorOccurred = critical;
2010
			this._criticalJoinErrorOccurred = critical;
1876
		},
2011
		},
(-)umc/js/de.po (-226 / +254 lines)
 Lines 1-7    Link Here 
1
msgid ""
1
msgid ""
2
msgstr ""
2
msgstr ""
3
"Report-Msgid-Bugs-To: packages@univention.de\n"
3
"Report-Msgid-Bugs-To: packages@univention.de\n"
4
"POT-Creation-Date: 2016-03-15 18:14+0100\n"
4
"POT-Creation-Date: 2016-06-23 15:35+0200\n"
5
"PO-Revision-Date: 2012-02-20 11:34+0100\n"
5
"PO-Revision-Date: 2012-02-20 11:34+0100\n"
6
"Last-Translator: Univention GmbH <packages@univention.de>\n"
6
"Last-Translator: Univention GmbH <packages@univention.de>\n"
7
"Language-Team: Univention GmbH <packages@univention.de>\n"
7
"Language-Team: Univention GmbH <packages@univention.de>\n"
 Lines 10-48    Link Here 
10
"Content-Type: text/plain; charset=UTF-8\n"
10
"Content-Type: text/plain; charset=UTF-8\n"
11
"Content-Transfer-Encoding: 8bit\n"
11
"Content-Transfer-Encoding: 8bit\n"
12
12
13
#: umc/js/setup/ApplianceWizard.js:317
13
#: umc/js/setup/ApplianceWizard.js:322
14
#, python-format
14
#, python-format
15
msgid "%s Appliance"
15
msgid "%s Appliance"
16
msgstr ""
16
msgstr ""
17
17
18
#: umc/js/setup/ApplianceWizard.js:1797
18
#: umc/js/setup/ApplianceWizard.js:2721
19
#, python-format
19
#, python-format
20
msgid ""
21
"%s Appliance could not be joined because the license on the DC Master is not "
22
"activated."
23
msgstr ""
24
"%s Appliance kann nicht gejoined werden. Es liegt keine aktivierte Lizenz "
25
"auf dem DC Master vor."
26
27
#: umc/js/setup/ApplianceWizard.js:2018
28
#, python-format
20
msgid "%s Appliance has been successfully set up."
29
msgid "%s Appliance has been successfully set up."
21
msgstr "%s Appliance wurde erfolgreich eingerichtet."
30
msgstr "%s Appliance wurde erfolgreich eingerichtet."
22
31
23
#: umc/js/setup/ApplianceWizard.js:1132
32
#: umc/js/setup/ApplianceWizard.js:1159
24
#, python-format
33
#, python-format
25
msgid "%s GiB"
34
msgid "%s GiB"
26
msgstr ""
35
msgstr ""
27
36
28
#: umc/js/setup/ApplianceWizard.js:1130
37
#: umc/js/setup/ApplianceWizard.js:1157
29
#, python-format
38
#, python-format
30
msgid "%s MiB"
39
msgid "%s MiB"
31
msgstr ""
40
msgstr ""
32
41
33
#: umc/js/setup/ApplianceWizard.js:433
42
#: umc/js/setup/ApplianceWizard.js:438
34
msgid "(Request address again)"
43
msgid "(Request address again)"
35
msgstr "(Adresse erneut anfordern)"
44
msgstr "(Adresse erneut anfordern)"
36
45
37
#: umc/js/setup/ApplianceWizard.js:541
46
#: umc/js/setup/ApplianceWizard.js:546
38
msgid "(configure proxy settings)"
47
msgid "(configure proxy settings)"
39
msgstr "(Einrichten von Proxy-Einstellungen)"
48
msgstr "(Einrichten von Proxy-Einstellungen)"
40
49
41
#: umc/js/setup/ApplianceWizard.js:1440
50
#: umc/js/setup/ApplianceWizard.js:1536
42
msgid "<b>Unknown</b>"
51
msgid "<b>Unknown</b>"
43
msgstr "<b>Unbekannt</b>"
52
msgstr "<b>Unbekannt</b>"
44
53
45
#: umc/js/setup/ApplianceWizard.js:1135
54
#: umc/js/setup/ApplianceWizard.js:1162
55
#, python-brace-format
46
msgid ""
56
msgid ""
47
"<b>Warning:</b> At least {memory_min} RAM is required for the installation "
57
"<b>Warning:</b> At least {memory_min} RAM is required for the installation "
48
"of {product_name}."
58
"of {product_name}."
 Lines 88-94    Link Here 
88
"logisch mit nur einem oder mehreren physikalischen Netzwerkgeräten zu "
98
"logisch mit nur einem oder mehreren physikalischen Netzwerkgeräten zu "
89
"trennen."
99
"trennen."
90
100
91
#: umc/js/setup/ApplianceWizard.js:1802
101
#: umc/js/setup/ApplianceWizard.js:2023
92
msgid ""
102
msgid ""
93
"<p>After clicking on the button <i>Finish</i> the system will be prepared "
103
"<p>After clicking on the button <i>Finish</i> the system will be prepared "
94
"for the first boot procedure and will be rebooted.</p>"
104
"for the first boot procedure and will be rebooted.</p>"
 Lines 96-113    Link Here 
96
"<p>Nach dem Klicken auf die Schaltfläche <i>Fertigstellen</i> wird das "
106
"<p>Nach dem Klicken auf die Schaltfläche <i>Fertigstellen</i> wird das "
97
"System auf den ersten Bootvorgang vorbereitet und neu gestartet.</p>"
107
"System auf den ersten Bootvorgang vorbereitet und neu gestartet.</p>"
98
108
99
#: umc/js/setup/ApplianceWizard.js:1813
109
#: umc/js/setup/ApplianceWizard.js:2034
100
msgid "<p>Click on <i>Finish</i> for putting UCS into operation.</p>"
110
msgid "<p>Click on <i>Finish</i> for putting UCS into operation.</p>"
101
msgstr ""
111
msgstr ""
102
"<p>Klicken Sie auf <i>Fertigstellen</i>, um UCS in Betrieb zu nehmen.</p>"
112
"<p>Klicken Sie auf <i>Fertigstellen</i>, um UCS in Betrieb zu nehmen.</p>"
103
113
104
#: umc/js/setup/ApplianceWizard.js:1804
114
#: umc/js/setup/ApplianceWizard.js:2025
105
msgid "<p>Click on <i>Finish</i> for putting this system into operation.</p>"
115
msgid "<p>Click on <i>Finish</i> for putting this system into operation.</p>"
106
msgstr ""
116
msgstr ""
107
"<p>Klicken Sie auf <i>Fertigstellen</i>, um dieses System in Betrieb zu "
117
"<p>Klicken Sie auf <i>Fertigstellen</i>, um dieses System in Betrieb zu "
108
"nehmen.</p>"
118
"nehmen.</p>"
109
119
110
#: umc/js/setup/ApplianceWizard.js:938
120
#: umc/js/setup/ApplianceWizard.js:962
111
msgid ""
121
msgid ""
112
"<p>Enter the name of your organization and an e-mail address to activate UCS."
122
"<p>Enter the name of your organization and an e-mail address to activate UCS."
113
"</p>"
123
"</p>"
 Lines 115-121    Link Here 
115
"<p>Geben Sie den Namen Ihrer Organisation und eine E-Mail-Adresse für die "
125
"<p>Geben Sie den Namen Ihrer Organisation und eine E-Mail-Adresse für die "
116
"Aktivierung von UCS ein.</p>"
126
"Aktivierung von UCS ein.</p>"
117
127
118
#: umc/js/setup/ApplianceWizard.js:323
128
#: umc/js/setup/ApplianceWizard.js:328
119
#, python-format
129
#, python-format
120
msgid ""
130
msgid ""
121
"<p>Enter the name of your organization, an e-mail address to activate %s "
131
"<p>Enter the name of your organization, an e-mail address to activate %s "
 Lines 129-135    Link Here 
129
"sowohl für das Domänen-Administrator-Konto als auch für den lokalen "
139
"sowohl für das Domänen-Administrator-Konto als auch für den lokalen "
130
"Superuser <i>root</i> verwendet.</p>"
140
"Superuser <i>root</i> verwendet.</p>"
131
141
132
#: umc/js/setup/ApplianceWizard.js:313
142
#: umc/js/setup/ApplianceWizard.js:318
133
msgid ""
143
msgid ""
134
"<p>Enter the name of your organization, an e-mail address to activate UCS "
144
"<p>Enter the name of your organization, an e-mail address to activate UCS "
135
"and a password for your <i>Administrator</i> account.</p><p>The password is "
145
"and a password for your <i>Administrator</i> account.</p><p>The password is "
 Lines 142-148    Link Here 
142
"Administrator-Konto als auch für den lokalen Superuser <i>root</i> verwendet."
152
"Administrator-Konto als auch für den lokalen Superuser <i>root</i> verwendet."
143
"</p>"
153
"</p>"
144
154
145
#: umc/js/setup/ApplianceWizard.js:2253
155
#: umc/js/setup/ApplianceWizard.js:2569
146
#, python-format
156
#, python-format
147
msgid ""
157
msgid ""
148
"<p>One or more network interfaces could not obtain an IP address via DHCP. "
158
"<p>One or more network interfaces could not obtain an IP address via DHCP. "
 Lines 156-162    Link Here 
156
"ihre DHCP-Konfiguration an oder bestätigen Sie die Nutzung der privaten "
166
"ihre DHCP-Konfiguration an oder bestätigen Sie die Nutzung der privaten "
157
"Adresse(n).</p>"
167
"Adresse(n).</p>"
158
168
159
#: umc/js/setup/ApplianceWizard.js:823
169
#: umc/js/setup/ApplianceWizard.js:842
160
msgid ""
170
msgid ""
161
"<p>Select UCS software components for installation on this system. This step "
171
"<p>Select UCS software components for installation on this system. This step "
162
"can be skipped; the components are also available in the Univention App "
172
"can be skipped; the components are also available in the Univention App "
 Lines 169-175    Link Here 
169
"p><p>Software von Drittanbietern (bspw. Groupware) kann ebenfalls über das "
179
"p><p>Software von Drittanbietern (bspw. Groupware) kann ebenfalls über das "
170
"Univention App Center installiert werden.</p>"
180
"Univention App Center installiert werden.</p>"
171
181
172
#: umc/js/setup/ApplianceWizard.js:1809
182
#: umc/js/setup/ApplianceWizard.js:2030
173
msgid ""
183
msgid ""
174
"<p>When accessing the system for the first time, you will be asked to "
184
"<p>When accessing the system for the first time, you will be asked to "
175
"request and upload a new license.</p>"
185
"request and upload a new license.</p>"
 Lines 177-183    Link Here 
177
"<p>Beim initialen Zugriff auf das System, werden Sie gebeten eine "
187
"<p>Beim initialen Zugriff auf das System, werden Sie gebeten eine "
178
"Lizenzdatei anzufordern und hochzuladen.</p>"
188
"Lizenzdatei anzufordern und hochzuladen.</p>"
179
189
180
#: umc/js/setup/ApplianceWizard.js:1807
190
#: umc/js/setup/ApplianceWizard.js:2028
181
msgid ""
191
msgid ""
182
"<p>When accessing the system for the first time, you will be asked to upload "
192
"<p>When accessing the system for the first time, you will be asked to upload "
183
"a new license that has been sent to your email account.</p>"
193
"a new license that has been sent to your email account.</p>"
 Lines 185-191    Link Here 
185
"<p>Beim initialen Zugriff auf das System, werden Sie gebeten eine "
195
"<p>Beim initialen Zugriff auf das System, werden Sie gebeten eine "
186
"Lizenzdatei, die an Ihre E-Mail-Adresse gesendet wurde, hochzuladen.</p>"
196
"Lizenzdatei, die an Ihre E-Mail-Adresse gesendet wurde, hochzuladen.</p>"
187
197
188
#: umc/js/setup/ApplianceWizard.js:2257
198
#: umc/js/setup/ApplianceWizard.js:2573
189
msgid ""
199
msgid ""
190
"<p>With the current settings <b> no </b> internet access is available.</"
200
"<p>With the current settings <b> no </b> internet access is available.</"
191
"p><p>Because of this some functions like the App Center or software-updates "
201
"p><p>Because of this some functions like the App Center or software-updates "
 Lines 195-221    Link Here 
195
"</p><p>Dadurch werden einige Funktionen wie zum Beispiel das App Center oder "
205
"</p><p>Dadurch werden einige Funktionen wie zum Beispiel das App Center oder "
196
"Software-Aktualisierungen nicht zur Verfügung stehen.</p>"
206
"Software-Aktualisierungen nicht zur Verfügung stehen.</p>"
197
207
198
#: umc/js/setup/ApplianceWizard.js:1438
208
#: umc/js/setup/ApplianceWizard.js:1534
199
#, python-format
209
#, python-format
200
msgid "<tr><td>City:</td><td>%s</td></tr>"
210
msgid "<tr><td>City:</td><td>%s</td></tr>"
201
msgstr "<tr><td>Stadt:</td><td>%s</td></tr>"
211
msgstr "<tr><td>Stadt:</td><td>%s</td></tr>"
202
212
203
#: umc/js/setup/ApplianceWizard.js:1458
213
#: umc/js/setup/ApplianceWizard.js:1554
204
#, python-format
214
#, python-format
205
msgid "<tr><td>Default locale:</td><td>%s</td></tr>"
215
msgid "<tr><td>Default locale:</td><td>%s</td></tr>"
206
msgstr "<tr><td>Standard-Systemsprache:</td><td>%s</td></tr>"
216
msgstr "<tr><td>Standard-Systemsprache:</td><td>%s</td></tr>"
207
217
208
#: umc/js/setup/ApplianceWizard.js:1487
218
#: umc/js/setup/ApplianceWizard.js:1583
209
#, python-format
219
#, python-format
210
msgid "<tr><td>Keyboard layout:</td><td>%s</td></tr>"
220
msgid "<tr><td>Keyboard layout:</td><td>%s</td></tr>"
211
msgstr "<tr><td>Tastaturlayout:</td><td>%s</td></tr>"
221
msgstr "<tr><td>Tastaturlayout:</td><td>%s</td></tr>"
212
222
213
#: umc/js/setup/ApplianceWizard.js:1441
223
#: umc/js/setup/ApplianceWizard.js:1537
214
#, python-format
224
#, python-format
215
msgid "<tr><td>Timezone:</td><td>%s</td></tr>"
225
msgid "<tr><td>Timezone:</td><td>%s</td></tr>"
216
msgstr "<tr><td>Zeitzone:</td><td>%s</td></tr>"
226
msgstr "<tr><td>Zeitzone:</td><td>%s</td></tr>"
217
227
218
#: umc/js/setup/ApplianceWizard.js:634
228
#: umc/js/setup/ApplianceWizard.js:642
219
msgid ""
229
msgid ""
220
"A DC backup is the fallback system for the UCS DC master and can take over "
230
"A DC backup is the fallback system for the UCS DC master and can take over "
221
"the role of the DC master permanently. It is recommended to use at least one "
231
"the role of the DC master permanently. It is recommended to use at least one "
 Lines 225-239    Link Here 
225
"des DC Masters langfristig übernehmen. Es ist empfohlen, mindestens einen DC "
235
"des DC Masters langfristig übernehmen. Es ist empfohlen, mindestens einen DC "
226
"Backup in der Domäne zu verwenden."
236
"Backup in der Domäne zu verwenden."
227
237
228
#: umc/js/setup/ApplianceWizard.js:325
238
#: umc/js/setup/ApplianceWizard.js:330
229
msgid "A few questions are needed to complete the configuration process."
239
msgid "A few questions are needed to complete the configuration process."
230
msgstr "Ein paar Fragen sind notwendig, um die Einrichtung abzuschließen."
240
msgstr "Ein paar Fragen sind notwendig, um die Einrichtung abzuschließen."
231
241
232
#: umc/js/setup/ApplianceWizard.js:1608
242
#: umc/js/setup/ApplianceWizard.js:1704
233
msgid "A new UCS domain will be created."
243
msgid "A new UCS domain will be created."
234
msgstr "Eine neue UCS-Domäne wird erstellt."
244
msgstr "Eine neue UCS-Domäne wird erstellt."
235
245
236
#: umc/js/setup/ApplianceWizard.js:321
246
#: umc/js/setup/ApplianceWizard.js:326
237
msgid ""
247
msgid ""
238
"A new domain directory is created on this system. User and management data "
248
"A new domain directory is created on this system. User and management data "
239
"are stored locally."
249
"are stored locally."
 Lines 241-251    Link Here 
241
"Ein neues Domänenverzeichnis wird auf diesem System erstellt. Benutzer- und "
251
"Ein neues Domänenverzeichnis wird auf diesem System erstellt. Benutzer- und "
242
"Verwaltungsdaten werden lokal gespeichert."
252
"Verwaltungsdaten werden lokal gespeichert."
243
253
244
#: umc/js/setup/ApplianceWizard.js:1682
254
#: umc/js/setup/ApplianceWizard.js:1706
245
msgid "A preconfigured test domain will be instantiated."
255
msgid "A preconfigured test domain will be instantiated."
246
msgstr "Eine vorkonfigurierte UCS-Test-Domäne wird instanziiert."
256
msgstr "Eine vorkonfigurierte UCS-Test-Domäne wird instanziiert."
247
257
248
#: umc/js/setup/ApplianceWizard.js:1134
258
#: umc/js/setup/ApplianceWizard.js:1145
249
msgid ""
259
msgid ""
250
"A proxy address needs to be specified in the format: <i>http://proxy."
260
"A proxy address needs to be specified in the format: <i>http://proxy."
251
"mydomain.intranet:3128</i><br/>Proxy access with username and password may "
261
"mydomain.intranet:3128</i><br/>Proxy access with username and password may "
 Lines 257-263    Link Here 
257
"Password kann das folgenden Format verwendet werden: <i>http://benutzername:"
267
"Password kann das folgenden Format verwendet werden: <i>http://benutzername:"
258
"passwort@proxy.meinedomaene.intranet:3128</i>"
268
"passwort@proxy.meinedomaene.intranet:3128</i>"
259
269
260
#: umc/js/setup/ApplianceWizard.js:1111
270
#: umc/js/setup/ApplianceWizard.js:1138
261
msgid ""
271
msgid ""
262
"A valid e-mail address allows to activate the UCS system for using the "
272
"A valid e-mail address allows to activate the UCS system for using the "
263
"Univention App Center. The address can be specified now or also at a later "
273
"Univention App Center. The address can be specified now or also at a later "
 Lines 272-278    Link Here 
272
"werden. Die Lizenz kann über den Lizenzdialog der Univention Management "
282
"werden. Die Lizenz kann über den Lizenzdialog der Univention Management "
273
"Console eingespielt werden."
283
"Console eingespielt werden."
274
284
275
#: umc/js/setup/ApplianceWizard.js:1109
285
#: umc/js/setup/ApplianceWizard.js:1136
276
#, python-format
286
#, python-format
277
msgid ""
287
msgid ""
278
"A valid e-mail address is required to activate %s Appliance. The address can "
288
"A valid e-mail address is required to activate %s Appliance. The address can "
 Lines 286-300    Link Here 
286
"personalisierter Lizenzschlüssel zugesendet. Die Lizenz kann über den "
296
"personalisierter Lizenzschlüssel zugesendet. Die Lizenz kann über den "
287
"Lizenzdialog der Univention Management Console eingespielt werden."
297
"Lizenzdialog der Univention Management Console eingespielt werden."
288
298
289
#: umc/js/setup/ApplianceWizard.js:650 umc/js/setup/ApplianceWizard.js:1642
299
#: umc/js/setup/ApplianceWizard.js:669 umc/js/setup/ApplianceWizard.js:1740
290
msgid "Account information"
300
msgid "Account information"
291
msgstr "Kontoinformationen"
301
msgstr "Kontoinformationen"
292
302
293
#: umc/js/setup/ApplianceWizard.js:686
303
#: umc/js/setup/ApplianceWizard.js:705
294
msgid "Active Directory join information"
304
msgid "Active Directory join information"
295
msgstr "Active Directory-Kontoinformationen"
305
msgstr "Active Directory-Kontoinformationen"
296
306
297
#: umc/js/setup/ApplianceWizard.js:1497
307
#: umc/js/setup/ApplianceWizard.js:1593
298
msgid "Adapt settings"
308
msgid "Adapt settings"
299
msgstr "Einstellungen anpassen"
309
msgstr "Einstellungen anpassen"
300
310
 Lines 318-333    Link Here 
318
msgid "Additional options for this network interface"
328
msgid "Additional options for this network interface"
319
msgstr "Weitere Optionen für dieses Netzwerkgerät"
329
msgstr "Weitere Optionen für dieses Netzwerkgerät"
320
330
321
#: umc/js/setup/ApplianceWizard.js:1669
331
#: umc/js/setup/ApplianceWizard.js:1767
322
msgid "Address configuration"
332
msgid "Address configuration"
323
msgstr "Adresskonfiguration"
333
msgstr "Adresskonfiguration"
324
334
325
#: umc/js/setup/ApplianceWizard.js:1678
335
#: umc/js/setup/ApplianceWizard.js:1776
326
#, python-format
336
#, python-format
327
msgid "Address for %s"
337
msgid "Address for %s"
328
msgstr "Adresse für %s"
338
msgstr "Adresse für %s"
329
339
330
#: umc/js/setup/ApplianceWizard.js:691
340
#: umc/js/setup/ApplianceWizard.js:710
331
msgid ""
341
msgid ""
332
"Address of Active Directory domain controller or name of Active Directory "
342
"Address of Active Directory domain controller or name of Active Directory "
333
"domain"
343
"domain"
 Lines 335-341    Link Here 
335
"Adresse des Active Directory-Domänencontrollers oder Name der Active "
345
"Adresse des Active Directory-Domänencontrollers oder Name der Active "
336
"Directory-Domäne"
346
"Directory-Domäne"
337
347
338
#: umc/js/setup/ApplianceWizard.js:2277 umc/js/setup/ApplianceWizard.js:2339
348
#: umc/js/setup/ApplianceWizard.js:2593 umc/js/setup/ApplianceWizard.js:2655
339
msgid "Adjust settings"
349
msgid "Adjust settings"
340
msgstr "Einstellungen anpassen"
350
msgstr "Einstellungen anpassen"
341
351
 Lines 343-353    Link Here 
343
msgid "Advanced configuration"
353
msgid "Advanced configuration"
344
msgstr "Erweiterte Konfiguration"
354
msgstr "Erweiterte Konfiguration"
345
355
346
#: umc/js/setup/ApplianceWizard.js:534
356
#: umc/js/setup/ApplianceWizard.js:539
347
msgid "Alternate DNS server"
357
msgid "Alternate DNS server"
348
msgstr "Alternativer DNS-Server"
358
msgstr "Alternativer DNS-Server"
349
359
350
#: umc/js/setup/ApplianceWizard.js:1766
360
#: umc/js/setup/ApplianceWizard.js:1880
351
msgid ""
361
msgid ""
352
"Alternatively, you may click on the button <i>Finish</i> to exit the wizard "
362
"Alternatively, you may click on the button <i>Finish</i> to exit the wizard "
353
"and resolve the described problems at a later point."
363
"and resolve the described problems at a later point."
 Lines 356-362    Link Here 
356
"Einrichtungsassistenten zu beenden und die beschriebenen Probleme zu einem "
366
"Einrichtungsassistenten zu beenden und die beschriebenen Probleme zu einem "
357
"späteren Zeitpunkt zu beheben."
367
"späteren Zeitpunkt zu beheben."
358
368
359
#: umc/js/setup/ApplianceWizard.js:1756 umc/js/setup/ApplianceWizard.js:1771
369
#: umc/js/setup/ApplianceWizard.js:1870 umc/js/setup/ApplianceWizard.js:1884
360
msgid ""
370
msgid ""
361
"Alternatively, you may click on the button <i>Finish</i> to exit the wizard "
371
"Alternatively, you may click on the button <i>Finish</i> to exit the wizard "
362
"and resolve the described problems via Univention Management Console."
372
"and resolve the described problems via Univention Management Console."
 Lines 365-380    Link Here 
365
"Einrichtungsassistenten zu beenden und die beschriebenen Probleme mittels "
375
"Einrichtungsassistenten zu beenden und die beschriebenen Probleme mittels "
366
"Univention Management Console zu beheben."
376
"Univention Management Console zu beheben."
367
377
368
#: umc/js/setup/ApplianceWizard.js:2405
378
#: umc/js/setup.js:156 umc/js/setup.js:507
369
#, python-format
370
msgid ""
371
"%s Appliance could not be joined because the license on the DC Master is not "
372
"activated."
373
msgstr ""
374
"%s Appliance kann nicht gejoined werden. Es liegt keine aktivierte Lizenz "
375
"auf dem DC Master vor."
376
377
#: umc/js/setup.js:155 umc/js/setup.js:507
378
msgid "Apply changes"
379
msgid "Apply changes"
379
msgstr "Änderungen übernehmen"
380
msgstr "Änderungen übernehmen"
380
381
 Lines 386-392    Link Here 
386
"Mindestens eine IP-Adresse muss angegeben werden oder DHCP oder SLAAC muss "
387
"Mindestens eine IP-Adresse muss angegeben werden oder DHCP oder SLAAC muss "
387
"eingeschaltet sein."
388
"eingeschaltet sein."
388
389
389
#: umc/js/setup/ApplianceWizard.js:2042
390
#: umc/js/setup/ApplianceWizard.js:2272
390
msgid "At least one network device needs to be properly configured."
391
msgid "At least one network device needs to be properly configured."
391
msgstr "Wenigstens ein Netzwerkgerät muss konfiguriert werden."
392
msgstr "Wenigstens ein Netzwerkgerät muss konfiguriert werden."
392
393
 Lines 438-446    Link Here 
438
msgid "Business unit"
439
msgid "Business unit"
439
msgstr "Abteilung"
440
msgstr "Abteilung"
440
441
441
#: umc/js/setup.js:148 umc/js/setup.js:504
442
#: umc/js/setup/InterfaceGrid.js:131 umc/js/setup/ApplianceWizard.js:2577
442
#: umc/js/setup/ApplianceWizard.js:2261 umc/js/setup/ApplianceWizard.js:2467
443
#: umc/js/setup/ApplianceWizard.js:2783 umc/js/setup.js:149
443
#: umc/js/setup/InterfaceGrid.js:131
444
#: umc/js/setup.js:504
444
msgid "Cancel"
445
msgid "Cancel"
445
msgstr "Abbrechen"
446
msgstr "Abbrechen"
446
447
 Lines 481-487    Link Here 
481
"zur Folge haben. Dies kann ernsthafte Auswirkungen haben, sollte sich das "
482
"zur Folge haben. Dies kann ernsthafte Auswirkungen haben, sollte sich das "
482
"System im Produktiveinsatz befinden."
483
"System im Produktiveinsatz befinden."
483
484
484
#: umc/js/setup.js:289
485
#: umc/js/setup.js:296
485
#, python-format
486
#, python-format
486
msgid ""
487
msgid ""
487
"Changing network settings is disabled due to specific UVMM settings. See %s "
488
"Changing network settings is disabled due to specific UVMM settings. See %s "
 Lines 490-496    Link Here 
490
"Ändern von Netzwerkeinstellungen ist durch spezifische UVMM Einstellungen "
491
"Ändern von Netzwerkeinstellungen ist durch spezifische UVMM Einstellungen "
491
"deaktiviert. Für weitere Informationen siehe %s."
492
"deaktiviert. Für weitere Informationen siehe %s."
492
493
493
#: umc/js/setup.js:293
494
#: umc/js/setup.js:300
494
msgid ""
495
msgid ""
495
"Changing network settings is disabled. It can be re enabled by unsetting the "
496
"Changing network settings is disabled. It can be re enabled by unsetting the "
496
"UCR variable \"umc/modules/setup/network/disabled/by\"."
497
"UCR variable \"umc/modules/setup/network/disabled/by\"."
 Lines 503-517    Link Here 
503
msgid "Choose interface type"
504
msgid "Choose interface type"
504
msgstr "Wähle Netzwerkgerätetyp aus"
505
msgstr "Wähle Netzwerkgerätetyp aus"
505
506
506
#: umc/js/setup/ApplianceWizard.js:348
507
#: umc/js/setup/ApplianceWizard.js:353
507
msgid "Choose your language"
508
msgid "Choose your language"
508
msgstr "Wählen Sie Ihre Sprache aus"
509
msgstr "Wählen Sie Ihre Sprache aus"
509
510
510
#: umc/js/setup/ApplianceWizard.js:376
511
#: umc/js/setup/ApplianceWizard.js:381
511
msgid "Choose your system's localization settings."
512
msgid "Choose your system's localization settings."
512
msgstr "Wählen Sie die Systemsprache."
513
msgstr "Wählen Sie die Systemsprache."
513
514
514
#: umc/js/setup.js:138 umc/js/setup.js:143
515
#: umc/js/setup.js:139 umc/js/setup.js:144
515
msgid "Close"
516
msgid "Close"
516
msgstr "Schließen"
517
msgstr "Schließen"
517
518
 Lines 523-529    Link Here 
523
msgid "Configuration"
524
msgid "Configuration"
524
msgstr "Konfiguration"
525
msgstr "Konfiguration"
525
526
526
#: umc/js/setup.js:577 umc/js/setup/ApplianceWizard.js:2079
527
#: umc/js/setup.js:577
527
msgid "Configuration finished"
528
msgid "Configuration finished"
528
msgstr "Konfiguration abgeschlossen"
529
msgstr "Konfiguration abgeschlossen"
529
530
 Lines 531-541    Link Here 
531
msgid "Configuration of IPv4 and IPv6 adresses"
532
msgid "Configuration of IPv4 and IPv6 adresses"
532
msgstr "Konfiguration der IPv4 und IPv6 Adressen"
533
msgstr "Konfiguration der IPv4 und IPv6 Adressen"
533
534
534
#: umc/js/setup/ApplianceWizard.js:1298
535
#: umc/js/setup/ApplianceWizard.js:1325
535
msgid "Configure system"
536
msgid "Configure system"
536
msgstr "System konfigurieren"
537
msgstr "System konfigurieren"
537
538
538
#: umc/js/setup/ApplianceWizard.js:311
539
#: umc/js/setup/ApplianceWizard.js:316
539
msgid ""
540
msgid ""
540
"Configure this system as first system for the new domain. Additional systems "
541
"Configure this system as first system for the new domain. Additional systems "
541
"can join the domain later."
542
"can join the domain later."
 Lines 543-553    Link Here 
543
"Dieses System als erstes System einer neuen Domäne einrichten. Zusätzliche "
544
"Dieses System als erstes System einer neuen Domäne einrichten. Zusätzliche "
544
"Systeme können der Domäne später beitreten."
545
"Systeme können der Domäne später beitreten."
545
546
546
#: umc/js/setup/ApplianceWizard.js:835
547
#: umc/js/setup/ApplianceWizard.js:854
547
msgid "Confirm configuration settings"
548
msgid "Confirm configuration settings"
548
msgstr "Bestätigen der Einstellungen"
549
msgstr "Bestätigen der Einstellungen"
549
550
550
#: umc/js/setup/ApplianceWizard.js:1760
551
#: umc/js/setup/ApplianceWizard.js:1874
551
msgid ""
552
msgid ""
552
"Connect to Univention Management Console on this system either as user "
553
"Connect to Univention Management Console on this system either as user "
553
"<b>Administrator</b> or as user <b>root</b> in case the system has not yet "
554
"<b>Administrator</b> or as user <b>root</b> in case the system has not yet "
 Lines 557-563    Link Here 
557
"entweder als Benutzer <b>Administrator</b> oder als Benutzer <b>root</b>, "
558
"entweder als Benutzer <b>Administrator</b> oder als Benutzer <b>root</b>, "
558
"falls das System noch keine neue UCS-Domäne erstellt hat:"
559
"falls das System noch keine neue UCS-Domäne erstellt hat:"
559
560
560
#: umc/js/setup/ApplianceWizard.js:1775
561
#: umc/js/setup/ApplianceWizard.js:1888
561
msgid ""
562
msgid ""
562
"Connect to Univention Management Console on this system either as user "
563
"Connect to Univention Management Console on this system either as user "
563
"<b>Administrator</b> or as user <b>root</b> in case the system has not yet "
564
"<b>Administrator</b> or as user <b>root</b> in case the system has not yet "
 Lines 567-597    Link Here 
567
"entweder als Benutzer <b>Administrator</b> oder als Benutzer <b>root</b>, "
568
"entweder als Benutzer <b>Administrator</b> oder als Benutzer <b>root</b>, "
568
"falls das System noch nicht der Domäne beigetreten ist:"
569
"falls das System noch nicht der Domäne beigetreten ist:"
569
570
570
#: umc/js/setup/ApplianceWizard.js:2416
571
#: umc/js/setup/ApplianceWizard.js:2732
571
msgid "Connection failed. Please recheck the address"
572
msgid "Connection failed. Please recheck the address"
572
msgstr "Verbindungsaufbau gescheitert. Bitte überprüfen Sie die Adresse"
573
msgstr "Verbindungsaufbau gescheitert. Bitte überprüfen Sie die Adresse"
573
574
574
#: umc/js/setup/ApplianceWizard.js:2413
575
#: umc/js/setup/ApplianceWizard.js:2729
575
msgid "Connection refused. Please recheck the password"
576
msgid "Connection refused. Please recheck the password"
576
msgstr "Verbindungsaufbau abgelehnt. Bitte überprüfen Sie das Passwort"
577
msgstr "Verbindungsaufbau abgelehnt. Bitte überprüfen Sie das Passwort"
577
578
578
#: umc/js/setup/ApplianceWizard.js:2470
579
#: umc/js/setup/ApplianceWizard.js:2786
579
msgid "Continue"
580
msgid "Continue"
580
msgstr "Fortfahren"
581
msgstr "Fortfahren"
581
582
582
#: umc/js/setup/ApplianceWizard.js:2254
583
#: umc/js/setup/ApplianceWizard.js:2570
583
msgid "Continue with 169.254.*.* addresse(s)"
584
msgid "Continue with 169.254.*.* addresse(s)"
584
msgstr "Fortfahren mit 169.254.*.* Adresse(n)"
585
msgstr "Fortfahren mit 169.254.*.* Adresse(n)"
585
586
586
#: umc/js/setup/ApplianceWizard.js:2342
587
#: umc/js/setup/ApplianceWizard.js:2658
587
msgid "Continue with incomplete settings"
588
msgid "Continue with incomplete settings"
588
msgstr "Fortfahren mit unvollständigen Einstellungen"
589
msgstr "Fortfahren mit unvollständigen Einstellungen"
589
590
590
#: umc/js/setup/ApplianceWizard.js:2258 umc/js/setup/ApplianceWizard.js:2280
591
#: umc/js/setup/ApplianceWizard.js:2574 umc/js/setup/ApplianceWizard.js:2596
591
msgid "Continue without internet access"
592
msgid "Continue without internet access"
592
msgstr "Ohne Internetzugriff fortfahren"
593
msgstr "Ohne Internetzugriff fortfahren"
593
594
594
#: umc/js/setup/ApplianceWizard.js:1136
595
#: umc/js/setup/ApplianceWizard.js:1163
595
msgid ""
596
msgid ""
596
"Continuing the installation might lead to a not functioning or hung up "
597
"Continuing the installation might lead to a not functioning or hung up "
597
"system."
598
"system."
 Lines 607-613    Link Here 
607
msgid "Country code"
608
msgid "Country code"
608
msgstr "Ländercode"
609
msgstr "Ländercode"
609
610
610
#: umc/js/setup/ApplianceWizard.js:310
611
#: umc/js/setup/ApplianceWizard.js:315
611
msgid "Create a new UCS domain"
612
msgid "Create a new UCS domain"
612
msgstr "Erstellen einer neuen UCS-Domäne"
613
msgstr "Erstellen einer neuen UCS-Domäne"
613
614
 Lines 615-633    Link Here 
615
msgid "Created:"
616
msgid "Created:"
616
msgstr "Erstellt:"
617
msgstr "Erstellt:"
617
618
618
#: umc/js/setup/ApplianceWizard.js:1613
619
#: umc/js/setup/ApplianceWizard.js:1711
619
msgid "DC Backup"
620
msgid "DC Backup"
620
msgstr "DC Backup"
621
msgstr "DC Backup"
621
622
622
#: umc/js/setup/ApplianceWizard.js:1619
623
#: umc/js/setup/ApplianceWizard.js:1717
623
msgid "DC Master"
624
msgid "DC Master"
624
msgstr "DC Master"
625
msgstr "DC Master"
625
626
626
#: umc/js/setup/ApplianceWizard.js:1614
627
#: umc/js/setup/ApplianceWizard.js:1712
627
msgid "DC Slave"
628
msgid "DC Slave"
628
msgstr "DC Slave"
629
msgstr "DC Slave"
629
630
630
#: umc/js/setup/ApplianceWizard.js:645
631
#: umc/js/setup/ApplianceWizard.js:653
631
msgid ""
632
msgid ""
632
"DC slave systems are ideal for site servers, they provide authentication "
633
"DC slave systems are ideal for site servers, they provide authentication "
633
"services for the domain. Local services running on a DC slave can access the "
634
"services for the domain. Local services running on a DC slave can access the "
 Lines 637-643    Link Here 
637
"Authentifizierungsdienste bereit. Lokale Dienste auf einem DC Slave haben "
638
"Authentifizierungsdienste bereit. Lokale Dienste auf einem DC Slave haben "
638
"Zugriff auf die lokale LDAP-Datenbank."
639
"Zugriff auf die lokale LDAP-Datenbank."
639
640
640
#: umc/js/setup/ApplianceWizard.js:1081 umc/js/setup/InterfaceWizard.js:616
641
#: umc/js/setup/ApplianceWizard.js:1108 umc/js/setup/InterfaceWizard.js:616
641
#: umc/js/setup/InterfaceWizard.js:642
642
#: umc/js/setup/InterfaceWizard.js:642
642
msgid "DHCP query failed."
643
msgid "DHCP query failed."
643
msgstr "DHCP-Anfrage schlug fehl."
644
msgstr "DHCP-Anfrage schlug fehl."
 Lines 646-656    Link Here 
646
msgid "DHCP-Query"
647
msgid "DHCP-Query"
647
msgstr "DHCP-Anfrage"
648
msgstr "DHCP-Anfrage"
648
649
649
#: umc/js/setup/ApplianceWizard.js:1688
650
#: umc/js/setup/ApplianceWizard.js:1786
650
msgid "DNS server"
651
msgid "DNS server"
651
msgstr "DNS-Server"
652
msgstr "DNS-Server"
652
653
653
#: umc/js/setup/ApplianceWizard.js:380 umc/js/setup/LanguagePage.js:149
654
#: umc/js/setup/ApplianceWizard.js:385 umc/js/setup/LanguagePage.js:149
654
#: umc/js/setup/LanguagePage.js:229
655
#: umc/js/setup/LanguagePage.js:229
655
msgid "Default system locale"
656
msgid "Default system locale"
656
msgstr "Standard-System-Sprachdefinition"
657
msgstr "Standard-System-Sprachdefinition"
 Lines 659-689    Link Here 
659
msgid "Delete"
660
msgid "Delete"
660
msgstr "Löschen"
661
msgstr "Löschen"
661
662
662
#: umc/js/setup/ApplianceWizard.js:607
663
#: umc/js/setup/ApplianceWizard.js:615
663
msgid "Do not use any domain"
664
msgid "Do not use any domain"
664
msgstr "Keine Domäne benutzen"
665
msgstr "Keine Domäne benutzen"
665
666
666
#: umc/js/setup/ApplianceWizard.js:1650
667
#: umc/js/setup/ApplianceWizard.js:1748
667
msgid "Domain and host configuration"
668
msgid "Domain and host configuration"
668
msgstr "Domänen- und Rechnereinstellung"
669
msgstr "Domänen- und Rechnereinstellung"
669
670
670
#: umc/js/setup/ApplianceWizard.js:417
671
#: umc/js/setup/ApplianceWizard.js:422
671
msgid "Domain and network configuration"
672
msgid "Domain and network configuration"
672
msgstr "Domänen- und Netzwerkeinstellung"
673
msgstr "Domänen- und Netzwerkeinstellung"
673
674
674
#: umc/js/setup/ApplianceWizard.js:628
675
#: umc/js/setup/ApplianceWizard.js:636
675
msgid "Domain controller backup"
676
msgid "Domain controller backup"
676
msgstr "Domänencontroller Backup"
677
msgstr "Domänencontroller Backup"
677
678
678
#: umc/js/setup/ApplianceWizard.js:640
679
#: umc/js/setup/ApplianceWizard.js:648
679
msgid "Domain controller slave"
680
msgid "Domain controller slave"
680
msgstr "Domänencontroller Slave"
681
msgstr "Domänencontroller Slave"
681
682
682
#: umc/js/setup/ApplianceWizard.js:707
683
#: umc/js/setup/ApplianceWizard.js:726
683
msgid "Domain join information"
684
msgid "Domain join information"
684
msgstr "Informationen zum Domänenbeitritt"
685
msgstr "Informationen zum Domänenbeitritt"
685
686
686
#: umc/js/setup/ApplianceWizard.js:770
687
#: umc/js/setup/ApplianceWizard.js:789
687
msgid "Domain name"
688
msgid "Domain name"
688
msgstr "Domänenname"
689
msgstr "Domänenname"
689
690
 Lines 695-701    Link Here 
695
msgid "Domain name server (max. 3)"
696
msgid "Domain name server (max. 3)"
696
msgstr "Domänen-DNS-Server (max. 3)"
697
msgstr "Domänen-DNS-Server (max. 3)"
697
698
698
#: umc/js/setup/ApplianceWizard.js:555
699
#: umc/js/setup/ApplianceWizard.js:560
699
msgid "Domain setup"
700
msgid "Domain setup"
700
msgstr "Domäneneinstellungen"
701
msgstr "Domäneneinstellungen"
701
702
 Lines 703-715    Link Here 
703
msgid "Dynamic (DHCP)"
704
msgid "Dynamic (DHCP)"
704
msgstr "Dynamisch (DHCP)"
705
msgstr "Dynamisch (DHCP)"
705
706
706
#: umc/js/setup/ApplianceWizard.js:322
707
#: umc/js/setup/ApplianceWizard.js:327
707
#, python-format
708
#, python-format
708
msgid "E-mail address to activate %s Appliance"
709
msgid "E-mail address to activate %s Appliance"
709
msgstr "E-Mail-Adresse zur Aktivierung von %s Appliance"
710
msgstr "E-Mail-Adresse zur Aktivierung von %s Appliance"
710
711
711
#: umc/js/setup/ApplianceWizard.js:312 umc/js/setup/ApplianceWizard.js:1546
712
#: umc/js/setup/ApplianceWizard.js:317 umc/js/setup/ApplianceWizard.js:1642
712
#: umc/js/setup/ApplianceWizard.js:1645
713
#: umc/js/setup/ApplianceWizard.js:1743
713
msgid "E-mail address to activate UCS"
714
msgid "E-mail address to activate UCS"
714
msgstr "E-Mail-Adresse zur Aktivierung von UCS"
715
msgstr "E-Mail-Adresse zur Aktivierung von UCS"
715
716
 Lines 729-735    Link Here 
729
msgid "Email address"
730
msgid "Email address"
730
msgstr "E-Mail-Adresse"
731
msgstr "E-Mail-Adresse"
731
732
732
#: umc/js/setup/ApplianceWizard.js:361
733
#: umc/js/setup/ApplianceWizard.js:366
733
msgid ""
734
msgid ""
734
"Enter a city nearby to preconfigure settings such as timezone, system "
735
"Enter a city nearby to preconfigure settings such as timezone, system "
735
"language, keyboard layout."
736
"language, keyboard layout."
 Lines 737-743    Link Here 
737
"Geben Sie eine nahegelegene Stadt zur Einrichtung von Zeitzone, "
738
"Geben Sie eine nahegelegene Stadt zur Einrichtung von Zeitzone, "
738
"Systemsprache und Tastaturlayout ein."
739
"Systemsprache und Tastaturlayout ein."
739
740
740
#: umc/js/setup/ApplianceWizard.js:687 umc/js/setup/ApplianceWizard.js:708
741
#: umc/js/setup/ApplianceWizard.js:706 umc/js/setup/ApplianceWizard.js:727
741
msgid ""
742
msgid ""
742
"Enter name and password of a user account which is authorised to join a "
743
"Enter name and password of a user account which is authorised to join a "
743
"system into this domain."
744
"system into this domain."
 Lines 757-763    Link Here 
757
msgid "External name server (max. 3)"
758
msgid "External name server (max. 3)"
758
msgstr "Externer DNS-Server (max. 3)"
759
msgstr "Externer DNS-Server (max. 3)"
759
760
760
#: umc/js/setup/ApplianceWizard.js:1757
761
#: umc/js/setup/ApplianceWizard.js:1871
761
msgid ""
762
msgid ""
762
"Failed join scripts can be executed via the UMC module <i>Domain join</i>."
763
"Failed join scripts can be executed via the UMC module <i>Domain join</i>."
763
msgstr ""
764
msgstr ""
 Lines 764-770    Link Here 
764
"Fehlgeschlagene Domänenbeitritt-Skripte können mit dem UMC-Modul "
765
"Fehlgeschlagene Domänenbeitritt-Skripte können mit dem UMC-Modul "
765
"<i>Domänenbeitritt</i> ausgeführt werden."
766
"<i>Domänenbeitritt</i> ausgeführt werden."
766
767
767
#: umc/js/setup/ApplianceWizard.js:1772
768
#: umc/js/setup/ApplianceWizard.js:1885
768
msgid ""
769
msgid ""
769
"Failed join scripts or a new join of the system can be executed via the UMC "
770
"Failed join scripts or a new join of the system can be executed via the UMC "
770
"module <i>Domain join</i>."
771
"module <i>Domain join</i>."
 Lines 772-778    Link Here 
772
"Fehlgeschlagene Domänenbeitritt-Skripte oder ein erneuter Domänenbeitritt "
773
"Fehlgeschlagene Domänenbeitritt-Skripte oder ein erneuter Domänenbeitritt "
773
"kann mit dem UMC-Modul <i>Domänenbeitritt</i> ausgeführt werden."
774
"kann mit dem UMC-Modul <i>Domänenbeitritt</i> ausgeführt werden."
774
775
775
#: umc/js/setup/ApplianceWizard.js:677
776
#: umc/js/setup/ApplianceWizard.js:566
777
msgid "Fast demo configuration"
778
msgstr "Schnelle Demo-Konfiguration"
779
780
#: umc/js/setup/ApplianceWizard.js:696
776
msgid ""
781
msgid ""
777
"Fill in the password for the system administrator user <b>root</b> and the "
782
"Fill in the password for the system administrator user <b>root</b> and the "
778
"domain administrative user account <b>Administrator</b>."
783
"domain administrative user account <b>Administrator</b>."
 Lines 780-786    Link Here 
780
"Füllen Sie das Passwort für den Systemadministrator-Benutzer <b>root</b> und "
785
"Füllen Sie das Passwort für den Systemadministrator-Benutzer <b>root</b> und "
781
"den Domänenadministrator-Benutzeraccount <b>Administrator</b> aus."
786
"den Domänenadministrator-Benutzeraccount <b>Administrator</b> aus."
782
787
783
#: umc/js/setup/ApplianceWizard.js:1301
788
#: umc/js/setup/ApplianceWizard.js:1328
784
msgid "Finish"
789
msgid "Finish"
785
msgstr "Fertigstellen"
790
msgstr "Fertigstellen"
786
791
 Lines 792-798    Link Here 
792
"Nach Vergabe der <i>Zertifikatseinstellungen</i> wird ein neues Root-"
797
"Nach Vergabe der <i>Zertifikatseinstellungen</i> wird ein neues Root-"
793
"Zertifikat für die Domäne erstellt."
798
"Zertifikat für die Domäne erstellt."
794
799
795
#: umc/js/setup/ApplianceWizard.js:1115
800
#: umc/js/setup/ApplianceWizard.js:1142
796
msgid ""
801
msgid ""
797
"For a specified host name, the domain name is automatically derived from the "
802
"For a specified host name, the domain name is automatically derived from the "
798
"domain name server. A fully qualified domain may be necessary for mail "
803
"domain name server. A fully qualified domain may be necessary for mail "
 Lines 809-817    Link Here 
809
msgid "Forwarding delay"
814
msgid "Forwarding delay"
810
msgstr "Forwarding-Verzögerung"
815
msgstr "Forwarding-Verzögerung"
811
816
812
#: umc/js/setup/ApplianceWizard.js:783 umc/js/setup/ApplianceWizard.js:1564
817
#: umc/js/setup/ApplianceWizard.js:802 umc/js/setup/ApplianceWizard.js:1660
813
#: umc/js/setup/ApplianceWizard.js:1652 umc/js/setup/ApplianceWizard.js:1656
818
#: umc/js/setup/ApplianceWizard.js:1750 umc/js/setup/ApplianceWizard.js:1754
814
#: umc/js/setup/ApplianceWizard.js:1661
819
#: umc/js/setup/ApplianceWizard.js:1759
815
msgid "Fully qualified domain name"
820
msgid "Fully qualified domain name"
816
msgstr "Vollqualifizierter Domänenname"
821
msgstr "Vollqualifizierter Domänenname"
817
822
 Lines 826-832    Link Here 
826
"handbuch-%s.html#computers:networkcomplex\" target=\"_blank\">UCS "
831
"handbuch-%s.html#computers:networkcomplex\" target=\"_blank\">UCS "
827
"Dokumentation</a> gefunden werden."
832
"Dokumentation</a> gefunden werden."
828
833
829
#: umc/js/setup/ApplianceWizard.js:522 umc/js/setup/ApplianceWizard.js:1680
834
#: umc/js/setup/ApplianceWizard.js:527 umc/js/setup/ApplianceWizard.js:1778
830
#: umc/js/setup/InterfaceWizard.js:627
835
#: umc/js/setup/InterfaceWizard.js:627
831
msgid "Gateway"
836
msgid "Gateway"
832
msgstr "Gateway"
837
msgstr "Gateway"
 Lines 847-879    Link Here 
847
msgid "Global network settings"
852
msgid "Global network settings"
848
msgstr "Globale Netzwerk-Einstellungen"
853
msgstr "Globale Netzwerk-Einstellungen"
849
854
850
#: umc/js/setup/ApplianceWizard.js:547 umc/js/setup/ApplianceWizard.js:1692
855
#: umc/js/setup/ApplianceWizard.js:552 umc/js/setup/ApplianceWizard.js:1790
851
#: umc/js/setup/NetworkPage.js:125 umc/js/setup/NetworkPage.js:295
856
#: umc/js/setup/NetworkPage.js:125 umc/js/setup/NetworkPage.js:295
852
msgid "HTTP proxy"
857
msgid "HTTP proxy"
853
msgstr "HTTP-Proxy"
858
msgstr "HTTP-Proxy"
854
859
855
#: umc/js/setup/ApplianceWizard.js:753 umc/js/setup/ApplianceWizard.js:798
860
#: umc/js/setup/ApplianceWizard.js:1856
861
msgid "Help us improve UCS by sending the occurred errors as feedback."
862
msgstr ""
863
"Helfen Sie uns UCS zu verbessern, indem Sie uns die aufgetretenen Fehler als "
864
"Feedback senden."
865
866
#: umc/js/setup/ApplianceWizard.js:772 umc/js/setup/ApplianceWizard.js:817
856
msgid "Host settings"
867
msgid "Host settings"
857
msgstr "Rechnereinstellungen"
868
msgstr "Rechnereinstellungen"
858
869
859
#: umc/js/setup/ApplianceWizard.js:1566 umc/js/setup/ApplianceWizard.js:1661
870
#: umc/js/setup/ApplianceWizard.js:1662 umc/js/setup/ApplianceWizard.js:1759
860
msgid "Hostname"
871
msgid "Hostname"
861
msgstr "Rechnername"
872
msgstr "Rechnername"
862
873
863
#: umc/js/setup/ApplianceWizard.js:762 umc/js/setup/ApplianceWizard.js:1397
874
#: umc/js/setup/ApplianceWizard.js:781 umc/js/setup/ApplianceWizard.js:1493
864
msgid "Hostname (unchangeable. Was set while creating the container)"
875
msgid "Hostname (unchangeable. Was set while creating the container)"
865
msgstr ""
876
msgstr ""
866
"Rechnername (unveränderbar. Wurde beim Erstellen des Containers vergeben)"
877
"Rechnername (unveränderbar. Wurde beim Erstellen des Containers vergeben)"
867
878
868
#: umc/js/setup/ApplianceWizard.js:732
879
#: umc/js/setup/ApplianceWizard.js:751
869
msgid "Hostname of the domain controller master"
880
msgid "Hostname of the domain controller master"
870
msgstr "Rechnername des Domänencontroller Masters"
881
msgstr "Rechnername des Domänencontroller Masters"
871
882
872
#: umc/js/setup/ApplianceWizard.js:807
883
#: umc/js/setup/ApplianceWizard.js:826
873
msgid "Hostname or fully qualified domain name"
884
msgid "Hostname or fully qualified domain name"
874
msgstr "Rechnername oder vollständiger Domänenname"
885
msgstr "Rechnername oder vollständiger Domänenname"
875
886
876
#: umc/js/setup/ApplianceWizard.js:1669
887
#: umc/js/setup/ApplianceWizard.js:1767
877
msgid "IP address is obtained dynamically via DHCP"
888
msgid "IP address is obtained dynamically via DHCP"
878
msgstr "Die IP-Adresse wird dynamisch über DHCP bezogen"
889
msgstr "Die IP-Adresse wird dynamisch über DHCP bezogen"
879
890
 Lines 885-892    Link Here 
885
msgid "IPv4 address"
896
msgid "IPv4 address"
886
msgstr "IPv4-Adresse"
897
msgstr "IPv4-Adresse"
887
898
888
#: umc/js/setup/ApplianceWizard.js:461 umc/js/setup/ApplianceWizard.js:478
899
#: umc/js/setup/ApplianceWizard.js:466 umc/js/setup/ApplianceWizard.js:483
889
#: umc/js/setup/ApplianceWizard.js:496 umc/js/setup/ApplianceWizard.js:514
900
#: umc/js/setup/ApplianceWizard.js:501 umc/js/setup/ApplianceWizard.js:519
901
#, python-brace-format
890
msgid "IPv4 net mask/IPv6 prefix {interface}"
902
msgid "IPv4 net mask/IPv6 prefix {interface}"
891
msgstr "IPv4-Netzmaske/IPv6-Präfix {interface}"
903
msgstr "IPv4-Netzmaske/IPv6-Präfix {interface}"
892
904
 Lines 894-901    Link Here 
894
msgid "IPv4 network interface configuration"
906
msgid "IPv4 network interface configuration"
895
msgstr "IPv4-Netzwerkgerätkonfiguration"
907
msgstr "IPv4-Netzwerkgerätkonfiguration"
896
908
897
#: umc/js/setup/ApplianceWizard.js:452 umc/js/setup/ApplianceWizard.js:468
909
#: umc/js/setup/ApplianceWizard.js:457 umc/js/setup/ApplianceWizard.js:473
898
#: umc/js/setup/ApplianceWizard.js:486 umc/js/setup/ApplianceWizard.js:504
910
#: umc/js/setup/ApplianceWizard.js:491 umc/js/setup/ApplianceWizard.js:509
911
#, python-brace-format
899
msgid "IPv4/IPv6 address {interface}"
912
msgid "IPv4/IPv6 address {interface}"
900
msgstr "IPv4/IPv6-Adresse {interface}"
913
msgstr "IPv4/IPv6-Adresse {interface}"
901
914
 Lines 915-926    Link Here 
915
msgid "Identifier"
928
msgid "Identifier"
916
msgstr "Bezeichner"
929
msgstr "Bezeichner"
917
930
918
#: umc/js/setup/ApplianceWizard.js:617
931
#: umc/js/setup/ApplianceWizard.js:625
919
#, python-format
932
#, python-format
920
msgid "If unsure, select <i>%s</i>."
933
msgid "If unsure, select <i>%s</i>."
921
msgstr "Wenn unsicher, wählen Sie <i>%s</i>."
934
msgstr "Wenn unsicher, wählen Sie <i>%s</i>."
922
935
923
#: umc/js/setup/ApplianceWizard.js:1137
936
#: umc/js/setup/ApplianceWizard.js:1164
924
msgid ""
937
msgid ""
925
"If you want to upgrade your memory first please press the power button of "
938
"If you want to upgrade your memory first please press the power button of "
926
"your server to shutdown the system."
939
"your server to shutdown the system."
 Lines 936-951    Link Here 
936
"In den <i>Netzwerkeinstellungen</i> können IP-Adressen (IPv4 und IPv6) sowie "
949
"In den <i>Netzwerkeinstellungen</i> können IP-Adressen (IPv4 und IPv6) sowie "
937
"DNS-Server, Gateways und HTTP-Proxy festgelegt werden."
950
"DNS-Server, Gateways und HTTP-Proxy festgelegt werden."
938
951
939
#: umc/js/setup.js:565 umc/js/setup/ApplianceWizard.js:2062
952
#: umc/js/setup/ApplianceWizard.js:2282 umc/js/setup.js:565
940
msgid "Initialize the configuration process ..."
953
msgid "Initialize the configuration process ..."
941
msgstr "Initialisiere den Konfigurationsvorgang ..."
954
msgstr "Initialisiere den Konfigurationsvorgang ..."
942
955
943
#: umc/js/setup/ApplianceWizard.js:1245
956
#: umc/js/setup/ApplianceWizard.js:1272
944
#, python-format
957
#, python-format
945
msgid "Installation of %d additional software components."
958
msgid "Installation of %d additional software components."
946
msgstr "Installation von %d zusätzlichen Software-Komponenten."
959
msgstr "Installation von %d zusätzlichen Software-Komponenten."
947
960
948
#: umc/js/setup/ApplianceWizard.js:1243
961
#: umc/js/setup/ApplianceWizard.js:1270
949
msgid "Installation of one additional software component."
962
msgid "Installation of one additional software component."
950
msgstr "Installation einer zusätzlichen Software-Komponente."
963
msgstr "Installation einer zusätzlichen Software-Komponente."
951
964
 Lines 966-976    Link Here 
966
msgid "Interface type"
979
msgid "Interface type"
967
msgstr "Netzwerkgerätetyp"
980
msgstr "Netzwerkgerätetyp"
968
981
969
#: umc/js/setup/ApplianceWizard.js:137
982
#: umc/js/setup/ApplianceWizard.js:140
970
msgid "Invalid IP address!<br/>Expected format is IPv4 or IPv6."
983
msgid "Invalid IP address!<br/>Expected format is IPv4 or IPv6."
971
msgstr "Ungültige IP-Adresse!<br/>Erwartetes Format ist IPv4 oder IPv6."
984
msgstr "Ungültige IP-Adresse!<br/>Erwartetes Format ist IPv4 oder IPv6."
972
985
973
#: umc/js/setup/ApplianceWizard.js:150
986
#: umc/js/setup/ApplianceWizard.js:153
974
msgid ""
987
msgid ""
975
"Invalid IPv4 net mask or IPv6 prefix!<br/>Expected for IPv4 is a number "
988
"Invalid IPv4 net mask or IPv6 prefix!<br/>Expected for IPv4 is a number "
976
"between 0 and 32 or a format similar to <i>255.255.255.0</i>.<br/>Expected "
989
"between 0 and 32 or a format similar to <i>255.255.255.0</i>.<br/>Expected "
 Lines 981-987    Link Here 
981
"<i>255.255.255.0</i>.<br/>Erwartetes Format für IPv6 ist eine Zahl zwischen "
994
"<i>255.255.255.0</i>.<br/>Erwartetes Format für IPv6 ist eine Zahl zwischen "
982
"0 und 128."
995
"0 und 128."
983
996
984
#: umc/js/setup/ApplianceWizard.js:222
997
#: umc/js/setup/ApplianceWizard.js:225
985
msgid ""
998
msgid ""
986
"Invalid LDAP base!<br/>The LDAP base may neither contain blanks nor any "
999
"Invalid LDAP base!<br/>The LDAP base may neither contain blanks nor any "
987
"special characters. Its structure needs to consist of at least two relative "
1000
"special characters. Its structure needs to consist of at least two relative "
 Lines 993-1009    Link Here 
993
"Names (RDN) bestehen, die eines der Attribut-Tags 'dc', 'cn', 'c', 'o', or "
1006
"Names (RDN) bestehen, die eines der Attribut-Tags 'dc', 'cn', 'c', 'o', or "
994
"'l' verwenden (z.B. dc=test,dc=net)."
1007
"'l' verwenden (z.B. dc=test,dc=net)."
995
1008
996
#: umc/js/setup/ApplianceWizard.js:196
1009
#: umc/js/setup/ApplianceWizard.js:199
997
msgid "Invalid domain name!<br/>Expected format: <i>mydomain.intranet</i>"
1010
msgid "Invalid domain name!<br/>Expected format: <i>mydomain.intranet</i>"
998
msgstr ""
1011
msgstr ""
999
"Ungültiger Domänenname!<br/>Erwartetes Format: <i>meinedomaene.intranet</i>"
1012
"Ungültiger Domänenname!<br/>Erwartetes Format: <i>meinedomaene.intranet</i>"
1000
1013
1001
#: umc/js/setup/ApplianceWizard.js:129
1014
#: umc/js/setup/ApplianceWizard.js:132
1002
msgid "Invalid e-mail address!<br/>Expected format is:<i>mail@example.com</i>"
1015
msgid "Invalid e-mail address!<br/>Expected format is:<i>mail@example.com</i>"
1003
msgstr ""
1016
msgstr ""
1004
"Ungültige E-Mail-Adresse!<br/>Erwartetes Format: <i>mail@beispiel.de</i>"
1017
"Ungültige E-Mail-Adresse!<br/>Erwartetes Format: <i>mail@beispiel.de</i>"
1005
1018
1006
#: umc/js/setup/ApplianceWizard.js:205
1019
#: umc/js/setup/ApplianceWizard.js:208
1007
msgid ""
1020
msgid ""
1008
"Invalid fully qualified domain name!<br/>Expected format: <i>hostname."
1021
"Invalid fully qualified domain name!<br/>Expected format: <i>hostname."
1009
"mydomain.intranet</i>"
1022
"mydomain.intranet</i>"
 Lines 1011-1017    Link Here 
1011
"Ungültiger vollqualifizierter Domänenname!<br/>Erwartetes Format: "
1024
"Ungültiger vollqualifizierter Domänenname!<br/>Erwartetes Format: "
1012
"<i>rechnername.meinedomaene.intranet</i>"
1025
"<i>rechnername.meinedomaene.intranet</i>"
1013
1026
1014
#: umc/js/setup/ApplianceWizard.js:214
1027
#: umc/js/setup/ApplianceWizard.js:217
1015
msgid ""
1028
msgid ""
1016
"Invalid hostname or fully qualified domain name!<br/>Expected format: "
1029
"Invalid hostname or fully qualified domain name!<br/>Expected format: "
1017
"<i>myhost</i> or <i>hostname.mydomain.intranet</i>"
1030
"<i>myhost</i> or <i>hostname.mydomain.intranet</i>"
 Lines 1019-1025    Link Here 
1019
"Ungültiger Rechnername oder vollständiger Domänenname!<br/>Erwartetes "
1032
"Ungültiger Rechnername oder vollständiger Domänenname!<br/>Erwartetes "
1020
"Format: <i>rechnername</i> oder <i>rechnername.meinedomaene.intranet</i>"
1033
"Format: <i>rechnername</i> oder <i>rechnername.meinedomaene.intranet</i>"
1021
1034
1022
#: umc/js/setup/ApplianceWizard.js:2000
1035
#: umc/js/setup/ApplianceWizard.js:2230
1023
msgid ""
1036
msgid ""
1024
"It is not possible to install KVM and XEN components on one system. Please "
1037
"It is not possible to install KVM and XEN components on one system. Please "
1025
"select only one of these components."
1038
"select only one of these components."
 Lines 1027-1033    Link Here 
1027
"Es ist nicht möglich KVM- und XEN-Komponenten auf einem System zu "
1040
"Es ist nicht möglich KVM- und XEN-Komponenten auf einem System zu "
1028
"installieren. Bitte wählen Sie nur eine dieser Komponenten aus."
1041
"installieren. Bitte wählen Sie nur eine dieser Komponenten aus."
1029
1042
1030
#: umc/js/setup/ApplianceWizard.js:1996
1043
#: umc/js/setup/ApplianceWizard.js:2226
1031
msgid ""
1044
msgid ""
1032
"It is not possible to install Samba 3 and Samba 4 on one system. Please "
1045
"It is not possible to install Samba 3 and Samba 4 on one system. Please "
1033
"select only one of these components."
1046
"select only one of these components."
 Lines 1035-1041    Link Here 
1035
"Es ist nicht möglich Samba 3 und Samba 4 auf einem System zu installieren. "
1048
"Es ist nicht möglich Samba 3 und Samba 4 auf einem System zu installieren. "
1036
"Bitte wählen Sie nur eine dieser Komponenten aus."
1049
"Bitte wählen Sie nur eine dieser Komponenten aus."
1037
1050
1038
#: umc/js/setup/ApplianceWizard.js:2356
1051
#: umc/js/setup/ApplianceWizard.js:2672
1039
msgid ""
1052
msgid ""
1040
"It seems that a UCS DC master system has already joined into the Windows AD "
1053
"It seems that a UCS DC master system has already joined into the Windows AD "
1041
"domain. Please choose a different option as other system roles for joining "
1054
"domain. Please choose a different option as other system roles for joining "
 Lines 1045-1059    Link Here 
1045
"beigetreten ist. Bitte wählen Sie eine andere Option, da weitere "
1058
"beigetreten ist. Bitte wählen Sie eine andere Option, da weitere "
1046
"Systemrollen für den Joinvorgang nicht zur Verfügung stehen."
1059
"Systemrollen für den Joinvorgang nicht zur Verfügung stehen."
1047
1060
1048
#: umc/js/setup/ApplianceWizard.js:585
1061
#: umc/js/setup/ApplianceWizard.js:593
1049
msgid "Join into an existing Active Directory domain"
1062
msgid "Join into an existing Active Directory domain"
1050
msgstr "Einer bestehenden Active-Directory-Domäne beitreten"
1063
msgstr "Einer bestehenden Active-Directory-Domäne beitreten"
1051
1064
1052
#: umc/js/setup/ApplianceWizard.js:596
1065
#: umc/js/setup/ApplianceWizard.js:604
1053
msgid "Join into an existing UCS domain"
1066
msgid "Join into an existing UCS domain"
1054
msgstr "Einer bestehenden UCS-Domäne beitreten"
1067
msgstr "Einer bestehenden UCS-Domäne beitreten"
1055
1068
1056
#: umc/js/setup/ApplianceWizard.js:395 umc/js/setup/LanguagePage.js:88
1069
#: umc/js/setup/ApplianceWizard.js:400 umc/js/setup/LanguagePage.js:88
1057
#: umc/js/setup/LanguagePage.js:217
1070
#: umc/js/setup/LanguagePage.js:217
1058
msgid "Keyboard layout"
1071
msgid "Keyboard layout"
1059
msgstr "Tastaturlayout"
1072
msgstr "Tastaturlayout"
 Lines 1066-1072    Link Here 
1066
msgid "Keyboard variant"
1079
msgid "Keyboard variant"
1067
msgstr "Tastaturvariante"
1080
msgstr "Tastaturvariante"
1068
1081
1069
#: umc/js/setup/ApplianceWizard.js:791 umc/js/setup/ApplianceWizard.js:1665
1082
#: umc/js/setup/ApplianceWizard.js:810 umc/js/setup/ApplianceWizard.js:1763
1070
msgid "LDAP base"
1083
msgid "LDAP base"
1071
msgstr "LDAP-Basis"
1084
msgstr "LDAP-Basis"
1072
1085
 Lines 1086-1101    Link Here 
1086
msgid "Language settings"
1099
msgid "Language settings"
1087
msgstr "Spracheinstellungen"
1100
msgstr "Spracheinstellungen"
1088
1101
1089
#: umc/js/setup/ApplianceWizard.js:407
1102
#: umc/js/setup/ApplianceWizard.js:412
1090
msgid "License agreement"
1103
msgid "License agreement"
1091
msgstr "Lizenzvereinbarung"
1104
msgstr "Lizenzvereinbarung"
1092
1105
1093
#: umc/js/setup/ApplianceWizard.js:817
1106
#: umc/js/setup/ApplianceWizard.js:836
1094
msgid "Local root password"
1107
msgid "Local root password"
1095
msgstr "Lokales Root-Passwort"
1108
msgstr "Lokales Root-Passwort"
1096
1109
1097
#: umc/js/setup/ApplianceWizard.js:369 umc/js/setup/ApplianceWizard.js:375
1110
#: umc/js/setup/ApplianceWizard.js:374 umc/js/setup/ApplianceWizard.js:380
1098
#: umc/js/setup/ApplianceWizard.js:1630
1111
#: umc/js/setup/ApplianceWizard.js:1728
1099
msgid "Localization settings"
1112
msgid "Localization settings"
1100
msgstr "Standorteinstellungen"
1113
msgstr "Standorteinstellungen"
1101
1114
 Lines 1111-1125    Link Here 
1111
msgid "MII link monitoring frequency"
1124
msgid "MII link monitoring frequency"
1112
msgstr "MII-Trägerüberwachungsfrequenz"
1125
msgstr "MII-Trägerüberwachungsfrequenz"
1113
1126
1114
#: umc/js/setup/ApplianceWizard.js:320
1127
#: umc/js/setup/ApplianceWizard.js:325
1115
msgid "Manage users and permissions directly on this system"
1128
msgid "Manage users and permissions directly on this system"
1116
msgstr "Verwalten von Benutzern und Rechten direkt auf diesem System"
1129
msgstr "Verwalten von Benutzern und Rechten direkt auf diesem System"
1117
1130
1118
#: umc/js/setup/ApplianceWizard.js:640 umc/js/setup/ApplianceWizard.js:1615
1131
#: umc/js/setup/ApplianceWizard.js:659 umc/js/setup/ApplianceWizard.js:1713
1119
msgid "Member server"
1132
msgid "Member server"
1120
msgstr "Member-Server"
1133
msgstr "Member-Server"
1121
1134
1122
#: umc/js/setup/ApplianceWizard.js:656
1135
#: umc/js/setup/ApplianceWizard.js:664
1123
msgid ""
1136
msgid ""
1124
"Member servers should be used for services which do not need a local "
1137
"Member servers should be used for services which do not need a local "
1125
"authentication database, for example for file or print servers."
1138
"authentication database, for example for file or print servers."
 Lines 1171-1177    Link Here 
1171
msgid "Network interface configuration"
1184
msgid "Network interface configuration"
1172
msgstr "Netzwerkgerätkonfiguration"
1185
msgstr "Netzwerkgerätkonfiguration"
1173
1186
1174
#: umc/js/setup/ApplianceWizard.js:1557 umc/js/setup/NetworkPage.js:299
1187
#: umc/js/setup/ApplianceWizard.js:1653 umc/js/setup/NetworkPage.js:299
1175
msgid "Network interfaces"
1188
msgid "Network interfaces"
1176
msgstr "Netzwerkgeräte"
1189
msgstr "Netzwerkgeräte"
1177
1190
 Lines 1179-1197    Link Here 
1179
msgid "Network settings"
1192
msgid "Network settings"
1180
msgstr "Netzwerk-Einstellungen"
1193
msgstr "Netzwerk-Einstellungen"
1181
1194
1182
#: umc/js/setup/ApplianceWizard.js:1240
1195
#: umc/js/setup/ApplianceWizard.js:1267
1183
msgid "No additional software component will be installed."
1196
msgid "No additional software component will be installed."
1184
msgstr "Keine zusätzliche Software-Komponente wird installiert."
1197
msgstr "Keine zusätzliche Software-Komponente wird installiert."
1185
1198
1186
#: umc/js/setup/ApplianceWizard.js:1700
1199
#: umc/js/setup/ApplianceWizard.js:1798
1187
msgid "No additional software components will be installed."
1200
msgid "No additional software components will be installed."
1188
msgstr "Keine zusätzliche Software-Komponenten werden installiert."
1201
msgstr "Keine zusätzliche Software-Komponenten werden installiert."
1189
1202
1190
#: umc/js/setup.js:440
1203
#: umc/js/setup.js:444
1191
msgid "No changes have been made."
1204
msgid "No changes have been made."
1192
msgstr "Es wurden keine Änderungen durchgeführt."
1205
msgstr "Es wurden keine Änderungen durchgeführt."
1193
1206
1194
#: umc/js/setup/ApplianceWizard.js:2338
1207
#: umc/js/setup/ApplianceWizard.js:2654
1195
msgid ""
1208
msgid ""
1196
"No domain controller was found at the address of the name server. It is "
1209
"No domain controller was found at the address of the name server. It is "
1197
"recommended to verify that the network settings are correct."
1210
"recommended to verify that the network settings are correct."
 Lines 1199-1205    Link Here 
1199
"Unter der Adresse des DNS-Servers konnte kein Domänencontroller gefunden "
1212
"Unter der Adresse des DNS-Servers konnte kein Domänencontroller gefunden "
1200
"werden. Die Netzwerkeinstellungen sollten überprüft werden."
1213
"werden. Die Netzwerkeinstellungen sollten überprüft werden."
1201
1214
1202
#: umc/js/setup/ApplianceWizard.js:2351
1215
#: umc/js/setup/ApplianceWizard.js:2667
1203
msgid ""
1216
msgid ""
1204
"No domain controller was found at the address of the name server. Please "
1217
"No domain controller was found at the address of the name server. Please "
1205
"adjust your network settings."
1218
"adjust your network settings."
 Lines 1207-1217    Link Here 
1207
"Unter der Adresse des DNS-Servers konnte kein Domänencontroller gefunden "
1220
"Unter der Adresse des DNS-Servers konnte kein Domänencontroller gefunden "
1208
"werden. Bitte überprüfen Sie die Netzwerkeinstellungen."
1221
"werden. Bitte überprüfen Sie die Netzwerkeinstellungen."
1209
1222
1210
#: umc/js/setup/ApplianceWizard.js:749
1223
#: umc/js/setup/ApplianceWizard.js:768
1211
msgid "No domain warning"
1224
msgid "No domain warning"
1212
msgstr "Warnung: Keine Domäne"
1225
msgstr "Warnung: Keine Domäne"
1213
1226
1214
#: umc/js/setup/ApplianceWizard.js:2276
1227
#: umc/js/setup/ApplianceWizard.js:2592
1215
msgid ""
1228
msgid ""
1216
"No gateway has been specified and thus no access to the internet is "
1229
"No gateway has been specified and thus no access to the internet is "
1217
"possible. As UCS requires internet access for its functionality, certain "
1230
"possible. As UCS requires internet access for its functionality, certain "
 Lines 1228-1242    Link Here 
1228
msgid "None"
1241
msgid "None"
1229
msgstr "Kein"
1242
msgstr "Kein"
1230
1243
1231
#: umc/js/setup.js:594
1244
#: umc/js/setup.js:598
1232
msgid "Not all changes could be applied successfully:"
1245
msgid "Not all changes could be applied successfully:"
1233
msgstr "Nicht alle Änderungen konnten erfolgreich übernommen werden:"
1246
msgstr "Nicht alle Änderungen konnten erfolgreich übernommen werden:"
1234
1247
1235
#: umc/js/setup/ApplianceWizard.js:439
1248
#: umc/js/setup/ApplianceWizard.js:444
1236
msgid "Obtain IP address automatically (DHCP)"
1249
msgid "Obtain IP address automatically (DHCP)"
1237
msgstr "IP-Adresse automatisch beziehen (DHCP)"
1250
msgstr "IP-Adresse automatisch beziehen (DHCP)"
1238
1251
1239
#: umc/js/setup.js:598
1252
#: umc/js/setup.js:602
1240
msgid "Ok"
1253
msgid "Ok"
1241
msgstr "Ok"
1254
msgstr "Ok"
1242
1255
 Lines 1244-1250    Link Here 
1244
msgid "Organization"
1257
msgid "Organization"
1245
msgstr "Organisation"
1258
msgstr "Organisation"
1246
1259
1247
#: umc/js/setup/ApplianceWizard.js:661 umc/js/setup/ApplianceWizard.js:1644
1260
#: umc/js/setup/ApplianceWizard.js:680 umc/js/setup/ApplianceWizard.js:1742
1248
msgid "Organization name"
1261
msgid "Organization name"
1249
msgstr "Name der Organisation"
1262
msgstr "Name der Organisation"
1250
1263
 Lines 1256-1263    Link Here 
1256
msgid "Parent interface"
1269
msgid "Parent interface"
1257
msgstr "Übergeordnetes Netzwerkgerät"
1270
msgstr "Übergeordnetes Netzwerkgerät"
1258
1271
1259
#: umc/js/setup/ApplianceWizard.js:682 umc/js/setup/ApplianceWizard.js:702
1272
#: umc/js/setup/ApplianceWizard.js:701 umc/js/setup/ApplianceWizard.js:721
1260
#: umc/js/setup/ApplianceWizard.js:744
1273
#: umc/js/setup/ApplianceWizard.js:763
1261
msgid "Password"
1274
msgid "Password"
1262
msgstr "Passwort"
1275
msgstr "Passwort"
1263
1276
 Lines 1270-1276    Link Here 
1270
msgid "Please click on the required character."
1283
msgid "Please click on the required character."
1271
msgstr "Bitte klicken Sie auf das gewünschte Zeichen."
1284
msgstr "Bitte klicken Sie auf das gewünschte Zeichen."
1272
1285
1273
#: umc/js/setup/ApplianceWizard.js:836
1286
#: umc/js/setup/ApplianceWizard.js:855
1274
msgid ""
1287
msgid ""
1275
"Please confirm the chosen configuration settings which are summarized in the "
1288
"Please confirm the chosen configuration settings which are summarized in the "
1276
"following."
1289
"following."
 Lines 1278-1284    Link Here 
1278
"Bitte bestätigen Sie die gewählten Einstellungen, die nachstehend "
1291
"Bitte bestätigen Sie die gewählten Einstellungen, die nachstehend "
1279
"zusammengefasst sind."
1292
"zusammengefasst sind."
1280
1293
1281
#: umc/js/setup.js:495
1294
#: umc/js/setup.js:499
1282
msgid ""
1295
msgid ""
1283
"Please confirm to apply these changes to the system. This may take some time."
1296
"Please confirm to apply these changes to the system. This may take some time."
1284
msgstr ""
1297
msgstr ""
 Lines 1289-1300    Link Here 
1289
msgid "Please confirm to delete the following interfaces:"
1302
msgid "Please confirm to delete the following interfaces:"
1290
msgstr "Bitte Löschung der folgenden Netzwerkgeräte bestätigen:"
1303
msgstr "Bitte Löschung der folgenden Netzwerkgeräte bestätigen:"
1291
1304
1292
#: umc/js/setup/ApplianceWizard.js:408
1305
#: umc/js/setup/ApplianceWizard.js:413
1293
#, python-format
1306
#, python-format
1294
msgid "Please read carefully the license agreement for %s Appliance."
1307
msgid "Please read carefully the license agreement for %s Appliance."
1295
msgstr "Bitte lesen Sie die nachstehende Lizenzvereinbarung für %s Appliance."
1308
msgstr "Bitte lesen Sie die nachstehende Lizenzvereinbarung für %s Appliance."
1296
1309
1297
#: umc/js/setup/ApplianceWizard.js:556
1310
#: umc/js/setup/ApplianceWizard.js:561
1298
msgid "Please select your domain settings."
1311
msgid "Please select your domain settings."
1299
msgstr "Bitte wählen Sie die Domäneneinstellungen."
1312
msgstr "Bitte wählen Sie die Domäneneinstellungen."
1300
1313
 Lines 1302-1317    Link Here 
1302
msgid "Please specify the ports which will be added to the bridge."
1315
msgid "Please specify the ports which will be added to the bridge."
1303
msgstr "Bitte geben Sie die Ports an, die zu der Bridge hinzugefügt werden."
1316
msgstr "Bitte geben Sie die Ports an, die zu der Bridge hinzugefügt werden."
1304
1317
1305
#: umc/js/setup/ApplianceWizard.js:528
1318
#: umc/js/setup/ApplianceWizard.js:533
1306
msgid "Preferred DNS server"
1319
msgid "Preferred DNS server"
1307
msgstr "Bevorzugter DNS-Server"
1320
msgstr "Bevorzugter DNS-Server"
1308
1321
1309
#: umc/js/setup/ApplianceWizard.js:1560 umc/js/setup/NetworkPage.js:101
1322
#: umc/js/setup/ApplianceWizard.js:1656 umc/js/setup/NetworkPage.js:101
1310
#: umc/js/setup/NetworkPage.js:303
1323
#: umc/js/setup/NetworkPage.js:303
1311
msgid "Primary network interface"
1324
msgid "Primary network interface"
1312
msgstr "Primäres Netzwerkgerät"
1325
msgstr "Primäres Netzwerkgerät"
1313
1326
1314
#: umc/js/setup/ApplianceWizard.js:1300
1327
#: umc/js/setup/ApplianceWizard.js:574
1328
msgid ""
1329
"Quick setup of a system for testing purposes. Several system configurations "
1330
"are predefined and cannot be changed at a later point."
1331
msgstr ""
1332
"Schnelle Einrichtung eines Systems zu Testzwecken. Einige "
1333
"Systemeinstellungen sind vorgegeben und können im Nachhinein nicht mehr "
1334
"geändert werden"
1335
1336
#: umc/js/setup/ApplianceWizard.js:1327
1315
msgid "Reconfigure"
1337
msgid "Reconfigure"
1316
msgstr "Erneut konfigurieren"
1338
msgstr "Erneut konfigurieren"
1317
1339
 Lines 1319-1329    Link Here 
1319
msgid "Removed:"
1341
msgid "Removed:"
1320
msgstr "Gelöscht:"
1342
msgstr "Gelöscht:"
1321
1343
1322
#: umc/js/setup.js:368 umc/js/setup.js:375
1344
#: umc/js/setup.js:375
1323
msgid "Restarting server components..."
1345
msgid "Restarting server components..."
1324
msgstr "Neustart der Server-Komponenten..."
1346
msgstr "Neustart der Server-Komponenten..."
1325
1347
1326
#: umc/js/setup/ApplianceWizard.js:2466
1348
#: umc/js/setup/ApplianceWizard.js:2782
1327
msgid "Root password empty. Continue?"
1349
msgid "Root password empty. Continue?"
1328
msgstr "Root-Passwort ist leer. Möchten Sie fortfahren?"
1350
msgstr "Root-Passwort ist leer. Möchten Sie fortfahren?"
1329
1351
 Lines 1331-1357    Link Here 
1331
msgid "SSL root certificate"
1353
msgid "SSL root certificate"
1332
msgstr "SSL-Root-Zertifikat"
1354
msgstr "SSL-Root-Zertifikat"
1333
1355
1334
#: umc/js/setup/ApplianceWizard.js:724
1356
#: umc/js/setup/ApplianceWizard.js:743
1335
msgid "Search Domain controller master in DNS"
1357
msgid "Search Domain controller master in DNS"
1336
msgstr "Domänencontroller Master im DNS suchen"
1358
msgstr "Domänencontroller Master im DNS suchen"
1337
1359
1338
#: umc/js/setup/ApplianceWizard.js:567
1360
#: umc/js/setup/ApplianceWizard.js:1941
1339
msgid ""
1361
msgid "Send feedback"
1340
"Quick setup of a system for testing purposes. Several system configurations "
1362
msgstr "Feedback senden"
1341
"are predefined and cannot be changed at a later point."
1342
msgstr ""
1343
"Schnelle Einrichtung eines Systems zu Testzwecken. Einige Systemeinstellungen "
1344
"sind vorgegeben und können im Nachhinein nicht mehr geändert werden"
1345
1363
1346
#: umc/js/setup/ApplianceWizard.js:319
1364
#: umc/js/setup/ApplianceWizard.js:1900
1365
msgid "Send feedback as mail"
1366
msgstr "Feedback als E-Mail senden"
1367
1368
#: umc/js/setup/ApplianceWizard.js:1950
1369
msgid "Sending the information to the vendor failed"
1370
msgstr "Das Versenden der Informationen zum Hersteller ist fehlgeschlagen"
1371
1372
#: umc/js/setup/ApplianceWizard.js:324
1347
msgid "Setup - An error occurred"
1373
msgid "Setup - An error occurred"
1348
msgstr "Einrichtung - Ein Fehler ist aufgetreten"
1374
msgstr "Einrichtung - Ein Fehler ist aufgetreten"
1349
1375
1350
#: umc/js/setup.js:288
1376
#: umc/js/setup.js:295
1351
msgid "Setup for UCS Virtual Machine Manager"
1377
msgid "Setup for UCS Virtual Machine Manager"
1352
msgstr "Einrichtung für UCS Virtual Machine Manager"
1378
msgstr "Einrichtung für UCS Virtual Machine Manager"
1353
1379
1354
#: umc/js/setup/ApplianceWizard.js:318
1380
#: umc/js/setup/ApplianceWizard.js:323
1355
msgid "Setup successful"
1381
msgid "Setup successful"
1356
msgstr "Einrichtung erfolgreich"
1382
msgstr "Einrichtung erfolgreich"
1357
1383
 Lines 1359-1365    Link Here 
1359
msgid "Several network types can be chosen."
1385
msgid "Several network types can be chosen."
1360
msgstr "Mehrere Netzwerktypen können ausgewählt werden."
1386
msgstr "Mehrere Netzwerktypen können ausgewählt werden."
1361
1387
1362
#: umc/js/setup.js:142
1388
#: umc/js/setup.js:143
1363
msgid "Should the UMC module be closed? All unsaved modification will be lost."
1389
msgid "Should the UMC module be closed? All unsaved modification will be lost."
1364
msgstr ""
1390
msgstr ""
1365
"Soll das UMC-Modul geschlossen werden? Alle nicht gespeicherten Änderungen "
1391
"Soll das UMC-Modul geschlossen werden? Alle nicht gespeicherten Änderungen "
 Lines 1370-1400    Link Here 
1370
msgid "Should the nameserver and gateway be set: %s"
1396
msgid "Should the nameserver and gateway be set: %s"
1371
msgstr "Sollen DNS-Server und Gateway gesetzt werden: %s"
1397
msgstr "Sollen DNS-Server und Gateway gesetzt werden: %s"
1372
1398
1373
#: umc/js/setup/ApplianceWizard.js:1216
1399
#: umc/js/setup/ApplianceWizard.js:1243
1374
msgid "Software component"
1400
msgid "Software component"
1375
msgstr "Softwarekomponente"
1401
msgstr "Softwarekomponente"
1376
1402
1377
#: umc/js/setup/ApplianceWizard.js:1700 umc/js/setup/ApplianceWizard.js:1703
1403
#: umc/js/setup/ApplianceWizard.js:1798 umc/js/setup/ApplianceWizard.js:1801
1378
msgid "Software components"
1404
msgid "Software components"
1379
msgstr "Softwarekomponenten"
1405
msgstr "Softwarekomponenten"
1380
1406
1381
#: umc/js/setup/ApplianceWizard.js:822
1407
#: umc/js/setup/ApplianceWizard.js:841
1382
msgid "Software configuration"
1408
msgid "Software configuration"
1383
msgstr "Software-Konfiguration"
1409
msgstr "Software-Konfiguration"
1384
1410
1385
#: umc/js/setup/ApplianceWizard.js:754 umc/js/setup/ApplianceWizard.js:799
1411
#: umc/js/setup/ApplianceWizard.js:773 umc/js/setup/ApplianceWizard.js:818
1386
msgid "Specify the name of this system."
1412
msgid "Specify the name of this system."
1387
msgstr "Eingabe des Namens dieses Systems."
1413
msgstr "Eingabe des Namens dieses Systems."
1388
1414
1389
#: umc/js/setup/ApplianceWizard.js:418
1415
#: umc/js/setup/ApplianceWizard.js:423
1390
msgid "Specify the network settings for this system."
1416
msgid "Specify the network settings for this system."
1391
msgstr "Eingabe der Netzwerkeinstellungen dieses Systems."
1417
msgstr "Eingabe der Netzwerkeinstellungen dieses Systems."
1392
1418
1393
#: umc/js/setup/ApplianceWizard.js:623
1419
#: umc/js/setup/ApplianceWizard.js:631
1394
msgid "Specify the type of this system."
1420
msgid "Specify the type of this system."
1395
msgstr "Eingabe des Typs dieses Systems."
1421
msgstr "Eingabe des Typs dieses Systems."
1396
1422
1397
#: umc/js/setup/ApplianceWizard.js:712
1423
#: umc/js/setup/ApplianceWizard.js:731
1398
msgid "Start join at the end of the installation"
1424
msgid "Start join at the end of the installation"
1399
msgstr "Domänenbeitritt am Ende der Installation starten"
1425
msgstr "Domänenbeitritt am Ende der Installation starten"
1400
1426
 Lines 1410-1424    Link Here 
1410
msgid "Static (IPv6)"
1436
msgid "Static (IPv6)"
1411
msgstr "Statisch (IPv6)"
1437
msgstr "Statisch (IPv6)"
1412
1438
1413
#: umc/js/setup/ApplianceWizard.js:622
1439
#: umc/js/setup/ApplianceWizard.js:630
1414
msgid "System role"
1440
msgid "System role"
1415
msgstr "Systemrolle"
1441
msgstr "Systemrolle"
1416
1442
1417
#: umc/js/setup.js:582 umc/js/setup.js:588
1443
#: umc/js/setup/ApplianceWizard.js:1947
1444
msgid "Thank you for your help"
1445
msgstr "Vielen Dank für Ihre Hilfe"
1446
1447
#: umc/js/setup.js:586 umc/js/setup.js:592
1418
msgid "The changes have been applied successfully."
1448
msgid "The changes have been applied successfully."
1419
msgstr "Die Änderungen wurden erfolgreich übernommen."
1449
msgstr "Die Änderungen wurden erfolgreich übernommen."
1420
1450
1421
#: umc/js/setup.js:572
1451
#: umc/js/setup.js:572
1452
#, python-brace-format
1422
msgid ""
1453
msgid ""
1423
"The connection to the server could not be established after {time} seconds. "
1454
"The connection to the server could not be established after {time} seconds. "
1424
"This problem can occur due to a change of the IP address. In this case, "
1455
"This problem can occur due to a change of the IP address. In this case, "
 Lines 1430-1444    Link Here 
1430
"führen sein. Loggen Sie sich in diesem Fall erneut auf Univention Management "
1461
"führen sein. Loggen Sie sich in diesem Fall erneut auf Univention Management "
1431
"Console unter der {linkStart}neuen Adresse{linkEnd} ein."
1462
"Console unter der {linkStart}neuen Adresse{linkEnd} ein."
1432
1463
1433
#: umc/js/setup.js:489
1464
#: umc/js/setup.js:493
1434
msgid "The following changes will be applied to the system:"
1465
msgid "The following changes will be applied to the system:"
1435
msgstr "Die folgenden Änderungen werden auf das System übertragen:"
1466
msgstr "Die folgenden Änderungen werden auf das System übertragen:"
1436
1467
1437
#: umc/js/setup.js:466 umc/js/setup.js:542 umc/js/setup/ApplianceWizard.js:827
1468
#: umc/js/setup/ApplianceWizard.js:846 umc/js/setup.js:466 umc/js/setup.js:542
1438
msgid "The following entries could not be validated:"
1469
msgid "The following entries could not be validated:"
1439
msgstr "Die folgenden Einträge konnten nicht validiert werden:"
1470
msgstr "Die folgenden Einträge konnten nicht validiert werden:"
1440
1471
1441
#: umc/js/setup/ApplianceWizard.js:1744
1472
#: umc/js/setup/ApplianceWizard.js:1854
1442
msgid "The following errors occurred while applying the settings."
1473
msgid "The following errors occurred while applying the settings."
1443
msgstr ""
1474
msgstr ""
1444
"Die folgenden Fehler sind beim Setzen der Konfigurationseinstellungen "
1475
"Die folgenden Fehler sind beim Setzen der Konfigurationseinstellungen "
 Lines 1452-1458    Link Here 
1452
"Die folgenden Netzwerkgeräte sind bereits von anderen Netzwerkgeräten in "
1483
"Die folgenden Netzwerkgeräte sind bereits von anderen Netzwerkgeräten in "
1453
"Verwendung und können nicht gelöscht werden:"
1484
"Verwendung und können nicht gelöscht werden:"
1454
1485
1455
#: umc/js/setup/ApplianceWizard.js:750
1486
#: umc/js/setup/ApplianceWizard.js:769
1456
msgid ""
1487
msgid ""
1457
"The installed UCS system will not offer any web-based domain management "
1488
"The installed UCS system will not offer any web-based domain management "
1458
"functions and will not be able to be a domain member. Such an UCS system "
1489
"functions and will not be able to be a domain member. Such an UCS system "
 Lines 1462-1468    Link Here 
1462
"anbieten und kein Mitglied einer Domäne werden. Solch ein UCS-System sollte "
1493
"anbieten und kein Mitglied einer Domäne werden. Solch ein UCS-System sollte "
1463
"nur in seltenen Fällen aufgesetzt werden, etwa als Firewall-System."
1494
"nur in seltenen Fällen aufgesetzt werden, etwa als Firewall-System."
1464
1495
1465
#: umc/js/setup/ApplianceWizard.js:2028
1496
#: umc/js/setup/ApplianceWizard.js:2258
1466
msgid ""
1497
msgid ""
1467
"The root password is too short. For security reasons, your password must "
1498
"The root password is too short. For security reasons, your password must "
1468
"contain at least 8 characters."
1499
"contain at least 8 characters."
 Lines 1470-1476    Link Here 
1470
"Das Root-Passwort ist zu kurz, aus Sicherheitsgründen muss es mindestens 8 "
1501
"Das Root-Passwort ist zu kurz, aus Sicherheitsgründen muss es mindestens 8 "
1471
"Zeichen lang sein."
1502
"Zeichen lang sein."
1472
1503
1473
#: umc/js/setup/ApplianceWizard.js:1743
1504
#: umc/js/setup/ApplianceWizard.js:1985
1474
msgid ""
1505
msgid ""
1475
"The system configuration could not be completed. Please choose to retry the "
1506
"The system configuration could not be completed. Please choose to retry the "
1476
"configuration process or finish the wizard."
1507
"configuration process or finish the wizard."
 Lines 1479-1485    Link Here 
1479
"den Konfigurationsvorgang zu wiederholen oder den Einrichtungsassistenten zu "
1510
"den Konfigurationsvorgang zu wiederholen oder den Einrichtungsassistenten zu "
1480
"beenden."
1511
"beenden."
1481
1512
1482
#: umc/js/setup/ApplianceWizard.js:1767
1513
#: umc/js/setup/ApplianceWizard.js:1881
1483
#, python-format
1514
#, python-format
1484
msgid ""
1515
msgid ""
1485
"The system is reachable at <i>%(fqdn)s</i> or via its IP address(es) <i>"
1516
"The system is reachable at <i>%(fqdn)s</i> or via its IP address(es) <i>"
 Lines 1492-1502    Link Here 
1492
msgid "There are no more physical interfaces to create."
1523
msgid "There are no more physical interfaces to create."
1493
msgstr "Es gibt keine weiteren physikalischen Netzwerkgeräte zum Hinzufügen."
1524
msgstr "Es gibt keine weiteren physikalischen Netzwerkgeräte zum Hinzufügen."
1494
1525
1495
#: umc/js/setup.js:368 umc/js/setup.js:375
1526
#: umc/js/setup.js:375
1496
msgid "This may take a few seconds..."
1527
msgid "This may take a few seconds..."
1497
msgstr "Dies kann einige Sekunden in Anspruch nehmen..."
1528
msgstr "Dies kann einige Sekunden in Anspruch nehmen..."
1498
1529
1499
#: umc/js/setup/ApplianceWizard.js:612
1530
#: umc/js/setup/ApplianceWizard.js:620
1500
msgid ""
1531
msgid ""
1501
"This should only be used in rare use cases, for example as firewall systems."
1532
"This should only be used in rare use cases, for example as firewall systems."
1502
msgstr ""
1533
msgstr ""
 Lines 1503-1513    Link Here 
1503
"Diese Einstellung sollte nur in speziellen Szenarien, z.B. Firewall-"
1534
"Diese Einstellung sollte nur in speziellen Szenarien, z.B. Firewall-"
1504
"Systemen, gewählt werden."
1535
"Systemen, gewählt werden."
1505
1536
1506
#: umc/js/setup/ApplianceWizard.js:1136
1537
#: umc/js/setup/ApplianceWizard.js:1163
1538
#, python-brace-format
1507
msgid "This system only has {memory_total} RAM."
1539
msgid "This system only has {memory_total} RAM."
1508
msgstr "Dieses System verfügt nur über {memory_total} Arbeitsspeicher."
1540
msgstr "Dieses System verfügt nur über {memory_total} Arbeitsspeicher."
1509
1541
1510
#: umc/js/setup/ApplianceWizard.js:1610
1542
#: umc/js/setup/ApplianceWizard.js:1708
1511
msgid ""
1543
msgid ""
1512
"This system will be a base system without domain integration and without the "
1544
"This system will be a base system without domain integration and without the "
1513
"capabilities to join one in the future."
1545
"capabilities to join one in the future."
 Lines 1515-1537    Link Here 
1515
"Dieses System wird ein Basissystem ohne jegliche Domänenintegration und ohne "
1547
"Dieses System wird ein Basissystem ohne jegliche Domänenintegration und ohne "
1516
"Möglichkeit, später einer Domäne beizutreten."
1548
"Möglichkeit, später einer Domäne beizutreten."
1517
1549
1518
#: umc/js/setup/ApplianceWizard.js:590
1550
#: umc/js/setup/ApplianceWizard.js:598
1519
msgid "This system will become part of an existing Active Directory domain."
1551
msgid "This system will become part of an existing Active Directory domain."
1520
msgstr "Dieses System wird Teil einer existierenden Active-Directory-Domäne."
1552
msgstr "Dieses System wird Teil einer existierenden Active-Directory-Domäne."
1521
1553
1522
#: umc/js/setup/ApplianceWizard.js:1621
1554
#: umc/js/setup/ApplianceWizard.js:1719
1523
#, python-format
1555
#, python-format
1524
msgid "This sytem will join an existing AD domain with the role <i>%s</i>."
1556
msgid "This sytem will join an existing AD domain with the role <i>%s</i>."
1525
msgstr ""
1557
msgstr ""
1526
"Das System tritt einer existierenden AD-Domäne mit der Rolle <i>%s</i> bei."
1558
"Das System tritt einer existierenden AD-Domäne mit der Rolle <i>%s</i> bei."
1527
1559
1528
#: umc/js/setup/ApplianceWizard.js:1623
1560
#: umc/js/setup/ApplianceWizard.js:1721
1529
#, python-format
1561
#, python-format
1530
msgid "This sytem will join an existing UCS domain with the role <i>%s</i>."
1562
msgid "This sytem will join an existing UCS domain with the role <i>%s</i>."
1531
msgstr ""
1563
msgstr ""
1532
"Das System tritt einer existierenden UCS-Domäne mit der Rolle <i>%s</i> bei."
1564
"Das System tritt einer existierenden UCS-Domäne mit der Rolle <i>%s</i> bei."
1533
1565
1534
#: umc/js/setup/ApplianceWizard.js:388 umc/js/setup/LanguagePage.js:76
1566
#: umc/js/setup/ApplianceWizard.js:393 umc/js/setup/LanguagePage.js:76
1535
#: umc/js/setup/LanguagePage.js:209
1567
#: umc/js/setup/LanguagePage.js:209
1536
msgid "Time zone"
1568
msgid "Time zone"
1537
msgstr "Zeitzone"
1569
msgstr "Zeitzone"
 Lines 1544-1566    Link Here 
1544
msgid "Type"
1576
msgid "Type"
1545
msgstr "Typ"
1577
msgstr "Typ"
1546
1578
1547
#: umc/js/setup/ApplianceWizard.js:1605
1579
#: umc/js/setup/ApplianceWizard.js:1701
1548
msgid "UCS configuration"
1580
msgid "UCS configuration"
1549
msgstr "UCS-Konfiguration"
1581
msgstr "UCS-Konfiguration"
1550
1582
1551
#: umc/js/setup/ApplianceWizard.js:1799
1583
#: umc/js/setup/ApplianceWizard.js:2020
1552
msgid "UCS has been successfully set up."
1584
msgid "UCS has been successfully set up."
1553
msgstr "UCS wurde erfolgreich eingerichtet."
1585
msgstr "UCS wurde erfolgreich eingerichtet."
1554
1586
1555
#: umc/js/setup/ApplianceWizard.js:307
1587
#: umc/js/setup/ApplianceWizard.js:312
1556
msgid "UCS setup"
1588
msgid "UCS setup"
1557
msgstr "UCS-Einrichtung"
1589
msgstr "UCS-Einrichtung"
1558
1590
1559
#: umc/js/setup/ApplianceWizard.js:309
1591
#: umc/js/setup/ApplianceWizard.js:314
1560
msgid "UCS setup - An error occurred"
1592
msgid "UCS setup - An error occurred"
1561
msgstr "UCS-Einrichtung - Ein Fehler ist aufgetreten"
1593
msgstr "UCS-Einrichtung - Ein Fehler ist aufgetreten"
1562
1594
1563
#: umc/js/setup/ApplianceWizard.js:308
1595
#: umc/js/setup/ApplianceWizard.js:313
1564
msgid "UCS setup successful"
1596
msgid "UCS setup successful"
1565
msgstr "UCS-Einrichtung erfolgreich"
1597
msgstr "UCS-Einrichtung erfolgreich"
1566
1598
 Lines 1568-1591    Link Here 
1568
msgid "Unconfigured"
1600
msgid "Unconfigured"
1569
msgstr "Unkonfiguriert"
1601
msgstr "Unkonfiguriert"
1570
1602
1571
#: umc/js/setup/ApplianceWizard.js:1140
1603
#: umc/js/setup/ApplianceWizard.js:1167
1572
msgid "Univention Corporate Server"
1604
msgid "Univention Corporate Server"
1573
msgstr "Univention Corporate Server"
1605
msgstr "Univention Corporate Server"
1574
1606
1575
#: umc/js/setup/ApplianceWizard.js:845
1607
#: umc/js/setup/ApplianceWizard.js:864
1576
msgid "Update system after setup"
1608
msgid "Update system after setup"
1577
msgstr "System nach der Einrichtung aktualisieren"
1609
msgstr "System nach der Einrichtung aktualisieren"
1578
1610
1579
#: umc/js/setup/ApplianceWizard.js:561
1611
#: umc/js/setup/ApplianceWizard.js:609
1580
msgid "Fast demo configuration"
1581
msgstr "Schnelle Demo-Konfiguration"
1582
1583
#: umc/js/setup/ApplianceWizard.js:601
1584
msgid "Use this option if you already have one or more UCS systems."
1612
msgid "Use this option if you already have one or more UCS systems."
1585
msgstr ""
1613
msgstr ""
1586
"Wählen Sie diese Option, falls bereits mindestens ein UCS-System existiert."
1614
"Wählen Sie diese Option, falls bereits mindestens ein UCS-System existiert."
1587
1615
1588
#: umc/js/setup/ApplianceWizard.js:696 umc/js/setup/ApplianceWizard.js:738
1616
#: umc/js/setup/ApplianceWizard.js:715 umc/js/setup/ApplianceWizard.js:757
1589
msgid "Username"
1617
msgid "Username"
1590
msgstr "Benutzername"
1618
msgstr "Benutzername"
1591
1619
 Lines 1593-1603    Link Here 
1593
msgid "VLAN ID"
1621
msgid "VLAN ID"
1594
msgstr "VLAN ID"
1622
msgstr "VLAN ID"
1595
1623
1596
#: umc/js/setup.js:61 umc/js/setup/ApplianceWizard.js:262
1624
#: umc/js/setup/ApplianceWizard.js:265 umc/js/setup.js:62
1597
msgid "Validation error"
1625
msgid "Validation error"
1598
msgstr "Validierungsfehler"
1626
msgstr "Validierungsfehler"
1599
1627
1600
#: umc/js/setup/ApplianceWizard.js:826
1628
#: umc/js/setup/ApplianceWizard.js:845
1601
msgid "Validation failed"
1629
msgid "Validation failed"
1602
msgstr "Validierungsfehler"
1630
msgstr "Validierungsfehler"
1603
1631
 Lines 1609-1634    Link Here 
1609
msgid "Virtual keyboard"
1637
msgid "Virtual keyboard"
1610
msgstr "Virtuelle Tastatur"
1638
msgstr "Virtuelle Tastatur"
1611
1639
1612
#: umc/js/setup/ApplianceWizard.js:2168
1640
#: umc/js/setup/ApplianceWizard.js:1444 umc/js/setup/ApplianceWizard.js:2399
1613
msgid "Waiting for restart of server components..."
1641
msgid "Waiting for restart of server components..."
1614
msgstr "Warten auf den Neustart der Server-Komponenten ..."
1642
msgstr "Warten auf den Neustart der Server-Komponenten ..."
1615
1643
1616
#: umc/js/setup/ApplianceWizard.js:1158 umc/js/setup/ApplianceWizard.js:2292
1644
#: umc/js/setup/ApplianceWizard.js:1169 umc/js/setup/ApplianceWizard.js:2583
1617
#: umc/js/setup/ApplianceWizard.js:2308 umc/js/setup/ApplianceWizard.js:2370
1645
#: umc/js/setup/ApplianceWizard.js:2599 umc/js/setup/ApplianceWizard.js:2661
1618
#: umc/js/setup/ApplianceWizard.js:2487
1646
#: umc/js/setup/ApplianceWizard.js:2789
1619
msgid "Warning"
1647
msgid "Warning"
1620
msgstr "Warnung"
1648
msgstr "Warnung"
1621
1649
1622
#: umc/js/setup/ApplianceWizard.js:306
1650
#: umc/js/setup/ApplianceWizard.js:311
1623
msgid "Welcome to Univention Corporate Server (UCS)."
1651
msgid "Welcome to Univention Corporate Server (UCS)."
1624
msgstr "Wilkommen bei Univention Corporate Server (UCS)."
1652
msgstr "Wilkommen bei Univention Corporate Server (UCS)."
1625
1653
1626
#: umc/js/setup/ApplianceWizard.js:316
1654
#: umc/js/setup/ApplianceWizard.js:321
1627
#, python-format
1655
#, python-format
1628
msgid "Welcome to the setup of %s Appliance."
1656
msgid "Welcome to the setup of %s Appliance."
1629
msgstr "Wilkommen bei der Einrichtung von %s Appliance."
1657
msgstr "Wilkommen bei der Einrichtung von %s Appliance."
1630
1658
1631
#: umc/js/setup/ApplianceWizard.js:1751
1659
#: umc/js/setup/ApplianceWizard.js:1865
1632
msgid "You may restart the configuration process again with modified settings."
1660
msgid "You may restart the configuration process again with modified settings."
1633
msgstr ""
1661
msgstr ""
1634
"Sie können den Konfigurationsvorgang mit veränderten Einstellungen erneut "
1662
"Sie können den Konfigurationsvorgang mit veränderten Einstellungen erneut "
 Lines 1638-1655    Link Here 
1638
msgid "don't set"
1666
msgid "don't set"
1639
msgstr "nicht setzen"
1667
msgstr "nicht setzen"
1640
1668
1641
#: umc/js/setup/ApplianceWizard.js:362
1669
#: umc/js/setup/ApplianceWizard.js:367
1642
msgid "e.g., Boston..."
1670
msgid "e.g., Boston..."
1643
msgstr "bspw. Bremen..."
1671
msgstr "bspw. Bremen..."
1644
1672
1645
#: umc/js/setup.js:288
1673
#: umc/js/setup.js:295
1646
#, python-format
1674
#, python-format
1647
msgid "http://docs.univention.de/manual-%s.html#computers:networkcomplex:uvmm"
1675
msgid "http://docs.univention.de/manual-%s.html#computers:networkcomplex:uvmm"
1648
msgstr ""
1676
msgstr ""
1649
"http://docs.univention.de/handbuch-%s.html#computers:networkcomplex:uvmm"
1677
"http://docs.univention.de/handbuch-%s.html#computers:networkcomplex:uvmm"
1650
1678
1651
#: umc/js/setup/ApplianceWizard.js:549 umc/js/setup/ApplianceWizard.js:669
1679
#: umc/js/setup/ApplianceWizard.js:554 umc/js/setup/ApplianceWizard.js:688
1652
#: umc/js/setup/ApplianceWizard.js:809
1680
#: umc/js/setup/ApplianceWizard.js:828
1653
msgid "more information"
1681
msgid "more information"
1654
msgstr "mehr Informationen"
1682
msgstr "mehr Informationen"
1655
1683

Return to bug 40782