summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKiyotaka Nishibori <ml.nishibori.kiyotaka@gmail.com>2017-08-27 16:35:54 +0900
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2017-08-29 22:11:58 +0200
commita9cd75c1501d5095887c657426820962c68e0ede (patch)
tree5c683d66e6f5313d6fc87fa4028281181b05e303
parent79cfd48dae2b986b691bb00a8400c7e9cc2cdda7 (diff)
Fix 'make translations' run again
Some translatable strings without context attribute was fixed at recent commit. However 'make translations' fails still now: [POT] pot.done Traceback (most recent call last): File "/home/kiyotaka/Sources/libreoffice-testing/solenv/bin/uiex", line 30, in <module> keyid = entry.msgctxt + '|' + entry.msgid TypeError: unsupported operand type(s) for +: 'NoneType' and 'str' Two translatable strings in 'sc/uiconfig/scalc/ui/dataprovider.ui' have had no context attribute. Change-Id: Id832ef62904b8000b58348bdc380d58eff305001 Reviewed-on: https://gerrit.libreoffice.org/41598 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r--sc/uiconfig/scalc/ui/dataprovider.ui8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/uiconfig/scalc/ui/dataprovider.ui b/sc/uiconfig/scalc/ui/dataprovider.ui
index 0dfa418fcf6a..4a3bdb0ed60d 100644
--- a/sc/uiconfig/scalc/ui/dataprovider.ui
+++ b/sc/uiconfig/scalc/ui/dataprovider.ui
@@ -193,10 +193,10 @@
<property name="visible">True</property>
<property name="can_focus">False</property>
<child>
- <object class="GtkLabel">
+ <object class="GtkLabel" id="label_provider">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="label" translatable="yes">Data Provider:</property>
+ <property name="label" translatable="yes" context="datastreams|label_provider">Data Provider:</property>
</object>
<packing>
<property name="expand">False</property>
@@ -228,10 +228,10 @@
<property name="visible">True</property>
<property name="can_focus">False</property>
<child>
- <object class="GtkLabel">
+ <object class="GtkLabel" id="label_search">
<property name="visible">True</property>
<property name="can_focus">False</property>
- <property name="label" translatable="yes">Search String:</property>
+ <property name="label" translatable="yes" context="datastreams|label_search">Search String:</property>
</object>
<packing>
<property name="expand">False</property>