Hello community,
here is the log from the commit of package yast2-ca-management for
openSUSE:Factory checked in at 2014-06-18 10:59:13
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ca-management (Old)
and /work/SRC/openSUSE:Factory/.yast2-ca-management.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-ca-management"
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-ca-management/yast2-ca-management.changes
2014-06-02 07:04:25.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.yast2-ca-management.new/yast2-ca-management.changes
2014-06-18 10:59:21.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Jun 4 11:55:40 CEST 2014 - [email protected]
+
+- version 3.1.4
+- mark text for translation (bnc#877701)
+
+-------------------------------------------------------------------
Old:
----
yast2-ca-management-3.1.3.tar.bz2
New:
----
yast2-ca-management-3.1.4.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-ca-management.spec ++++++
--- /var/tmp/diff_new_pack.mnAYlF/_old 2014-06-18 10:59:22.000000000 +0200
+++ /var/tmp/diff_new_pack.mnAYlF/_new 2014-06-18 10:59:22.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-ca-management
-Version: 3.1.3
+Version: 3.1.4
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ yast2-ca-management-3.1.3.tar.bz2 -> yast2-ca-management-3.1.4.tar.bz2
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ca-management-3.1.3/package/yast2-ca-management.changes
new/yast2-ca-management-3.1.4/package/yast2-ca-management.changes
--- old/yast2-ca-management-3.1.3/package/yast2-ca-management.changes
2014-05-22 09:14:22.000000000 +0200
+++ new/yast2-ca-management-3.1.4/package/yast2-ca-management.changes
2014-06-04 12:59:26.000000000 +0200
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Wed Jun 4 11:55:40 CEST 2014 - [email protected]
+
+- version 3.1.4
+- mark text for translation (bnc#877701)
+
+-------------------------------------------------------------------
Thu May 22 08:58:35 CEST 2014 - [email protected]
- version 3.1.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ca-management-3.1.3/package/yast2-ca-management.spec
new/yast2-ca-management-3.1.4/package/yast2-ca-management.spec
--- old/yast2-ca-management-3.1.3/package/yast2-ca-management.spec
2014-05-22 09:14:22.000000000 +0200
+++ new/yast2-ca-management-3.1.4/package/yast2-ca-management.spec
2014-06-04 12:59:26.000000000 +0200
@@ -17,7 +17,7 @@
Name: yast2-ca-management
-Version: 3.1.3
+Version: 3.1.4
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ca-management-3.1.3/src/include/ca-management/ca.rb
new/yast2-ca-management-3.1.4/src/include/ca-management/ca.rb
--- old/yast2-ca-management-3.1.3/src/include/ca-management/ca.rb
2014-05-22 09:14:22.000000000 +0200
+++ new/yast2-ca-management-3.1.4/src/include/ca-management/ca.rb
2014-06-04 12:59:26.000000000 +0200
@@ -183,27 +183,33 @@
text = Ops.add(text, _("<p><b>Issued For:</b></p>"))
text = Ops.add(text, "<pre>")
text = Ops.add(
- Ops.add(text, "\nCommon Name: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCommon Name: ")),
Ops.get_string(Ops.get_list(dn, "CN", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nOrganization: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nOrganization: ")),
Ops.get_string(Ops.get_list(dn, "O", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nLocation: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nLocation: ")),
Ops.get_string(Ops.get_list(dn, "L", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nState: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nState: ")),
Ops.get_string(Ops.get_list(dn, "ST", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nCountry: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCountry: ")),
Ops.get_string(Ops.get_list(dn, "C", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nEMAIL: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nEMAIL: ")),
Ops.get_string(Ops.get_list(dn, "emailAddress", []), 0, "")
)
text = Ops.add(text, "</pre>")
@@ -214,27 +220,33 @@
text = Ops.add(text, _("<p><b>Issued By:</b></p>"))
text = Ops.add(text, "<pre>")
text = Ops.add(
- Ops.add(text, "\nCommon Name: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCommon Name: ")),
Ops.get_string(Ops.get_list(issuer, "CN", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nOrganization: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nOrganization: ")),
Ops.get_string(Ops.get_list(issuer, "O", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nLocation: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nLocation: ")),
Ops.get_string(Ops.get_list(issuer, "L", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nState: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nState: ")),
Ops.get_string(Ops.get_list(issuer, "ST", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nCountry: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCountry: ")),
Ops.get_string(Ops.get_list(issuer, "C", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nEMAIL: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nEMAIL: ")),
Ops.get_string(Ops.get_list(issuer, "emailAddress", []), 0, "")
)
text = Ops.add(text, "</pre>")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ca-management-3.1.3/src/include/ca-management/certificate.rb
new/yast2-ca-management-3.1.4/src/include/ca-management/certificate.rb
--- old/yast2-ca-management-3.1.3/src/include/ca-management/certificate.rb
2014-05-22 09:14:22.000000000 +0200
+++ new/yast2-ca-management-3.1.4/src/include/ca-management/certificate.rb
2014-06-04 12:59:26.000000000 +0200
@@ -298,60 +298,74 @@
dn = Ops.get_map(certMap, "DN_HASH", {})
if Ops.greater_than(Builtins.size(dn), 0)
text = Ops.add(
- Ops.add(text, "\nCommon Name: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCommon Name: ")),
Ops.get_string(Ops.get_list(dn, "CN", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nOrganization: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nOrganization: ")),
Ops.get_string(Ops.get_list(dn, "O", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nLocation: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nLocation: ")),
Ops.get_string(Ops.get_list(dn, "L", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nState: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nState: ")),
Ops.get_string(Ops.get_list(dn, "ST", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nCountry: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCountry: ")),
Ops.get_string(Ops.get_list(dn, "C", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nEMAIL: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nEMAIL: ")),
Ops.get_string(Ops.get_list(dn, "emailAddress", []), 0, "")
)
end
text = Ops.add(
- Ops.add(text, "\nIs CA: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nIs CA: ")),
Ops.get_string(certMap, "IS_CA", "")
)
text = Ops.add(
- Ops.add(text, "\nKey Size: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nKey Size: ")),
Ops.get_string(certMap, "KEYSIZE", "")
)
text = Ops.add(
- Ops.add(text, "\nSerialnumber: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nSerialnumber: ")),
Ops.get_string(certMap, "SERIAL", "")
)
text = Ops.add(
- Ops.add(text, "\nVersion: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nVersion: ")),
Ops.get_string(certMap, "VERSION", "")
)
text = Ops.add(
- Ops.add(text, "\nValid from: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nValid from: ")),
Ops.get_string(certMap, "NOTBEFORE", "")
)
text = Ops.add(
- Ops.add(text, "\nValid to: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nValid to: ")),
Ops.get_string(certMap, "NOTAFTER", "")
)
text = Ops.add(
- Ops.add(text, "\nalgo. of pub. Key : "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nalgo. of pub. Key : ")),
Ops.get_string(certMap, "PUBKEY_ALGORITHM", "")
)
text = Ops.add(
- Ops.add(text, "\nalgo. of signature: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nalgo. of signature: ")),
Ops.get_string(certMap, "SIGNATURE_ALGORITHM", "")
)
text = Ops.add(text, "</pre>")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-ca-management-3.1.3/src/include/ca-management/signRequest.rb
new/yast2-ca-management-3.1.4/src/include/ca-management/signRequest.rb
--- old/yast2-ca-management-3.1.3/src/include/ca-management/signRequest.rb
2014-05-22 09:14:22.000000000 +0200
+++ new/yast2-ca-management-3.1.4/src/include/ca-management/signRequest.rb
2014-06-04 12:59:26.000000000 +0200
@@ -61,7 +61,8 @@
dn = Ops.get_map(requestMap, "SUBJECT_HASH", {})
if Ops.greater_than(Builtins.size(dn), 0)
text = Ops.add(
- Ops.add(text, "\nCommon Name: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCommon Name: ")),
Ops.get_string(Ops.get_list(dn, "CN", []), 0, "")
)
if Ops.greater_than(
@@ -69,50 +70,61 @@
0
)
text = Ops.add(
- Ops.add(text, "\ngeneration Time: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\ngeneration Time: ")),
Ops.get_string(requestMap, "date", "")
)
end
text = Ops.add(
- Ops.add(text, "\nOrganization: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nOrganization: ")),
Ops.get_string(Ops.get_list(dn, "O", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nLocation: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nLocation: ")),
Ops.get_string(Ops.get_list(dn, "L", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nState: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nState: ")),
Ops.get_string(Ops.get_list(dn, "ST", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nCountry: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nCountry: ")),
Ops.get_string(Ops.get_list(dn, "C", []), 0, "")
)
text = Ops.add(
- Ops.add(text, "\nEMAIL: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nEMAIL: ")),
Ops.get_string(Ops.get_list(dn, "emailAddress", []), 0, "")
)
end
if !onlySubject
text = Ops.add(
- Ops.add(text, "\nIs CA: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nIs CA: ")),
Ops.get_string(requestMap, "IS_CA", "")
)
text = Ops.add(
- Ops.add(text, "\nKey Size: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nKey Size: ")),
Ops.get_string(requestMap, "KEYSIZE", "")
)
text = Ops.add(
- Ops.add(text, "\nVersion: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nVersion: ")),
Ops.get_string(requestMap, "VERSION", "")
)
text = Ops.add(
- Ops.add(text, "\nalgo. of pub. Key : "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nalgo. of pub. Key : ")),
Ops.get_string(requestMap, "PUBKEY_ALGORITHM", "")
)
text = Ops.add(
- Ops.add(text, "\nalgo. of signature: "),
+ # Preformated Text: take care that all translations have the same
length
+ Ops.add(text, _("\nalgo. of signature: ")),
Ops.get_string(requestMap, "SIGNATURE_ALGORITHM", "")
)
end
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]