After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 729814 - gis-account-page.ui has untranslatable string
gis-account-page.ui has untranslatable string
Status: RESOLVED FIXED
Product: gnome-initial-setup
Classification: Applications
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: GNOME Initial Setup maintainer(s)
GNOME Initial Setup maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2014-05-08 13:29 UTC by Jiro Matsuzawa
Modified: 2014-05-12 17:42 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix the value of the translatable attribute (1.15 KB, patch)
2014-05-08 13:34 UTC, Jiro Matsuzawa
committed Details | Review
Fix the value of the translatable attribute (1.16 KB, patch)
2014-05-08 13:40 UTC, Jiro Matsuzawa
committed Details | Review

Description Jiro Matsuzawa 2014-05-08 13:29:28 UTC
"Setup _Enterprise Login" in gis-account-page.ui cannot be translated. The value of its translatable attribute is wrong. See the following diff. A patch is coming.

diff --git a/gnome-initial-setup/pages/account/gis-account-page.ui b/gnome-initial-setup/pages/account/gis-account-page.ui
index 5970559..ecc0c0f 100644
--- a/gnome-initial-setup/pages/account/gis-account-page.ui
+++ b/gnome-initial-setup/pages/account/gis-account-page.ui
@@ -34,7 +34,7 @@
           <object class="GtkToggleButton" id="page_toggle">
             <property name="visible">True</property>
             <property name="use_underline">True</property>
-            <property name="label" translatable="true">Setup _Enterprise Login</property>
+            <property name="label" translatable="yes">Setup _Enterprise Login</property>
             <property name="halign">center</property>
             <property name="valign">end</property>
             <property name="margin_bottom">32</property>
Comment 1 Jiro Matsuzawa 2014-05-08 13:34:10 UTC
Created attachment 276160 [details] [review]
Fix the value of the translatable attribute
Comment 2 Jiro Matsuzawa 2014-05-08 13:36:52 UTC
The above patch is for gnome-3-12 branch. It does not break the string freeze.
Comment 3 Jiro Matsuzawa 2014-05-08 13:40:20 UTC
Created attachment 276161 [details] [review]
Fix the value of the translatable attribute

This patch is for master.