2 commits - client/tools rel-eng/packages
by Michael Mraka
client/tools/rhncustominfo/rhn-custom-info.py | 25 +++++++++++++++++++-----
client/tools/rhncustominfo/rhn-custom-info.spec | 5 +++-
rel-eng/packages/rhn-custom-info | 2 -
3 files changed, 25 insertions(+), 7 deletions(-)
New commits:
commit c111c4e94c642ec4dc14609497cf991674b6c0fb
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 29 12:19:53 2013 +0100
Automatic commit of package [rhn-custom-info] release [5.4.21-1].
diff --git a/client/tools/rhncustominfo/rhn-custom-info.spec b/client/tools/rhncustominfo/rhn-custom-info.spec
index 4891bb9..c991fa0 100644
--- a/client/tools/rhncustominfo/rhn-custom-info.spec
+++ b/client/tools/rhncustominfo/rhn-custom-info.spec
@@ -4,7 +4,7 @@ Group: Applications/System
License: GPLv2
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
URL: https://fedorahosted.org/spacewalk
-Version: 5.4.20
+Version: 5.4.21
Release: 1%{?dist}
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildArch: noarch
@@ -52,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT
%{_mandir}/man8/rhn-custom-info.*
%changelog
+* Fri Nov 29 2013 Michael Mraka <michael.mraka(a)redhat.com> 5.4.21-1
+- add the option -d to delete custom values
+
* Thu Oct 10 2013 Michael Mraka <michael.mraka(a)redhat.com> 5.4.20-1
- cleaning up old svn Ids
diff --git a/rel-eng/packages/rhn-custom-info b/rel-eng/packages/rhn-custom-info
index 2dbedb5..7f56877 100644
--- a/rel-eng/packages/rhn-custom-info
+++ b/rel-eng/packages/rhn-custom-info
@@ -1 +1 @@
-5.4.20-1 client/tools/rhncustominfo/
+5.4.21-1 client/tools/rhncustominfo/
commit 4defa067792adca015dd6470d3b7e33ec0d31195
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 29 12:17:43 2013 +0100
add the option -d to delete custom values
contributed by Ulf <mopp(a)gmx.net>
diff --git a/client/tools/rhncustominfo/rhn-custom-info.py b/client/tools/rhncustominfo/rhn-custom-info.py
index 6beb084..2f49c4d 100755
--- a/client/tools/rhncustominfo/rhn-custom-info.py
+++ b/client/tools/rhncustominfo/rhn-custom-info.py
@@ -121,6 +121,10 @@ def parse_args():
action="store", type="string", dest="url",
help="use the rhn api at URL", metavar="URL")
+ parser.add_option("-d", "--delete-values",
+ action="store_true", dest="delete_values", default=0,
+ help="delete one or multiple custom keys from the system")
+
parser.add_option("-l", "--list-values",
action="store_true", dest="list_values", default=0,
help="list the custom keys and values for the system",
@@ -141,12 +145,15 @@ def verify_command_line():
if not options.password:
options.password = getpass.getpass()
- if not (num_args % 2 == 0) and not options.list_values:
+ if not (num_args % 2 == 0) and not options.list_values and not options.delete_values:
system_exit(1, "Odd number of arguments; you must provide key/value pairs")
- if not args and not options.list_values:
+ if not args and not options.list_values and not options.delete_values:
system_exit(1, "You must provide key/value pairs to store")
+ if not args and options.delete_values:
+ system_exit(1, "You must provide a key to delete")
+
return (options, args, num_args)
@@ -174,11 +181,17 @@ def main():
(options, args, num_args) = verify_command_line()
values = {}
+ valuesdel = []
i = 0
- while (i < num_args):
- values[args[i]] = args[i+1]
- i = i + 2
+ if not options.delete_values:
+ while (i < num_args):
+ values[args[i]] = args[i+1]
+ i = i + 2
+ else:
+ while (i < num_args):
+ valuesdel.insert(i, args[i])
+ i = i + 1
url = None
if options.url:
@@ -198,6 +211,8 @@ def main():
if options.list_values:
ret = s.system.get_custom_values(session, int(sid))
+ elif options.delete_values:
+ ret = s.system.delete_custom_values(session, int(sid), valuesdel)
else:
ret = s.system.set_custom_values(session, int(sid), values)
9 years, 10 months
backend/server
by Michael Mraka
backend/server/rhnVirtualization.py | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 2f8016aceb010082f8107db6f7d1a4029cc67a9b
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Fri Nov 29 12:04:03 2013 +0100
convert empty uuid to None
diff --git a/backend/server/rhnVirtualization.py b/backend/server/rhnVirtualization.py
index 00b30a4..b23f584 100644
--- a/backend/server/rhnVirtualization.py
+++ b/backend/server/rhnVirtualization.py
@@ -745,6 +745,8 @@ class VirtualizationEventHandler:
# normal form.
# if UUID had leading 0, we must pad 0 again #429192
properties[PropertyType.UUID] = "%032x" % uuid_as_number
+ else:
+ properties[PropertyType.UUID] = None
# The server only cares about certain types of states.
if properties.has_key(PropertyType.STATE):
9 years, 10 months
java/code
by Tomas Lestach
java/code/src/com/redhat/rhn/domain/rhnpackage/Package_satellite.hbm.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8cf56428862e2165d9b74b6933cee225d1622af6
Author: Tasos Papaioannou <tpapaioa(a)redhat.com>
Date: Fri Nov 29 09:45:21 2013 +0100
1035429 - make package search of a specific architecture faster
diff --git a/java/code/src/com/redhat/rhn/domain/rhnpackage/Package_satellite.hbm.xml b/java/code/src/com/redhat/rhn/domain/rhnpackage/Package_satellite.hbm.xml
index 3d42598..0f89165 100644
--- a/java/code/src/com/redhat/rhn/domain/rhnpackage/Package_satellite.hbm.xml
+++ b/java/code/src/com/redhat/rhn/domain/rhnpackage/Package_satellite.hbm.xml
@@ -193,8 +193,8 @@ PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
from com.redhat.rhn.domain.rhnpackage.Package as p,
com.redhat.rhn.domain.channel.Channel as c
where p.id IN (:pids)
+ and c IN elements(p.channels)
and c.channelArch.label IN (:channel_arch_labels)
- and p in elements(c.packages)
]]>
</query>
9 years, 10 months
java/code web/html web/modules
by mkollar
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml | 12 ++---
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml | 24 +++++-----
java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml | 24 +++++-----
java/code/webapp/WEB-INF/pages/common/fragments/groups/header.jspf | 2
java/code/webapp/WEB-INF/pages/common/fragments/package/package_header.jspf | 2
java/code/webapp/WEB-INF/pages/groups/create.jsp | 2
java/code/webapp/WEB-INF/pages/kickstart/kickstartdownload.jsp | 2
java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/advanced/download.jsp | 2
java/code/webapp/WEB-INF/pages/systems/customkey/createkey.jsp | 2
java/code/webapp/WEB-INF/pages/systems/customkey/updatekey.jsp | 2
web/html/help/about.pxt | 10 ++--
web/modules/rhn/RHN/Server.pm | 4 -
web/modules/sniglets/Sniglets/HTML.pm | 2
26 files changed, 201 insertions(+), 201 deletions(-)
New commits:
commit fcc32c9cb7a62860286fd265c68781fa52a36d4b
Author: Matej Kollar <mkollar(a)redhat.com>
Date: Thu Nov 28 18:15:59 2013 +0100
HTML 5 does allow "_new" as a valid target
replaced with "_blank"
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml
index 92af70f..4bea1a3 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_bn_IN.xml
@@ -889,18 +889,18 @@
<target>Linux àŠžàŠ¿àŠžà§àŠà§àŠ® àŠªàŠ°àŠ¿àŠàŠŸàŠ²àŠšàŠŸàŠ° àŠàŠšà§àН <strong>@@PRODUCT_NAME@@</strong> àŠàŠàŠàŠ¿ àŠ
àŠà§àаàŠàŠ£à§àН àŠàŠªà§àŠš àŠžà§àаà§àŠž (GPLv2) àŠªàŠ°àŠ¿àŠžà§àŠ¬àŠŸà¥€ àŠàŠªàŠšàŠŸàŠ° @@PRODUCT_NAME@@ àŠžàŠŸàŠ°à§àŠàŠŸàŠ° àŠžàŠàŠà§àŠ°àŠŸàŠšà§àŠ€ àŠ
àŠšà§àŠ¯àŠŸàŠšà§àН àŠàŠ¿àŠà§àŠàŠŸàŠžàŠŸ àŠ¥àŠŸàŠàŠ²à§ àŠàŠªàŠšàŠ¿ àŠšà§àŠà§ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠ²àŠ¿àŠà§àŠàŠà§àŠ²àŠ¿àŠ° àŠžàŠŸàŠ¹àŠŸàŠ¯à§àН àŠšàŠ¿àŠ€à§ àŠªàŠŸàŠ°à§àŠšà¥€</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ àŠžàŠ®à§àŠªàŠ°à§àŠà§ àŠ
àŠ§àŠ¿àŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>-àŠ àŠàŠªàŠžà§àŠ¥àŠ¿àŠ€ àŠàŠ®àŠŸàŠŠà§àа àŠà§à§àЬ-àŠžàŠŸàŠàŠ àŠŠà§àŠà§àŠšà¥€</target>
+ <target>@@PRODUCT_NAME@@ àŠžàŠ®à§àŠªàŠ°à§àŠà§ àŠ
àŠ§àŠ¿àŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>-àŠ àŠàŠªàŠžà§àŠ¥àŠ¿àŠ€ àŠàŠ®àŠŸàŠŠà§àа àŠà§à§àЬ-àŠžàŠŸàŠàŠ àŠŠà§àŠà§àŠšà¥€</target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ àŠžàŠ®à§àŠªà§àŠ°àŠŠàŠŸà§à§àа àŠžàŠŸàŠ¥à§ àŠ€àŠ¥à§àН àŠ¬àŠ¿àŠšàŠ¿àŠ®à§à§àа àŠàŠšà§àН àŠ
àŠšà§àŠà§àŠ°àŠ¹ àŠàŠ°à§ <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>-àŠ àŠàвà§àŠšà¥€ </target>
+ <target>@@PRODUCT_NAME@@ àŠžàŠ®à§àŠªà§àŠ°àŠŠàŠŸà§à§àа àŠžàŠŸàŠ¥à§ àŠ€àŠ¥à§àН àŠ¬àŠ¿àŠšàŠ¿àŠ®à§à§àа àŠàŠšà§àН àŠ
àŠšà§àŠà§àŠ°àŠ¹ àŠàŠ°à§ <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>-àŠ àŠàвà§àŠšà¥€ </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -9341,11 +9341,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àŠàŠªàŠšàŠ¿ àŠàŠ¿ àŠšàŠ¿àŠ¶à§àŠàŠ¿àŠ€àŠ°à§àŠªà§ àŠàŠ¿àŠ¹à§àŠšàŠ¿àŠ€ Kickstart àŠ®à§àŠà§ àŠ«à§àŠ²àŠ€à§ àŠàŠà§àŠà§àŠ?<strong><p>àŠžàŠ€àŠ°à§àŠàŠ¬àŠŸàŠ£à§: àŠàŠ kickstart àŠ®à§àŠà§ àŠ«à§àŠ²àŠŸ àŠ¹àŠ²à§ àŠžàŠàНà§àŠà§àŠ€ àŠžàŠ¿àŠžà§àŠà§àŠ® àŠ àŠžàŠàжà§àŠ²àŠ¿àŠ·à§àŠ àŠ¬àŠ¿àŠàвà§àŠª àŠ®à§àŠà§ àŠ¯àŠŸàŠ¬à§à¥€</p></strong><p><strong>àŠ
àŠšà§àŠà§àŠ°àŠ¹ àŠàŠ°à§ àŠ¬àŠŸàŠàŠšà§àа àŠàŠªàŠ° àŠ¶à§àЧà§àŠ®àŠŸàŠ€à§àа àŠàŠàŠ¬àŠŸàŠ° àŠàŠ¿àŠªà§àŠš; àŠ
àŠªàŠžàŠŸàŠ°àŠ£ àŠàаà§àŠ®à§ àŠžàŠ®à§àŠªàŠšà§àŠš àŠàŠ°àŠ€à§ àŠàŠ¿àŠà§ àŠžàŠ®à§ àŠ¬à§àŠ¯à§ àŠ¹àŠ¬à§à¥€</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠªà§àаà§àŠ«àŠŸàŠàв àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àНàŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àа àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠšàŠ¿àŠ°à§àŠ®àŠ¿àŠ€ àŠ
àŠ¥àŠ¬àŠŸ àŠ¬à§à§àŠŸàŠ°-àŠ®à§àŠàŠŸàŠ² kickstart àŠ«àŠŸàŠàвà§àа àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠžàŠ®à§àŠàŠ¬à¥€ <a href="{0}" target="_new" > <strong> àŠàŠ àŠ²àŠ¿àŠà§àŠà§àа </strong> </a> URL-àŠàŠ¿ kickstart àŠ«àŠŸàŠàвà§àа <code>ks=&lt;URL&gt;</code> àŠ¬àŠ¿àŠàŠŸàŠà§ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠ¹àŠ²à§ àŠàŠªàŠšàŠŸàŠ° àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠà§àŠš àŠªà§àаà§àŠ«àŠŸàŠàвàŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹à§àŠ€ àŠ¹àŠ¬à§ àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠ§àŠŸàŠ°àŠ£ àŠàаà§àŠšà¥€ àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠšàŠŸ àŠ¹àŠ²à§ àŠàŠ àŠ²àŠ¿àŠà§àŠàŠàŠ¿ àŠàŠŸàŠ°à§àНàŠàа àŠ¹àŠ¬à§ àŠšàŠŸà¥€</span></target>
+ <target><span class="small-text"> àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠªà§àаà§àŠ«àŠŸàŠàв àŠ¬à§àŠ¶àŠ¿àŠ·à§àŠà§àНàŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ°àŠàŠŸàŠ°à§àа àŠŠà§àŠ¬àŠŸàŠ°àŠŸ àŠšàŠ¿àŠ°à§àŠ®àŠ¿àŠ€ àŠ
àŠ¥àŠ¬àŠŸ àŠ¬à§à§àŠŸàŠ°-àŠ®à§àŠàŠŸàŠ² kickstart àŠ«àŠŸàŠàвà§àа àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàŠ°àŠŸ àŠžàŠ®à§àŠàŠ¬à¥€ <a href="{0}" target="_blank" > <strong> àŠàŠ àŠ²àŠ¿àŠà§àŠà§àа </strong> </a> URL-àŠàŠ¿ kickstart àŠ«àŠŸàŠàвà§àа <code>ks=&lt;URL&gt;</code> àŠ¬àŠ¿àŠàŠŸàŠà§ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠ¹àŠ²à§ àŠàŠªàŠšàŠŸàŠ° àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠà§àŠš àŠªà§àаà§àŠ«àŠŸàŠàвàŠàŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹à§àŠ€ àŠ¹àŠ¬à§ àŠ€àŠŸ àŠšàŠ¿àŠ°à§àŠ§àŠŸàŠ°àŠ£ àŠàаà§àŠšà¥€ àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠ¡àŠ¿àŠ«àŠ²à§àŠ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠšàŠŸ àŠ¹àŠ²à§ àŠàŠ àŠ²àŠ¿àŠà§àŠàŠàŠ¿ àŠàŠŸàŠ°à§àНàŠàа àŠ¹àŠ¬à§ àŠšàŠŸà¥€</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -9977,11 +9977,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àŠà§àŠšà§ àŠžàŠŸàŠ°à§àЬàŠàŠšà§àŠš-àŠàŠ¿ àŠ
àŠ¥àŠ¬àŠŸ ssl certs àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠšà§à¥€</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>àŠàŠªàŠšàŠ¿ àŠàŠ àŠžàŠ®àŠžà§àŠ€ àŠàŠ¿ àŠàЬàŠ/àŠ
àŠ¥àŠ¬àŠŸ àŠžàŠŸàŠ°à§àŠàŠ¿àŠ«àŠ¿àŠà§àŠàŠà§àŠ²àŠ¿ àŠàŠªàŠšàŠŸàŠ° kickstart àŠªà§àаà§àŠ«àŠŸàŠàвà§àа àŠ®àŠ§à§àŠ¯à§ àŠàвà§àвà§àŠ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠš àŠ¯àŠŸàŠ° àŠ«àŠ²à§ kickstart-àŠ° àŠžàŠ®à§ àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠ®àŠ§à§àŠ¯à§ àŠàŠ àŠžàŠ®àŠžà§àŠ€ àŠàŠ¿/àŠžàŠŸàŠ°à§àŠàŠ¿àŠ«àŠ¿àŠà§àŠ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸ àŠ¹àŠ¬à§à¥€ àŠžàŠ¿àŠžà§àŠà§àŠ®à§ àŠžà§àŠ¬àŠŸàŠà§àŠ·àŠ°àŠ¿àŠ€ àŠªà§àŠ¯àŠŸàŠà§àŠ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠžàŠ àŠ¿àŠ àŠàŠ¿ àŠàŠªàŠžà§àŠ¥àŠ¿àŠ€ àŠ¥àŠŸàŠàŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ @@PRODUCT_NAME@@ Proxy Server àŠ
àŠ¥àŠ¬àŠŸ @@PRODUCT_NAME@@ àŠžàŠŸàŠ°à§àŠàŠŸàŠ°-àŠ° àŠžàŠŸàŠ¹àŠŸàŠ¯à§àŠ¯à§ àŠžàŠ¿àŠžà§àŠà§àŠ® kickstart àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠžàŠ àŠ¿àŠ àŠžàŠŸàŠ°à§àŠàŠ¿àŠ«àŠ¿àŠà§àŠ àŠ¥àŠŸàŠàŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ àŠ
àŠ§àŠ¿àŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН <a href="/rhn/help/reference/en-US/s1-sm-sys
tems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a> àŠªà§à§àŠšà¥€</target>
+ <target>àŠàŠªàŠšàŠ¿ àŠàŠ àŠžàŠ®àŠžà§àŠ€ àŠàŠ¿ àŠàЬàŠ/àŠ
àŠ¥àŠ¬àŠŸ àŠžàŠŸàŠ°à§àŠàŠ¿àŠ«àŠ¿àŠà§àŠàŠà§àŠ²àŠ¿ àŠàŠªàŠšàŠŸàŠ° kickstart àŠªà§àаà§àŠ«àŠŸàŠàвà§àа àŠ®àŠ§à§àŠ¯à§ àŠàвà§àвà§àŠ àŠàŠ°àŠ€à§ àŠªàŠŸàŠ°à§àŠš àŠ¯àŠŸàŠ° àŠ«àŠ²à§ kickstart-àŠ° àŠžàŠ®à§ àŠžàŠ¿àŠžà§àŠà§àŠ®à§àа àŠ®àŠ§à§àŠ¯à§ àŠàŠ àŠžàŠ®àŠžà§àŠ€ àŠàŠ¿/àŠžàŠŸàŠ°à§àŠàŠ¿àŠ«àŠ¿àŠà§àŠ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸ àŠ¹àŠ¬à§à¥€ àŠžàŠ¿àŠžà§àŠà§àŠ®à§ àŠžà§àŠ¬àŠŸàŠà§àŠ·àŠ°àŠ¿àŠ€ àŠªà§àŠ¯àŠŸàŠà§àŠ àŠàŠšàŠžà§àŠàв àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠžàŠ àŠ¿àŠ àŠàŠ¿ àŠàŠªàŠžà§àŠ¥àŠ¿àŠ€ àŠ¥àŠŸàŠàŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ @@PRODUCT_NAME@@ Proxy Server àŠ
àŠ¥àŠ¬àŠŸ @@PRODUCT_NAME@@ àŠžàŠŸàŠ°à§àŠàŠŸàŠ°-àŠ° àŠžàŠŸàŠ¹àŠŸàŠ¯à§àŠ¯à§ àŠžàŠ¿àŠžà§àŠà§àŠ® kickstart àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠžàŠ àŠ¿àŠ àŠžàŠŸàŠ°à§àŠàŠ¿àŠ«àŠ¿àŠà§àŠ àŠ¥àŠŸàŠàŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ àŠ
àŠ§àŠ¿àŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН <a href="/rhn/help/reference/en-US/s1-sm-sys
tems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a> àŠªà§à§àŠšà¥€</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -10131,11 +10131,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>àŠà§àŠšà§ kickstart àŠàаà§àŠ® àŠžàŠ®àŠŸàŠªàŠšà§àа àŠªàŠ°à§ àŠªà§àŠšàŠ°àŠŸà§ àŠžà§àŠ¥àŠŸàŠªàŠšà§àа àŠàŠŠà§àŠŠà§àжà§àŠ¯à§ àŠàŠ¿àŠ¹à§àŠšàŠ¿àŠ€ àŠ«àŠŸàŠàвàŠà§àŠ²àŠ¿àŠ° àŠšàŠŸàŠ® àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸà§ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠ¹à§à¥€ Kickstart àŠªà§àаà§àŠ«àŠŸàŠàвà§àа àŠ®àŠ§à§àŠ¯à§ àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸ àŠàвà§àвà§àŠ àŠàŠ°àŠŸ àŠ¯àŠŸàŠ¬à§à¥€ àŠàŠ àŠ¬àŠ¿àŠ·à§à§ àŠ
àŠ§àŠ¿àŠ àŠàŠŸàŠšàŠ€à§ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN àŠ°à§àŠ«àŠŸàŠ°à§àŠšà§àŠž àŠàŠŸàŠàŠ¡</a> àŠªà§à§àŠšà¥€ àŠàŠªàŠšàŠŸàŠ° àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠàŠšà§àН àŠšàŠ¿àŠ®à§àŠšàŠ²àŠ¿àŠàŠ¿àŠ€ àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸ àŠšàŠ¿àŠ°à§àŠ®àŠ¿àŠ€ àŠ¹à§à§àŠà§ :</target>
+ <target>àŠà§àŠšà§ kickstart àŠàаà§àŠ® àŠžàŠ®àŠŸàŠªàŠšà§àа àŠªàŠ°à§ àŠªà§àŠšàŠ°àŠŸà§ àŠžà§àŠ¥àŠŸàŠªàŠšà§àа àŠàŠŠà§àŠŠà§àжà§àŠ¯à§ àŠàŠ¿àŠ¹à§àŠšàŠ¿àŠ€ àŠ«àŠŸàŠàвàŠà§àŠ²àŠ¿àŠ° àŠšàŠŸàŠ® àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸà§ àŠàвà§àŠ²àŠ¿àŠàŠ¿àŠ€ àŠ¹à§à¥€ Kickstart àŠªà§àаà§àŠ«àŠŸàŠàвà§àа àŠ®àŠ§à§àŠ¯à§ àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸ àŠàвà§àвà§àŠ àŠàŠ°àŠŸ àŠ¯àŠŸàŠ¬à§à¥€ àŠàŠ àŠ¬àŠ¿àŠ·à§à§ àŠ
àŠ§àŠ¿àŠ àŠàŠŸàŠšàŠ€à§ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN àŠ°à§àŠ«àŠŸàŠ°à§àŠšà§àŠž àŠàŠŸàŠàŠ¡</a> àŠªà§à§àŠšà¥€ àŠàŠªàŠšàŠŸàŠ° àŠªà§àŠ°àŠ€àŠ¿àŠ·à§àŠ àŠŸàŠšà§àа àŠàŠšà§àН àŠšàŠ¿àŠ®à§àŠšàŠ²àŠ¿àŠàŠ¿àŠ€ àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸ àŠšàŠ¿àŠ°à§àŠ®àŠ¿àŠ€ àŠ¹à§à§àŠà§ :</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -10257,11 +10257,11 @@ Please note that some manual configuration of these scripts may still be require
<target>Kickstart-àŠ° àŠ«àŠŸàŠàв àŠžàŠàаàŠà§àŠ·àŠ£à§àа àŠ€àŠŸàŠ²àŠ¿àŠàŠŸ àŠšàŠ¿àŠ°à§àŠ®àŠŸàŠ£ àŠàаà§àŠš</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>àŠàŠ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸà§ àŠàŠªàŠžà§àŠ¥àŠ¿àŠ€ àŠžàŠ®àŠžà§àŠ€ àŠ«àŠŸàŠàв àŠ àŠ¡àŠ¿àŠ°à§àŠà§àŠàŠ°àŠ¿ kickstart àŠžàŠ®àŠŸàŠªàŠšà§àа àŠªàŠ°à§ àŠ
àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€àŠ¿àŠ€ àŠ°àŠŸàŠàŠŸ àŠ¹àŠ¬à§à¥€ àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠ«àŠŸàŠàв àŠ
àŠ¥àŠ¬àŠŸ àŠ¡àŠ¿àŠ°à§àŠà§àŠàŠ°àŠ¿ àŠàвà§àвà§àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠªà§àŠ¥àŠ àŠªàŠàŠà§àŠ€àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠšà¥€<br/>àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠ° àŠžàŠ°à§àЬà§àŠà§àŠ àŠ®àŠŸàŠª <strong>à§§ àŠ®à§àŠàŠŸàŠ¬àŠŸàŠàŠ</strong>-àŠ° àŠ®àŠ§à§àŠ¯à§ àŠžà§àŠ®àŠ¿àŠ€ àŠ°àŠŸàŠàŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ àŠ
àŠ§àŠ¿àŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN àŠ°à§àŠ«àŠŸàŠ°à§àŠšà§àŠž àŠàŠŸàŠàŠ¡</a> àŠªà§à§àŠšà¥€</target>
+ <target>àŠàŠ àŠ€àŠŸàŠ²àŠ¿àŠàŠŸà§ àŠàŠªàŠžà§àŠ¥àŠ¿àŠ€ àŠžàŠ®àŠžà§àŠ€ àŠ«àŠŸàŠàв àŠ àŠ¡àŠ¿àŠ°à§àŠà§àŠàŠ°àŠ¿ kickstart àŠžàŠ®àŠŸàŠªàŠšà§àа àŠªàŠ°à§ àŠ
àŠªàŠ°àŠ¿àŠ¬àŠ°à§àŠ€àŠ¿àŠ€ àŠ°àŠŸàŠàŠŸ àŠ¹àŠ¬à§à¥€ àŠªà§àŠ°àŠ€àŠ¿àŠàŠ¿ àŠ«àŠŸàŠàв àŠ
àŠ¥àŠ¬àŠŸ àŠ¡àŠ¿àŠ°à§àŠà§àŠàŠ°àŠ¿ àŠàвà§àвà§àŠ àŠàŠ°àŠŸàŠ° àŠàŠšà§àН àŠªà§àŠ¥àŠ àŠªàŠàŠà§àŠ€àŠ¿ àŠ¬à§àŠ¯àŠ¬àŠ¹àŠŸàŠ° àŠàаà§àŠšà¥€<br/>àŠ€àŠŸàŠ²àŠ¿àŠàŠŸàŠ° àŠžàŠ°à§àЬà§àŠà§àŠ àŠ®àŠŸàŠª <strong>à§§ àŠ®à§àŠàŠŸàŠ¬àŠŸàŠàŠ</strong>-àŠ° àŠ®àŠ§à§àŠ¯à§ àŠžà§àŠ®àŠ¿àŠ€ àŠ°àŠŸàŠàŠŸ àŠàŠ¬àŠ¶à§àНàŠà¥€ àŠ
àŠ§àŠ¿àŠ àŠ¬àŠ¿àŠ¬àŠ°àŠ£à§àа àŠàŠšà§àН <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN àŠ°à§àŠ«àŠŸàŠ°à§àŠšà§àŠž àŠàŠŸàŠàŠ¡</a> àŠªà§à§àŠšà¥€</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml
index 24f63e3..81b5b6b 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_de.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> ist eine Open Source (GPLv2) Lösung zur Verwaltung von Linux Systemen. Unten finden Sie einige Links, die sich als nÌtzlich erweisen sollten, wenn Sie Fragen hinsichtlich Ihres @@PRODUCT_NAME@@ Servers haben.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>FÃŒr Einzelheiten ÃŒber @@PRODUCT_NAME@@ besuchen Sie bitte unsere Website unter <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>FÃŒr Einzelheiten ÃŒber @@PRODUCT_NAME@@ besuchen Sie bitte unsere Website unter <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>FÃŒr Einzelheiten ÃŒber die Kommunikation mit der @@PRODUCT_NAME@@ Community besuchen Sie bitte uns bitte unter <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </target>
+ <target>FÃŒr Einzelheiten ÃŒber die Kommunikation mit der @@PRODUCT_NAME@@ Community besuchen Sie bitte uns bitte unter <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10235,11 +10235,11 @@ Bitte beachten Sie, dass möglicherweise noch einige manuelle Konfigurationen di
<target>Sind Sie sich sicher, dass Sie diesen Kickstart löschen möchten?<strong><p>WARNUNG: Das Löschen dieses Kickstarts fÌhrt zur Entfernung seiner angeschlossenen Systeme und dazugehörenden Optionen.</p></strong><p><strong>Bitte klicken Sie nur ein Mal auf die SchaltflÀche. Der Löschvorgang dauert einen Moment.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text">Die Standardeinstellung des Profils der Organisation kann mit manuell erstellten oder bare-metal Kickstart-Dateien verwendet werden. WÀhlen Sie diese Option, um darauf hinzuweisen, welches Profil in Ihrer Organisation verwendet wird, wenn die URL des folgenden <a href="{0}" target="_new" > <strong> Links </strong> </a> im <code>ks=&lt;URL&gt;</code>-Bereich Ihrer Kickstart-Datei angegeben wird. Dieser Link funktioniert erst, nachdem ein Organisationsstandard angegeben wurde.</span></target>
+ <target><span class="small-text">Die Standardeinstellung des Profils der Organisation kann mit manuell erstellten oder bare-metal Kickstart-Dateien verwendet werden. WÀhlen Sie diese Option, um darauf hinzuweisen, welches Profil in Ihrer Organisation verwendet wird, wenn die URL des folgenden <a href="{0}" target="_blank" > <strong> Links </strong> </a> im <code>ks=&lt;URL&gt;</code>-Bereich Ihrer Kickstart-Datei angegeben wird. Dieser Link funktioniert erst, nachdem ein Organisationsstandard angegeben wurde.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10976,11 +10976,11 @@ Bitte beachten Sie, dass möglicherweise noch einige manuelle Konfigurationen di
<target>Keine öffentlichen SchlÌssel oder SSL-Zertifikate definiert.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>Sie können auf diese SchlÌssel und/oder Zertifikate in Ihrem Kickstart-Profil zurÌckgreifen, um diese SchlÌssel und/oder Zertifikate wÀhrend eines Kickstarts auf Systemen zu installieren. Ein System benötigt die richtigen SchlÌssel, um die unterzeichneten Pakete zu installieren, sowie ein richtiges Zertifikat, um durch einen @@PRODUCT_NAME@@-Proxy-Server oder @@PRODUCT_NAME@@-Server gekickstartet zu werden. Weitere Informationen finden Sie im <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Referenzhandbuch</a>.</target>
+ <target>Sie können auf diese SchlÌssel und/oder Zertifikate in Ihrem Kickstart-Profil zurÌckgreifen, um diese SchlÌssel und/oder Zertifikate wÀhrend eines Kickstarts auf Systemen zu installieren. Ein System benötigt die richtigen SchlÌssel, um die unterzeichneten Pakete zu installieren, sowie ein richtiges Zertifikat, um durch einen @@PRODUCT_NAME@@-Proxy-Server oder @@PRODUCT_NAME@@-Server gekickstartet zu werden. Weitere Informationen finden Sie im <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Referenzhandbuch</a>.</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11137,11 +11137,11 @@ Bitte beachten Sie, dass möglicherweise noch einige manuelle Konfigurationen di
<target>Dateierhaltung</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>Listen zur Dateierhaltung sind Auflistungen von Dateien, die wÀhrend eines bestimmten Kickstarts auf einem System wiederhergestellt werden. Sie können in einem Kickstart-Profil Listen zur Dateierhaltung referenzieren. Weitere Informationen finden Sie im <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Referenzhandbuch</a>. Die folgenden Listen zur Dateierhaltung wurden fÌr Ihre Organisation erstellt:</target>
+ <target>Listen zur Dateierhaltung sind Auflistungen von Dateien, die wÀhrend eines bestimmten Kickstarts auf einem System wiederhergestellt werden. Sie können in einem Kickstart-Profil Listen zur Dateierhaltung referenzieren. Weitere Informationen finden Sie im <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Referenzhandbuch</a>. Die folgenden Listen zur Dateierhaltung wurden fÌr Ihre Organisation erstellt:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11263,11 +11263,11 @@ Bitte beachten Sie, dass möglicherweise noch einige manuelle Konfigurationen di
<target>Kickstart-Dateierhaltungsliste erstellen</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>Alle hier aufgelisteten Dateien oder Verzeichnisse bleiben nach dem Kickstart erhalten. Listen Sie eine Datei oder ein Verzeichnis pro Zeile auf.<br/>Jede Liste ist auf eine GesamtgröÃe von <strong>1 MB</strong> beschrÀnkt. Weitere Informationen finden Sie im <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Referenzhandbuch</a>.</target>
+ <target>Alle hier aufgelisteten Dateien oder Verzeichnisse bleiben nach dem Kickstart erhalten. Listen Sie eine Datei oder ein Verzeichnis pro Zeile auf.<br/>Jede Liste ist auf eine GesamtgröÃe von <strong>1 MB</strong> beschrÀnkt. Weitere Informationen finden Sie im <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Referenzhandbuch</a>.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml
index 722e48f..89d6ce6 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_en_US.xml
@@ -814,13 +814,13 @@
</context-group>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
@@ -8764,7 +8764,7 @@ Please note that some manual configuration of these scripts may still be require
</context-group>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
@@ -9431,7 +9431,7 @@ Please note that some manual configuration of these scripts may still be require
</context-group>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
@@ -9569,7 +9569,7 @@ Please note that some manual configuration of these scripts may still be require
</context-group>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
@@ -9689,7 +9689,7 @@ Please note that some manual configuration of these scripts may still be require
</context-group>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml
index 0eab9da..3ba20ee 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_es.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> es una solución de código abierto de administración de sistemas de Linux (GPLv2). A continuación encontrará algunos enlaces que le serán útiles en caso de que tenga algunas preguntas sobre el servidor de @@PRODUCT_NAME@@.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Para obtener información sobre @@PRODUCT_NAME@@, por favor visite nuestro sitio web en <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>Para obtener información sobre @@PRODUCT_NAME@@, por favor visite nuestro sitio web en <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Para mayor información sobre cómo interactuar con la comunidad de @@PRODUCT_NAME@@, por favor visÃtenos en <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </target>
+ <target>Para mayor información sobre cómo interactuar con la comunidad de @@PRODUCT_NAME@@, por favor visÃtenos en <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10233,11 +10233,11 @@ Por favor tenga en cuenta que podrÃa ser necesario configurar manualmente estos
<target>¿Está seguro que desea borrar este kickstart? <strong><p>ADVERTENCIA: al borrar este kickstart se borrarán los sistemas asociados y las opciones correspondientes</p></strong><p><strong>Por favor haga clic en el botón una sola vez para completar el proceso de borrado</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> El Perfil predeterminado de organización se puede usar con archivos kickstart manualmente creados o vacÃos. Seleccione esta opción para indicar el perfil utilizado en su organización para especificar la URL desde <a href="{0}" target="_new" > <strong> este enlace </strong> </a> en la sección <code>ks=&lt;URL&gt;</code> de su archivo kickstart. El enlace no funcionará a no ser que se haya especificado el Perfil predeterminado de la organización.</span></target>
+ <target><span class="small-text"> El Perfil predeterminado de organización se puede usar con archivos kickstart manualmente creados o vacÃos. Seleccione esta opción para indicar el perfil utilizado en su organización para especificar la URL desde <a href="{0}" target="_blank" > <strong> este enlace </strong> </a> en la sección <code>ks=&lt;URL&gt;</code> de su archivo kickstart. El enlace no funcionará a no ser que se haya especificado el Perfil predeterminado de la organización.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10974,11 +10974,11 @@ Por favor tenga en cuenta que podrÃa ser necesario configurar manualmente estos
<target>No hay llaves públicas o certificados SSL definidos.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>Puede hacer referencia a estas llaves y/o certificados en su perfiles Kickstart para que sean instalados en los sistemas durante el inicio de instalación a través de Kickstart. El sistema necesitará las llaves para instalar paquetes firmados y el certificado correctos para ser iniciados a través de una instalación Kickstart por un servidor proxy de @@PRODUCT_NAME@@ o un servidor de @@PRODUCT_NAME@@. Para mayor información, consulte la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >GuÃa de referencia de RHN</a></target>
+ <target>Puede hacer referencia a estas llaves y/o certificados en su perfiles Kickstart para que sean instalados en los sistemas durante el inicio de instalación a través de Kickstart. El sistema necesitará las llaves para instalar paquetes firmados y el certificado correctos para ser iniciados a través de una instalación Kickstart por un servidor proxy de @@PRODUCT_NAME@@ o un servidor de @@PRODUCT_NAME@@. Para mayor información, consulte la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >GuÃa de referencia de RHN</a></target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11135,11 +11135,11 @@ Por favor tenga en cuenta que podrÃa ser necesario configurar manualmente estos
<target>Preservación de archivos</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>Las listas de preservación de archivos son las listas de los archivos que serán restaurados en el sistema durante un determinado inicio de instalación mediante Kickstart. Usted puede hacer referencia a una lista de archivos de preservación en el perfil Kickstart. Para mayor información consulte la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >GuÃa de referencia de RHN</a>. Las siguientes listas de preservación de archivos han sido creadas para ser usadas por su organización:</target>
+ <target>Las listas de preservación de archivos son las listas de los archivos que serán restaurados en el sistema durante un determinado inicio de instalación mediante Kickstart. Usted puede hacer referencia a una lista de archivos de preservación en el perfil Kickstart. Para mayor información consulte la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >GuÃa de referencia de RHN</a>. Las siguientes listas de preservación de archivos han sido creadas para ser usadas por su organización:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11261,11 +11261,11 @@ Por favor tenga en cuenta que podrÃa ser necesario configurar manualmente estos
<target>Crear lista de preservación de archivos Kickstart</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>Cualquier archivo o directorio listado aquà será preservado tras el inicio a través de Kickstart. Liste un archivo o directorio por lÃnea. <br/>Cada lista está limitada a un tamaño total de <strong>1 MB</strong>. Para mayor información, consulte la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >GuÃa de referencia de RHN</a>.</target>
+ <target>Cualquier archivo o directorio listado aquà será preservado tras el inicio a través de Kickstart. Liste un archivo o directorio por lÃnea. <br/>Cada lista está limitada a un tamaño total de <strong>1 MB</strong>. Para mayor información, consulte la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >GuÃa de referencia de RHN</a>.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml
index ff5bb22..a7b32bd 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_fr.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> est une solution de gestion de systÚmes Linux de logiciel libre (GPLv2). Ci-dessous figurent des liens utiles toute question concernant @@PRODUCT_NAME@@.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Pour obtenir plus de détails sur @@PRODUCT_NAME@@, rendez-vous sur notre site web à l'adresse suivante : <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>Pour obtenir plus de détails sur @@PRODUCT_NAME@@, rendez-vous sur notre site web à l'adresse suivante : <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Pour plus de détails sur l'interaction avec la communauté @@PRODUCT_NAME@@, rendez-vous sur <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </target>
+ <target>Pour plus de détails sur l'interaction avec la communauté @@PRODUCT_NAME@@, rendez-vous sur <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10234,11 +10234,11 @@ Veuillez noter qu'une configuration manuelle de ces scripts peut toujours être
<target>Souhaitez-vous supprimer ce kickstart ?<strong><p>AVERTISSEMENT : Supprimer ce kickstart supprimera son systÚme associé et ses options correspondantes.</p></strong><p><strong>Cliquez sur le bouton seulement une fois ; le processus de suppression prendra quelques instants.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> Le paramÚtre Profil d'organisation par défaut peut être utilisé pour avec des fichiers créés manuellement ou kickstart bare-metal. Sélectionnez cette option pour spécifier quel profil dans votre organisation est utilisé lorsque l'URL de <a href="{0}" target="_new" > <strong> ce lien </strong> </a> est spécifié dans la section <code>ks=&lt;URL&gt;</code> de votre fichier kickstart. Le lien ne fonctionnera pas sans qu'une valeur par défaut pour l'organisation ne soit spécifiée.</span></target>
+ <target><span class="small-text"> Le paramÚtre Profil d'organisation par défaut peut être utilisé pour avec des fichiers créés manuellement ou kickstart bare-metal. Sélectionnez cette option pour spécifier quel profil dans votre organisation est utilisé lorsque l'URL de <a href="{0}" target="_blank" > <strong> ce lien </strong> </a> est spécifié dans la section <code>ks=&lt;URL&gt;</code> de votre fichier kickstart. Le lien ne fonctionnera pas sans qu'une valeur par défaut pour l'organisation ne soit spécifiée.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10975,11 +10975,11 @@ Veuillez noter qu'une configuration manuelle de ces scripts peut toujours être
<target>Aucune clé publique ou certificat ssl définis.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>Vous pouvez faire référence à ces clés et/ou certificats dans vos profils kickstart afin de les installer sur des systÚmes durant une installation kickstart. Un systÚme aura besoin des clés correctes pour installer des paquetages signés et certificats corrects afin de pouvoir être lancé avec kickstart par un serveur Proxy @@PRODUCT_NAME@@ ou un serveur @@PRODUCT_NAME@@. Pour davantage d'informations, consultez le <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >Guide de référence de RHN</a></target>
+ <target>Vous pouvez faire référence à ces clés et/ou certificats dans vos profils kickstart afin de les installer sur des systÚmes durant une installation kickstart. Un systÚme aura besoin des clés correctes pour installer des paquetages signés et certificats corrects afin de pouvoir être lancé avec kickstart par un serveur Proxy @@PRODUCT_NAME@@ ou un serveur @@PRODUCT_NAME@@. Pour davantage d'informations, consultez le <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >Guide de référence de RHN</a></target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11136,11 +11136,11 @@ Veuillez noter qu'une configuration manuelle de ces scripts peut toujours être
<target>Conservation de fichiers</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>Les listes de conservation de fichiers sont des listes de fichiers qui seront restaurées sur un systÚme lors d'un kickstart particulier. Vous pouvez faire référence à une liste de conservation de fichiers dans un profil kickstart. Pour davantage d'informations, consultez le <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >Guide de référence de RHN</a>. Les listes de conservation de fichier suivantes ont été créées pour votre organisation :</target>
+ <target>Les listes de conservation de fichiers sont des listes de fichiers qui seront restaurées sur un systÚme lors d'un kickstart particulier. Vous pouvez faire référence à une liste de conservation de fichiers dans un profil kickstart. Pour davantage d'informations, consultez le <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >Guide de référence de RHN</a>. Les listes de conservation de fichier suivantes ont été créées pour votre organisation :</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11262,11 +11262,11 @@ Veuillez noter qu'une configuration manuelle de ces scripts peut toujours être
<target>Créer une liste de conservation de fichiers kickstart</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>Tout fichier ou répertoire listé ici sera conservé aprÚs le kickstart. Listez les fichiers ou répertoires un par ligne.<br/>Chaque liste est limitée à une taille totale de <strong>1 Mo</strong>. Pour davantage d'informations, consultez le <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >Guide de référence de RHN</a>.</target>
+ <target>Tout fichier ou répertoire listé ici sera conservé aprÚs le kickstart. Listez les fichiers ou répertoires un par ligne.<br/>Chaque liste est limitée à une taille totale de <strong>1 Mo</strong>. Pour davantage d'informations, consultez le <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >Guide de référence de RHN</a>.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml
index 0fafdd7..2b94d70 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_gu.xml
@@ -889,18 +889,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> ઠLinux ઞિઞà«àªàª®à« વà«àª¯àªµàªžà«àª¥àªŸàªªàªš àªàªà«àª² મટàªà« àªàªªàªš ઞà«àª€à«àª°à«àª€ (GPLv2) àªà«. ચà«àªà« àª
મà«àª àªàª¡à«àª àªà« àªà« àªà« àªàªªàª¯à«àªà« ઞટબિ઀ થવૠàªà«àªàª àªà« ઀મચૠ઀મટરટ @@PRODUCT_NAME@@ ઞરà«àªµàª° ઞàªàª¬àªàª§àª¿àª€ àªà«àª પà«àª°àª¶à«àªšà« હà«àª¯. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ પર વિàªàª€à« મટàªà«, મહà«àª°àª¬àªŸàªšà« àªàª°à«àªšà« <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a> àªàªàª³àªšà« àª
મટરૠવà«àª¬ ઞટàªàªàªšà« મà«àª²àªŸàªàªŸàª€ લà«. </target>
+ <target>@@PRODUCT_NAME@@ પર વિàªàª€à« મટàªà«, મહà«àª°àª¬àªŸàªšà« àªàª°à«àªšà« <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a> àªàªàª³àªšà« àª
મટરૠવà«àª¬ ઞટàªàªàªšà« મà«àª²àªŸàªàªŸàª€ લà«. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ ઞમà«àªŠàªŸàª¯ ઞટથૠઞàªàªªàª°à«àª àªàª°àªµàªŸ વધટરૠવિàªàª€à« મટàªà«. મહà«àª°àª¬àªŸàªšà« àªàª°à«àªšà« <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a> પર àª
મટરૠમà«àª²àªŸàªàªŸàª€ લà«. </target>
+ <target>@@PRODUCT_NAME@@ ઞમà«àªŠàªŸàª¯ ઞટથૠઞàªàªªàª°à«àª àªàª°àªµàªŸ વધટરૠવિàªàª€à« મટàªà«. મહà«àª°àª¬àªŸàªšà« àªàª°à«àªšà« <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a> પર àª
મટરૠમà«àª²àªŸàªàªŸàª€ લà«. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -9342,11 +9342,11 @@ Please note that some manual configuration of these scripts may still be require
<target>શà«àª ઀મૠàªàª°à«àªàª° ઠàªàª¿àªàªžà«àªàªŸàª°à«àª àªàªŸàª¢à« ચટàªàªàªµàªŸ મટàªàªà« àªà«?<strong><p>àªà«àª€àªµàª£à«: ઠàªàª¿àªàªžà«àªàªŸàª°à«àª àªàªŸàª¢à« ચટàªàªàªµàªŸàªšà«àª ઀à«àªšà« ઞàªàªàª³àªŸàª¯à«àª² ઞિઞà«àªàª® àª
ચૠલટàªàª€àªŸàªµàª³àªàª€àªŸ વિàªàª²à«àªªà« àªàªŸàª¢à« ચટàªàªàª¶à«.</p></strong><p><strong>મહà«àª°àª¬àªŸàªšà« àªàª°à«àªšà« બàªàªš પર મટ઀à«àª° àªàª ઠવટર àªà«àª²àª¿àª àªàª°à«; àªàªŸàª¢à« ચટàªàªàªµàªŸàªšà« પà«àª°àªà«àª°àª¿àª¯àªŸ પà«àª°à«àª£ àªàª°àªµàªŸ મટàªà« ઀à«àªšà« થà«àª¡à« àªà«àª·àª£à« ઠલટàªàª¶à«.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> ઞàªàªžà«àª¥àªŸ મà«àª³àªà«àª€ રà«àªªàª°à«àªàªŸ ઞà«àª¯à«àªàªš àªàªŸàª€à«-બચટવà«àª² àª
થવટ ચà«àª¯à«àªšàª€àª®-ધટ઀ૠàªàª¿àªàªžà«àªàªŸàª°à«àª ફટàªàª²à« ઞટથૠવટપરૠશàªàªŸàª¯ àªà«. àªà«àª¯àªŸàª°à« <a href="{0}" target="_new" > <strong> ઠàªàª¡à« </strong> </a> મટàªàª¥à« URL ઀મટરૠàªàª¿àªàªžà«àªàªŸàª°à«àª ફટàªàª²àªšàªŸ <code>ks=&lt;URL&gt;</code> વિàªàªŸàªàª®àªŸàªàª¥à« વપરટય ઀à«àª¯àªŸàª°à« ઀મટરૠઞàªàªžà«àª¥àªŸàªšà« રà«àªªàª°à«àªàªŸ ઞà«àªàªµàªµàªŸ મટàªà« ઠવિàªàª²à«àªª પઞàªàªŠ àªàª°à«. àªà«àª¯àªŸàª ઞà«àª§à« ઞàªàªžà«àª¥àªŸ મà«àª³àªà«àª€ ઞà«àªªàª·à«àª થયà«àª² ચહિઠહà«àª¯ ઀à«àª¯àªŸàª ઞà«àª§à« àªàª¡à« àªàªŸàª® àªàª°àª¶à« ચહિàª.</span></target>
+ <target><span class="small-text"> ઞàªàªžà«àª¥àªŸ મà«àª³àªà«àª€ રà«àªªàª°à«àªàªŸ ઞà«àª¯à«àªàªš àªàªŸàª€à«-બચટવà«àª² àª
થવટ ચà«àª¯à«àªšàª€àª®-ધટ઀ૠàªàª¿àªàªžà«àªàªŸàª°à«àª ફટàªàª²à« ઞટથૠવટપરૠશàªàªŸàª¯ àªà«. àªà«àª¯àªŸàª°à« <a href="{0}" target="_blank" > <strong> ઠàªàª¡à« </strong> </a> મટàªàª¥à« URL ઀મટરૠàªàª¿àªàªžà«àªàªŸàª°à«àª ફટàªàª²àªšàªŸ <code>ks=&lt;URL&gt;</code> વિàªàªŸàªàª®àªŸàªàª¥à« વપરટય ઀à«àª¯àªŸàª°à« ઀મટરૠઞàªàªžà«àª¥àªŸàªšà« રà«àªªàª°à«àªàªŸ ઞà«àªàªµàªµàªŸ મટàªà« ઠવિàªàª²à«àªª પઞàªàªŠ àªàª°à«. àªà«àª¯àªŸàª ઞà«àª§à« ઞàªàªžà«àª¥àªŸ મà«àª³àªà«àª€ ઞà«àªªàª·à«àª થયà«àª² ચહિઠહà«àª¯ ઀à«àª¯àªŸàª ઞà«àª§à« àªàª¡à« àªàªŸàª® àªàª°àª¶à« ચહિàª.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -9978,11 +9978,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àªà«àª àªàªŸàª¹à«àª° àªà«àª àª
થવટ ssl પà«àª°àª®àªŸàª£àªªàª€à«àª°à« વà«àª¯àªŸàªà«àª¯àªŸàª¯àª¿àª€ ચથà«.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>઀મૠàªàª¿àªàªžà«àªàªŸàª°à«àª ઊરમà«àª¯àªŸàªš ઞિઞà«àªàª®à« પર ઀ૠàªà«àª/પà«àª°àª®àªŸàª£àªªàª€à«àª°à« ઞà«àª¥àªŸàªªàª¿àª€ àªàª°àªµàªŸ મટàªà« ઀મટરૠàªàª¿àªàªžà«àªàªŸàª°à«àª રà«àªªàª°à«àªàªŸàª®àªŸàª ઀ૠàªà«àª àª
ચà«/àª
થવટ પà«àª°àª®àªŸàª£àªªàª€à«àª°à«àªšà« ઞàªàªŠàª°à«àª લઠશàªà« àªà«. ઞહૠથયà«àª² પà«àªà«àªà« ઞà«àª¥àªŸàªªàª¿àª€ àªàª°àªµàªŸ મટàªà« ઞિઞà«àªàª®àªšà« યà«àªà«àª¯ àªà«àªàªšà« àªàª°à«àª° રહà«àª¶à«, àª
ચૠ@@PRODUCT_NAME@@ પà«àª°à«àªà«àªžà« ઞરà«àªµàª° àª
થવટ @@PRODUCT_NAME@@ ઞà«àªà«àª²àªŸàªàª ઞરà«àªµàª° ઊà«àªµàªŸàª°àªŸ àªàª¿àªàªžà«àªàªŸàª°à«àª થટય ઀à«àªµàªŸ યà«àªà«àª¯ પà«àª°àª®àªŸàª£àªªàª€à«àª°àªšà« àªàª°à«àª° રહà«àª¶à«. વધૠàªàªŸàª£àªàªŸàª°à« મટàªà«, <a href="/rhn/help/reference/en/s3-sm-system-kick-keys.js
p" target="_new" >RHN ઞàªàªŠàª°à«àª મટરà«àªàªŠàª°à«àª¶àªš</a> àªà«àª</target>
+ <target>઀મૠàªàª¿àªàªžà«àªàªŸàª°à«àª ઊરમà«àª¯àªŸàªš ઞિઞà«àªàª®à« પર ઀ૠàªà«àª/પà«àª°àª®àªŸàª£àªªàª€à«àª°à« ઞà«àª¥àªŸàªªàª¿àª€ àªàª°àªµàªŸ મટàªà« ઀મટરૠàªàª¿àªàªžà«àªàªŸàª°à«àª રà«àªªàª°à«àªàªŸàª®àªŸàª ઀ૠàªà«àª àª
ચà«/àª
થવટ પà«àª°àª®àªŸàª£àªªàª€à«àª°à«àªšà« ઞàªàªŠàª°à«àª લઠશàªà« àªà«. ઞહૠથયà«àª² પà«àªà«àªà« ઞà«àª¥àªŸàªªàª¿àª€ àªàª°àªµàªŸ મટàªà« ઞિઞà«àªàª®àªšà« યà«àªà«àª¯ àªà«àªàªšà« àªàª°à«àª° રહà«àª¶à«, àª
ચૠ@@PRODUCT_NAME@@ પà«àª°à«àªà«àªžà« ઞરà«àªµàª° àª
થવટ @@PRODUCT_NAME@@ ઞà«àªà«àª²àªŸàªàª ઞરà«àªµàª° ઊà«àªµàªŸàª°àªŸ àªàª¿àªàªžà«àªàªŸàª°à«àª થટય ઀à«àªµàªŸ યà«àªà«àª¯ પà«àª°àª®àªŸàª£àªªàª€à«àª°àªšà« àªàª°à«àª° રહà«àª¶à«. વધૠàªàªŸàª£àªàªŸàª°à« મટàªà«, <a href="/rhn/help/reference/en/s3-sm-system-kick-keys.js
p" target="_blank" >RHN ઞàªàªŠàª°à«àª મટરà«àªàªŠàª°à«àª¶àªš</a> àªà«àª</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -10132,11 +10132,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ફટàªàª² ઞટàªàªµàª£à«</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>ફટàªàª² ઞટàªàªµàª£à« યટઊà«àª ફટàªàª²à«àªšà« યટઊà«àª àªà« àªà« àªà«àª àªà«àªà«àªàªž àªàª¿àªàªžà«àªàªŸàª°à«àª ઊરમà«àª¯àªŸàªš ઞિઞà«àªàª®àª®àªŸàª પà«àªšàªàªžàªàªà«àª°àª¹àª¿àª€ થશà«. ઀મૠàªàª¿àªàªžà«àªàªŸàª°à«àª રà«àªªàª°à«àªàªŸàª®àªŸàª ફટàªàª² બàªàªŸàªµ યટઊà«àªšà« ઞàªàªŠàª°à«àª àªàªªà« શàªà« àªà«. વધૠàªàªŸàª£àªàªŸàª°à« મટàªà« <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN ઞàªàªŠàª°à«àª મટરà«àªàªŠàª°à«àª¶àªš</a> ચૠઞàªàªŠàª°à«àª લà«. ચà«àªà«àªšà« ફટàªàª² બàªàªŸàªµ યટઊà«àª ઀મટરૠઞàªàªžà«àª¥àªŸ ઊà«àªµàªŸàª°àªŸ વપરટશ મટàªà« બચટવટયà«àª² àªà«:</target>
+ <target>ફટàªàª² ઞટàªàªµàª£à« યટઊà«àª ફટàªàª²à«àªšà« યટઊà«àª àªà« àªà« àªà«àª àªà«àªà«àªàªž àªàª¿àªàªžà«àªàªŸàª°à«àª ઊરમà«àª¯àªŸàªš ઞિઞà«àªàª®àª®àªŸàª પà«àªšàªàªžàªàªà«àª°àª¹àª¿àª€ થશà«. ઀મૠàªàª¿àªàªžà«àªàªŸàª°à«àª રà«àªªàª°à«àªàªŸàª®àªŸàª ફટàªàª² બàªàªŸàªµ યટઊà«àªšà« ઞàªàªŠàª°à«àª àªàªªà« શàªà« àªà«. વધૠàªàªŸàª£àªàªŸàª°à« મટàªà« <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN ઞàªàªŠàª°à«àª મટરà«àªàªŠàª°à«àª¶àªš</a> ચૠઞàªàªŠàª°à«àª લà«. ચà«àªà«àªšà« ફટàªàª² બàªàªŸàªµ યટઊà«àª ઀મટરૠઞàªàªžà«àª¥àªŸ ઊà«àªµàªŸàª°àªŸ વપરટશ મટàªà« બચટવટયà«àª² àªà«:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -10258,11 +10258,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àªàª¿àªàªžà«àªàªŸàª°à«àª ફટàªàª² ઞટàªàªµàª£à« યટઊૠબચટવà«</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>àª
àªàª¹àª¿ યટઊૠથયà«àª² àªà«àªàªªàª£ ફટàªàª²à« àª
થવટ ડિરà«àªà«àªàª°à«àª àªàª¿àªàªžà«àªàªŸàª°à«àªàªšà« àª
ચà«àªžàª°à«àªšà« ઞàªàªµàªŸàª¶à«. àªàª લà«àªà« પà«àª°àª€àª¿ ફટàªàª²à« àª
થવટ ડિરà«àªà«àªàª°à«àªàªšà« યટઊૠàªàª°à«.<br/>ઊરà«àª યટઊૠઠ<strong>1 MB</strong> ચટ àªà«àª² મટપમટઠમરà«àª¯àªŸàªŠàª¿àª€ àªà«. વધૠàªàªŸàª£àªàªŸàª°à« મટàªà« <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN ઞàªàªŠàª°à«àª મટરà«àªàªŠàª°à«àª¶àª¿àªàªŸ</a> àªà«àª.</target>
+ <target>àª
àªàª¹àª¿ યટઊૠથયà«àª² àªà«àªàªªàª£ ફટàªàª²à« àª
થવટ ડિરà«àªà«àªàª°à«àª àªàª¿àªàªžà«àªàªŸàª°à«àªàªšà« àª
ચà«àªžàª°à«àªšà« ઞàªàªµàªŸàª¶à«. àªàª લà«àªà« પà«àª°àª€àª¿ ફટàªàª²à« àª
થવટ ડિરà«àªà«àªàª°à«àªàªšà« યટઊૠàªàª°à«.<br/>ઊરà«àª યટઊૠઠ<strong>1 MB</strong> ચટ àªà«àª² મટપમટઠમરà«àª¯àªŸàªŠàª¿àª€ àªà«. વધૠàªàªŸàª£àªàªŸàª°à« મટàªà« <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN ઞàªàªŠàª°à«àª મટરà«àªàªŠàª°à«àª¶àª¿àªàªŸ</a> àªà«àª.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml
index f3f6577..3386f1a 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_hi.xml
@@ -889,18 +889,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> à€à€ à€®à¥à€à¥à€€ à€žà¥à€°à¥à€€ (GPLv2) à€²à€¿à€šà€à¥à€ž à€žà€¿à€žà¥à€à€® à€ªà¥à€°à€¬à€à€§à€š à€žà€®à€Ÿà€§à€Ÿà€š à€¹à¥. à€šà¥à€à¥ à€à¥à€ à€²à€¿à€à€ à€¹à¥à€ à€à¥ à€à€ªà€¯à¥à€à¥ à€¹à¥ à€žà€à€€à€Ÿ à€¹à¥ à€
à€à€° à€à€ªà€à¥ à€ªà€Ÿà€ž à€à€ªà€à¥ à€žà¥à€à¥à€²à€Ÿà€à€ à€à¥ à€²à€¿à€¯à¥ à€à¥à€ à€ªà¥à€°à€¶à¥à€š à€¹à¥ à€žà€°à¥à€µà€° à€¯à€Ÿ @@PRODUCT_NAME@@ à€à¥ à€¬à€Ÿà€°à¥ à€®à¥à€ à€à€à¥ à€à¥à€.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ à€ªà€° à€µà€¿à€žà¥à€€à€Ÿà€° à€à¥ à€²à€¿à€, à€à¥à€ªà¥à€¯à€Ÿ à€¹à€®à€Ÿà€°à¥ à€µà¥à€¬à€žà€Ÿà€à€ à€à¥ à€¯à€¹à€Ÿà€ à€Šà¥à€à¥à€ <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>@@PRODUCT_NAME@@ à€ªà€° à€µà€¿à€žà¥à€€à€Ÿà€° à€à¥ à€²à€¿à€, à€à¥à€ªà¥à€¯à€Ÿ à€¹à€®à€Ÿà€°à¥ à€µà¥à€¬à€žà€Ÿà€à€ à€à¥ à€¯à€¹à€Ÿà€ à€Šà¥à€à¥à€ <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ à€žà€®à¥à€Šà€Ÿà€¯ à€à¥ à€žà€Ÿà€¥ à€
à€à€€à€à€à¥à€°à€¿à€¯à€Ÿ à€ªà€° à€µà€¿à€µà€°à€£ à€à¥ à€²à€¿à€, à€à¥à€ªà€¯à€Ÿ <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a> à€ªà€° à€¹à€®à¥à€ à€Šà¥à€à¥à€. </target>
+ <target>@@PRODUCT_NAME@@ à€žà€®à¥à€Šà€Ÿà€¯ à€à¥ à€žà€Ÿà€¥ à€
à€à€€à€à€à¥à€°à€¿à€¯à€Ÿ à€ªà€° à€µà€¿à€µà€°à€£ à€à¥ à€²à€¿à€, à€à¥à€ªà€¯à€Ÿ <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a> à€ªà€° à€¹à€®à¥à€ à€Šà¥à€à¥à€. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -9342,11 +9342,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à€à¥à€¯à€Ÿ à€à€ª à€à€ž à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€®à€¿à€à€Ÿà€šà¥ à€à¥ à€²à€¿à€¯à¥ à€šà€¿à€¶à¥à€à€¿à€€ à€¹à¥à€?<strong><p>à€à¥à€€à€Ÿà€µà€šà¥: à€à€ž à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€®à€¿à€à€Ÿà€šà€Ÿ à€à€žà€à¥ à€à¥à€¡à€Œà¥ à€žà€¿à€žà¥à€à€® à€µ à€žà€¹à€µà€°à¥à€€à¥ à€µà€¿à€à€²à¥à€ª à€à¥ à€¹à€à€Ÿ à€Šà¥à€à€Ÿ.</p></strong><p><strong>à€à¥à€ªà€¯à€Ÿ à€¬à€à€š à€žà€¿à€°à¥à€« à€à€à€¬à€Ÿà€° à€à¥à€²à€¿à€ à€à€°à¥à€; à€¯à€¹ à€µà€¿à€²à¥à€ªà€š à€ªà¥à€°à€à¥à€°à€¿à€¯à€Ÿ à€à¥ à€ªà¥à€°à€Ÿ à€¹à¥à€šà¥ à€®à¥à€ à€à¥à€ à€žà€®à€¯ à€²à¥à€à€Ÿ.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> à€žà€à€à€ à€š à€®à¥à€²à€à¥à€€ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€à€®à€Ÿà€µà€ à€à¥ à€žà¥à€µà€¯à€ à€¬à€šà€Ÿà€¯à¥ à€¯à€Ÿ à€¬à¥à€¯à€° à€®à¥à€à€² à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€«à€Ÿà€à€² à€à¥ à€žà€Ÿà€¥ à€ªà¥à€°à€¯à¥à€à¥à€€ à€à€¿à€¯à€Ÿ à€à€Ÿ à€žà€à€€à€Ÿ à€¹à¥. à€à€ž à€µà€¿à€à€²à¥à€ª à€à¥ à€¯à€¹ à€¬à€€à€Ÿà€šà¥ à€à¥ à€²à€¿à€¯à¥ à€à¥à€šà¥à€ à€à€¿ à€à€ªà€à¥ à€žà€à€à€ à€š à€à€Ÿ à€à¥à€š à€žà€Ÿ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€ªà¥à€°à€¯à¥à€à¥à€€ à€¹à¥ à€à€¬ <a href="{0}" target="_new" > <strong> à€à€ž à€²à€¿à€à€ à€žà¥ URL </strong> </a> à€à€ªà€à¥ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€«à€Ÿà€à€² à€à¥ <code>ks=&lt;URL&gt;</code> à€à€à€¡ à€®à¥à€ à€šà€¿à€°à¥à€Šà€¿à€·à¥à€ à€¹à¥. à€à€¬à€€à€ à€à€ à€žà€à€à€ à€š à€®à¥à€²à€à¥à€€ à€šà€¿à€°à¥à€Šà€¿à€·à¥à€ à€šà€¹à¥à€ à€¹à¥à€€à€Ÿ à€¹à¥.</span></target>
+ <target><span class="small-text"> à€žà€à€à€ à€š à€®à¥à€²à€à¥à€€ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€à€®à€Ÿà€µà€ à€à¥ à€žà¥à€µà€¯à€ à€¬à€šà€Ÿà€¯à¥ à€¯à€Ÿ à€¬à¥à€¯à€° à€®à¥à€à€² à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€«à€Ÿà€à€² à€à¥ à€žà€Ÿà€¥ à€ªà¥à€°à€¯à¥à€à¥à€€ à€à€¿à€¯à€Ÿ à€à€Ÿ à€žà€à€€à€Ÿ à€¹à¥. à€à€ž à€µà€¿à€à€²à¥à€ª à€à¥ à€¯à€¹ à€¬à€€à€Ÿà€šà¥ à€à¥ à€²à€¿à€¯à¥ à€à¥à€šà¥à€ à€à€¿ à€à€ªà€à¥ à€žà€à€à€ à€š à€à€Ÿ à€à¥à€š à€žà€Ÿ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€ªà¥à€°à€¯à¥à€à¥à€€ à€¹à¥ à€à€¬ <a href="{0}" target="_blank" > <strong> à€à€ž à€²à€¿à€à€ à€žà¥ URL </strong> </a> à€à€ªà€à¥ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€«à€Ÿà€à€² à€à¥ <code>ks=&lt;URL&gt;</code> à€à€à€¡ à€®à¥à€ à€šà€¿à€°à¥à€Šà€¿à€·à¥à€ à€¹à¥. à€à€¬à€€à€ à€à€ à€žà€à€à€ à€š à€®à¥à€²à€à¥à€€ à€šà€¿à€°à¥à€Šà€¿à€·à¥à€ à€šà€¹à¥à€ à€¹à¥à€€à€Ÿ à€¹à¥.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -9978,11 +9978,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à€à¥à€ à€žà€Ÿà€°à¥à€µà€à€šà€¿à€ à€à¥à€à€à¥ à€¯à€Ÿ ssl à€ªà€°à€¿à€à€Ÿà€·à€¿à€€ à€à€°à¥à€.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>à€à€ª à€à€š à€à¥à€à€à¥ à€à€°/à€¯à€Ÿ à€ªà¥à€°à€®à€Ÿà€£à€ªà€€à¥à€° à€à€ªà€à¥ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€®à¥à€ à€à€š à€à¥à€à€à¥/à€ªà¥à€°à€®à€Ÿà€£à€ªà€€à¥à€° à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€Šà¥à€°à€Ÿà€š à€
à€§à€¿à€·à¥à€ à€Ÿà€ªà€š à€à¥ à€à¥à€°à€® à€®à¥à€ à€žà€à€Šà€°à¥à€à€¿à€€ à€à€° à€žà€à€€à¥ à€¹à¥à€. à€žà€¿à€žà¥à€à€® à€à¥ à€žà€¹à¥ à€à¥à€à€à¥ à€à¥ à€à€°à¥à€°à€€ à€¹à¥à€à¥ à€¹à€žà¥à€€à€Ÿà€à¥à€·à€°à€¿à€€ à€žà€à€à¥à€² à€à¥ à€
à€§à€¿à€·à¥à€ à€Ÿà€ªà€š à€à¥ à€²à€¿à€¯à¥, à€à€° à€žà€¹à¥ à€ªà¥à€°à€®à€Ÿà€£à€ªà€€à¥à€° @@PRODUCT_NAME@@ à€ªà¥à€°à¥à€à¥à€žà¥ à€žà€°à¥à€µà€° à€¯à€Ÿ @@PRODUCT_NAME@@ à€žà€°à¥à€µà€° à€à¥ à€Šà¥à€µà€Ÿà€°à€Ÿ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à€¿à€¯à€Ÿ. à€à¥à€¯à€Ÿà€Šà€Ÿ à€à€Ÿà€šà€à€Ÿà€°à¥ à€à¥ à€²à€¿à€¯à¥, <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN à€žà€à€Šà€°à¥à€ à
€à€Ÿà€à€¡</a> à€Šà¥à€à¥à€.</target>
+ <target>à€à€ª à€à€š à€à¥à€à€à¥ à€à€°/à€¯à€Ÿ à€ªà¥à€°à€®à€Ÿà€£à€ªà€€à¥à€° à€à€ªà€à¥ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€®à¥à€ à€à€š à€à¥à€à€à¥/à€ªà¥à€°à€®à€Ÿà€£à€ªà€€à¥à€° à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€Šà¥à€°à€Ÿà€š à€
à€§à€¿à€·à¥à€ à€Ÿà€ªà€š à€à¥ à€à¥à€°à€® à€®à¥à€ à€žà€à€Šà€°à¥à€à€¿à€€ à€à€° à€žà€à€€à¥ à€¹à¥à€. à€žà€¿à€žà¥à€à€® à€à¥ à€žà€¹à¥ à€à¥à€à€à¥ à€à¥ à€à€°à¥à€°à€€ à€¹à¥à€à¥ à€¹à€žà¥à€€à€Ÿà€à¥à€·à€°à€¿à€€ à€žà€à€à¥à€² à€à¥ à€
à€§à€¿à€·à¥à€ à€Ÿà€ªà€š à€à¥ à€²à€¿à€¯à¥, à€à€° à€žà€¹à¥ à€ªà¥à€°à€®à€Ÿà€£à€ªà€€à¥à€° @@PRODUCT_NAME@@ à€ªà¥à€°à¥à€à¥à€žà¥ à€žà€°à¥à€µà€° à€¯à€Ÿ @@PRODUCT_NAME@@ à€žà€°à¥à€µà€° à€à¥ à€Šà¥à€µà€Ÿà€°à€Ÿ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à€¿à€¯à€Ÿ. à€à¥à€¯à€Ÿà€Šà€Ÿ à€à€Ÿà€šà€à€Ÿà€°à¥ à€à¥ à€²à€¿à€¯à¥, <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN à€žà€à€Šà€°à¥à€
à€à€Ÿà€à€¡</a> à€Šà¥à€à¥à€.</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -10132,11 +10132,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€«à€Ÿà€à€²à¥à€ à€à¥ à€žà¥à€à¥ à€¹à¥ à€à¥ à€à€¿ à€à€Ÿà€ž à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€Šà¥à€°à€Ÿà€š à€žà€¿à€žà¥à€à€® à€ªà€° à€«à€¿à€° à€à€®à€Ÿ à€à¥ à€à€Ÿà€¯à¥à€à€à¥. à€à€ª à€à€ à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€à€Ÿ à€žà€à€Šà€°à¥à€ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€®à¥à€ à€²à¥ à€žà€à€€à¥ à€¹à¥à€. à€à¥à€¯à€Ÿà€Šà€Ÿ à€à€Ÿà€šà€à€Ÿà€°à¥ à€à¥ à€²à€¿à€¯à¥ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN à€žà€à€Šà€°à¥à€ à€à€Ÿà€à€¡</a> à€à€Ÿ à€žà€à€Šà€°à¥à€ à€²à¥à€. à€šà€¿à€®à¥à€š à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€à¥ à€à€ªà€à¥ à€žà€à€à€ à€š à€à¥ à€Šà¥à€µà€Ÿà€°à€Ÿ à€ªà¥à€°à€¯à¥à€ à€à¥ à€²à€¿à€ à€¬à€šà€Ÿà€¯à€Ÿ à€à€¯à€Ÿ à€¹à¥:</target>
+ <target>à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€«à€Ÿà€à€²à¥à€ à€à¥ à€žà¥à€à¥ à€¹à¥ à€à¥ à€à€¿ à€à€Ÿà€ž à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€Šà¥à€°à€Ÿà€š à€žà€¿à€žà¥à€à€® à€ªà€° à€«à€¿à€° à€à€®à€Ÿ à€à¥ à€à€Ÿà€¯à¥à€à€à¥. à€à€ª à€à€ à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€à€Ÿ à€žà€à€Šà€°à¥à€ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€ªà¥à€°à¥à€«à€Ÿà€à€² à€®à¥à€ à€²à¥ à€žà€à€€à¥ à€¹à¥à€. à€à¥à€¯à€Ÿà€Šà€Ÿ à€à€Ÿà€šà€à€Ÿà€°à¥ à€à¥ à€²à€¿à€¯à¥ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN à€žà€à€Šà€°à¥à€ à€à€Ÿà€à€¡</a> à€à€Ÿ à€žà€à€Šà€°à¥à€ à€²à¥à€. à€šà€¿à€®à¥à€š à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€à¥ à€à€ªà€à¥ à€žà€à€à€ à€š à€à¥ à€Šà¥à€µà€Ÿà€°à€Ÿ à€ªà¥à€°à€¯à¥à€ à€à¥ à€²à€¿à€ à€¬à€šà€Ÿà€¯à€Ÿ à€à€¯à€Ÿ à€¹à¥:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -10258,11 +10258,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€«à€Ÿà€à€² à€žà€à€°à€à¥à€·à€£ à€žà¥à€à¥ à€¬à€šà€Ÿà€à€</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>à€¯à€¹à€Ÿà€ à€žà¥à€à¥à€¬à€Šà¥à€§ à€à¥à€ à€«à€Ÿà€à€² à€¯à€Ÿ à€šà€¿à€°à¥à€Šà¥à€¶à€¿à€à€Ÿ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€¬à€Ÿà€Š à€žà€à€°à€à¥à€·à€¿à€€ à€à¥ à€à€Ÿà€¯à¥à€à¥. à€ªà¥à€°à€€à€¿ à€ªà€à€à¥à€€à€¿ à€«à€Ÿà€à€² à€¯à€Ÿ à€šà€¿à€°à¥à€Šà¥à€¶à€¿à€à€Ÿ à€žà¥à€à¥à€¬à€Šà¥à€§ à€à€°à¥à€.<br/>à€¹à€° à€žà¥à€à¥ <strong>1 MB</strong> à€à¥ à€à¥à€² à€à€à€Ÿà€° à€€à€ à€žà¥à€®à€¿à€€ à€¹à¥. à€à¥à€¯à€Ÿà€Šà€Ÿ à€à€Ÿà€šà€à€Ÿà€°à¥ à€à¥ à€²à€¿à€¯à¥ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN à€žà€à€Šà€°à¥à€ à€à€Ÿà€à€¡</a> à€Šà¥à€à¥à€.</target>
+ <target>à€¯à€¹à€Ÿà€ à€žà¥à€à¥à€¬à€Šà¥à€§ à€à¥à€ à€«à€Ÿà€à€² à€¯à€Ÿ à€šà€¿à€°à¥à€Šà¥à€¶à€¿à€à€Ÿ à€à€¿à€à€žà¥à€à€Ÿà€°à¥à€ à€à¥ à€¬à€Ÿà€Š à€žà€à€°à€à¥à€·à€¿à€€ à€à¥ à€à€Ÿà€¯à¥à€à¥. à€ªà¥à€°à€€à€¿ à€ªà€à€à¥à€€à€¿ à€«à€Ÿà€à€² à€¯à€Ÿ à€šà€¿à€°à¥à€Šà¥à€¶à€¿à€à€Ÿ à€žà¥à€à¥à€¬à€Šà¥à€§ à€à€°à¥à€.<br/>à€¹à€° à€žà¥à€à¥ <strong>1 MB</strong> à€à¥ à€à¥à€² à€à€à€Ÿà€° à€€à€ à€žà¥à€®à€¿à€€ à€¹à¥. à€à¥à€¯à€Ÿà€Šà€Ÿ à€à€Ÿà€šà€à€Ÿà€°à¥ à€à¥ à€²à€¿à€¯à¥ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN à€žà€à€Šà€°à¥à€ à€à€Ÿà€à€¡</a> à€Šà¥à€à¥à€.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml
index 62cb2d7..9354a5f 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_it.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> Ú una soluzione per la gestione dei sistemi Linux (GPLv2) open source. Di seguito vengono riportati alcuni link utili per rispondere alle vostre domande sul server @@PRODUCT_NAME@@.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Per informazioni su @@PRODUCT_NAME@@, si prega di visitare il nostro sito web <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>Per informazioni su @@PRODUCT_NAME@@, si prega di visitare il nostro sito web <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Per informazioni su come interagire con la community di @@PRODUCT_NAME@@, si prega di consultare <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </target>
+ <target>Per informazioni su come interagire con la community di @@PRODUCT_NAME@@, si prega di consultare <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10218,11 +10218,11 @@ Please note that some manual configuration of these scripts may still be require
<target>Siete sicuri di voler cancellare questo Kickstart?<strong><p>AVVERTENZA:se cancellate il suddetto kickstart, rimuoverete i sistemi ad esso associati insieme alle relative opzioni.</p></strong><p><strong>Vi preghiamo di fare clic sul pulsante solo una volta, poichÚ ci varrà qualche istante prima del completamento del processo di cancellazione.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> L'impostazione del profilo di default dell'organizzazione può essere utilizzata con file kickstart bare-metal o creati manualmente. Selezionate questo tipo di opzione per indicare quale profilo della vostra Organizzazione viene utilizzato, quando viene specificato l'URL da <a href="{0}" target="_new" > <strong> questo link </strong> </a> all'interno della sezione <code>ks=&lt;URL&gt;</code> del vostro file kickstart. Il link non funzionerà se non specificate un valore di Default dell'Organizzazione.</span></target>
+ <target><span class="small-text"> L'impostazione del profilo di default dell'organizzazione può essere utilizzata con file kickstart bare-metal o creati manualmente. Selezionate questo tipo di opzione per indicare quale profilo della vostra Organizzazione viene utilizzato, quando viene specificato l'URL da <a href="{0}" target="_blank" > <strong> questo link </strong> </a> all'interno della sezione <code>ks=&lt;URL&gt;</code> del vostro file kickstart. Il link non funzionerà se non specificate un valore di Default dell'Organizzazione.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10959,11 +10959,11 @@ Please note that some manual configuration of these scripts may still be require
<target>Non Ú stato definita alcuna chiave pubblica o certificato ssl.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>à possibile far riferimento alle suddette chiavi e/o certificati nei vostri profili kickstart, così facendo potrete installare quelle chiavi/certificati sui sistemi durante un processo kickstart. Un sistema avrà bisogno di chiavi corrette per installare i pacchetti firmati, e di un certificato corretto per poter eseguire un processo kickstart da parte di un @@PRODUCT_NAME@@ Proxy Server o @@PRODUCT_NAME@@ Server. Per maggiori informazioni consultare la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></target>
+ <target>à possibile far riferimento alle suddette chiavi e/o certificati nei vostri profili kickstart, così facendo potrete installare quelle chiavi/certificati sui sistemi durante un processo kickstart. Un sistema avrà bisogno di chiavi corrette per installare i pacchetti firmati, e di un certificato corretto per poter eseguire un processo kickstart da parte di un @@PRODUCT_NAME@@ Proxy Server o @@PRODUCT_NAME@@ Server. Per maggiori informazioni consultare la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11120,11 +11120,11 @@ Please note that some manual configuration of these scripts may still be require
<target>Conservazione del file</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>Gli elenchi di conservazione dei file sono elenchi di file che verranno ripristinati su di un sistema durante un particolare processo kickstart. Ã possibile far riferimento ad un elenco di conservazione dei file in un profilo kickstart. Per maggiori informazioni consultate la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. I seguenti elenchi di conservazione dei file sono stati creati per un loro utilizzo da parte della vostra organizzazione:</target>
+ <target>Gli elenchi di conservazione dei file sono elenchi di file che verranno ripristinati su di un sistema durante un particolare processo kickstart. Ã possibile far riferimento ad un elenco di conservazione dei file in un profilo kickstart. Per maggiori informazioni consultate la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. I seguenti elenchi di conservazione dei file sono stati creati per un loro utilizzo da parte della vostra organizzazione:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11246,11 +11246,11 @@ Please note that some manual configuration of these scripts may still be require
<target>Crea Elenco Conservazione dei file Kickstart</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>Qualsiasi file o directory di seguito riportati verranno conservati dopo aver eseguito kickstart. Elencare il file o la directory una per riga.<br/>Ogni elenco Ú limitato ad un totale di <strong>1 MB</strong>. Per maggiori informazioni consultate la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</target>
+ <target>Qualsiasi file o directory di seguito riportati verranno conservati dopo aver eseguito kickstart. Elencare il file o la directory una per riga.<br/>Ogni elenco Ú limitato ad un totale di <strong>1 MB</strong>. Per maggiori informazioni consultate la <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml
index 35936a3..f67349a 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ja.xml
@@ -972,18 +972,18 @@ Satellite ã® çµç¹ç®¡çè
ã§ãªããšãŠãŒã¶ãŒãåé€ã§ããŸããã
<target><strong>@@PRODUCT_NAME@@</strong> ã¯ãªãŒãã³ãœãŒã¹ (GPLv2) ã® Linux ã·ã¹ãã 管çãœãªã¥ãŒã·ã§ã³ã§ãã@@PRODUCT_NAME@@ ãµãŒããŒã«é¢ããã質åãããå Žåã¯ã以äžã®ãªã³ã¯ã䟿å©ã§ãã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ ã®è©³çްã«ã€ããŠã¯ã<a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a> ã® Web ãµã€ããã芧ãã ããã</target>
+ <target>@@PRODUCT_NAME@@ ã®è©³çްã«ã€ããŠã¯ã<a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a> ã® Web ãµã€ããã芧ãã ããã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ ã³ãã¥ããã£ãžã®åå ã«é¢ãã詳现ã¯ã<a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a> ãã芧ãã ããã </target>
+ <target>@@PRODUCT_NAME@@ ã³ãã¥ããã£ãžã®åå ã«é¢ãã詳现ã¯ã<a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a> ãã芧ãã ããã </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10236,11 +10236,11 @@ Please note that some manual configuration of these scripts may still be require
<target>æ¬åœã«ãã®ããã¯ã¹ã¿ãŒããåé€ããŠãããã§ãã?<strong><p>èŠå: ãã®ããã¯ã¹ã¿ãŒããåé€ãããšãããã«å¯Ÿå¿ãããªãã·ã§ã³ãšãªãã·ã§ã³ãåé€ããããšã«ãªããŸãã</p></strong><p><strong>ãã¿ã³ãã¯ãªãã¯ããã®ã¯ 1 åã®ã¿ã«ããŠãã ãããåé€ãå®äºãããŸã§ã«ã¯å°ãæéãããããŸãã</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> äŒæ¥/çµç¹ã®ããã©ã«ããããã¡ã€ã«èšå®ã¯æäœæ¥ã§äœæããããã¯ã¹ã¿ãŒããã¡ã€ã«ãŸãã¯ãã¢ã¡ã¿ã«ã®ããã¯ã¹ã¿ãŒããã¡ã€ã«ãšäœµçšããããšãã§ããŸãã<a href="{0}" target="_new" > <strong> ãã®ãªã³ã¯</strong> </a>ã® URL ãã䜿çšã®ããã¯ã¹ã¿ãŒããã¡ã€ã«ã® <code>ks=&lt;URL&gt;</code> ã»ã¯ã·ã§ã³ã«æå®ãããŠããå Žåããã®ãªãã·ã§ã³ãéžæããŠäŒæ¥/çµç¹ã§äœ¿çšããããããã¡ã€ã«ã瀺ããŸããäŒæ¥/çµç¹ã®ããã©ã«ããæå®ãããŠããªããšãã®ãªã³ã¯ã¯åäœããŸããã</span></target>
+ <target><span class="small-text"> äŒæ¥/çµç¹ã®ããã©ã«ããããã¡ã€ã«èšå®ã¯æäœæ¥ã§äœæããããã¯ã¹ã¿ãŒããã¡ã€ã«ãŸãã¯ãã¢ã¡ã¿ã«ã®ããã¯ã¹ã¿ãŒããã¡ã€ã«ãšäœµçšããããšãã§ããŸãã<a href="{0}" target="_blank" > <strong> ãã®ãªã³ã¯</strong> </a>ã® URL ãã䜿çšã®ããã¯ã¹ã¿ãŒããã¡ã€ã«ã® <code>ks=&lt;URL&gt;</code> ã»ã¯ã·ã§ã³ã«æå®ãããŠããå Žåããã®ãªãã·ã§ã³ãéžæããŠäŒæ¥/çµç¹ã§äœ¿çšããããããã¡ã€ã«ã瀺ããŸããäŒæ¥/çµç¹ã®ããã©ã«ããæå®ãããŠããªããšãã®ãªã³ã¯ã¯åäœããŸããã</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10977,11 +10977,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ãããªãã¯ããŒãŸã㯠SSL èšŒææžãå®çŸ©ãããŠããŸãã</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>ããã¯ã¹ã¿ãŒãäžã«ã·ã¹ãã ã«ããŒãèšŒææžãã€ã³ã¹ããŒã«ãããããããã¯ã¹ã¿ãŒããããã¡ã€ã«ã§ãããã®ããŒãèšŒææžãåç
§ããããšãã§ããŸããçœ²åæžã¿ããã±ãŒãžã®ã€ã³ã¹ããŒã«ã«ã¯æ£ããããŒã@@PRODUCT_NAME@@ Proxy Server ã @@PRODUCT_NAME@@ Server ã«ããããã¯ã¹ã¿ãŒãã«ã¯æ£ããèšŒææžãå¿
èŠã«ãªããŸãã詳现ã«ã€ããŠã¯ã <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN ãªãã¡ã¬ã³ã¹ã¬ã€ã</a> ãåç
§ããŠãã ããã</target>
+ <target>ããã¯ã¹ã¿ãŒãäžã«ã·ã¹ãã ã«ããŒãèšŒææžãã€ã³ã¹ããŒã«ãããããããã¯ã¹ã¿ãŒããããã¡ã€ã«ã§ãããã®ããŒãèšŒææžãåç
§ããããšãã§ããŸããçœ²åæžã¿ããã±ãŒãžã®ã€ã³ã¹ããŒã«ã«ã¯æ£ããããŒã@@PRODUCT_NAME@@ Proxy Server ã @@PRODUCT_NAME@@ Server ã«ããããã¯ã¹ã¿ãŒãã«ã¯æ£ããèšŒææžãå¿
èŠã«ãªããŸãã詳现ã«ã€ããŠã¯ã <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN ãªãã¡ã¬ã³ã¹ã¬ã€ã</a> ãåç
§ããŠãã ããã</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11138,11 +11138,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ãã¡ã€ã«ä¿æ</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>ãã¡ã€ã«ä¿æäžèЧã¯ã ç¹å®ã®ããã¯ã¹ã¿ãŒãäžã«ã·ã¹ãã ã«åŸ©å
ããããã¡ã€ã«ã®äžèЧã§ããããã¯ã¹ã¿ãŒããããã¡ã€ã«ã§ãã¡ã€ã«ä¿æäžèЧãåç
§ããããšãã§ããŸãã詳现ã«ã€ããŠã¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN ãªãã¡ã¬ã³ã¹ã¬ã€ã</a> ãåç
§ããŠãã ããããŠãŒã¶ãŒã®çµç¹ã§äœ¿çšããããã«äœæããããã¡ã€ã«ä¿æäžèŠ§ã¯æ¬¡ã®éãã§ãã</target>
+ <target>ãã¡ã€ã«ä¿æäžèЧã¯ã ç¹å®ã®ããã¯ã¹ã¿ãŒãäžã«ã·ã¹ãã ã«åŸ©å
ããããã¡ã€ã«ã®äžèЧã§ããããã¯ã¹ã¿ãŒããããã¡ã€ã«ã§ãã¡ã€ã«ä¿æäžèЧãåç
§ããããšãã§ããŸãã詳现ã«ã€ããŠã¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN ãªãã¡ã¬ã³ã¹ã¬ã€ã</a> ãåç
§ããŠãã ããããŠãŒã¶ãŒã®çµç¹ã§äœ¿çšããããã«äœæããããã¡ã€ã«ä¿æäžèŠ§ã¯æ¬¡ã®éãã§ãã</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11264,11 +11264,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ããã¯ã¹ã¿ãŒããã¡ã€ã«ä¿æäžèЧã®äœæ</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>ããã«æå®ãããã¡ã€ã«ããã£ã¬ã¯ããªã¯ããã¯ã¹ã¿ãŒãåŸã«ä¿æãããŸãã1 ãã¡ã€ã«ãŸã㯠1 ãã£ã¬ã¯ããªã 1 è¡ãã€èšèŒããŸãã <br/>åäžèЧã®åèšãµã€ãºã¯ <strong>1 MB</strong> ã«å¶éãããŠããŸãã詳现ã«ã€ããŠã¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN ãªãã¡ã¬ã³ã¹ã¬ã€ã</a> ãåç
§ããŠãã ããã</target>
+ <target>ããã«æå®ãããã¡ã€ã«ããã£ã¬ã¯ããªã¯ããã¯ã¹ã¿ãŒãåŸã«ä¿æãããŸãã1 ãã¡ã€ã«ãŸã㯠1 ãã£ã¬ã¯ããªã 1 è¡ãã€èšèŒããŸãã <br/>åäžèЧã®åèšãµã€ãºã¯ <strong>1 MB</strong> ã«å¶éãããŠããŸãã詳现ã«ã€ããŠã¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN ãªãã¡ã¬ã³ã¹ã¬ã€ã</a> ãåç
§ããŠãã ããã</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml
index 0a63ea2..a909ae3 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ko.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong>ë ì€í ìì€ (GPLv2) Linux ìì€í
êŽëЬ ì룚ì
ì
ëë€. @@PRODUCT_NAME@@ ìë²ì êŽí ì§ë¬žìŽ ììŒì멎 ìëì ë§í¬ë¥Œ ì°žì¡°íììì€. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ì ëí ììží ëŽì©ì, ì¹ì¬ìŽíž <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>ìì ì°žì¡°íììì€. </target>
+ <target>@@PRODUCT_NAME@@ì ëí ììží ëŽì©ì, ì¹ì¬ìŽíž <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>ìì ì°žì¡°íììì€. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ 컀뮀ëí°ìì ìíž ìì©ì ëí ììží ëŽì©ì <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>ìì ì°žì¡°íììì€. </target>
+ <target>@@PRODUCT_NAME@@ 컀뮀ëí°ìì ìíž ìì©ì ëí ììží ëŽì©ì <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>ìì ì°žì¡°íììì€. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10230,11 +10230,11 @@ Please note that some manual configuration of these scripts may still be require
<target>í¥ì€íížë¥Œ ì ë§ë¡ ìì íìê² ìµëê¹?<strong><p>ê²œê³ : í¥ì€íížë¥Œ ìì íì멎 ìŽì êŽë šë ìì€í
곌 ìµì
ìŽ ëªšë ìì ë©ëë€.</p></strong><p><strong>ë²íŒì íë²ë§ íŽëŠíìêž° ë°ëëë€: ìì ìì
ìŽ ìë£ë ëê¹ì§ ìœê°ì ìê°ìŽ ììë ì ììµëë€.</strong></p> </target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> ì¡°ì§ êž°ë³ž íë¡íìŒ ì€ì ì ì§ì ìì±í í¥ì€ííž íìŒìŽë ë² ìŽ-ë©í í¥ì€ííž íìŒê³Œ íšê» ì¬ì© ê°ë¥í©ëë€. ìŽ ìµì
ì ì ííì¬ <a href="{0}" target="_new" > <strong> ìŽ ë§í¬ </strong> </a>ì URLìŽ í¥ì€ííž íìŒì <code>ks=&lt;URL&gt;</code> ë¶ë¶ì ì§ì ë ê²œì° ì¡°ì§ì ìŽë íë¡íìŒì ì¬ì©í ê²ìžì§ ì§ì íì€ ì ììµëë€. ì¡°ì§ êž°ë³ž íë¡íìŒìŽ ì§ì ëì§ ìì ê²œì° ìŽ ë§í¬ê° ìëíì§ ìì ê²ì
ëë€.</span></target>
+ <target><span class="small-text"> ì¡°ì§ êž°ë³ž íë¡íìŒ ì€ì ì ì§ì ìì±í í¥ì€ííž íìŒìŽë ë² ìŽ-ë©í í¥ì€ííž íìŒê³Œ íšê» ì¬ì© ê°ë¥í©ëë€. ìŽ ìµì
ì ì ííì¬ <a href="{0}" target="_blank" > <strong> ìŽ ë§í¬ </strong> </a>ì URLìŽ í¥ì€ííž íìŒì <code>ks=&lt;URL&gt;</code> ë¶ë¶ì ì§ì ë ê²œì° ì¡°ì§ì ìŽë íë¡íìŒì ì¬ì©í ê²ìžì§ ì§ì íì€ ì ììµëë€. ì¡°ì§ êž°ë³ž íë¡íìŒìŽ ì§ì ëì§ ìì ê²œì° ìŽ ë§í¬ê° ìëíì§ ìì ê²ì
ëë€.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10971,11 +10971,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ì ìë ê³µê°í€ë ssl ìžìŠìê° ììµëë€.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>í¥ì€ííž ê³Œì ìì ìì€í
ì ì€ì¹í í€ ëë ìžìŠì륌 í¥ì€ííž íë¡íìŒì ì§ì íì€ ì ììµëë€. ìì€í
ì ìëª
ë íší€ì§ë¥Œ ì€ì¹íê³ , @@PRODUCT_NAME@@ Proxy ìë²ë @@PRODUCT_NAME@@ ìë²ë¥Œ íµíŽ ìì€í
ì í¥ì€íížíê³ ìžìŠë íší€ì§ë¥Œ ì€ì¹íêž°ìíŽìë ì¬ë°ë¥ž ìžìŠìì í€ê° íìí©ëë€. ë³Žë€ ììží ì 볎ë <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new">RHN ì°žì¡° ê°ìŽë</a>륌 ìŽíŽë³Žìêž° ë°ëëë€. </target>
+ <target>í¥ì€ííž ê³Œì ìì ìì€í
ì ì€ì¹í í€ ëë ìžìŠì륌 í¥ì€ííž íë¡íìŒì ì§ì íì€ ì ììµëë€. ìì€í
ì ìëª
ë íší€ì§ë¥Œ ì€ì¹íê³ , @@PRODUCT_NAME@@ Proxy ìë²ë @@PRODUCT_NAME@@ ìë²ë¥Œ íµíŽ ìì€í
ì í¥ì€íížíê³ ìžìŠë íší€ì§ë¥Œ ì€ì¹íêž°ìíŽìë ì¬ë°ë¥ž ìžìŠìì í€ê° íìí©ëë€. ë³Žë€ ììží ì 볎ë <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank">RHN ì°žì¡° ê°ìŽë</a>륌 ìŽíŽë³Žìêž° ë°ëëë€. </target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11132,11 +11132,11 @@ Please note that some manual configuration of these scripts may still be require
<target>íìŒ ë³ŽêŽ </target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>íìŒ ë³ŽêŽ ëª©ë¡ìŽë í¹ì í¥ì€íížì ìì€í
ì 복구ë íìŒ ëª©ë¡ì ë§í©ëë€. í¥ì€ííž íë¡íìŒìì íìŒ ë³ŽêŽ ëª©ë¡ì ë³Žì€ ì ììµëë€. ë³Žë€ ììží ì 볎ë <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN ì°žì¡° ê°ìŽë</a>륌 ìœìŽë³Žìêž° ë°ëëë€. ì¡°ì§ìì ì¬ì©í ì ìëë¡ ë€ì곌 ê°ì íìŒ ë³ŽêŽ ëª©ë¡ìŽ ìì±ëììµëë€: </target>
+ <target>íìŒ ë³ŽêŽ ëª©ë¡ìŽë í¹ì í¥ì€íížì ìì€í
ì 복구ë íìŒ ëª©ë¡ì ë§í©ëë€. í¥ì€ííž íë¡íìŒìì íìŒ ë³ŽêŽ ëª©ë¡ì ë³Žì€ ì ììµëë€. ë³Žë€ ììží ì 볎ë <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN ì°žì¡° ê°ìŽë</a>륌 ìœìŽë³Žìêž° ë°ëëë€. ì¡°ì§ìì ì¬ì©í ì ìëë¡ ë€ì곌 ê°ì íìŒ ë³ŽêŽ ëª©ë¡ìŽ ìì±ëììµëë€: </target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11258,11 +11258,11 @@ Please note that some manual configuration of these scripts may still be require
<target>í¥ì€ííž íìŒ ë³ŽêŽ ëª©ë¡ ìì± </target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>ìŽê³³ì ì
ë ¥ë íìŒìŽë ëë í 늬ë í¥ì€íížë¥Œ ë§ì¹ í 볎êŽë©ëë€. íì€ë¹ íê°ì íìŒ ëë ëë í ê° ëìŽë©ëë€. <br/>ê° ëª©ë¡ì ìµë ì©ëì <strong>1 MB</strong>ë¡ ì íëìŽ ììµëë€. ë³Žë€ ììží ì¬íì <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN ì°žì¡° ê°ìŽë</a>륌 ì°žì¡°íìêž° ë°ëëë€. </target>
+ <target>ìŽê³³ì ì
ë ¥ë íìŒìŽë ëë í 늬ë í¥ì€íížë¥Œ ë§ì¹ í 볎êŽë©ëë€. íì€ë¹ íê°ì íìŒ ëë ëë í ê° ëìŽë©ëë€. <br/>ê° ëª©ë¡ì ìµë ì©ëì <strong>1 MB</strong>ë¡ ì íëìŽ ììµëë€. ë³Žë€ ììží ì¬íì <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN ì°žì¡° ê°ìŽë</a>륌 ì°žì¡°íìêž° ë°ëëë€. </target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml
index bc200d8..b5cf842 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pa.xml
@@ -889,18 +889,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> àšà©±àš àšàšªàšš àšžà©àš°àšž (GPLv2) àš²à©àššàšàšž àšžàš¿àšžàšàš® àšªàš°àš¬à©°àš§àšš àš¹à©±àš² àš¹à©à¥€ àš¹à©àš àšŸàš àšà©àš àšžàš¬à©°àš§ àšŠàš¿à©±àš€à© àšàš àš¹àšš, àšà© àšàš¿ àš«àšŸàšàšŠà©àš®à©°àšŠ àš¹à© àšžàšàšŠà© àš¹àšš, àšà©àšàš° àš€à©àš¹àšŸàššà©à©° àš€à©àš¹àšŸàš¡à© àšžà©àšà©àš²àšŸàšàš @@PRODUCT_NAME@@ àšžàš°àšµàš° àš¬àšŸàš°à© àšà©àš àšžàšµàšŸàš² àšàšŸàš RHN àš¬àšŸàš°à© àš¹à©àš° àšžàšµàšŸàš² àš¹àššà¥€</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ àš¬àšŸàš°à© àšµà©àš°àšµà© àš²àš, àšàš¿àš°àšªàšŸ àšàš°àšà© àš
ੱàšà© àšŠàš¿à©±àš€à© àšžàšŸàš¡à© àšµà©àš¬ àšžàšŸàšàš 'àš€à© àšàšŸàš <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>ी </target>
+ <target>@@PRODUCT_NAME@@ àš¬àšŸàš°à© àšµà©àš°àšµà© àš²àš, àšàš¿àš°àšªàšŸ àšàš°àšà© àš
ੱàšà© àšŠàš¿à©±àš€à© àšžàšŸàš¡à© àšµà©àš¬ àšžàšŸàšàš 'àš€à© àšàšŸàš <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>ी </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ àšàš®àš¿àšàššàš¿àšà© àššàšŸàš² àšžà©°àšªàš°àš àšàš°àšš àš¬àšŸàš°à© àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš, àšàš¿àš°àšªàšŸ àšàš°àšà© <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a> àšµà©àšà©à¥€ </target>
+ <target>@@PRODUCT_NAME@@ àšàš®àš¿àšàššàš¿àšà© àššàšŸàš² àšžà©°àšªàš°àš àšàš°àšš àš¬àšŸàš°à© àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš, àšàš¿àš°àšªàšŸ àšàš°àšà© <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a> àšµà©àšà©à¥€ </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -9341,11 +9341,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àšà© àš€à©àšžà©àš àš¯àšà©àššàšš àšàš¹ àšàš¿à©±àšàšžàšàšŸàš°àš àš¹àšàšŸàšàš£àšŸ àšàšŸàš¹à©à©°àšŠà© àš¹à©?<strong><p>àšà©àš€àšŸàšµàššà©: àšàš¹ àšàš¿à©±àšàšžàšàšŸàš°àš àš¹àšàšŸàšàš£ àššàšŸàš² àšàšž àšŠà© àšžà©°àš¬à©°àš§àš¿àš€ àšžàš¿àšžàšàš® àš
àš€à© àš
àššà©àšžàšŸàš°à© àšà©àš£ àš¹àšàšŸàš àšàšŸàšµà©àšà©à¥€</p></strong><p><strong>àšàš¿àš°àšªàšŸ àšàš°àšà© àšžàš¿àš°àš« àšà©±àš àšµàšŸàš° àš¬àšàšš àšŠàš¬àšŸàš; àšàš¹ àš¹àšàšŸàšàš£ àš²àš àšà©àš àšžàš®àšŸàš àš²àšµà©àšà©à¥€</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> àšžà©°àšàš àšš àš®à©àš² àšªàš°à©àš«àšŸàšàš² àšµàš¿àšµàšžàš¥àšŸ àššà©à©° àšŠàšžàš€à© àš¬àš£àšŸ àšà© àšàšŸàš àš¬à©àš
àš°-àš®à©àšàš² àšàš¿à©±àšàšžàšàšŸàš°àš àš«àšŸàšàš²àšŸàš àššàšŸàš² àšµàš°àš€àš¿àš àšàšŸ àšžàšàšŠàšŸ àš¹à©à¥€ àšàšŠà©àš <a href="{0}" target="_new" > <strong> àšàšž àšžà©°àš¬à©°àš§ </strong> </a> àš€à©àš URL làš€à©àš¹àšŸàš¡à© àšàš¿à©±àšàšžàšàšŸàš°àš àš«àšŸàšàš² àšŠà© <code>ks=&lt;URL&gt;</code> àšàšŸàš àšµàš¿à©±àš àšŠàš°àšžàšŸàšàš àšàš¿àš àš€àšŸàš àš€à©àš¹àšŸàš¡à© àšžà©°àšàš àšš àšµàš¿à©±àš àšµàš°àš€àš£ àš²àš àšªàš°à©àš«àšŸàšàš² àšà©àš£à©à¥€ àšàš¹ àšžà©°àš¬à©°àš§ àššàš¹à©àš àšà©±àš²à©àšàšŸ àšàšŠà©àš àš€à©±àš àšà©±àš àšžà©°àšàš àšš àš®à©àš² àššàš¹à©àš àšŠàš°àšžàšŸàšàš àšàšŸàšàšŠàšŸà¥€</span></target>
+ <target><span class="small-text"> àšžà©°àšàš àšš àš®à©àš² àšªàš°à©àš«àšŸàšàš² àšµàš¿àšµàšžàš¥àšŸ àššà©à©° àšŠàšžàš€à© àš¬àš£àšŸ àšà© àšàšŸàš àš¬à©àš
àš°-àš®à©àšàš² àšàš¿à©±àšàšžàšàšŸàš°àš àš«àšŸàšàš²àšŸàš àššàšŸàš² àšµàš°àš€àš¿àš àšàšŸ àšžàšàšŠàšŸ àš¹à©à¥€ àšàšŠà©àš <a href="{0}" target="_blank" > <strong> àšàšž àšžà©°àš¬à©°àš§ </strong> </a> àš€à©àš URL làš€à©àš¹àšŸàš¡à© àšàš¿à©±àšàšžàšàšŸàš°àš àš«àšŸàšàš² àšŠà© <code>ks=&lt;URL&gt;</code> àšàšŸàš àšµàš¿à©±àš àšŠàš°àšžàšŸàšàš àšàš¿àš àš€àšŸàš àš€à©àš¹àšŸàš¡à© àšžà©°àšàš àšš àšµàš¿à©±àš àšµàš°àš€àš£ àš²àš àšªàš°à©àš«àšŸàšàš² àšà©àš£à©à¥€ àšàš¹ àšžà©°àš¬à©°àš§ àššàš¹à©àš àšà©±àš²à©àšàšŸ àšàšŠà©àš àš€à©±àš àšà©±àš àšžà©°àšàš àšš àš®à©àš² àššàš¹à©àš àšŠàš°àšžàšŸàšàš àšàšŸàšàšŠàšŸà¥€</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -9977,11 +9977,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àšà©àš àšªàš¬àš²àš¿àš àšà©à©°àšà©àšàš àšàšŸàš SSL àšžàš°àš«à©àš«àš¿àšà©àš àššàš¹à©àš àš¹à©à¥€</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>àš€à©àšžà©àš àšàšªàš£à© àšàš¿à©±àšàšžàšàšŸàš°àš àšªàš°à©àš«àšŸàšàš² àšµàš¿à©±àš àšàš¹àššàšŸàš àšà©à©°àšà©àšàš àš
àš€à©/àšàšŸàš àšžàš°àšà©àš«àš¿àšà©àšàšŸàš àššà©à©° àšµà©àš àšžàšàšŠà© àš¹à© àš€àšŸàš àšàš¿ àšàš¹àššàšŸàš àšà©à©°àšà©àšàš/àšžàš°àšà©àš«àš¿àšà©àšàšŸàš àššà©à©° àšžàš¿àšžàšàš®àšŸàš àššà©à©° àšàš¿à©±àšàšžàšàšŸàš°àš àšàš°àšš àšŠà©àš°àšŸàšš àšà©°àšžàšàšŸàš² àšà©àš€àšŸ àšàšŸ àšžàšà©à¥€ àšà©±àš àšžàš¿àšžàšàš® àššà©à©° àšŠàšžàš€àšàš€à© àšªà©àšà©àš àšà©°àšžàšàšŸàš² àšàš°àšš àš²àš àš à©àš àšà©à©°àšà©àšàš àš
àš€à© àšà©±àš @@PRODUCT_NAME@@ àšªàš°àšŸàšàšžà© àšžàš°àšµàš° àšàšŸàš @@PRODUCT_NAME@@ àšžàš°àšµàš° àš°àšŸàš¹à©àš àšàš¿à©±àšàšžàšàšŸàš°àš àš¹à©àš£ àš²àš àš à©àš àšžàš°àšà©àš«àš¿àšà©àš àš²àš àš²à©à© àš°àš¹àš¿à©°àšŠà© àš¹à©à¥€ àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-
keys" target="_new" >RHN àš¹àšµàšŸàš²àšŸ àšàšŸàšàš¡</a> àšµà©àšà©à¥€</target>
+ <target>àš€à©àšžà©àš àšàšªàš£à© àšàš¿à©±àšàšžàšàšŸàš°àš àšªàš°à©àš«àšŸàšàš² àšµàš¿à©±àš àšàš¹àššàšŸàš àšà©à©°àšà©àšàš àš
àš€à©/àšàšŸàš àšžàš°àšà©àš«àš¿àšà©àšàšŸàš àššà©à©° àšµà©àš àšžàšàšŠà© àš¹à© àš€àšŸàš àšàš¿ àšàš¹àššàšŸàš àšà©à©°àšà©àšàš/àšžàš°àšà©àš«àš¿àšà©àšàšŸàš àššà©à©° àšžàš¿àšžàšàš®àšŸàš àššà©à©° àšàš¿à©±àšàšžàšàšŸàš°àš àšàš°àšš àšŠà©àš°àšŸàšš àšà©°àšžàšàšŸàš² àšà©àš€àšŸ àšàšŸ àšžàšà©à¥€ àšà©±àš àšžàš¿àšžàšàš® àššà©à©° àšŠàšžàš€àšàš€à© àšªà©àšà©àš àšà©°àšžàšàšŸàš² àšàš°àšš àš²àš àš à©àš àšà©à©°àšà©àšàš àš
àš€à© àšà©±àš @@PRODUCT_NAME@@ àšªàš°àšŸàšàšžà© àšžàš°àšµàš° àšàšŸàš @@PRODUCT_NAME@@ àšžàš°àšµàš° àš°àšŸàš¹à©àš àšàš¿à©±àšàšžàšàšŸàš°àš àš¹à©àš£ àš²àš àš à©àš àšžàš°àšà©àš«àš¿àšà©àš àš²àš àš²à©à© àš°àš¹àš¿à©°àšŠà© àš¹à©à¥€ àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-
keys" target="_blank" >RHN àš¹àšµàšŸàš²àšŸ àšàšŸàšàš¡</a> àšµà©àšà©à¥€</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -10131,11 +10131,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àšàš¹àššàšŸàš àš«àšŸàšàš²àšŸàš àšŠà© àšžà©àšà© àš¹à©, àšàš¿àšž àššà©à©° àšà©±àš àšžàš¿àšžàšàš® àšà©±àš€à© àšà©±àš àšàšŸàšž àšàš¿à©±àšàšžàšàšŸàš°àš àšàš°àšš àšŠà©àš°àšŸàšš àš®à©à©-àšªà©àš°àšŸàšªàš€ àšà©àš€àšŸ àšàšŸàšµà©àšàšŸà¥€ àš€à©àšžà©àš àšà©±àš àšàš¿à©±àšàšžàšàšŸàš°àš àšªàš°à©àš«àšŸàšàš² àšµàš¿à©±àš àšà©±àš àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àššà©à©° àšµà©àš àšžàšàšŠà© àš¹à©à¥€ àš¹à©àš° àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN àš¹àšµàšŸàš²àšŸ àšàšŸàšàš¡</a> àššà©à©° àšµà©àšà©à¥€ àš€à©àš¹àšŸàš¡à© àšžà©°àšàš àšš àšµàš²à©àš àš¹à©àš àšŠàš¿à©±àš€à©àšàš àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àš¬àš£àšŸàšàšàš àšàšàšàš àš¹àššà¥€</target>
+ <target>àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àšàš¹àššàšŸàš àš«àšŸàšàš²àšŸàš àšŠà© àšžà©àšà© àš¹à©, àšàš¿àšž àššà©à©° àšà©±àš àšžàš¿àšžàšàš® àšà©±àš€à© àšà©±àš àšàšŸàšž àšàš¿à©±àšàšžàšàšŸàš°àš àšàš°àšš àšŠà©àš°àšŸàšš àš®à©à©-àšªà©àš°àšŸàšªàš€ àšà©àš€àšŸ àšàšŸàšµà©àšàšŸà¥€ àš€à©àšžà©àš àšà©±àš àšàš¿à©±àšàšžàšàšŸàš°àš àšªàš°à©àš«àšŸàšàš² àšµàš¿à©±àš àšà©±àš àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àššà©à©° àšµà©àš àšžàšàšŠà© àš¹à©à¥€ àš¹à©àš° àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN àš¹àšµàšŸàš²àšŸ àšàšŸàšàš¡</a> àššà©à©° àšµà©àšà©à¥€ àš€à©àš¹àšŸàš¡à© àšžà©°àšàš àšš àšµàš²à©àš àš¹à©àš àšŠàš¿à©±àš€à©àšàš àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àš¬àš£àšŸàšàšàš àšàšàšàš àš¹àššà¥€</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -10257,11 +10257,11 @@ Please note that some manual configuration of these scripts may still be require
<target>àšàš¿à©±àšàšžàšàšŸàš°àš àš«àšŸàšàš² àšžà©àš°à©±àšàš¿àš àšžà©àšà© àš¬àš£àšŸàš</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>àšà©±àš¥à© àšŠàš¿à©±àš€à©àšàš àšà©àš àšµà© àš«àšŸàšàš²àšŸàš àšàšŸàš àš¡àšŸàšàš°à©àšàšàš°à©àšàš àššà©à©° àš¹à©àš àšŠàš¿àš€à© àšàš¿à©±àšàšžàšàšŸàš°àš àšµàš¿à©±àš àšžà©àš°à©±àšàš¿àš
àš€ àš°à©±àšàš¿àš àšàšŸàšµà©àšàšŸà¥€ àšªà©àš°àš€à© àšžàš€àš° àšµàš¿à©±àš àš«àšŸàšàš²àšŸàš àšàšŸàš àš¡àšŸàšàš°à©àšàšàš°à©àšàš àšŠà© àšžà©àšà© àš¹à©à¥€ <br/>àš¹àš°à©àš àšžà©àšà© àšŠàšŸ àšà©à©±àš² àš
àšàšŸàš° <strong>1 àš®à©àš¬àšŸ</strong> àš€à©±àš àšžà©àš®àš€ àš¹à©à¥€ àš¹à©àš° àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN àš¹àšµàšŸàš²àšŸ àšàšŸàšàš¡</a> àšµà©àšà©à¥€</target>
+ <target>àšà©±àš¥à© àšŠàš¿à©±àš€à©àšàš àšà©àš àšµà© àš«àšŸàšàš²àšŸàš àšàšŸàš àš¡àšŸàšàš°à©àšàšàš°à©àšàš àššà©à©° àš¹à©àš àšŠàš¿àš€à© àšàš¿à©±àšàšžàšàšŸàš°àš àšµàš¿à©±àš àšžà©àš°à©±àšàš¿àš
àš€ àš°à©±àšàš¿àš àšàšŸàšµà©àšàšŸà¥€ àšªà©àš°àš€à© àšžàš€àš° àšµàš¿à©±àš àš«àšŸàšàš²àšŸàš àšàšŸàš àš¡àšŸàšàš°à©àšàšàš°à©àšàš àšŠà© àšžà©àšà© àš¹à©à¥€ <br/>àš¹àš°à©àš àšžà©àšà© àšŠàšŸ àšà©à©±àš² àš
àšàšŸàš° <strong>1 àš®à©àš¬àšŸ</strong> àš€à©±àš àšžà©àš®àš€ àš¹à©à¥€ àš¹à©àš° àšµàš§à©àš°à© àšàšŸàš£àšàšŸàš°à© àš²àš <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN àš¹àšµàšŸàš²àšŸ àšàšŸàšàš¡</a> àšµà©àšà©à¥€</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml
index 30650ef..af9fadb 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_pt_BR.xml
@@ -971,18 +971,18 @@
<target>A <strong>@@PRODUCT_NAME@@</strong> é o principal serviço para manter a infra-estrutura Linux de sua empresa. Apresentamos alguns links abaixo que podem ser úteis para questões sobre seu servidor @@PRODUCT_NAME@@.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Para obter detalhes sobre @@PRODUCT_NAME@@, visite nosso web site em <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>Para obter detalhes sobre @@PRODUCT_NAME@@, visite nosso web site em <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>Para detalhes sobre como interagir com a comunidade do @@PRODUCT_NAME@@, por favor visite-nos em <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>.</target>
+ <target>Para detalhes sobre como interagir com a comunidade do @@PRODUCT_NAME@@, por favor visite-nos em <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10226,11 +10226,11 @@ Você teria então que usar o $nome dentro do perfil para substituir no valor.</
<target>Você tem certeza que deseja remover este Kickstart?<strong><p>ATENÃÃO: remover este kickstart também removerá o sistema e as opções correspondentes associada a este.</p></strong><p><strong>Por favor clique no botão somente uma vez; o processo de remoção levará um tempo para completar.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> A configuração do Perfil Padrão da Organização pode ser usada com arquivos de kickstart básicos ou criados manualmente. Selecione esta opção para indicar qual perfil é utilizado na sua Organização quando a URL <a href="{0}" target="_new" > <strong> deste link </strong> </a> é especificada na seção <code>ks=&lt;URL&gt;</code> do seu arquivo de kickstart. O link não funcionará a não ser que o Padrão da Organização seja especificado.</span></target>
+ <target><span class="small-text"> A configuração do Perfil Padrão da Organização pode ser usada com arquivos de kickstart básicos ou criados manualmente. Selecione esta opção para indicar qual perfil é utilizado na sua Organização quando a URL <a href="{0}" target="_blank" > <strong> deste link </strong> </a> é especificada na seção <code>ks=&lt;URL&gt;</code> do seu arquivo de kickstart. O link não funcionará a não ser que o Padrão da Organização seja especificado.</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10967,11 +10967,11 @@ Você teria então que usar o $nome dentro do perfil para substituir no valor.</
<target>Nenhuma chave pública ou certificados ssl definidos.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>Você pode referenciar estas chaves e/ou certificados nos seus perfis de kickstart a fim de instalá-los nos sistemas durante um kickstart. Um sistema precisará das chaves corretas para instalar os pacotes assinados e do certificado correto para poder ter o kickstart por um @@PRODUCT_NAME@@ Proxy Server ou @@PRODUCT_NAME@@ Server. Para mais informações, consulte o <a href="/rhn/help/reference/en/s3-sm-system-kick-keys.jsp" target="_new" >RHN Reference Guide</a></target>
+ <target>Você pode referenciar estas chaves e/ou certificados nos seus perfis de kickstart a fim de instalá-los nos sistemas durante um kickstart. Um sistema precisará das chaves corretas para instalar os pacotes assinados e do certificado correto para poder ter o kickstart por um @@PRODUCT_NAME@@ Proxy Server ou @@PRODUCT_NAME@@ Server. Para mais informações, consulte o <a href="/rhn/help/reference/en/s3-sm-system-kick-keys.jsp" target="_blank" >RHN Reference Guide</a></target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11128,11 +11128,11 @@ Você teria então que usar o $nome dentro do perfil para substituir no valor.</
<target>Preservação de Arquivos</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>Listas de preservação de arquivos são listas de arquivos que serão restauradas em um sistema durante um kickstart especÃfico. Você pode fazer referência a uma lista de preservação de arquivos em um perfil de kickstart. Para maiores informações, consulte o <a href="/rhn/help/reference/en/s3-sm-system-kick-preserve.jsp" target="_new" >RHN Reference Guide</a>. As seguintes listas de preservação de arquivos foram criadas para serem usadas pela sua organização: </target>
+ <target>Listas de preservação de arquivos são listas de arquivos que serão restauradas em um sistema durante um kickstart especÃfico. Você pode fazer referência a uma lista de preservação de arquivos em um perfil de kickstart. Para maiores informações, consulte o <a href="/rhn/help/reference/en/s3-sm-system-kick-preserve.jsp" target="_blank" >RHN Reference Guide</a>. As seguintes listas de preservação de arquivos foram criadas para serem usadas pela sua organização: </target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11254,11 +11254,11 @@ Você teria então que usar o $nome dentro do perfil para substituir no valor.</
<target>Criar Lista de Preservação de Arquivos de Kickstart</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>Quaisquer arquivos ou diretórios listados aqui serão preservados após o kickstart. Liste arquivos ou diretórios, um por linha.<br/>Cada lista é limitada a um tamanho máximo de <strong>1 MB</strong>. Para mais informações, consulte o <a href="/rhn/help/reference/en/s3-sm-system-kick-preserve.jsp" target="_new" >RHN Reference Guide</a>. </target>
+ <target>Quaisquer arquivos ou diretórios listados aqui serão preservados após o kickstart. Liste arquivos ou diretórios, um por linha.<br/>Cada lista é limitada a um tamanho máximo de <strong>1 MB</strong>. Para mais informações, consulte o <a href="/rhn/help/reference/en/s3-sm-system-kick-preserve.jsp" target="_blank" >RHN Reference Guide</a>. </target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml
index 37a1612..946aa1f 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ru.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> &mdash; ПÑкÑÑÑÐ°Ñ (GPLv2) ÑлÑжба пПЎЎеÑжкО ОМÑÑаÑÑÑÑкÑÑÑÑ Linux. ÐОже пÑÐžÐ²ÐµÐŽÐµÐœÑ ÑÑÑлкО Ма ÑÑÑаМОÑÑ, гЎе ЌПжМП МайÑО ПÑвеÑÑ ÐœÐ° вПпÑПÑÑ ÐŸÑМПÑОÑелÑМП ваÑегП ÑеÑвеÑа @@PRODUCT_NAME@@.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>ÐПЎÑПбМÑÑ ÐžÐœÑПÑЌаÑÐžÑ ÐŸ @@PRODUCT_NAME@@ ЌПжМП МайÑО Ма ÑайÑе <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>.</target>
+ <target>ÐПЎÑПбМÑÑ ÐžÐœÑПÑЌаÑÐžÑ ÐŸ @@PRODUCT_NAME@@ ЌПжМП МайÑО Ма ÑайÑе <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>ÐМÑПÑЌаÑÐžÑ ÐŸ ÑвÑзО Ñ ÑППбÑеÑÑвПЌ @@PRODUCT_NAME@@ ЌПжМП МайÑО Ма ÑÑÑаМОÑе <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </target>
+ <target>ÐМÑПÑЌаÑÐžÑ ÐŸ ÑвÑзО Ñ ÑППбÑеÑÑвПЌ @@PRODUCT_NAME@@ ЌПжМП МайÑО Ма ÑÑÑаМОÑе <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10218,11 +10218,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ÐÑ ÐŽÐµÐ¹ÑÑвОÑелÑМП Ñ
ПÑОÑе ÑЎалОÑÑ ÑÑÐŸÑ ÐºÐžÐºÑÑаÑÑ?<p><strong>ÐÐ ÐÐУÐÐ ÐÐÐÐÐÐÐ: ÑЎалеМОе кОкÑÑаÑÑа пÑÐžÐ²ÐµÐŽÐµÑ Ðº ÑÐŽÐ°Ð»ÐµÐœÐžÑ ÑвÑзаММПй Ñ ÐœÐžÐŒ ÑОÑÑÐµÐŒÑ Ðž ÑППÑвеÑÑÑвÑÑÑОÑ
паÑаЌеÑÑПв.</strong></p><p><strong>ÐажЌОÑе ÐºÐœÐŸÐ¿ÐºÑ ÑПлÑкП ПЎОМ Ñаз, пÑПÑеÑÑ ÑÐŽÐ°Ð»ÐµÐœÐžÑ ÐœÐµ Ð·Ð°Ð¹ÐŒÐµÑ ÐŒÐœÐŸÐ³ÐŸ вÑеЌеМО.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text"> ÐМаÑеМОе пÑПÑÐžÐ»Ñ ÐŸÑгаМОзаÑОО пП ÑЌПлÑÐ°ÐœÐžÑ ÐŒÐŸÐ¶ÐµÑ ÐžÑпПлÑзПваÑÑÑÑ Ðž Ñ ÐŒÐžÐœÐžÐŒÐ°Ð»ÑМÑÐŒ ÑайлПЌ кОкÑÑаÑÑа, О Ñ ÑайлПЌ кОкÑÑаÑÑа, ÑПзЎаММÑÐŒ вÑÑÑМÑÑ. ÐÑбеÑОÑе ÑÑÑ ÐŸÐ¿ÑÐžÑ ÑÑÐŸÐ±Ñ ÑказаÑÑ Ð¿ÑПÑОлÑ, ОÑпПлÑзÑеЌÑй в ваÑей ПÑгаМОзаÑОО, кПгЎа ÑекÑÐžÑ Ñайла кОкÑÑаÑÑа <code>ks=&lt;URL&gt;</code> ÑПЎеÑÐ¶ÐžÑ <a href="{0}" target="_new" ><strong>ÑÑÑ ÑÑÑлкÑ</strong></a>. СÑÑлка бÑÐŽÐµÑ ÑабПÑаÑÑ ÑПлÑкП еÑлО заЎаМП зМаÑеМОе «ПÑгаМОзаÑОО пП ÑЌПлÑаМОÑ».</span></target>
+ <target><span class="small-text"> ÐМаÑеМОе пÑПÑÐžÐ»Ñ ÐŸÑгаМОзаÑОО пП ÑЌПлÑÐ°ÐœÐžÑ ÐŒÐŸÐ¶ÐµÑ ÐžÑпПлÑзПваÑÑÑÑ Ðž Ñ ÐŒÐžÐœÐžÐŒÐ°Ð»ÑМÑÐŒ ÑайлПЌ кОкÑÑаÑÑа, О Ñ ÑайлПЌ кОкÑÑаÑÑа, ÑПзЎаММÑÐŒ вÑÑÑМÑÑ. ÐÑбеÑОÑе ÑÑÑ ÐŸÐ¿ÑÐžÑ ÑÑÐŸÐ±Ñ ÑказаÑÑ Ð¿ÑПÑОлÑ, ОÑпПлÑзÑеЌÑй в ваÑей ПÑгаМОзаÑОО, кПгЎа ÑекÑÐžÑ Ñайла кОкÑÑаÑÑа <code>ks=&lt;URL&gt;</code> ÑПЎеÑÐ¶ÐžÑ <a href="{0}" target="_blank" ><strong>ÑÑÑ ÑÑÑлкÑ</strong></a>. СÑÑлка бÑÐŽÐµÑ ÑабПÑаÑÑ ÑПлÑкП еÑлО заЎаМП зМаÑеМОе «ПÑгаМОзаÑОО пП ÑЌПлÑаМОÑ».</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10960,11 +10960,11 @@ Please note that some manual configuration of these scripts may still be require
<target>Ðе Ð·Ð°ÐŽÐ°ÐœÑ ÐŸÑкÑÑÑÑе клÑÑО ОлО ÑеÑÑОÑОкаÑÑ ssl.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>ÐÑ ÐŒÐŸÐ¶ÐµÑе ÑÑÑлаÑÑÑÑ ÐœÐ° ÑÑО клÑÑО О ÑеÑÑОÑОкаÑÑ Ð² пÑПÑОле кОкÑÑаÑÑа Ñ ÑелÑÑ ÐžÑ
ÑÑÑаМПвкО в пÑПÑеÑÑе вÑÐ¿ÐŸÐ»ÐœÐµÐœÐžÑ ÐºÐžÐºÑÑаÑÑа. СОÑÑеЌа ОÑпПлÑзÑÐµÑ ÐºÐ»ÑÑО ÐŽÐ»Ñ ÑÑÑаМПвкО пПЎпОÑаММÑÑ
пакеÑПв, а ÑеÑÑОÑÐžÐºÐ°Ñ ÐŽÐ»Ñ Ð²ÑÐ¿ÐŸÐ»ÐœÐµÐœÐžÑ ÐºÐžÐºÑÑаÑÑа ÑеÑвеÑПЌ @@PRODUCT_NAME@@ Proxy ОлО @@PRODUCT_NAME@@. Ðа ЎалÑМейÑей ОМÑПÑЌаÑОей ПбÑаÑОÑеÑÑ Ðº <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >СпÑавПÑÐœÐŸÐŒÑ ÑÑкПвПЎÑÑÐ²Ñ RHN</a>.</target>
+ <target>ÐÑ ÐŒÐŸÐ¶ÐµÑе ÑÑÑлаÑÑÑÑ ÐœÐ° ÑÑО клÑÑО О ÑеÑÑОÑОкаÑÑ Ð² пÑПÑОле кОкÑÑаÑÑа Ñ ÑелÑÑ ÐžÑ
ÑÑÑаМПвкО в пÑПÑеÑÑе вÑÐ¿ÐŸÐ»ÐœÐµÐœÐžÑ ÐºÐžÐºÑÑаÑÑа. СОÑÑеЌа ОÑпПлÑзÑÐµÑ ÐºÐ»ÑÑО ÐŽÐ»Ñ ÑÑÑаМПвкО пПЎпОÑаММÑÑ
пакеÑПв, а ÑеÑÑОÑÐžÐºÐ°Ñ ÐŽÐ»Ñ Ð²ÑÐ¿ÐŸÐ»ÐœÐµÐœÐžÑ ÐºÐžÐºÑÑаÑÑа ÑеÑвеÑПЌ @@PRODUCT_NAME@@ Proxy ОлО @@PRODUCT_NAME@@. Ðа ЎалÑМейÑей ОМÑПÑЌаÑОей ПбÑаÑОÑеÑÑ Ðº <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >СпÑавПÑÐœÐŸÐŒÑ ÑÑкПвПЎÑÑÐ²Ñ RHN</a>.</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11121,11 +11121,11 @@ Please note that some manual configuration of these scripts may still be require
<target>ÐПÑÑÑаМПвлеМОе ÑайлПв</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>СпОÑкО вПÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÐžÑ ÑайлПв ÑПЎеÑÐ¶Ð°Ñ ÑайлÑ, кПÑПÑÑе бÑÐŽÑÑ Ð²ÐŸÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÑ Ð¿ÑО кОкÑÑаÑÑе. СпОÑПк ÐŒÐŸÐ¶ÐµÑ Ð±ÑÑÑ ÑказаМ в пÑПÑОле кОкÑÑаÑÑа. Ðа ЎалÑМейÑей ОМÑПÑЌаÑОей ПбÑаÑОÑеÑÑ Ðº <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >СпÑавПÑÐœÐŸÐŒÑ ÑÑкПвПЎÑÑÐ²Ñ RHN</a>. ÐОже пÑÐžÐ²ÐµÐŽÐµÐœÑ ÑпОÑкО вПÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÐžÑ ÑайлПв, ÑПзЎаММÑе ÐŽÐ»Ñ Ð²Ð°Ñей ПÑгаМОзаÑОО:</target>
+ <target>СпОÑкО вПÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÐžÑ ÑайлПв ÑПЎеÑÐ¶Ð°Ñ ÑайлÑ, кПÑПÑÑе бÑÐŽÑÑ Ð²ÐŸÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÑ Ð¿ÑО кОкÑÑаÑÑе. СпОÑПк ÐŒÐŸÐ¶ÐµÑ Ð±ÑÑÑ ÑказаМ в пÑПÑОле кОкÑÑаÑÑа. Ðа ЎалÑМейÑей ОМÑПÑЌаÑОей ПбÑаÑОÑеÑÑ Ðº <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >СпÑавПÑÐœÐŸÐŒÑ ÑÑкПвПЎÑÑÐ²Ñ RHN</a>. ÐОже пÑÐžÐ²ÐµÐŽÐµÐœÑ ÑпОÑкО вПÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÐžÑ ÑайлПв, ÑПзЎаММÑе ÐŽÐ»Ñ Ð²Ð°Ñей ПÑгаМОзаÑОО:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11247,11 +11247,11 @@ Please note that some manual configuration of these scripts may still be require
<target>СПзЎаÑÑ ÑпОÑПк вПÑÑÑÐ°ÐœÐŸÐ²Ð»ÐµÐœÐžÑ ÑайлПв кОкÑÑаÑÑа</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>ÐÑе пеÑеÑОÑлеММÑе ÑÐ°Ð¹Ð»Ñ Ðž каÑалПгО бÑÐŽÑÑ ÑПÑ
ÑÐ°ÐœÐµÐœÑ Ð¿ÑО кОкÑÑаÑÑе. УкажОÑе ПЎОМ Ñайл ОлО каÑалПг Ма ÑÑÑПкÑ.<br/>ÐакÑОЌалÑМÑй ÑÐ°Ð·ÐŒÐµÑ ÑпОÑкПв &mdash; <strong>1 ÐбайÑ</strong>. Ðа ЎалÑМейÑей ОМÑПÑЌаÑОей ПбÑаÑОÑеÑÑ Ðº <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >СпÑавПÑÐœÐŸÐŒÑ ÑÑкПвПЎÑÑÐ²Ñ RHN</a>.</target>
+ <target>ÐÑе пеÑеÑОÑлеММÑе ÑÐ°Ð¹Ð»Ñ Ðž каÑалПгО бÑÐŽÑÑ ÑПÑ
ÑÐ°ÐœÐµÐœÑ Ð¿ÑО кОкÑÑаÑÑе. УкажОÑе ПЎОМ Ñайл ОлО каÑалПг Ма ÑÑÑПкÑ.<br/>ÐакÑОЌалÑМÑй ÑÐ°Ð·ÐŒÐµÑ ÑпОÑкПв &mdash; <strong>1 ÐбайÑ</strong>. Ðа ЎалÑМейÑей ОМÑПÑЌаÑОей ПбÑаÑОÑеÑÑ Ðº <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >СпÑавПÑÐœÐŸÐŒÑ ÑÑкПвПЎÑÑÐ²Ñ RHN</a>.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml
index 95478bb..a4795d5 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_ta.xml
@@ -889,18 +889,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> à®à®©à¯à®ªà®€à¯ à®à®°à¯ பà¯à®€à¯ à®®à¯à®² (GPLv2) லினà®à¯à®žà¯ à®
à®®à¯à®ªà¯à®ªà®¿à®©à¯ பரடமரிà®à¯à®à¯à®®à¯ சலà¯à®² à®à¯à®µà¯à®¯à®Ÿà®à¯à®®à¯. à®à¯à®Žà¯ à®à®³à¯à®³ à®à®£à¯à®ªà¯à®ªà¯à®à®³à¯, à®à®à¯à®à®³à¯à®à¯à®à¯ @@PRODUCT_NAME@@ à®à¯à®µà¯à®¯à®à®®à¯ பறà¯à®±à®¿ வினடà®à¯à®à®³à¯ à®à®°à¯à®šà¯à®€à®Ÿà®²à¯ à®
வறà¯à®±à®¿à®±à¯à®à¯ பயனà¯à®³à¯à®³à®€à®Ÿà® à®à®°à¯à®à¯à®à¯à®®à¯.</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>@@PRODUCT_NAME@@ பறà¯à®±à®¿à®¯ விவரà®à¯à®à®³à¯à®à¯à®à¯, à®à®à¯à®à®³à¯ à®à®£à¯à®¯ ஀ள à®®à¯à®à®µà®°à®¿ <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </target>
+ <target>@@PRODUCT_NAME@@ பறà¯à®±à®¿à®¯ விவரà®à¯à®à®³à¯à®à¯à®à¯, à®à®à¯à®à®³à¯ à®à®£à¯à®¯ ஀ள à®®à¯à®à®µà®°à®¿ <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>à®à®šà¯à®€ @@PRODUCT_NAME@@ à®à®®à¯à®à®€à¯à®€à¯à®à®©à¯ à®à®à®Ÿà®, à®à®à¯à®à®³à¯ <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>à®à®²à¯ படரà¯à®à¯à®à®µà¯à®®à¯. </target>
+ <target>à®à®šà¯à®€ @@PRODUCT_NAME@@ à®à®®à¯à®à®€à¯à®€à¯à®à®©à¯ à®à®à®Ÿà®, à®à®à¯à®à®³à¯ <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>à®à®²à¯ படரà¯à®à¯à®à®µà¯à®®à¯. </target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -9342,11 +9342,11 @@ Please note that some manual configuration of these scripts may still be require
<target>சà¯à®à¯à®à®³à¯ à®à®šà¯à®€ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯à®à¯ à®
எிà®à¯à® வà¯à®£à¯à®à¯à®®à®Ÿ?<strong><p>à®à®à¯à®à®°à®¿à®à¯à®à¯: à®à®šà¯à®€ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯à®à¯ à®
எிபà¯à®ªà®€à¯ à®
஀௠஀à¯à®à®°à¯à®ªà®Ÿà®© à®à®£à®¿à®©à®¿ மறà¯à®±à¯à®®à¯ வடயà¯à®ªà¯à®ªà¯à®à®³à¯à®¯à¯à®®à¯ சà¯à®à¯à®à¯à®®à¯. </p> </strong><p><strong>à®à®šà¯à®€à®ªà¯ பà¯à®€à¯à®€à®Ÿà®©à¯ à®à®°à¯ à®®à¯à®±à¯ à®à¯à®à¯à®à¯à®à®¿, à®
எி஀à¯à®€à®²à¯ பணிய௠மà¯à®à®¿à®à¯à®à®µà¯à®®à¯, à®
஀றà¯à®à¯ à®à®¿à®±à®¿à®€à¯ சà¯à®°à®®à¯ à®à®à¯à®à¯à®à¯à®®à¯.</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target>à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ சிறà¯à®µà®© விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà¯ à®
à®®à¯à®µà¯à®à®³à¯ à®à®šà¯à®€ விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà®¿à®©à¯ பயனà¯à®ªà®à¯à®€à¯à®€à¯à®®à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ à®à®¿à®³à¯à®¯à®©à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® <a href="{0}" target="_new" > à®à®Ÿà®£ à®à¯à®à¯à®à¯à®à®µà¯à®®à¯ </a>à®à®©à¯à®ªà®€à®¿à®²à¯ <code>ks=&lt;URL&gt;</code> à®à®šà¯à®€ urlà® à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ சிறà¯à®µà®²à¯à®à¯à®à¯ à®à®°à¯à®©à®²à¯ ம஀ிபà¯à®ªà¯à®°à¯à®à¯à®à¯ à®à®šà¯à®€ urlà® à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à¯à®à®¿à®±à®€à¯. à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà®Ÿà® à®à®°à¯ à®à®°à¯ சிறà¯à®µà®©à®®à¯ à®®à®à¯à®à¯à®®à¯ à®à®°à¯à®à¯à® வà¯à®£à¯à®à¯à®®à¯.</target>
+ <target>à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà¯ சிறà¯à®µà®© விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà¯ à®
à®®à¯à®µà¯à®à®³à¯ à®à®šà¯à®€ விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà®¿à®©à¯ பயனà¯à®ªà®à¯à®€à¯à®€à¯à®®à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ à®à®¿à®³à¯à®¯à®©à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® <a href="{0}" target="_blank" > à®à®Ÿà®£ à®à¯à®à¯à®à¯à®à®µà¯à®®à¯ </a>à®à®©à¯à®ªà®€à®¿à®²à¯ <code>ks=&lt;URL&gt;</code> à®à®šà¯à®€ urlà® à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ சிறà¯à®µà®²à¯à®à¯à®à¯ à®à®°à¯à®©à®²à¯ ம஀ிபà¯à®ªà¯à®°à¯à®à¯à®à¯ à®à®šà¯à®€ urlà® à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à¯à®à®¿à®±à®€à¯. à®®à¯à®©à¯à®©à®¿à®°à¯à®ªà¯à®ªà®Ÿà® à®à®°à¯ à®à®°à¯ சிறà¯à®µà®©à®®à¯ à®®à®à¯à®à¯à®®à¯ à®à®°à¯à®à¯à® வà¯à®£à¯à®à¯à®®à¯.</target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -9978,11 +9978,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à®à®šà¯à®€ பà¯à®€à¯ விà®à¯ à®
லà¯à®²à®€à¯ ssl à®à®Ÿà®©à¯à®±à®¿à®€à®Žà¯à®®à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®ªà¯à®ªà®à®µà®¿à®²à¯à®²à¯.</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>à®à®šà¯à®€ விà®à¯à®à®³à¯/à®à®Ÿà®©à¯à®±à®¿à®€à®Žà¯à®à®³à¯ சிறà¯à®µ à®à®à¯à®à®³à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà®¿à®²à¯ à®
வறà¯à®±à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯ à®à®£à®¿à®©à®¿à®à¯à®à¯ à®à¯à®¯à¯à®Žà¯à®€à¯à®€à®¿à®à¯à® ஀à¯à®à¯à®ªà¯à®ªà¯à®à®³à¯ சிறà¯à®µ à®à®°à®¿à®¯à®Ÿà®© விà®à¯à®à®³à¯ வà¯à®£à¯à®à¯à®®à¯ மறà¯à®±à¯à®®à¯ @@PRODUCT_NAME@@ ப஀ிலடள௠à®à¯à®µà¯à®¯à®à®®à¯ à®
லà¯à®²à®€à¯ @@PRODUCT_NAME@@ à®à¯à®µà¯à®¯à®à®€à¯à®€à®Ÿà®²à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ à®à¯à®¯à¯à®¯ à®à®°à®¿à®¯à®Ÿà®© à®à®Ÿà®©à¯à®±à®¿à®€à®Žà¯ வà¯à®£à¯à®à¯à®®à¯. à®à¯à®à¯à®€à®²à¯ விவரà®à¯à®à®³à¯à®à¯à®à¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN à®à¯à®±à®¿à®ªà¯à®ªà¯ à®à¯à®¯à¯à®à¯à®à®¿à®©à¯</a>படà®
°à¯à®à¯à®à®µà¯à®®à¯.</target>
+ <target>à®à®šà¯à®€ விà®à¯à®à®³à¯/à®à®Ÿà®©à¯à®±à®¿à®€à®Žà¯à®à®³à¯ சிறà¯à®µ à®à®à¯à®à®³à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà®¿à®²à¯ à®
வறà¯à®±à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à® வà¯à®£à¯à®à¯à®®à¯ à®à®£à®¿à®©à®¿à®à¯à®à¯ à®à¯à®¯à¯à®Žà¯à®€à¯à®€à®¿à®à¯à® ஀à¯à®à¯à®ªà¯à®ªà¯à®à®³à¯ சிறà¯à®µ à®à®°à®¿à®¯à®Ÿà®© விà®à¯à®à®³à¯ வà¯à®£à¯à®à¯à®®à¯ மறà¯à®±à¯à®®à¯ @@PRODUCT_NAME@@ ப஀ிலடள௠à®à¯à®µà¯à®¯à®à®®à¯ à®
லà¯à®²à®€à¯ @@PRODUCT_NAME@@ à®à¯à®µà¯à®¯à®à®€à¯à®€à®Ÿà®²à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ à®à¯à®¯à¯à®¯ à®à®°à®¿à®¯à®Ÿà®© à®à®Ÿà®©à¯à®±à®¿à®€à®Žà¯ வà¯à®£à¯à®à¯à®®à¯. à®à¯à®à¯à®€à®²à¯ விவரà®à¯à®à®³à¯à®à¯à®à¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN à®à¯à®±à®¿à®ªà¯à®ªà¯ à®à¯à®¯à¯à®à¯à®à®¿à®©à¯</a>பட
à®°à¯à®à¯à®à®µà¯à®®à¯.</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -10132,11 +10132,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>à®à®°à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à¯à® à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯à®à®¿à®©à¯ பà¯à®€à¯ à®à®£à®¿à®©à®¿à®¯à®¿à®²à¯ மற௠à®à¯à®®à®¿à®à¯à®à®ªà¯à®ªà®à¯à®®à¯ à®à¯à®ªà¯à®ªà¯à®à®³à®¿à®©à¯ பà®à¯à®à®¿à®¯à®²à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à¯à®à®³à¯ à®à®à¯à®®à¯. சà¯à®à¯à®à®³à¯ à®à®°à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà®¿à®²à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®²à®Ÿà®®à¯. à®®à¯à®²à¯à®®à¯ à®à¯à®à¯à®€à®²à¯ விவரà®à¯à®à®³à¯à®à¯à®à¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN à®à¯à®±à®¿à®ªà¯à®ªà¯ à®à¯à®¯à¯à®à¯à®à®¿à®©à¯</a>படரà¯à®à¯à®à®µà¯à®®à¯. பினà¯à®µà®°à¯à®®à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à¯
à®à®³à¯ à®à®à¯à®à®³à¯ சிறà¯à®µà®©à®€à¯à®€à®¿à®²à¯ பயனà¯à®ªà®à¯à®€à¯à®€ à®à®°à¯à®µà®Ÿà®à¯à®à®ªà¯à®ªà®à¯à®à®€à®Ÿà®à¯à®®à¯:</target>
+ <target>à®à®°à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à¯à® à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯à®à®¿à®©à¯ பà¯à®€à¯ à®à®£à®¿à®©à®¿à®¯à®¿à®²à¯ மற௠à®à¯à®®à®¿à®à¯à®à®ªà¯à®ªà®à¯à®®à¯ à®à¯à®ªà¯à®ªà¯à®à®³à®¿à®©à¯ பà®à¯à®à®¿à®¯à®²à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à¯à®à®³à¯ à®à®à¯à®®à¯. சà¯à®à¯à®à®³à¯ à®à®°à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ விவரà®à¯à®à¯à®±à®¿à®ªà¯à®ªà®¿à®²à¯ à®à¯à®±à®¿à®ªà¯à®ªà®¿à®à®²à®Ÿà®®à¯. à®®à¯à®²à¯à®®à¯ à®à¯à®à¯à®€à®²à¯ விவரà®à¯à®à®³à¯à®à¯à®à¯ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN à®à¯à®±à®¿à®ªà¯à®ªà¯ à®à¯à®¯à¯à®à¯à®à®¿à®©à¯</a>படரà¯à®à¯à®à®µà¯à®®à¯. பினà¯à®µà®°à¯à®®à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à
¯à®à®³à¯ à®à®à¯à®à®³à¯ சிறà¯à®µà®©à®€à¯à®€à®¿à®²à¯ பயனà¯à®ªà®à¯à®€à¯à®€ à®à®°à¯à®µà®Ÿà®à¯à®à®ªà¯à®ªà®à¯à®à®€à®Ÿà®à¯à®®à¯:</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -10258,11 +10258,11 @@ Please note that some manual configuration of these scripts may still be require
<target>à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ à®à¯à®ªà¯à®ªà¯ பட஀à¯à®à®Ÿà®ªà¯à®ªà¯ பà®à¯à®à®¿à®¯à®²à¯ à®à®°à¯à®µà®Ÿà®à¯à®à®µà¯à®®à¯</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>à®à®à¯à®à¯ பà®à¯à®à®¿à®¯à®²à®¿à®à®ªà¯à®ªà®à¯à® à®à®€à®Ÿà®µà®€à¯ à®à¯à®ªà¯à®ªà¯à®à®³à¯ à®
லà¯à®²à®€à¯ à®
à®à¯à®µà¯à®à®³à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ பினà¯à®ªà®±à¯à®±à®¿ à®à¯à®®à®¿à®à¯à®à®ªà¯à®ªà®à¯à®®à¯. <br/>à®à®µà¯à®µà¯à®°à¯ பà®à¯à®à®¿à®¯à®²à¯à®®à¯ à®®à¯à®€à¯à®€à®®à¯ <strong>1 à®à®®à¯à®ªà®¿</strong> à®
ளவின௠à®à¯à®£à¯à®à®¿à®°à¯à®à¯à®à¯à®®à¯. à®®à¯à®²à¯à®®à¯ விவரà®à¯à®à®³à¯à®à¯à®à¯<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN à®à¯à®±à®¿à®ªà¯à®ªà¯ à®à¯à®¯à¯à®à¯à®à®¿à®©à¯</a> படரà¯à®à¯à®à®µà¯à®®à¯.</target>
+ <target>à®à®à¯à®à¯ பà®à¯à®à®¿à®¯à®²à®¿à®à®ªà¯à®ªà®à¯à® à®à®€à®Ÿà®µà®€à¯ à®à¯à®ªà¯à®ªà¯à®à®³à¯ à®
லà¯à®²à®€à¯ à®
à®à¯à®µà¯à®à®³à¯ à®à®¿à®à¯à®žà¯à®à®Ÿà®°à¯à®à¯ பினà¯à®ªà®±à¯à®±à®¿ à®à¯à®®à®¿à®à¯à®à®ªà¯à®ªà®à¯à®®à¯. <br/>à®à®µà¯à®µà¯à®°à¯ பà®à¯à®à®¿à®¯à®²à¯à®®à¯ à®®à¯à®€à¯à®€à®®à¯ <strong>1 à®à®®à¯à®ªà®¿</strong> à®
ளவின௠à®à¯à®£à¯à®à®¿à®°à¯à®à¯à®à¯à®®à¯. à®®à¯à®²à¯à®®à¯ விவரà®à¯à®à®³à¯à®à¯à®à¯<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN à®à¯à®±à®¿à®ªà¯à®ªà¯ à®à¯à®¯à¯à®à¯à®à®¿à®©à¯</a> படரà¯à®à¯à®à®µà¯à®®à¯.</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml
index e92848e..a6220cb 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_CN.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> æ¯äžäžªåŒæºïŒGPLv2ïŒLinux ç³»ç»ç®¡çè§£å³æ¹æ¡ãåŠææšæå
³äºæšç @@PRODUCT_NAME@@ æå¡åšçé®é¢ïŒä»¥äžçéŸæ¥å¯èœäŒå¯¹æšæåž®å©ã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>æå
³ @@PRODUCT_NAME@@ ç诊æ
è¯·è®¿é®æä»¬äœäº <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a> ççœç«ã</target>
+ <target>æå
³ @@PRODUCT_NAME@@ ç诊æ
è¯·è®¿é®æä»¬äœäº <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a> ççœç«ã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>äž @@PRODUCT_NAME@@ 瀟åºäºåšç诊æ
è¯·è®¿é® <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>ã</target>
+ <target>äž @@PRODUCT_NAME@@ 瀟åºäºåšç诊æ
è¯·è®¿é® <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>ã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10229,11 +10229,11 @@ Please note that some manual configuration of these scripts may still be require
<target>æšç¡®è®€èŠå é€è¿äžª Kickstart åïŒ<strong><p>èŠåïŒå é€è¿äžª kickstart å°å é€çŽ æäžå
¶å
³èçç³»ç»åååºçé项ã</p></strong><p><strong>请åªç¹äžæ¬¡æé®ïŒå é€è¿çšéèŠå åéæ¶éŽæ¹å¯å®æã</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text">æåšçææè
è£žæº kickstart æä»¶å¯äœ¿çšæºæé»è®€äŸ§å讟眮ãéæ©è¿äžªé项æ¥è¡šæåœåšæšç kickstart æä»¶ç <code>ks=&lt;URL&gt;</code> éšåæå®æ¥èª <a href="{0}" target="_new" > <strong> è¿äžªéŸæ¥ </strong> </a> ç URL æ¶æšæºæäœ¿çšç䟧åãé€éæå®æºæé»è®€ïŒåŠåè¯¥éŸæ¥æ æ³å·¥äœã</span></target>
+ <target><span class="small-text">æåšçææè
è£žæº kickstart æä»¶å¯äœ¿çšæºæé»è®€äŸ§å讟眮ãéæ©è¿äžªé项æ¥è¡šæåœåšæšç kickstart æä»¶ç <code>ks=&lt;URL&gt;</code> éšåæå®æ¥èª <a href="{0}" target="_blank" > <strong> è¿äžªéŸæ¥ </strong> </a> ç URL æ¶æšæºæäœ¿çšç䟧åãé€éæå®æºæé»è®€ïŒåŠåè¯¥éŸæ¥æ æ³å·¥äœã</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10970,11 +10970,11 @@ Kickstart 䟧åçåŒå¯Œè£
蜜çšåºåååºéé¡¹ïŒæå¯èœèŠççšæ·å®
<target>没æå®ä¹çå
Œ
±å¯é¥æ ssl è¯ä¹Šã</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>æšå¯ä»¥åèè¿äºåšæšç kickstart 䟧åäžçå¯é¥å/æè
è¯ä¹ŠïŒä»¥äŸ¿åš kickstart è¿çšäžå®è£
é£äºå¯é¥/è¯ä¹Šãç³»ç»éèŠæ£ç¡®çå¯é¥æ¥å®è£
çŸæ³šç蜯件å
ïŒè¿éèŠæ£ç¡®çè¯ä¹Šæèœéè¿ @@PRODUCT_NAME@@ 代çæå¡åšæè
@@PRODUCT_NAME@@ æå¡åšè¿è¡ kickstartãæå
³è¯Šæ
请åè <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >ãRHN åèæåã</a>ã</target>
+ <target>æšå¯ä»¥åèè¿äºåšæšç kickstart 䟧åäžçå¯é¥å/æè
è¯ä¹ŠïŒä»¥äŸ¿åš kickstart è¿çšäžå®è£
é£äºå¯é¥/è¯ä¹Šãç³»ç»éèŠæ£ç¡®çå¯é¥æ¥å®è£
çŸæ³šç蜯件å
ïŒè¿éèŠæ£ç¡®çè¯ä¹Šæèœéè¿ @@PRODUCT_NAME@@ 代çæå¡åšæè
@@PRODUCT_NAME@@ æå¡åšè¿è¡ kickstartãæå
³è¯Šæ
请åè <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >ãRHN åèæåã</a>ã</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11131,11 +11131,11 @@ Kickstart 䟧åçåŒå¯Œè£
蜜çšåºåååºéé¡¹ïŒæå¯èœèŠççšæ·å®
<target>æä»¶ä¿ç</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>æä»¶ä¿çåè¡šäžæååºçæä»¶äŒåšè¿è¡äžäžªç¹å®ç kickstart æ¶è¢«æ¢å€å°ç³»ç»äžãæšå¯ä»¥åš kickstart 䟧åäžæå®äžäžªæä»¶ä¿çå衚ãæå
³è¯Šæ
请åè<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >ãRHN åèæåã</a>ãå·²ç»äžºæšçæºæå建äºä»¥äžçæä»¶ä¿çå衚以äŸäœ¿çšïŒ </target>
+ <target>æä»¶ä¿çåè¡šäžæååºçæä»¶äŒåšè¿è¡äžäžªç¹å®ç kickstart æ¶è¢«æ¢å€å°ç³»ç»äžãæšå¯ä»¥åš kickstart 䟧åäžæå®äžäžªæä»¶ä¿çå衚ãæå
³è¯Šæ
请åè<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >ãRHN åèæåã</a>ãå·²ç»äžºæšçæºæå建äºä»¥äžçæä»¶ä¿çå衚以äŸäœ¿çšïŒ </target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11257,11 +11257,11 @@ Kickstart 䟧åçåŒå¯Œè£
蜜çšåºåååºéé¡¹ïŒæå¯èœèŠççšæ·å®
<target>å建 kickstart æä»¶ä¿çå衚</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>è¿éååºçæä»¶åç®åœäŒåš kickstart æ¶è¢«ä¿çãæ¯è¡åªååºäžäžªæä»¶æç®åœã<br/>æ¯äžªå衚çæå€§äžº <strong>1 MB</strong>ãæå
³è¯Šæ
请åé
<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >ãRHN åèæåã</a>ã</target>
+ <target>è¿éååºçæä»¶åç®åœäŒåš kickstart æ¶è¢«ä¿çãæ¯è¡åªååºäžäžªæä»¶æç®åœã<br/>æ¯äžªå衚çæå€§äžº <strong>1 MB</strong>ãæå
³è¯Šæ
请åé
<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >ãRHN åèæåã</a>ã</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml
index ed3fc1c..4102afc 100644
--- a/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml
+++ b/java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource_zh_TW.xml
@@ -971,18 +971,18 @@
<target><strong>@@PRODUCT_NAME@@</strong> æ¯åéæºåŒçïŒGPLv2ïŒLinux 系統管çè§£æ±ºæ¹æ¡ãåŠææšæä»»äœ @@PRODUCT_NAME@@ 䌺æåšäžçåé¡ïŒä»¥äžäžäºé£çµå°æšæè©²æææå¹«å©ã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody2">
- <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>. </source>
+ <source>For details on @@PRODUCT_NAME@@, please visit our web-site at <a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>åŠéååŸ @@PRODUCT_NAME@@ äžç詳æ
ïŒè«å鱿åçæ¯æŽç¶²ç«ã<a href="http://www.spacewalkproject.org/" target="_new"> http://www.spacewalkproject.org/</a>ãã</target>
+ <target>åŠéååŸ @@PRODUCT_NAME@@ äžç詳æ
ïŒè«å鱿åçæ¯æŽç¶²ç«ã<a href="http://www.spacewalkproject.org/" target="_blank"> http://www.spacewalkproject.org/</a>ãã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody3">
- <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>. </source>
+ <source>For details on interacting with the @@PRODUCT_NAME@@ community, please visit us at <a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>. </source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/Login</context>
</context-group>
- <target>åŠæ¬²ååŸæéæŒå @@PRODUCT_NAME@@ 瀟矀äºåäžç詳æ
ïŒè«å鱿åçç¶²ç«ã<a href="http://www.spacewalkproject.org/communicate.html" target="_new"> http://www.spacewalkproject.org/communicate.html</a>ãã</target>
+ <target>åŠæ¬²ååŸæéæŒå @@PRODUCT_NAME@@ 瀟矀äºåäžç詳æ
ïŒè«å鱿åçç¶²ç«ã<a href="http://www.spacewalkproject.org/communicate.html" target="_blank"> http://www.spacewalkproject.org/communicate.html</a>ãã</target>
</trans-unit>
<trans-unit id="login.jsp.satbody4">
<source> </source>
@@ -10231,11 +10231,11 @@ Please note that some manual configuration of these scripts may still be require
<target>æšç¢ºå®èŠåªé€éå kickstartïŒ<strong><p>èŠåïŒåªé€éå kickstart æç§»é€çžé系統èéžé
ã</p></strong><p><strong>è«æäžæéäžæ¬¡ïŒåªé€éçšæè±äžäžé»æéã</strong></p></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.summary2">
- <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_new" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
+ <source><span class="small-text"> The Organization Default Profile setting can be used with manually-created or bare-metal kickstart files. Select this option to indicate which profile in your Organization is used when the URL from <a href="{0}" target="_blank" > <strong> this link </strong> </a> is specified in the <code>ks=&lt;URL&gt;</code> section of your kickstart file. The link will not work unless an Organization Default is specified.</span></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/kickstart/KickstartDetailsEdit</context>
</context-group>
- <target><span class="small-text">ãçµç¹é èšèšå®æªãçèšå®å¯ä»¥èæåå»ºç«æç©ºæ©ç kickstart æªæ¡äžèµ·äœ¿çšãè«éžæéåéžé
ïŒæåºç¶<a href="{0}" target="_new" ><strong>éåé£çµ</strong></a>åš kickstart æªæ¡ç <code>ks=&lt;URL&gt;</code> 段èœäžïŒèŠçšåªäžåèšå®æªãéé£çµåªæåšçµç¹é èšåŒæå®åŸææçŒçäœçšã</span></target>
+ <target><span class="small-text">ãçµç¹é èšèšå®æªãçèšå®å¯ä»¥èæåå»ºç«æç©ºæ©ç kickstart æªæ¡äžèµ·äœ¿çšãè«éžæéåéžé
ïŒæåºç¶<a href="{0}" target="_blank" ><strong>éåé£çµ</strong></a>åš kickstart æªæ¡ç <code>ks=&lt;URL&gt;</code> 段èœäžïŒèŠçšåªäžåèšå®æªãéé£çµåªæåšçµç¹é èšåŒæå®åŸææçŒçäœçšã</span></target>
</trans-unit>
<trans-unit id="kickstartdetails.jsp.activeDescription">
<source>You cannot kickstart a system registered to @@PRODUCT_NAME@@ using an inactive kickstart profile. However, the kickstart files for inactive kickstart profiles are still available for manual download and may be used for bare metal kickstarts.</source>
@@ -10972,11 +10972,11 @@ Please note that some manual configuration of these scripts may still be require
<target>æªå®çŸ©å
¬ééé°æ SSL æèã</target>
</trans-unit>
<trans-unit id="keys.jsp.summary">
- <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN Reference Guide</a></source>
+ <source>You can refer to these keys and/or certificates in your kickstart profiles in order to install those keys/certificates on systems during a kickstart. A system will need the correct keys to install signed packages, and correct certificate to be kickstarted by an @@PRODUCT_NAME@@ Proxy Server or @@PRODUCT_NAME@@ Server. For more information, see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN Reference Guide</a></source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/keys/CryptoKeysList.do</context>
</context-group>
- <target>æšå¯ä»¥åš kickstart èšå®æªäžïŒåç
§éäºéé°èïŒæïŒæèïŒå¥œåš kickstart éçšäžïŒå®è£éäºéé°/æèã系統éèŠæ£ç¢ºçéé°æå¯å®è£ç¶éæžäœç°œç« çå¥ä»¶ïŒäžŠä¿®æ£éé @@PRODUCT_NAME@@ 代ç䌺æåšæ @@PRODUCT_NAME@@ 䌺æåšäŸå®è£ç kickstart æèãæ¬²ååŸæŽå€è©³æ
ïŒè«åé±ã<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_new" >RHN åèæå</a>ãã</target>
+ <target>æšå¯ä»¥åš kickstart èšå®æªäžïŒåç
§éäºéé°èïŒæïŒæèïŒå¥œåš kickstart éçšäžïŒå®è£éäºéé°/æèã系統éèŠæ£ç¢ºçéé°æå¯å®è£ç¶éæžäœç°œç« çå¥ä»¶ïŒäžŠä¿®æ£éé @@PRODUCT_NAME@@ 代ç䌺æåšæ @@PRODUCT_NAME@@ 䌺æåšäŸå®è£ç kickstart æèãæ¬²ååŸæŽå€è©³æ
ïŒè«åé±ã<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-keys" target="_blank" >RHN åèæå</a>ãã</target>
</trans-unit>
<trans-unit id="keys.jsp.toolbar">
<source>GPG Public Keys and SSL Certificates</source>
@@ -11133,11 +11133,11 @@ Please note that some manual configuration of these scripts may still be require
<target>æªæ¡ä¿å</target>
</trans-unit>
<trans-unit id="preservation_list.jsp.summary">
- <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
+ <source>File preservation lists are lists of files that will be restored to a system during a particular kickstart. You can reference a file preservation list in a kickstart profile. For more information refer to the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>. The following file preservation lists have been created for use by your organization:</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationList.do</context>
</context-group>
- <target>æªæ¡ä¿çæž
å®ååºäºåšäœ¿çšç¹å® kickstart å®è£ç³»çµ±æïŒéèŠä¿ççæªæ¡ãæšå¯ä»¥è® kickstart èšå®æªåç
§äžä»œæªæ¡ä¿çæž
å®ãæ¬²ç¥æŽå€è©³æ
ïŒè«åé±ã<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN åèæå</a>ããä»¥äžæªæ¡ä¿çæž
å®å·²å»ºç«ïŒä»¥äŸæšççµç¹äœ¿çšïŒ</target>
+ <target>æªæ¡ä¿çæž
å®ååºäºåšäœ¿çšç¹å® kickstart å®è£ç³»çµ±æïŒéèŠä¿ççæªæ¡ãæšå¯ä»¥è® kickstart èšå®æªåç
§äžä»œæªæ¡ä¿çæž
å®ãæ¬²ç¥æŽå€è©³æ
ïŒè«åé±ã<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN åèæå</a>ããä»¥äžæªæ¡ä¿çæž
å®å·²å»ºç«ïŒä»¥äŸæšççµç¹äœ¿çšïŒ</target>
</trans-unit>
<trans-unit id="preservationlistdeleteconfirm.jsp.summary">
<source>Are you sure you want to delete the selected File List(s)? <strong>WARNING: Deleting the selected File List(s) will delete all its associated files.</strong></source>
@@ -11259,11 +11259,11 @@ Please note that some manual configuration of these scripts may still be require
<target>å»ºç« kickstart æªæ¡ä¿çæž
å®</target>
</trans-unit>
<trans-unit id="preservation_edit.jsp.summary">
- <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN Reference Guide</a>.</source>
+ <source>Any files or directories listed here will be preserved following the kickstart. List files or directories one per line.<br/>Each list is limited to a total size of <strong>1 MB</strong>. For more information see the <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN Reference Guide</a>.</source>
<context-group name="ctx">
<context context-type="sourcefile">/rhn/systems/provisioning/preservation/PreservationListEdit.do</context>
</context-group>
- <target>æ¬èååºçæææªæ¡æç®ééœæåš kickstart ä¹åŸè¢«ä¿çãæ¯äžè¡ä»£è¡šäžåæªæ¡æç®éã<br/>æ¯åæž
å®ç倧å°éå¶çº<strong>1 MB</strong>ãæ¬²ç¥æŽå€è©³æ
ïŒè«åé±ã<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_new" >RHN åèæå</a>ãã</target>
+ <target>æ¬èååºçæææªæ¡æç®ééœæåš kickstart ä¹åŸè¢«ä¿çãæ¯äžè¡ä»£è¡šäžåæªæ¡æç®éã<br/>æ¯åæž
å®ç倧å°éå¶çº<strong>1 MB</strong>ãæ¬²ç¥æŽå€è©³æ
ïŒè«åé±ã<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-kick-preserve" target="_blank" >RHN åèæå</a>ãã</target>
</trans-unit>
<trans-unit id="softwareedit.jsp.summary1">
<source>You can modify the software this kickstart profile will deploy below.</source>
diff --git a/java/code/webapp/WEB-INF/pages/common/fragments/groups/header.jspf b/java/code/webapp/WEB-INF/pages/common/fragments/groups/header.jspf
index e106537..197f3c1 100644
--- a/java/code/webapp/WEB-INF/pages/common/fragments/groups/header.jspf
+++ b/java/code/webapp/WEB-INF/pages/common/fragments/groups/header.jspf
@@ -28,7 +28,7 @@
<c:if test="${not empty systemgroup}">
${fn:escapeXml(systemgroup.name)}
</c:if>
- <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s2-sm-system-group-list" target="_new" class="help-title">
+ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s2-sm-system-group-list" target="_blank" class="help-title">
<i class="fa fa-question-circle" title="<bean:message key='toolbar.jsp.helpicon.alt'/>"></i>
</a>
</div>
diff --git a/java/code/webapp/WEB-INF/pages/common/fragments/package/package_header.jspf b/java/code/webapp/WEB-INF/pages/common/fragments/package/package_header.jspf
index 416b329..ed1566c 100644
--- a/java/code/webapp/WEB-INF/pages/common/fragments/package/package_header.jspf
+++ b/java/code/webapp/WEB-INF/pages/common/fragments/package/package_header.jspf
@@ -1,7 +1,7 @@
<rhn:toolbar base="h1" icon="spacewalk-icon-packages" imgAlt="package.jsp.alt">
- <c:out value="${package_name}" escapeXml="true"/><a href="/rhn/help/reference/en-US/s1-sm-channels-packages.jsp" target="_new" class="help-title"><i class="fa fa-question-circle" title="Help Icon"></i></a>
+ <c:out value="${package_name}" escapeXml="true"/><a href="/rhn/help/reference/en-US/s1-sm-channels-packages.jsp" target="_blank" class="help-title"><i class="fa fa-question-circle" title="Help Icon"></i></a>
</rhn:toolbar>
diff --git a/java/code/webapp/WEB-INF/pages/groups/create.jsp b/java/code/webapp/WEB-INF/pages/groups/create.jsp
index 7cac37d..6535da1 100644
--- a/java/code/webapp/WEB-INF/pages/groups/create.jsp
+++ b/java/code/webapp/WEB-INF/pages/groups/create.jsp
@@ -8,7 +8,7 @@
<h1>
<i class="fa spacewalk-icon-system-groups" title="system group"></i>
<bean:message key="systemgroup.create.header"/>
- <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-group-creation" target="_new" class="help-title">
+ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s3-sm-system-group-creation" target="_blank" class="help-title">
<i class="fa fa-question-circle" title="Help Icon"></i>
</a>
</h1>
diff --git a/java/code/webapp/WEB-INF/pages/kickstart/kickstartdownload.jsp b/java/code/webapp/WEB-INF/pages/kickstart/kickstartdownload.jsp
index aa6d9ce..9a03ab6 100644
--- a/java/code/webapp/WEB-INF/pages/kickstart/kickstartdownload.jsp
+++ b/java/code/webapp/WEB-INF/pages/kickstart/kickstartdownload.jsp
@@ -30,7 +30,7 @@
</c:when>
<c:otherwise>
<tr><td>
- <a href="${ksurl}" target="_new"><bean:message key="kickstartdownload.jsp.download"/></a>
+ <a href="${ksurl}" target="_blank"><bean:message key="kickstartdownload.jsp.download"/></a>
</td></tr>
<tr><td>
diff --git a/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/advanced/download.jsp b/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/advanced/download.jsp
index abc4627..da83f89 100644
--- a/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/advanced/download.jsp
+++ b/java/code/webapp/WEB-INF/pages/kickstart/wizard/profile/advanced/download.jsp
@@ -23,7 +23,7 @@
<p><bean:message key="kickstartdownload.jsp.summary"/></p>
<table class="details" border="0">
<tr><td>
- <a href="${ksurl}" target="_new"><bean:message key="kickstartdownload.jsp.download"/></a>
+ <a href="${ksurl}" target="_blank"><bean:message key="kickstartdownload.jsp.download"/></a>
</td></tr>
<tr><td>
<pre style="overflow: scroll; width: 800px; height: 800px">${filedata}</pre>
diff --git a/java/code/webapp/WEB-INF/pages/systems/customkey/createkey.jsp b/java/code/webapp/WEB-INF/pages/systems/customkey/createkey.jsp
index 7f134e0..80650e3 100644
--- a/java/code/webapp/WEB-INF/pages/systems/customkey/createkey.jsp
+++ b/java/code/webapp/WEB-INF/pages/systems/customkey/createkey.jsp
@@ -12,7 +12,7 @@
<i class="fa fa-key" title=""></i>
<h2><bean:message key="system.jsp.customkey.createtitle"/></h2>
<a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s2-sm-system-cust-info"
- target="_new" class="help-title">
+ target="_blank" class="help-title">
<i class="fa fa-question-circle" title="Help Icon"></i>
</a>
</div>
diff --git a/java/code/webapp/WEB-INF/pages/systems/customkey/updatekey.jsp b/java/code/webapp/WEB-INF/pages/systems/customkey/updatekey.jsp
index aa49270..39ff479 100644
--- a/java/code/webapp/WEB-INF/pages/systems/customkey/updatekey.jsp
+++ b/java/code/webapp/WEB-INF/pages/systems/customkey/updatekey.jsp
@@ -16,7 +16,7 @@
<i class="fa fa-key" title=""></i>
<bean:message key="system.jsp.customkey.updatetitle"/>
- <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s2-sm-system-cust-info" target="_new" class="help-title">
+ <a href="/rhn/help/reference/en-US/s1-sm-systems.jsp#s2-sm-system-cust-info" target="_blank" class="help-title">
<i class="fa fa-question-circle" title="Help icon"></i>
</a>
</div>
diff --git a/web/html/help/about.pxt b/web/html/help/about.pxt
index e50b63c..1863b96 100644
--- a/web/html/help/about.pxt
+++ b/web/html/help/about.pxt
@@ -18,27 +18,27 @@ even greater levels of security and reduced network bandwidth.
<h2>Modules</h2>
<p>
- <pxt-config var="product_name"/> currently offers three modules. Customers can purchase entitlements that allow their systems to be subscribed to the modules and receive <pxt-config var="product_name"/> services and functionality. <a href="http://www.redhat.com/software/rhn/purchase/" target="_new">Learn more</a>.
+ <pxt-config var="product_name"/> currently offers three modules. Customers can purchase entitlements that allow their systems to be subscribed to the modules and receive <pxt-config var="product_name"/> services and functionality. <a href="http://www.redhat.com/software/rhn/purchase/" target="_blank">Learn more</a>.
</p>
<div class="marketing-summary">
<h3>Update Module</h3>
<p>
-Complimentary with a subscription to RHEL, the Update Module allows you to easily install new updates to your system, receive priority errata notifications, ensure RPM dependency checking, and <a href="http://www.redhat.com/rhn/rhndetails/update/" target="_new">more</a>.
+Complimentary with a subscription to RHEL, the Update Module allows you to easily install new updates to your system, receive priority errata notifications, ensure RPM dependency checking, and <a href="http://www.redhat.com/rhn/rhndetails/update/" target="_blank">more</a>.
</p>
</div>
<div class="marketing-summary">
<h3>Management Module</h3>
<p>
-The Management Module, which includes all the functionality of the Update Module, also gives you the ability to group your systems for easier maintenance, assign role-based permissions, schedule update actions, develop custom content channels (in conjunction with <pxt-config var="product_name"/>), and <a href="http://www.redhat.com/rhn/rhndetails/management/" target="_new">more</a>.
+The Management Module, which includes all the functionality of the Update Module, also gives you the ability to group your systems for easier maintenance, assign role-based permissions, schedule update actions, develop custom content channels (in conjunction with <pxt-config var="product_name"/>), and <a href="http://www.redhat.com/rhn/rhndetails/management/" target="_blank">more</a>.
</p>
</div>
<div class="marketing-summary">
<h3>Provisioning Module</h3>
<p>
-The Provisioning Module, which includes all the functionality of the Management Module, provides the ability to manage kickstarts, manage and deploy configuration files, create snapshots of your systems over time and roll your systems back to those snapshots, and <a href="http://www.redhat.com/rhn/rhndetails/provisioning/" target="_new">more</a>.
+The Provisioning Module, which includes all the functionality of the Management Module, provides the ability to manage kickstarts, manage and deploy configuration files, create snapshots of your systems over time and roll your systems back to those snapshots, and <a href="http://www.redhat.com/rhn/rhndetails/provisioning/" target="_blank">more</a>.
</p>
</div>
@@ -70,7 +70,7 @@ All <pxt-config var="product_name"/> functionality (system profiles, reporting d
</div>
<p>
-<a href="https://www.redhat.com/red_hat_network/deploydetail" target="_new">Read more</a> about RHN architectures.
+<a href="https://www.redhat.com/red_hat_network/deploydetail" target="_blank">Read more</a> about RHN architectures.
</p>
</grail-canvas-template>
</pxt-passthrough>
diff --git a/web/modules/rhn/RHN/Server.pm b/web/modules/rhn/RHN/Server.pm
index 990d8a0..2d6a3b8 100644
--- a/web/modules/rhn/RHN/Server.pm
+++ b/web/modules/rhn/RHN/Server.pm
@@ -358,7 +358,7 @@ sub render {
if (defined $pkg->{RESULTS}) {
$html .= <<EOQ;
- - <a target="_new" href="/network/systems/details/history/package_event_results.pxt?sid=%d&hid=%d&id_combo=%s">results</a>
+ - <a target="_blank" href="/network/systems/details/history/package_event_results.pxt?sid=%d&hid=%d&id_combo=%s">results</a>
<br/>
<span style="color: #555;padding-left: 5%%">return code:</span> %d
EOQ
@@ -413,7 +413,7 @@ sub render {
if (defined $pkg->{RESULTS}) {
$html .= <<EOQ;
- - <a target="_new" href="/network/systems/details/history/package_event_results.pxt?sid=%d&hid=%d&id_combo=%s">results</a>
+ - <a target="_blank" href="/network/systems/details/history/package_event_results.pxt?sid=%d&hid=%d&id_combo=%s">results</a>
<br/>
<span style="color: #555;padding-left: 5%%">return code:</span> %d
EOQ
diff --git a/web/modules/sniglets/Sniglets/HTML.pm b/web/modules/sniglets/Sniglets/HTML.pm
index 4c162d2..331338d 100644
--- a/web/modules/sniglets/Sniglets/HTML.pm
+++ b/web/modules/sniglets/Sniglets/HTML.pm
@@ -194,7 +194,7 @@ sub render_help_link {
my $link;
if ($text) {
- $link = qq(<a href="$url" target="_new" class="help-title">$text</a>);
+ $link = qq(<a href="$url" target="_blank" class="help-title">$text</a>);
}
else {
$link = $url;
9 years, 10 months
Changes to 'refs/tags/tito-0.4.18-1.2'
by Michael Mraka
Tag 'tito-0.4.18-1.2' created by Michael Mraka <michael.mraka(a)redhat.com> at 2013-11-28 16:15 +0000
Tagging package [tito] version [0.4.18-1.2] in directory [spec-tree/tito/].
Changes since spacewalk-backend-2.1.36-1:
Michael Mraka (2):
include patch to rpm
Automatic commit of package [tito] minor release [0.4.18-1.2].
---
rel-eng/packages/tito | 2 +-
spec-tree/tito/tito.spec | 7 ++++---
2 files changed, 5 insertions(+), 4 deletions(-)
---
9 years, 10 months
2 commits - rel-eng/packages spec-tree/tito
by Michael Mraka
rel-eng/packages/tito | 2 +-
spec-tree/tito/tito.spec | 7 ++++---
2 files changed, 5 insertions(+), 4 deletions(-)
New commits:
commit 5f86cda2cd7807d9c3ae0ade7d7e095dc3d5240a
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Thu Nov 28 17:15:42 2013 +0100
Automatic commit of package [tito] minor release [0.4.18-1.2].
diff --git a/rel-eng/packages/tito b/rel-eng/packages/tito
index 288995b..0c5dfd4 100644
--- a/rel-eng/packages/tito
+++ b/rel-eng/packages/tito
@@ -1 +1 @@
-0.4.18-1.1 spec-tree/tito/
+0.4.18-1.2 spec-tree/tito/
diff --git a/spec-tree/tito/tito.spec b/spec-tree/tito/tito.spec
index cdc126a..1c7bf28 100644
--- a/spec-tree/tito/tito.spec
+++ b/spec-tree/tito/tito.spec
@@ -2,7 +2,7 @@
Name: tito
Version: 0.4.18
-Release: 1.1%{?dist}
+Release: 1.2%{?dist}
Summary: A tool for managing rpm based git projects
Group: Development/Tools
@@ -80,7 +80,7 @@ rm -rf $RPM_BUILD_ROOT
%changelog
-* Thu Nov 28 2013 Michael Mraka <michael.mraka(a)redhat.com> 0.4.18-1.1
+* Thu Nov 28 2013 Michael Mraka <michael.mraka(a)redhat.com> 0.4.18-1.2
- support for local releaser.conf overwrite
* Thu Nov 14 2013 Devan Goodwin <dgoodwin(a)rm-rf.ca> 0.4.18-1
commit 9426798f730765c20edadbad35804c10f1087327
Author: Michael Mraka <michael.mraka(a)redhat.com>
Date: Thu Nov 28 17:04:05 2013 +0100
include patch to rpm
diff --git a/spec-tree/tito/tito.spec b/spec-tree/tito/tito.spec
index 34d722b..cdc126a 100644
--- a/spec-tree/tito/tito.spec
+++ b/spec-tree/tito/tito.spec
@@ -9,6 +9,7 @@ Group: Development/Tools
License: GPLv2
URL: http://rm-rf.ca/tito
Source0: http://rm-rf.ca/files/tito/tito-%{version}.tar.gz
+Patch0: 0001-support-local-releasers.conf-overwrite.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArch: noarch
@@ -34,7 +35,7 @@ git.
%prep
%setup -q -n tito-%{version}
-
+%patch0 -p1
%build
%{__python} setup.py build
9 years, 10 months
Changes to 'refs/tags/spacewalk-backend-2.1.36-1'
by Tomas Lestach
Tag 'spacewalk-backend-2.1.36-1' created by Tomas Lestach <tlestach(a)redhat.com> at 2013-11-28 16:08 +0000
Tagging package [spacewalk-backend] version [2.1.36-1] in directory [backend/].
Changes since spacewalk-java-2.1.82-1:
Tomas Lestach (1):
Automatic commit of package [spacewalk-backend] release [2.1.36-1].
---
backend/spacewalk-backend.spec | 6 +++++-
rel-eng/packages/spacewalk-backend | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
---
9 years, 10 months
backend/spacewalk-backend.spec rel-eng/packages
by Tomas Lestach
backend/spacewalk-backend.spec | 6 +++++-
rel-eng/packages/spacewalk-backend | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
New commits:
commit 057c01071291031523de608cb244d8ef92349714
Author: Tomas Lestach <tlestach(a)redhat.com>
Date: Thu Nov 28 17:08:02 2013 +0100
Automatic commit of package [spacewalk-backend] release [2.1.36-1].
diff --git a/backend/spacewalk-backend.spec b/backend/spacewalk-backend.spec
index e5ec4e3..4380ae5 100644
--- a/backend/spacewalk-backend.spec
+++ b/backend/spacewalk-backend.spec
@@ -11,7 +11,7 @@ Name: spacewalk-backend
Summary: Common programs needed to be installed on the Spacewalk servers/proxies
Group: Applications/Internet
License: GPLv2
-Version: 2.1.35
+Version: 2.1.36
Release: 1%{?dist}
URL: https://fedorahosted.org/spacewalk
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
@@ -628,6 +628,10 @@ rm -f %{rhnconf}/rhnSecret.py*
%{pythonrhnroot}/satellite_tools/exporter/xmlWriter.py*
%changelog
+* Thu Nov 28 2013 Tomas Lestach <tlestach(a)redhat.com> 2.1.36-1
+- 1010205 - fix displaying of reposync log on WebUI
+- python server: better logging of exceptions
+
* Fri Nov 15 2013 Milan Zazrivec <mzazrivec(a)redhat.com> 2.1.35-1
- 991044 - change python module permissions to rw-r--r--
diff --git a/rel-eng/packages/spacewalk-backend b/rel-eng/packages/spacewalk-backend
index 5518c1f..fe20e0a 100644
--- a/rel-eng/packages/spacewalk-backend
+++ b/rel-eng/packages/spacewalk-backend
@@ -1 +1 @@
-2.1.35-1 backend/
+2.1.36-1 backend/
9 years, 10 months
Changes to 'refs/tags/spacewalk-java-2.1.82-1'
by Tomas Lestach
Tag 'spacewalk-java-2.1.82-1' created by Tomas Lestach <tlestach(a)redhat.com> at 2013-11-28 16:07 +0000
Tagging package [spacewalk-java] version [2.1.82-1] in directory [java/].
Changes since tito-0.4.18-1.1:
Tomas Lestach (2):
1010205 - fix displaying of reposync log on WebUI
Automatic commit of package [spacewalk-java] release [2.1.82-1].
---
backend/logrotate/spacewalk-backend-tools | 1
java/code/src/com/redhat/rhn/frontend/action/channel/manage/EditChannelAction.java | 2
java/code/src/com/redhat/rhn/frontend/action/common/DownloadFile.java | 31 +++++++---
java/code/src/com/redhat/rhn/manager/channel/ChannelManager.java | 20 ++----
java/spacewalk-java.spec | 9 ++
rel-eng/packages/spacewalk-java | 2
6 files changed, 42 insertions(+), 23 deletions(-)
---
9 years, 10 months
java/spacewalk-java.spec rel-eng/packages
by Tomas Lestach
java/spacewalk-java.spec | 9 ++++++++-
rel-eng/packages/spacewalk-java | 2 +-
2 files changed, 9 insertions(+), 2 deletions(-)
New commits:
commit 06526a0b0f140fd2595c5b5726ac267e60b7ab08
Author: Tomas Lestach <tlestach(a)redhat.com>
Date: Thu Nov 28 17:07:12 2013 +0100
Automatic commit of package [spacewalk-java] release [2.1.82-1].
diff --git a/java/spacewalk-java.spec b/java/spacewalk-java.spec
index 2867ed8..79a7284 100644
--- a/java/spacewalk-java.spec
+++ b/java/spacewalk-java.spec
@@ -28,7 +28,7 @@ Name: spacewalk-java
Summary: Spacewalk Java site packages
Group: Applications/Internet
License: GPLv2
-Version: 2.1.81
+Version: 2.1.82
Release: 1%{?dist}
URL: https://fedorahosted.org/spacewalk
Source0: https://fedorahosted.org/releases/s/p/spacewalk/%{name}-%{version}.tar.gz
@@ -785,6 +785,13 @@ fi
%{jardir}/postgresql-jdbc.jar
%changelog
+* Thu Nov 28 2013 Tomas Lestach <tlestach(a)redhat.com> 2.1.82-1
+- 1010205 - fix displaying of reposync log on WebUI
+- bootstrap tuning: make non-link text in header more visible
+- bootstrap tuning - add value parameter to make certain list actions work
+- bootstrap tuning - use same icon for 'no updates' as in legend and other
+ places
+
* Wed Nov 27 2013 Tomas Kasparek <tkasparek(a)redhat.com> 2.1.81-1
- bootstrap tuning - organization in head is not a link
- bootstrap tuning - use bootstrap style for "locked" icon
diff --git a/rel-eng/packages/spacewalk-java b/rel-eng/packages/spacewalk-java
index 589ba52..2cb85fc 100644
--- a/rel-eng/packages/spacewalk-java
+++ b/rel-eng/packages/spacewalk-java
@@ -1 +1 @@
-2.1.81-1 java/
+2.1.82-1 java/
9 years, 10 months