helpcontent2 | 2 +- sw/uiconfig/swriter/ui/columnpage.ui | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-)
New commits: commit b4460d983401e0b5962f71159016209e2d74d095 Author: Ilmari Lauhakangas <[email protected]> AuthorDate: Mon May 26 16:26:59 2025 +0300 Commit: Gerrit Code Review <[email protected]> CommitDate: Mon May 26 15:26:59 2025 +0200 Update git submodules * Update helpcontent2 from branch 'master' to af2f7973d5fc5bbf5cd99cc02a450783d34096ea - tdf#166353 Simplify getting current language, don't use en-US fallback As en-US might not be installed offline, this was not a working approach. The XSLT to HTML generator makes sure the html element has a language attribute, so just read that. Change-Id: I2b2857ac7ddd5e056ebb7fbb74f782abf58ed229 Reviewed-on: https://gerrit.libreoffice.org/c/help/+/185211 Reviewed-by: Olivier Hallot <[email protected]> Tested-by: Olivier Hallot <[email protected]> Tested-by: Jenkins diff --git a/helpcontent2 b/helpcontent2 index 3b9dbcec0f18..af2f7973d5fc 160000 --- a/helpcontent2 +++ b/helpcontent2 @@ -1 +1 @@ -Subproject commit 3b9dbcec0f18073dd622b6f759ec154695abc51e +Subproject commit af2f7973d5fc5bbf5cd99cc02a450783d34096ea commit bb0b7fc3a3fd7be3b9adad6a16d2efc299d0b44c Author: Henry Castro <[email protected]> AuthorDate: Wed Apr 23 07:05:53 2025 -0400 Commit: Henry Castro <[email protected]> CommitDate: Mon May 26 15:26:48 2025 +0200 accessibility: remove the colon (:) from the label of the Column. "Screen readers detect both labels, but the column number is read directly before the value (e.g., "2.18"), which can give users with screen readers the impression that the value is something like "12.18." This is misleading." Signed-off-by: Henry Castro <[email protected]> Change-Id: I7ce2a638065cbec0fe55613a81eb6f1db3dee333 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184496 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Szymon Kłos <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185606 Tested-by: Jenkins diff --git a/sw/uiconfig/swriter/ui/columnpage.ui b/sw/uiconfig/swriter/ui/columnpage.ui index c72bb1e919cf..9ead17ea0895 100644 --- a/sw/uiconfig/swriter/ui/columnpage.ui +++ b/sw/uiconfig/swriter/ui/columnpage.ui @@ -119,7 +119,10 @@ <object class="GtkLabel" id="columnft"> <property name="visible">True</property> <property name="can-focus">False</property> - <property name="label" translatable="yes" context="columnpage|columnft">Column:</property> + <property name="label" translatable="yes" context="columnpage|columnft">Column</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> <property name="xalign">0</property> <accessibility> <relation type="label-for" target="back"/> @@ -137,6 +140,9 @@ <property name="can-focus">False</property> <property name="hexpand">True</property> <property name="label">_1</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> <property name="use-underline">True</property> <property name="mnemonic-widget">width1mf</property> </object> @@ -151,6 +157,9 @@ <property name="can-focus">False</property> <property name="hexpand">True</property> <property name="label">_2</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> <property name="use-underline">True</property> <property name="mnemonic-widget">width2mf</property> </object> @@ -165,6 +174,9 @@ <property name="can-focus">False</property> <property name="hexpand">True</property> <property name="label">_3</property> + <attributes> + <attribute name="weight" value="bold"/> + </attributes> <property name="use-underline">True</property> <property name="mnemonic-widget">width3mf</property> </object>
