63 lines
2.5 KiB
C
63 lines
2.5 KiB
C
/***************************************************************************
|
|
* Copyright (C) 2022 by Federico Amedeo Izzo IU2NUO, *
|
|
* Niccolò Izzo IU2KIN *
|
|
* Frederik Saraci IU2NRO *
|
|
* Silvano Seva IU2KWO *
|
|
* Joseph Stephen VK7JS *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 3 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License *
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/> *
|
|
***************************************************************************/
|
|
#ifndef EnglishStrings_h_included
|
|
#define EnglishStrings_h_included
|
|
#include "ui/UIStrings.h"
|
|
const stringsTable_t englishStrings =
|
|
{
|
|
.languageName = "English",
|
|
.off = "OFF",
|
|
.on = "ON",
|
|
.banks = "Banks",
|
|
.channels = "Channels",
|
|
.contacts = "Contacts",
|
|
.gps = "GPS",
|
|
.settings = "Settings",
|
|
.backupAndRestore = "Backup & Restore",
|
|
.info = "Info",
|
|
.about = "About",
|
|
.display = "Display",
|
|
.timeAndDate = "Time & Date",
|
|
.m17 = "M17",
|
|
.defaultSettings = "Default Settings",
|
|
.brightness = "Brightness",
|
|
.contrast = "Contrast",
|
|
.timer = "Timer",
|
|
.gpsEnabled = "GPS Enabled",
|
|
.gpsSetTime = "GPS Set Time",
|
|
.UTCTimeZone = "UTC Timezone",
|
|
.backup = "Backup",
|
|
.restore = "Restore",
|
|
.batteryVoltage = "Bat. Voltage",
|
|
.batteryCharge = "Bat. Charge",
|
|
.RSSI = "RSSI",
|
|
.model = "Model",
|
|
.band = "Band",
|
|
.VHF = "VHF",
|
|
.UHF = "UHF",
|
|
.LCDType = "LCD Type",
|
|
.Niccolo = "Niccolo' IU2KIN",
|
|
.Silvano = "Silvano IU2KWO",
|
|
.Federico = "Federico IU2NUO",
|
|
.Fred = "Fred IU2NRO",
|
|
.Joseph = "Joseph VK7JS",
|
|
};
|
|
#endif //EnglishStrings_h_included
|