diff options
author | Aditya Sahu <adityasahu1511@gmail.com> | 2024-11-01 11:32:53 -0400 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2024-11-02 09:58:41 +0100 |
commit | 412a775d0ab90cd963216c40e9ae1189179809ba (patch) | |
tree | 275eee6d392a2dc0aacf71443b2d45430a33ca84 /sw | |
parent | b53242ec23cd34f7f42750cd4d01f3384c827b76 (diff) |
tdf#145161: Change pdf and image compression dialog string
Since image/pdf compression does not always reduce image
or pdf resolution, change the misleading label from
"reduce" to "change" wherever possible.
Keep identifiers having "reduce" in their name as is
as of now, only change the string values containing
"reduce" to "change".
Change-Id: I6c4263250faff906d0a16bd1290dc57960161be0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175929
Tested-by: Jenkins
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/qa/uitest/writer_tests4/exportToPDF.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/qa/uitest/writer_tests4/exportToPDF.py b/sw/qa/uitest/writer_tests4/exportToPDF.py index e2ca9d72bd34..76e2e0420700 100644 --- a/sw/qa/uitest/writer_tests4/exportToPDF.py +++ b/sw/qa/uitest/writer_tests4/exportToPDF.py @@ -33,7 +33,7 @@ class exportToPDF(UITestCase): with self.ui_test.execute_dialog_through_command('.uno:ExportToPDF', close_button="") as xDialog: selectedChildren = ['bookmarks', 'display', 'effects', 'enablea11y', - 'enablecopy', 'exporturl', 'reduceresolution', 'tagged'] + 'enablecopy', 'exporturl', 'changeresolution', 'tagged'] for child in selectedChildren: self.assertEqual("true", get_state_as_dict(xDialog.getChild(child))['Selected']) |