diff options
Diffstat (limited to 'src/defs.h')
-rw-r--r-- | src/defs.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -82,3 +82,11 @@ enum iFileVersion { | |||
82 | #define unhappy_Icon "\U0001f641" | 82 | #define unhappy_Icon "\U0001f641" |
83 | #define globe_Icon "\U0001f310" | 83 | #define globe_Icon "\U0001f310" |
84 | #define magnifyingGlass_Icon "\U0001f50d" | 84 | #define magnifyingGlass_Icon "\U0001f50d" |
85 | |||
86 | /* UI labels that depend on the platform */ | ||
87 | |||
88 | #if defined (iPlatformMobile) | ||
89 | # define saveToDownloads_Label "Save to Files" | ||
90 | #else | ||
91 | # define saveToDownloads_Label "Save to Downloads" | ||
92 | #endif | ||