81 lines
5.5 KiB
C
81 lines
5.5 KiB
C
/*
|
|
* This file is part of Photoduino.
|
|
*
|
|
* Photoduino 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.
|
|
*
|
|
* Photoduino 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 Photoduino. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
// Messages list "123456789012345"
|
|
const prog_char PROGMEM MSG_LANGUAGE_CODE[] = "ES";
|
|
const prog_char PROGMEM MSG_PHOTODUINO_V[] = "Photoduino v";
|
|
const prog_char PROGMEM MSG_READY[] = "Preparado!";
|
|
const prog_char PROGMEM MSG_MAIN_MENU[] = "Menu Principal";
|
|
const prog_char PROGMEM MSG_SYSTEM_CONFIG[] = "Config Sistema";
|
|
const prog_char PROGMEM MSG_INTERVALOMETER[] = "Intervalometro";
|
|
const prog_char PROGMEM MSG_SENSOR_TRIGGER[] = "Disparo Sensor";
|
|
const prog_char PROGMEM MSG_CONFIG[] = "Configuracion";
|
|
const prog_char PROGMEM MSG_CONFIG_TRIGGER[] = "Config Disparo";
|
|
const prog_char PROGMEM MSG_CONFIG_DROPS[] = "Config Gotas";
|
|
const prog_char PROGMEM MSG_RUN[] = "Ejecutar";
|
|
const prog_char PROGMEM MSG_RESET_CONFIG[] = "Borrar Config";
|
|
const prog_char PROGMEM MSG_AUTOFOCUS_TIME[] = "Tiempo Enfoque";
|
|
const prog_char PROGMEM MSG_SHUTTERLAG_TIME[] = "Retardo Obturador";
|
|
const prog_char PROGMEM MSG_USE_FLASH1[] = "Usar Flash1";
|
|
const prog_char PROGMEM MSG_USE_FLASH2[] = "Usar Flash2";
|
|
const prog_char PROGMEM MSG_FLASH1_PRETIME[] = "Pretiempo Flash1";
|
|
const prog_char PROGMEM MSG_FLASH2_PRETIME[] = "Pretiempo Flash2";
|
|
const prog_char PROGMEM MSG_CLOSE_PRETIME[] = "Pretiempo Cerrar";
|
|
const prog_char PROGMEM MSG_INTERVAL_UNITS[] = "Unid. Intervalo";
|
|
const prog_char PROGMEM MSG_INTERVAL_VALUE[] = "Valor Intervalo";
|
|
const prog_char PROGMEM MSG_CYCLES[] = "Ciclos";
|
|
const prog_char PROGMEM MSG_SENSOR[] = "Sensor";
|
|
const prog_char PROGMEM MSG_SENSOR_LIMIT[] = "Limite Sensor";
|
|
const prog_char PROGMEM MSG_SENSOR_VALUE[] = ">Sensor :";
|
|
const prog_char PROGMEM MSG_LIMIT_VALUE[] = ">Limite :";
|
|
const prog_char PROGMEM MSG_SHOOTING_MODE[] = "Modo Disparo";
|
|
const prog_char PROGMEM MSG_INTERCYCLE_TIME[] = "Pretiempo Ciclos";
|
|
const prog_char PROGMEM MSG_BACKLIGHT[] = "Luz LCD";
|
|
const prog_char PROGMEM MSG_SPEAKER[] = "Pitidos";
|
|
const prog_char PROGMEM MSG_RESETTING[] = "Reiniciando...";
|
|
const prog_char PROGMEM MSG_ABORTING[] = "Cancelando...";
|
|
const prog_char PROGMEM MSG_YES[] = "SI";
|
|
const prog_char PROGMEM MSG_NO[] = "NO";
|
|
const prog_char PROGMEM MSG_UNITS_US[] = "us";
|
|
const prog_char PROGMEM MSG_UNITS_MS[] = "ms";
|
|
const prog_char PROGMEM MSG_UNITS_SECS[] = "Segundos";
|
|
const prog_char PROGMEM MSG_UNITS_MINS[] = "Minutos";
|
|
const prog_char PROGMEM MSG_UNITS_HOURS[] = "Horas";
|
|
const prog_char PROGMEM MSG_UNITS_DAYS[] = "Dias";
|
|
const prog_char PROGMEM MSG_UNITS_CYCLES[] = "Ciclos";
|
|
const prog_char PROGMEM MSG_UNITS_DROPS[] = "Gotas";
|
|
const prog_char PROGMEM MSG_SHOOTINGMODE_NORMAL[] = "Normal";
|
|
const prog_char PROGMEM MSG_SHOOTINGMODE_PREBULB[] = "Bulb Previo";
|
|
const prog_char PROGMEM MSG_SHOOTINGMODE_MIRRORLOCKUP[] = "Levantar Espejo";
|
|
const prog_char PROGMEM MSG_SENSOR_TUNING[] = "Ajuste Sensores";
|
|
const prog_char PROGMEM MSG_SENSOR_TUNING_VISUAL[] = "Visual";
|
|
const prog_char PROGMEM MSG_SENSOR_TUNING_NUMERIC[] = "Numerico";
|
|
const prog_char PROGMEM MSG_SENSOR_TYPE[] = "Tipo de Sensor";
|
|
const prog_char PROGMEM MSG_SENSOR_TYPE_AUDIO[] = "Audio";
|
|
const prog_char PROGMEM MSG_SENSOR_TYPE_BARRIER[] = "Barrera";
|
|
const prog_char PROGMEM MSG_SENSOR_TYPE_SHOCK[] = "Impacto";
|
|
const prog_char PROGMEM MSG_SENSOR_TYPE_LIGHT[] = "Luz";
|
|
const prog_char PROGMEM MSG_MIRROR_LOCKUP_TIMEOUT[] = "Tiempo Espejo";
|
|
const prog_char PROGMEM MSG_DEVICE_PORT_TYPE[] = "Tipo Dispositivo";
|
|
const prog_char PROGMEM MSG_DEVICE_PORT_TYPE_NONE[] = "Ninguno";
|
|
const prog_char PROGMEM MSG_DEVICE_PORT_TYPE_LASER[] = "Laser";
|
|
const prog_char PROGMEM MSG_DEVICE_PORT_TYPE_ELECTROVALVE[] = "Electrovalvula";
|
|
const prog_char PROGMEM MSG_DROPS_COUNT[] = "Numero de Gotas";
|
|
const prog_char PROGMEM MSG_DROPS_DURATION[] = "Duracion Gota";
|
|
const prog_char PROGMEM MSG_DROPS_INTERVAL[] = "Intervalo Gotas";
|
|
|