From 06156b3034353cc1d62b4f825b1fcad799e944eb Mon Sep 17 00:00:00 2001 From: Jaakko Keränen Date: Mon, 22 Mar 2021 14:29:20 +0200 Subject: Lang: Began replacing UI strings with IDs IssueID #192 --- src/defs.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/defs.h') diff --git a/src/defs.h b/src/defs.h index 27eacd3b..6b76ed71 100644 --- a/src/defs.h +++ b/src/defs.h @@ -22,6 +22,8 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once +#include "lang.h" + enum iFileVersion { initial_FileVersion = 0, addedResponseTimestamps_FileVersion = 1, @@ -86,7 +88,7 @@ enum iFileVersion { /* UI labels that depend on the platform */ #if defined (iPlatformMobile) -# define saveToDownloads_Label "Save to Files" +# define saveToDownloads_Label "${menu.save.files}" #else -# define saveToDownloads_Label "Save to Downloads" +# define saveToDownloads_Label "${menu.save.downloads}" #endif -- cgit v1.2.3