summaryrefslogtreecommitdiff
path: root/src/defs.h
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-03-22 14:29:20 +0200
commit06156b3034353cc1d62b4f825b1fcad799e944eb (patch)
tree26f7476ee50610853ac8fbf0f54c420cfb7cfc99 /src/defs.h
parentd3ab1ae8b92433ec711c1396838b32f2f9f35d7b (diff)
Lang: Began replacing UI strings with IDs
IssueID #192
Diffstat (limited to 'src/defs.h')
-rw-r--r--src/defs.h6
1 files changed, 4 insertions, 2 deletions
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. */
22 22
23#pragma once 23#pragma once
24 24
25#include "lang.h"
26
25enum iFileVersion { 27enum iFileVersion {
26 initial_FileVersion = 0, 28 initial_FileVersion = 0,
27 addedResponseTimestamps_FileVersion = 1, 29 addedResponseTimestamps_FileVersion = 1,
@@ -86,7 +88,7 @@ enum iFileVersion {
86/* UI labels that depend on the platform */ 88/* UI labels that depend on the platform */
87 89
88#if defined (iPlatformMobile) 90#if defined (iPlatformMobile)
89# define saveToDownloads_Label "Save to Files" 91# define saveToDownloads_Label "${menu.save.files}"
90#else 92#else
91# define saveToDownloads_Label "Save to Downloads" 93# define saveToDownloads_Label "${menu.save.downloads}"
92#endif 94#endif