diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2017-04-20 23:28:36 +0200 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2017-04-21 09:56:47 +0200 |
commit | 577ae613e0b97e5533b4b2de93422a25dca39517 (patch) | |
tree | bc1fe1d5027310f990e34d5ef1b97b8cc60d1dbc /svx/source | |
parent | c48ad62924754025266f6ed3986beac44d1c2452 (diff) |
tdf#103872 Localize "Export as image" window title
In Calc select Export as image from the local menu
of a chart to see this
Change-Id: I9753f4750bd619f161c52f9e067290743ad2f2ec
Reviewed-on: https://gerrit.libreoffice.org/36758
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/core/graphichelper.cxx | 2 | ||||
-rw-r--r-- | svx/source/core/graphichelper.src | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/svx/source/core/graphichelper.cxx b/svx/source/core/graphichelper.cxx index 742e8cd0be7d..33f2dc508530 100644 --- a/svx/source/core/graphichelper.cxx +++ b/svx/source/core/graphichelper.cxx @@ -217,7 +217,7 @@ void GraphicHelper::SaveShapeAsGraphic( const Reference< drawing::XShape >& xSha FileDialogHelper aDialogHelper( TemplateDescription::FILESAVE_AUTOEXTENSION ); Reference < XFilePicker2 > xFilePicker = aDialogHelper.GetFilePicker(); - aDialogHelper.SetTitle( "Save as Image" ); + aDialogHelper.SetTitle( SVX_RESSTR(RID_SVXSTR_SAVEAS_IMAGE) ); INetURLObject aPath; aPath.SetSmartURL( sGraphicPath ); diff --git a/svx/source/core/graphichelper.src b/svx/source/core/graphichelper.src index 7234d08e8f8d..3432778c9cd9 100644 --- a/svx/source/core/graphichelper.src +++ b/svx/source/core/graphichelper.src @@ -24,4 +24,8 @@ String RID_SVXSTR_EXPORT_GRAPHIC_TITLE Text [ en-US ] = "Image Export" ; }; +String RID_SVXSTR_SAVEAS_IMAGE +{ + Text [ en-US ] = "Save as Image" ; +}; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |