diff --git a/data/locale/english.locale b/data/locale/english.locale index 7dbae47de..14b733812 100644 --- a/data/locale/english.locale +++ b/data/locale/english.locale @@ -382,6 +382,8 @@ extra.tp_mod_32 QAM/32 extra.tp_mod_64 QAM/64 extra.tp_pol Polarization extra.tp_pol_h H +extra.tp_pol_l L +extra.tp_pol_r R extra.tp_rate Symbol rate extra.update_dir Directory for updates extra.use_gotoxx Use gotoXX diff --git a/src/system/locals.h b/src/system/locals.h index 073701c4b..99f4c61e4 100644 --- a/src/system/locals.h +++ b/src/system/locals.h @@ -409,6 +409,8 @@ typedef enum LOCALE_EXTRA_TP_MOD_64, LOCALE_EXTRA_TP_POL, LOCALE_EXTRA_TP_POL_H, + LOCALE_EXTRA_TP_POL_L, + LOCALE_EXTRA_TP_POL_R, LOCALE_EXTRA_TP_RATE, LOCALE_EXTRA_UPDATE_DIR, LOCALE_EXTRA_USE_GOTOXX, diff --git a/src/system/locals_intern.h b/src/system/locals_intern.h index f0ced6da5..5586ceba8 100644 --- a/src/system/locals_intern.h +++ b/src/system/locals_intern.h @@ -409,6 +409,8 @@ const char * locale_real_names[] = "extra.tp_mod_64", "extra.tp_pol", "extra.tp_pol_h", + "extra.tp_pol_l", + "extra.tp_pol_r", "extra.tp_rate", "extra.update_dir", "extra.use_gotoxx",