diff --git a/cmake/modules/AddPackage.cmake b/cmake/modules/AddPackage.cmake index 5be092c024..f418c1b758 100644 --- a/cmake/modules/AddPackage.cmake +++ b/cmake/modules/AddPackage.cmake @@ -39,7 +39,7 @@ function(add_standalone_image SOURCE_TARGET) # please do not: # 1. change compression to -9 (or higher) as i will have detrimental effects on compression times with not much gain # 2. change -T parameter to explicit thread count - xz with T0 will adjust thread count to your machine capatibilies - COMMAND tar -I 'xz -T0' -Scf ${STANDALONE_PKG} ${SOURCE_TARGET}.img + COMMAND tar Scf - ${SOURCE_TARGET}.img | xz -T0 > ${STANDALONE_PKG} WORKING_DIRECTORY ${CMAKE_BINARY_DIR} DEPENDS ${BIN_FILE} DEPENDS json-common-target diff --git a/evkbimxrt1050_sdram_init_T6.jlinkscript b/evkbimxrt1050_sdram_init_T6.jlinkscript index c8c7846397..c9f0aaae9a 100644 --- a/evkbimxrt1050_sdram_init_T6.jlinkscript +++ b/evkbimxrt1050_sdram_init_T6.jlinkscript @@ -26,243 +26,356 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ - -void Load_Dcdc_Trim() + +void Clock_Init(void) { - unsigned int ocotp_base; - unsigned int dcdc_base; - unsigned int ocotp_fuse_bank0_base; - unsigned int reg; - unsigned int index; - unsigned int trim_value; - unsigned int dcdc_trim_loaded; - ocotp_base = 0x401F4000; - ocotp_fuse_bank0_base = 0x401F4000 + 0x400; - dcdc_base = 0x40080000; - dcdc_trim_loaded = 0; - reg = MEM_ReadU32(ocotp_fuse_bank0_base + 0x90); - if (reg & (1<<10)) - { - trim_value = (reg & (0x1F << 11)) >> 11; - reg = (MEM_ReadU32(dcdc_base + 0x4) & ~(0x1F << 24)) | (trim_value << 24); - MEM_WriteU32(dcdc_base + 0x4, reg); - dcdc_trim_loaded = 1; - } - // DCDC_VOLT_CHANG_EN - reg = MEM_ReadU32(ocotp_fuse_bank0_base + 0x80); - if (reg & (1<<30)) - { - index = (reg & (3 << 28)) >> 28; - if (index < 4) + unsigned int CCM_CCGR0; + unsigned int CCM_CCGR1; + unsigned int CCM_CCGR2; + unsigned int CCM_CCGR3; + unsigned int CCM_CCGR4; + unsigned int CCM_CCGR5; + unsigned int CCM_CCGR6; + unsigned int CCM_ANALOG_PLL_SYS; + unsigned int CCM_ANALOG_PFD_528; + unsigned int CCM_CBCDR; + + CCM_CCGR0 = 0x400FC068; + CCM_CCGR1 = 0x400FC06C; + CCM_CCGR2 = 0x400FC070; + CCM_CCGR3 = 0x400FC074; + CCM_CCGR4 = 0x400FC078; + CCM_CCGR5 = 0x400FC07C; + CCM_CCGR6 = 0x400FC080; + CCM_ANALOG_PLL_SYS = 0x400D8030; + CCM_ANALOG_PFD_528 = 0x400D8100; + CCM_CBCDR = 0x400FC014; + + /* Enable clocking for all peripherals */ + MEM_WriteU32(CCM_CCGR0, 0xFFFFFFFF); + MEM_WriteU32(CCM_CCGR1, 0xFFFFFFFF); + MEM_WriteU32(CCM_CCGR2, 0xFFFFFFFF); + MEM_WriteU32(CCM_CCGR3, 0xFFFFFFFF); + MEM_WriteU32(CCM_CCGR4, 0xFFFFFFFF); + MEM_WriteU32(CCM_CCGR5, 0xFFFFFFFF); + MEM_WriteU32(CCM_CCGR6, 0xFFFFFFFF); + + /* Configure PLL_SYS: + * 24MHz OSC as source; + * output enabled; + * Fout = Fref * 22 + * Fout = 24MHz * 22 = 528MHz */ + MEM_WriteU32(CCM_ANALOG_PLL_SYS, 0x00002001); + + /* Configure PFD_528: + * set PFD2_FRAC = 29; + * Fout = 528MHz * 18/29 = 327.724MHz */ + MEM_WriteU32(CCM_ANALOG_PFD_528, 0x001D0000); + + /* Configure CCM Bus Clock Dividers: + * set SEMC alternative clock as SEMC clock root; + * set PLL2 PFD2 as alternative clock for SEMC root clock; + * set IPG_PODF divider to 2; + * set AHB_PODF divider to 4; + * set SEMC_PODF divider to 2; + * set peripheral main clock to pre_periph_clk_sel; + * set PERIPH_CLK2_PODF divider to 1 */ + MEM_WriteU32(CCM_CBCDR, 0x00010D40); + + JLINK_SYS_Report("Clocks initialized"); +} + +void SDRAM_WaitIpCmdDone(void) +{ + unsigned int SEMC_INTR; + unsigned int reg_val; + + SEMC_INTR = 0x402F003C; + + do { - reg = (MEM_ReadU32(dcdc_base + 0xC) & ~(0x1F)) | (0xF + index); - MEM_WriteU32(dcdc_base + 0xC, reg); - dcdc_trim_loaded = 1; - } - } - if (dcdc_trim_loaded) - { - // delay 1ms for dcdc to get stable - SYS_Sleep(1); - JLINK_SYS_Report("DCDC trim value loaded."); - } + reg_val = MEM_ReadU32(SEMC_INTR); + } while ((reg_val & 0x00000003) == 0); + + MEM_WriteU32(SEMC_INTR, 0x00000003); // Clear IPCMDERR and IPCMDDONE bits } - -void Clock_Init() + +void SDRAM_IO_Init(void) { - // - MEM_WriteU32(0x400FC068,0xffffffff); - MEM_WriteU32(0x400FC06C,0xffffffff); - - MEM_WriteU32(0x400FC070,0xffffffff); - MEM_WriteU32(0x400FC074,0xffffffff); - MEM_WriteU32(0x400FC078,0xffffffff); - MEM_WriteU32(0x400FC07C,0xffffffff); - MEM_WriteU32(0x400FC080,0xffffffff); - MEM_WriteU32(0x400D8030,0x00002001); // CCM_ANALOG_PLL_SYS - MEM_WriteU32(0x400D8100,0x001d0000); // CCM_ANALOG_PFD_528 - MEM_WriteU32(0x400FC014,0x00010D40); // CCM_CBCDR - JLINK_SYS_Report("Clock Init Done"); + /* Configure SDRAM IOMUX */ + MEM_WriteU32(0x401F8014, 0x00000000); // EMC_00 + MEM_WriteU32(0x401F8018, 0x00000000); // EMC_01 + MEM_WriteU32(0x401F801C, 0x00000000); // EMC_02 + MEM_WriteU32(0x401F8020, 0x00000000); // EMC_03 + MEM_WriteU32(0x401F8024, 0x00000000); // EMC_04 + MEM_WriteU32(0x401F8028, 0x00000000); // EMC_05 + MEM_WriteU32(0x401F802C, 0x00000000); // EMC_06 + MEM_WriteU32(0x401F8030, 0x00000000); // EMC_07 + MEM_WriteU32(0x401F8034, 0x00000000); // EMC_08 + MEM_WriteU32(0x401F8038, 0x00000000); // EMC_09 + MEM_WriteU32(0x401F803C, 0x00000000); // EMC_10 + MEM_WriteU32(0x401F8040, 0x00000000); // EMC_11 + MEM_WriteU32(0x401F8044, 0x00000000); // EMC_12 + MEM_WriteU32(0x401F8048, 0x00000000); // EMC_13 + MEM_WriteU32(0x401F804C, 0x00000000); // EMC_14 + MEM_WriteU32(0x401F8050, 0x00000000); // EMC_15 + MEM_WriteU32(0x401F8054, 0x00000000); // EMC_16 + MEM_WriteU32(0x401F8058, 0x00000000); // EMC_17 + MEM_WriteU32(0x401F805C, 0x00000000); // EMC_18 + MEM_WriteU32(0x401F8060, 0x00000000); // EMC_19 + MEM_WriteU32(0x401F8064, 0x00000000); // EMC_20 + MEM_WriteU32(0x401F8068, 0x00000000); // EMC_21 + MEM_WriteU32(0x401F806C, 0x00000000); // EMC_22 + MEM_WriteU32(0x401F8070, 0x00000000); // EMC_23 + MEM_WriteU32(0x401F8074, 0x00000000); // EMC_24 + MEM_WriteU32(0x401F8078, 0x00000000); // EMC_25 + MEM_WriteU32(0x401F807C, 0x00000000); // EMC_26 + MEM_WriteU32(0x401F8080, 0x00000000); // EMC_27 + MEM_WriteU32(0x401F8084, 0x00000000); // EMC_28 + MEM_WriteU32(0x401F8088, 0x00000000); // EMC_29 + MEM_WriteU32(0x401F808C, 0x00000000); // EMC_30 + MEM_WriteU32(0x401F8090, 0x00000000); // EMC_31 + MEM_WriteU32(0x401F8094, 0x00000000); // EMC_32 + MEM_WriteU32(0x401F8098, 0x00000000); // EMC_33 + MEM_WriteU32(0x401F809C, 0x00000000); // EMC_34 + MEM_WriteU32(0x401F80A0, 0x00000000); // EMC_35 + MEM_WriteU32(0x401F80A4, 0x00000000); // EMC_36 + MEM_WriteU32(0x401F80A8, 0x00000000); // EMC_37 + MEM_WriteU32(0x401F80AC, 0x00000000); // EMC_38 + MEM_WriteU32(0x401F80B0, 0x00000010); // EMC_39 + + /* Configure SDRAM PAD. Drive strength = 0x7 + * to increase drive strength, otherwise data7 + * bit may fail. */ + MEM_WriteU32(0x401F8204, 0x000110F9); // EMC_00 + MEM_WriteU32(0x401F8208, 0x000110F9); // EMC_01 + MEM_WriteU32(0x401F820C, 0x000110F9); // EMC_02 + MEM_WriteU32(0x401F8210, 0x000110F9); // EMC_03 + MEM_WriteU32(0x401F8214, 0x000110F9); // EMC_04 + MEM_WriteU32(0x401F8218, 0x000110F9); // EMC_05 + MEM_WriteU32(0x401F821C, 0x000110F9); // EMC_06 + MEM_WriteU32(0x401F8220, 0x000110F9); // EMC_07 + MEM_WriteU32(0x401F8224, 0x000110F9); // EMC_08 + MEM_WriteU32(0x401F8228, 0x000110F9); // EMC_09 + MEM_WriteU32(0x401F822C, 0x000110F9); // EMC_10 + MEM_WriteU32(0x401F8230, 0x000110F9); // EMC_11 + MEM_WriteU32(0x401F8234, 0x000110F9); // EMC_12 + MEM_WriteU32(0x401F8238, 0x000110F9); // EMC_13 + MEM_WriteU32(0x401F823C, 0x000110F9); // EMC_14 + MEM_WriteU32(0x401F8240, 0x000110F9); // EMC_15 + MEM_WriteU32(0x401F8244, 0x000110F9); // EMC_16 + MEM_WriteU32(0x401F8248, 0x000110F9); // EMC_17 + MEM_WriteU32(0x401F824C, 0x000110F9); // EMC_18 + MEM_WriteU32(0x401F8250, 0x000110F9); // EMC_19 + MEM_WriteU32(0x401F8254, 0x000110F9); // EMC_20 + MEM_WriteU32(0x401F8258, 0x000110F9); // EMC_21 + MEM_WriteU32(0x401F825C, 0x000110F9); // EMC_22 + MEM_WriteU32(0x401F8260, 0x000110F9); // EMC_23 + MEM_WriteU32(0x401F8264, 0x000110F9); // EMC_24 + MEM_WriteU32(0x401F8268, 0x000110F9); // EMC_25 + MEM_WriteU32(0x401F826C, 0x000110F9); // EMC_26 + MEM_WriteU32(0x401F8270, 0x000110F9); // EMC_27 + MEM_WriteU32(0x401F8274, 0x000110F9); // EMC_28 + MEM_WriteU32(0x401F8278, 0x000110F9); // EMC_29 + MEM_WriteU32(0x401F827C, 0x000110F9); // EMC_30 + MEM_WriteU32(0x401F8280, 0x000110F9); // EMC_31 + MEM_WriteU32(0x401F8284, 0x000110F9); // EMC_32 + MEM_WriteU32(0x401F8288, 0x000110F9); // EMC_33 + MEM_WriteU32(0x401F828C, 0x000110F9); // EMC_34 + MEM_WriteU32(0x401F8290, 0x000110F9); // EMC_35 + MEM_WriteU32(0x401F8294, 0x000110F9); // EMC_36 + MEM_WriteU32(0x401F8298, 0x000110F9); // EMC_37 + MEM_WriteU32(0x401F829C, 0x000110F9); // EMC_38 + MEM_WriteU32(0x401F82A0, 0x000110F9); // EMC_39 } -void SDRAM_WaitIpCmdDone(void) + +void SDRAM_SEMC_Init(void) { - unsigned int reg; - do - { - reg = MEM_ReadU32(0x402F003C); - }while((reg & 0x3) == 0); - - MEM_WriteU32(0x402F003C,0x00000003); // clear IPCMDERR and IPCMDDONE bits + unsigned int SEMC_MCR; + unsigned int SEMC_BMCR0; + unsigned int SEMC_BMCR1; + unsigned int SEMC_BR0; + unsigned int SEMC_SDRAMCR0; + unsigned int SEMC_SDRAMCR1; + unsigned int SEMC_SDRAMCR2; + unsigned int SEMC_SDRAMCR3; + unsigned int SEMC_IPCR0; + unsigned int SEMC_IPCR1; + unsigned int SEMC_IPCR2; + unsigned int SEMC_IPCMD; + unsigned int SEMC_IPTXDAT; + unsigned int SEMC_IPCMDMAGICKEY; + unsigned int SEMC_IPCMDMODESET; + unsigned int SEMC_IPCMDAUTOREFRESH; + unsigned int SEMC_IPCMDPRECHARGEALL; + unsigned int sdram_address; + unsigned int reg_val; + + SEMC_MCR = 0x402F0000; + SEMC_BMCR0 = 0x402F0008; + SEMC_BMCR1 = 0x402F000C; + SEMC_BR0 = 0x402F0010; + SEMC_SDRAMCR0 = 0x402F0040; + SEMC_SDRAMCR1 = 0x402F0044; + SEMC_SDRAMCR2 = 0x402F0048; + SEMC_SDRAMCR3 = 0x402F004C; + SEMC_IPCR0 = 0x402F0090; + SEMC_IPCR1 = 0x402F0094; + SEMC_IPCR2 = 0x402F0098; + SEMC_IPCMD = 0x402F009C; + SEMC_IPTXDAT = 0x402F00A0; + + /* SDRAM address in MCU memory map */ + sdram_address = 0x80000000; + + /* IP commands codes and magic key */ + SEMC_IPCMDMAGICKEY = 0xA55A0000; + SEMC_IPCMDMODESET = 0x0000000A; + SEMC_IPCMDAUTOREFRESH = 0x0000000C; + SEMC_IPCMDPRECHARGEALL = 0x0000000F; + + /* Disable SEMC module */ + reg_val = MEM_ReadU32(SEMC_MCR); + reg_val |= 0x00000002; + MEM_WriteU32(SEMC_MCR, reg_val); + + /* Configure queues for AXI bus: + * Queue A: + * WQOS = 4; + * WAGE = 2; + * WSH = 3; + * WRWS = 5 */ + MEM_WriteU32(SEMC_BMCR0, 0x00030524); + + /* Queue B: + * WQOS = 4; + * WAGE = 2; + * WPH = 3; + * WRWS = 5; + * WBR = 6 */ + MEM_WriteU32(SEMC_BMCR1, 0x06050324); + + /* Configure MCR: + * set bus timeout cycles to 0x10; + * set DQS mode to loopback from DQS pad for more accurate timings; + * enable SEMC module. */ + MEM_WriteU32(SEMC_MCR, 0x10000004); + + /* Configure BR0: + * set SDRAM address; + * set memory size to 16MB; + * mark config as valid. */ + MEM_WriteU32(SEMC_BR0, (sdram_address | 0x00000019)); + + /* Configure SDRAMCR0: + * set port size to 16 bits; + * set burst length to 1 (see IMXRT1050CE document, ERR050577, p.36); + * set column address bit number to 9; + * set CAS latency to 3 cycles. */ + MEM_WriteU32(SEMC_SDRAMCR0, 0x00000F01); + + /* Configure SDRAMCR1-3: SDRAM timings. The values + * were obtained by feeding SEMC_ConfigureSDRAM() with + * proper data from Winbond W987D6HBGX6I datasheet. */ + MEM_WriteU32(SEMC_SDRAMCR1, 0x00665222); + MEM_WriteU32(SEMC_SDRAMCR2, 0x000A0C12); + MEM_WriteU32(SEMC_SDRAMCR3, 0x10100A00); // Disable SDRAM self-refresh + + /* Prepare to send IP commands */ + MEM_WriteU32(SEMC_IPCR0, sdram_address); // Set SDRAM address + MEM_WriteU32(SEMC_IPCR1, 0x00000002); // Set 2-byte data size + MEM_WriteU32(SEMC_IPCR2, 0x00000000); // Unmask all IPTXDAT command bytes + + /* Standard SDRAM init procedure - PRECHARGE followed by AUTO REFRESH twice */ + MEM_WriteU32(SEMC_IPCMD, (SEMC_IPCMDMAGICKEY | SEMC_IPCMDPRECHARGEALL)); + SDRAM_WaitIpCmdDone(); + MEM_WriteU32(SEMC_IPCMD, (SEMC_IPCMDMAGICKEY | SEMC_IPCMDAUTOREFRESH)); + SDRAM_WaitIpCmdDone(); + MEM_WriteU32(SEMC_IPCMD, (SEMC_IPCMDMAGICKEY | SEMC_IPCMDAUTOREFRESH)); + SDRAM_WaitIpCmdDone(); + + /* Set SDRAM mode: + * set CAS latency to 3 cycles; + * set burst length to 1. */ + MEM_WriteU32(SEMC_IPTXDAT, 0x00000030); + MEM_WriteU32(SEMC_IPCMD, (SEMC_IPCMDMAGICKEY | SEMC_IPCMDMODESET)); + SDRAM_WaitIpCmdDone(); + + /* Re-enable SDRAM self-refresh */ + reg_val = MEM_ReadU32(SEMC_SDRAMCR3); + reg_val |= 0x00000001; + MEM_WriteU32(SEMC_SDRAMCR3, reg_val); } -void SDRAM_Init() { - // Config IOMUX for SDRAM - MEM_WriteU32(0x401F8014,0x00000000); // EMC_00 - MEM_WriteU32(0x401F8018,0x00000000); // EMC_01 - MEM_WriteU32(0x401F801C,0x00000000); // EMC_02 - MEM_WriteU32(0x401F8020,0x00000000); // EMC_03 - MEM_WriteU32(0x401F8024,0x00000000); // EMC_04 - MEM_WriteU32(0x401F8028,0x00000000); // EMC_05 - MEM_WriteU32(0x401F802C,0x00000000); // EMC_06 - MEM_WriteU32(0x401F8030,0x00000000); // EMC_07 - MEM_WriteU32(0x401F8034,0x00000000); // EMC_08 - MEM_WriteU32(0x401F8038,0x00000000); // EMC_09 - MEM_WriteU32(0x401F803C,0x00000000); // EMC_10 - MEM_WriteU32(0x401F8040,0x00000000); // EMC_11 - MEM_WriteU32(0x401F8044,0x00000000); // EMC_12 - MEM_WriteU32(0x401F8048,0x00000000); // EMC_13 - MEM_WriteU32(0x401F804C,0x00000000); // EMC_14 - MEM_WriteU32(0x401F8050,0x00000000); // EMC_15 - MEM_WriteU32(0x401F8054,0x00000000); // EMC_16 - MEM_WriteU32(0x401F8058,0x00000000); // EMC_17 - MEM_WriteU32(0x401F805C,0x00000000); // EMC_18 - MEM_WriteU32(0x401F8060,0x00000000); // EMC_19 - MEM_WriteU32(0x401F8064,0x00000000); // EMC_20 - MEM_WriteU32(0x401F8068,0x00000000); // EMC_21 - MEM_WriteU32(0x401F806C,0x00000000); // EMC_22 - MEM_WriteU32(0x401F8070,0x00000000); // EMC_23 - MEM_WriteU32(0x401F8074,0x00000000); // EMC_24 - MEM_WriteU32(0x401F8078,0x00000000); // EMC_25 - MEM_WriteU32(0x401F807C,0x00000000); // EMC_26 - MEM_WriteU32(0x401F8080,0x00000000); // EMC_27 - MEM_WriteU32(0x401F8084,0x00000000); // EMC_28 - MEM_WriteU32(0x401F8088,0x00000000); // EMC_29 - MEM_WriteU32(0x401F808C,0x00000000); // EMC_30 - MEM_WriteU32(0x401F8090,0x00000000); // EMC_31 - MEM_WriteU32(0x401F8094,0x00000000); // EMC_32 - MEM_WriteU32(0x401F8098,0x00000000); // EMC_33 - MEM_WriteU32(0x401F809C,0x00000000); // EMC_34 - MEM_WriteU32(0x401F80A0,0x00000000); // EMC_35 - MEM_WriteU32(0x401F80A4,0x00000000); // EMC_36 - MEM_WriteU32(0x401F80A8,0x00000000); // EMC_37 - MEM_WriteU32(0x401F80AC,0x00000000); // EMC_38 - MEM_WriteU32(0x401F80B0,0x00000010); // EMC_39 - - // PAD ctrl - // drive strength = 0x7 to increase drive strength - // otherwise the data7 bit may fail. - MEM_WriteU32(0x401F8204,0x000110F9); // EMC_00 - MEM_WriteU32(0x401F8208,0x000110F9); // EMC_01 - MEM_WriteU32(0x401F820C,0x000110F9); // EMC_02 - MEM_WriteU32(0x401F8210,0x000110F9); // EMC_03 - MEM_WriteU32(0x401F8214,0x000110F9); // EMC_04 - MEM_WriteU32(0x401F8218,0x000110F9); // EMC_05 - MEM_WriteU32(0x401F821C,0x000110F9); // EMC_06 - MEM_WriteU32(0x401F8220,0x000110F9); // EMC_07 - MEM_WriteU32(0x401F8224,0x000110F9); // EMC_08 - MEM_WriteU32(0x401F8228,0x000110F9); // EMC_09 - MEM_WriteU32(0x401F822C,0x000110F9); // EMC_10 - MEM_WriteU32(0x401F8230,0x000110F9); // EMC_11 - MEM_WriteU32(0x401F8234,0x000110F9); // EMC_12 - MEM_WriteU32(0x401F8238,0x000110F9); // EMC_13 - MEM_WriteU32(0x401F823C,0x000110F9); // EMC_14 - MEM_WriteU32(0x401F8240,0x000110F9); // EMC_15 - MEM_WriteU32(0x401F8244,0x000110F9); // EMC_16 - MEM_WriteU32(0x401F8248,0x000110F9); // EMC_17 - MEM_WriteU32(0x401F824C,0x000110F9); // EMC_18 - MEM_WriteU32(0x401F8250,0x000110F9); // EMC_19 - MEM_WriteU32(0x401F8254,0x000110F9); // EMC_20 - MEM_WriteU32(0x401F8258,0x000110F9); // EMC_21 - MEM_WriteU32(0x401F825C,0x000110F9); // EMC_22 - MEM_WriteU32(0x401F8260,0x000110F9); // EMC_23 - MEM_WriteU32(0x401F8264,0x000110F9); // EMC_24 - MEM_WriteU32(0x401F8268,0x000110F9); // EMC_25 - MEM_WriteU32(0x401F826C,0x000110F9); // EMC_26 - MEM_WriteU32(0x401F8270,0x000110F9); // EMC_27 - MEM_WriteU32(0x401F8274,0x000110F9); // EMC_28 - MEM_WriteU32(0x401F8278,0x000110F9); // EMC_29 - MEM_WriteU32(0x401F827C,0x000110F9); // EMC_30 - MEM_WriteU32(0x401F8280,0x000110F9); // EMC_31 - MEM_WriteU32(0x401F8284,0x000110F9); // EMC_32 - MEM_WriteU32(0x401F8288,0x000110F9); // EMC_33 - MEM_WriteU32(0x401F828C,0x000110F9); // EMC_34 - MEM_WriteU32(0x401F8290,0x000110F9); // EMC_35 - MEM_WriteU32(0x401F8294,0x000110F9); // EMC_36 - MEM_WriteU32(0x401F8298,0x000110F9); // EMC_37 - MEM_WriteU32(0x401F829C,0x000110F9); // EMC_38 - MEM_WriteU32(0x401F82A0,0x000110F9); // EMC_39 - - // Config SDR Controller Registers/ - MEM_WriteU32(0x402F0000,0x10000004); // MCR - MEM_WriteU32(0x402F0008,0x00030524); // BMCR0 - MEM_WriteU32(0x402F000C,0x06030524); // BMCR1 - MEM_WriteU32(0x402F0010,0x80000019); // BR0, 16MB OK - MEM_WriteU32(0x402F0040,0x00000F31); // SDRAMCR0 OK - MEM_WriteU32(0x402F0044,0x00652922); // SDRAMCR1 - MEM_WriteU32(0x402F0048,0x000a0b0d); // SDRAMCR2 - MEM_WriteU32(0x402F004C,0x0f0f0a00); // SDRAMCR3 - MEM_WriteU32(0x402F0090,0x80000000); // IPCR0 OK - MEM_WriteU32(0x402F0094,0x00000002); // IPCR1 OK - MEM_WriteU32(0x402F0098,0x00000000); // IPCR2 OK - MEM_WriteU32(0x402F009C,0xA55A000F); // IPCMD, SD_CC_IPREA - SDRAM_WaitIpCmdDone(); - MEM_WriteU32(0x402F009C,0xA55A000C); // SD_CC_IAF - SDRAM_WaitIpCmdDone(); - MEM_WriteU32(0x402F009C,0xA55A000C); // SD_CC_IAF - SDRAM_WaitIpCmdDone(); - MEM_WriteU32(0x402F00A0,0x00000033); // IPTXDAT OK - MEM_WriteU32(0x402F009C,0xA55A000A); // SD_CC_IMS - SDRAM_WaitIpCmdDone(); - MEM_WriteU32(0x402F004C,0x08080A01 ); // enable sdram self refresh again after initialization done. - - JLINK_SYS_Report("SDRAM Init Done"); + +void SDRAM_Init(void) +{ + SDRAM_IO_Init(); + SDRAM_SEMC_Init(); + JLINK_SYS_Report("SDRAM initialized"); } -void INTRAM_Init() { - unsigned int gpr14_addr; - unsigned int gpr16_addr; - unsigned int gpr17_addr; - unsigned int ret; - - gpr14_addr = 0x400AC038; - gpr16_addr = 0x400AC040; - gpr17_addr = 0x400AC044; - ret = 0; - - // 448 KBytes of DTCM - MEM_WriteU32(gpr17_addr,0x5AAAAAAA); - - ret = MEM_ReadU32(gpr16_addr); - - // Turn off DTCM - //ret &= ~0x02; - // Turn off ITCM - ret &= ~0x01; - MEM_WriteU32(gpr16_addr,ret); - + +void INTRAM_Init(void) +{ + unsigned int IOMUXC_GPR_GPR14; + unsigned int IOMUXC_GPR_GPR16; + unsigned int IOMUXC_GPR_GPR17; + unsigned int reg_val; - // Configure DTCM/ITCM size - ret = MEM_ReadU32(gpr14_addr); - // Mask ITCM/DTCM size bits - ret &= ~0xFF0000; - // Set DTCM size to 512KBytes - ret |= 0xA00000; - MEM_WriteU32(gpr14_addr,ret); + IOMUXC_GPR_GPR14 = 0x400AC038; + IOMUXC_GPR_GPR16 = 0x400AC040; + IOMUXC_GPR_GPR17 = 0x400AC044; - ret = MEM_ReadU32(gpr16_addr); + /* 448 KBytes of DTCM */ + MEM_WriteU32(IOMUXC_GPR_GPR17, 0x5AAAAAAA); + + /* Turn off ITCM */ + reg_val = MEM_ReadU32(IOMUXC_GPR_GPR16); + reg_val &= ~0x00000001; + MEM_WriteU32(IOMUXC_GPR_GPR16, reg_val); - // FlexRAM_BANK_CFG_SEL - ret &= ~0x04; - ret |= 0x04; - MEM_WriteU32(gpr16_addr,ret); - JLINK_SYS_Report("INTRAM Init Done"); + /* Configure DTCM/ITCM size */ + reg_val = MEM_ReadU32(IOMUXC_GPR_GPR14); + reg_val &= ~0x00FF0000; // Mask ITCM/DTCM size bits + reg_val |= 0x00A00000; // Set DTCM size to 512KBytes + MEM_WriteU32(IOMUXC_GPR_GPR14, reg_val); + + JLINK_SYS_Report("INTRAM initialized"); +} + +void WDOG_Disable(void) +{ + unsigned int MUX_CTL_PAD_GPIO_B1_13; + MUX_CTL_PAD_GPIO_B1_13 = 0x401F81B0; + + /* Change pin mux from WDOG_B to GPIO to prevent resetting */ + MEM_WriteU32(MUX_CTL_PAD_GPIO_B1_13, 0x00000005); + + JLINK_SYS_Report("Watchdog disabled"); } -void WDOG_Disable(){ - unsigned int gpio_b1_13; +void SNVS_SSM_Init(void) +{ + unsigned int SNVS_HPCOMR; + unsigned int SNVS_HPCOMR_SW_SV_MASK; + unsigned int reg_val; + + SNVS_HPCOMR = 0x400D4004; + SNVS_HPCOMR_SW_SV_MASK = (1 << 8); - gpio_b1_13 = 0x401F81B0; + /* Force enter non-secure state by setting software security violation bit */ + reg_val = MEM_ReadU32(SNVS_HPCOMR); + reg_val |= SNVS_HPCOMR_SW_SV_MASK; + MEM_WriteU32(SNVS_HPCOMR, reg_val); - // Switch off WDOG1 - MEM_WriteU32(gpio_b1_13, 1); + JLINK_SYS_Report("SSM initialized"); } /* SetupTarget */ -int AfterResetTarget(void) { - JLINK_SYS_Report("Enabling i.MXRT SDRAM"); - /*Load_Dcdc_Trim();*/ - WDOG_Disable(); - Clock_Init(); - SDRAM_Init(); - INTRAM_Init(); - JLINK_SYS_Report("Enable Power Switch On for debug"); - MEM_WriteU32(0x401BC000, 128); +int AfterResetTarget(void) +{ + WDOG_Disable(); + Clock_Init(); + SDRAM_Init(); + INTRAM_Init(); + SNVS_SSM_Init(); } diff --git a/harmony_changelog.md b/harmony_changelog.md index a3b7267b21..45ffa0b426 100644 --- a/harmony_changelog.md +++ b/harmony_changelog.md @@ -1,6 +1,6 @@ # MuditaOS changelog - Harmony -## Unreleased +## [2.0.0 2023-06-23] ### Fixed @@ -13,14 +13,25 @@ * Fixed problem with long Relaxation loading when titles were too long * Fixed backlight behavior after returning to the main window * Fixed settings frontlight intensity in on demand mode +* Fixed problem that UI could be occasionally broken +* Fixed problem with displaying end of title when playing song in loop was selected. +* Fixed USB charging port detection. +* Fixed occasional crash on system startup. +* Fixed the buttons sometimes don't respond on press or release +* Fixed no clock update ### Added * Added error handling for incorrect audio formats and corrupted files inside Relaxation app +* Added error message when files limit is exceeded in Relaxation app +* Added label informing about PC connection. -### Changed +### Changed / Improved * Added new field to deviceInfo endpoint +* Changed order in which files are displayed in Relaxation +* Optimized E-Ink energy consumption +* Changed the layout of the battery status ## [1.9.0 2023-04-03] diff --git a/image/system_a/data/lang/Deutsch.json b/image/system_a/data/lang/Deutsch.json index 42da3ceb24..1173f206c8 100644 --- a/image/system_a/data/lang/Deutsch.json +++ b/image/system_a/data/lang/Deutsch.json @@ -1,749 +1,716 @@ { - "metadata": { - "display_name": "Deutsch" - }, - "common_add": "HINZUFÜGEN", - "common_open": "ÖFFNEN", - "common_call": "ANRUFEN", - "common_save": "SPEICHERN", - "common_reply": "ANTWORTEN", - "common_edit": "ÄNDERN", - "common_send": "SENDEN", - "common_confirm": "BESTÄTIGEN", - "common_select": "AUSWÄHLEN", - "common_use": "BENUTZEN", - "common_ok": "BESTÄTIGEN", - "common_back": "ZURÜCK", - "common_skip": "ÜBERSPRINGEN", - "common_contacts": "KONTAKTE", - "common_set": "EINSTELLEN", - "common_show": "ANZEIGEN", - "common_yes": "Ja", - "common_no": "Nein", - "common_switch": "WECHSELN", - "common_options": "OPTIONEN", - "common_options_title": "Einstellungen", - "common_information": "Informationen", - "common_check": "AUSWÄHLEN", - "common_uncheck": "AUSWAHL ENTFERNEN", - "common_emoji": "EMOJI", - "common_special_characters": "SPEZIAL", - "common_start": "STARTEN", - "common_stop": "STOPPEN", - "common_resume": "FORTFAHREN", - "common_pause": "PAUSIEREN", - "common_play": "ABSPIELEN", - "common_retry": "NOCHMAL VERSUCHEN", - "common_replace": "ERSETZEN", - "common_abort": "ABBRECHEN", - "common_connect": "VERBINDEN", - "common_disconnect": "TRENNEN", - "common_forget": "VERGESSEN", - "common_adjust": "ANPASSEN", - "common_mo": "MO", - "common_tu": "DI", - "common_we": "MI", - "common_th": "DO", - "common_fr": "FR", - "common_sa": "SA", - "common_su": "SO", - "common_mon": "Mo", - "common_tue": "Di", - "common_wed": "Mi", - "common_thu": "Do", - "common_fri": "Fr", - "common_sat": "Sa", - "common_sun": "So", - "common_monday": "Montag", - "common_tuesday": "Dienstag", - "common_wednesday": "Mittwoch", - "common_thursday": "Donnerstag", - "common_friday": "Freitag", - "common_saturday": "Samstag", - "common_sunday": "Sonntag", - "common_january": "Januar", - "common_february": "Februar", - "common_march": "März", - "common_april": "April", - "common_may": "Mai", - "common_june": "Juni", - "common_july": "Juli", - "common_august": "August", - "common_september": "September", - "common_october": "Oktober", - "common_november": "November", - "common_december": "Dezember", - "common_yesterday": "Gestern", - "common_today": "Heute", - "common_results_prefix": "Ergebnisse: ", - "common_search": "SUCHEN", - "common_accept": "ANNEHMEN", - "common_minute_lower": "minute", - "common_minutes_lower": "minuten", - "common_minutes_lower_genitive": "minuten", - "common_minute_short": "min", - "common_second_lower": "sekunde", - "common_seconds_lower": "sekunden", - "common_paused": "Pausiert", - "common_text_copy": "Text kopieren", - "common_text_paste": "Text einfügen", - "locale_12hour_min": "%I:%M %p", - "locale_12hour_min_short": "%I:%M", - "locale_24hour_min": "%H:%M", - "locale_date_full": "%d.%m.%Y", - "locale_date_short": "%d.%m", - "locale_date_DD_MM_YY": "%d.%m.%y", - "locale_date_MM_DD_YY": "%m.%d.%y", - "common_AM": "AM", - "common_PM": "PM", - "duration_min_0sec": "%M:%0S", - "duration_0min_0sec": "%0M:%0S", - "duration_0hmin_0sec": "%0N:%0S", - "duration_hour_0min_0sec": "%H:%0M:%0S", - "brightness_text": "HELLIGKEIT", - "phone_needs_rebooting": "Das Telefon muss neu gestartet werden. Drücken Sie zur Bestätigung eine beliebige Taste und entfernen Sie die Batterie für 10 Sekunden, um das Gerät komplett neu starten zu lassen.", - "home_modes_connected": "VERBUNDEN", - "home_modes_notdisturb": "NICHT STÖREN", - "home_modes_offline": "OFFLINE", - "home_modes_message_only": "Nur Nachrichten", - "statusbar_battery_charging": "Aufladen", - "statusbar_battery_plugged": "Stecker", - "app_alarm_clock_title_main": "Wecker", - "app_alarm_clock_repeat_never": "Niemals", - "app_alarm_clock_repeat_everyday": "Täglich", - "app_alarm_clock_repeat_week_days": "Wochentags", - "app_alarm_clock_repeat_custom": "Benutzerdefiniert", - "app_alarm_clock_no_alarms_information": "Noch kein Alarm.

Zum Hinzufügen linken Pfeil drücken.

", - "app_alarm_clock_options_edit": "Ändern", - "app_alarm_clock_options_delete": "Löschen", - "app_alarm_clock_options_turn_off_all_alarms": "Alle Alarme ausschalten", - "app_alarm_clock_delete_confirmation": "Diesen Alarm löschen?", - "app_alarm_clock_new_alarm_title": "Neuer Alarm", - "app_alarm_clock_edit_alarm_title": "Alarm ändern", - "app_alarm_clock_sound": "Ton", - "app_alarm_clock_snooze": "Schlummern", - "app_alarm_clock_repeat": "Wiederholen", - "app_alarm_clock_snooze_5_min": "5 min", - "app_alarm_clock_snooze_10_min": "10 min", - "app_alarm_clock_snooze_15_min": "15 min", - "app_alarm_clock_snooze_30_min": "30 min", - "app_alarm_clock_play_pause": "PAUSE", - "app_calendar_title_main": "Kalender", - "app_calendar_options_edit": "Ändern", - "app_calendar_options_delete": "Löschen", - "app_calendar_event_delete_confirmation": "Dieses Ereignis löschen?", - "app_calendar_bar_month": "MONAT", - "app_calendar_bar_list": "LISTE", - "app_calendar_event_detail": "Ereignis", - "app_calendar_event_detail_repeat": "Wiederholen", - "app_calendar_event_detail_reminder": "Erinnerung", - "app_calendar_no_events_information": "Noch kein Ereignis.

Zum Hinzufügen linken Pfeil drücken.

", - "app_calendar_repeat_never": "Niemals", - "app_calendar_repeat_daily": "Täglich", - "app_calendar_repeat_weekly": "Wöchentlich", - "app_calendar_repeat_two_weeks": "Zwei Wochen", - "app_calendar_repeat_month": "Monat", - "app_calendar_repeat_year": "Jahr", - "app_calendar_repeat_custom": "Benutzerdefiniert", - "app_calendar_reminder_never": "Niemals", - "app_calendar_reminder_event_time": "Bei Ereignisstart", - "app_calendar_reminder_5_min_before": "5 min davor", - "app_calendar_reminder_15_min_before": "15 min davor", - "app_calendar_reminder_30_min_before": "30 min davor", - "app_calendar_reminder_1_hour_before": "1 Stunde davor", - "app_calendar_reminder_2_hour_before": "2 Stunden davor", - "app_calendar_reminder_1_day_before": "1 Tag davor", - "app_calendar_reminder_2_days_before": "2 Tage davor", - "app_calendar_reminder_1_week_before": "1 Woche davor", - "app_calendar_custom_repeat_title": "Benutzerdefiniert wiederholen", - "app_calendar_new_event_title": "Neues Ereignis", - "app_calendar_edit_event_title": "Ereignis ändern", - "app_calendar_edit": "ÄNDERN", - "app_calendar_new_edit_event_name": "Ereignisname", - "app_calendar_new_edit_event_allday": "Ganztägiges Ereignis", - "app_calendar_all_day": "Ganztägig", - "app_calendar_new_edit_event_start": "Anfang", - "app_calendar_new_edit_event_end": "Ende", - "app_calendar_event_error_dates": "Das Startdatum muss vor\ndem Enddatum liegen", - "app_calendar_event_error_empty_name": "Ereignisname darf nicht leer sein", - "app_calculator_title_main": "Rechner", - "app_calculator_equals": "GLEICH", - "app_calculator_decimal_separator": ".", - "app_calculator_error": "Fehler", - "app_options_invalid_option": " ", - "app_options_contact_details": "Kontaktdaten", - "app_options_contact_add": "Zu Kontakten hinzufügen", - "app_options_contact_edit": "Kontakte ändern", - "app_notes_title_main": "Notizen", - "app_notes_edit_note": "Ändern Notiz", - "app_notes_new_note": "Neue Notiz", - "app_notes_edit": "ÄNDERN", - "app_notes_edited": "Geändert", - "app_notes_delete_note": "Löschen", - "app_notes_note_delete_confirmation": "Diese Notiz wirklich löschen?", - "app_notes_no_notes": "Noch keine Notiz.

Zum Hinzufügen linken Pfeil drücken.

", - "app_notes_search_no_results": "Keine Notizen gefunden.", - "app_calllog_title_main": "Anrufe", - "app_calllog_type": "Anruf", - "app_calllog_duration": "Dauer", - "app_calllog_incoming_call": "Eingehender Anruf", - "app_calllog_outgoing_call": "Ausgehender Anruf", - "app_calllog_missed_call": "Entgangener Anruf", - "app_calllog_rejected_call": "Abgelehnter Anruf", - "app_calllog_date": "Datum", - "app_calllog_options_delete_call": "Anruf löschen", - "app_calllog_delete_call_confirmation": "Diesen Anruf aus der Liste löschen?", - "app_calllog_delete_all_calls": "Alle Anrufe löschen", - "app_calllog_delete_all_calls_confirmation": "Alle Anrufe von der Liste löschen?", - "app_calllog_no_calls": "Noch keine Anrufe.", - "app_phonebook_no_contacts": "Noch keine Kontakte.

Drücken Sie Pfeil nach links, um neue hinzuzufügen.

", - "app_phonebook_no_contacts_yet": "Noch keine Kontakte.", - "app_music_player_artists": "Künstler", - "app_music_player_albums": "Alben", - "app_music_player_playlists": "Wiedergabelisten", - "app_music_player_uknown_title": "Unbekannter Titel", - "app_music_player_uknown_artist": "Unbekannter Künstler", - "app_music_player_music_library_window_name": "Musikbibliothek", - "app_music_player_empty_track_notification": "Bitte wählen Sie einen Song aus der Bibliothek", - "app_music_player_start_window_notification": "Drücken Sie nach unten, um

einen Song auszuwählen
", - "app_desktop_unlock": "ENTSPERREN", - "app_desktop_menu": "MENÜ", - "app_desktop_emergency": "NOTRUF", - "app_desktop_info": "Info", - "app_desktop_info_mmi_none_specified_failed": "Operation fehlgeschlagen", - "app_desktop_info_mmi_none_specified_success": "Operation erfolgreich", - "app_desktop_info_mmi_common_failed": "fehlgeschlagen", - "app_desktop_info_mmi_common_no_message": "nicht", - "app_desktop_info_mmi_common_mmi_not_supported": "nicht unterstützt", - "app_desktop_info_mmi_common_enabled": "aktiviert", - "app_desktop_info_mmi_common_disabled": "deaktiviert", - "app_desktop_info_mmi_common_voice": "Stimme", - "app_desktop_info_mmi_common_data": "Daten", - "app_desktop_info_mmi_common_fax": "FAX", - "app_desktop_info_mmi_common_sync": "sync", - "app_desktop_info_mmi_common_async": "async", - "app_desktop_info_mmi_common_all_disabled": "Alle Trägerdienste deaktiviert", - "app_desktop_info_mmi_common_deactivated": "Dienst wurde deaktiviert", - "app_desktop_info_mmi_common_activated": "Dienst wurde aktiviert", - "app_desktop_info_mmi_common_query": "Anfrage", - "app_desktop_info_mmi_clir_according_to_subscription": "CLIR laut Abonnement", - "app_desktop_info_mmi_clir_enabled": "CLIR aktiviert", - "app_desktop_info_mmi_clir_disabled": "CLIR deaktiviert", - "app_desktop_info_mmi_clir_not_provisioned": "CLIR nicht bereitgestellt", - "app_desktop_info_mmi_clir_permanent_provisioned": "CLIR permanent bereitgestellt", - "app_desktop_info_mmi_clir_unknown": "CLIR unbekannt", - "app_desktop_info_mmi_clir_temporary_restricted": "CLIR vorübergehend eingeschränkt", - "app_desktop_info_mmi_clir_temporary_allowed": "CLIR vorübergehend zulässig", - "app_desktop_info_mmi_registration_failed": "Registrierung fehlgeschlagen", - "app_desktop_info_mmi_registration_success": "Registrierung erfolgreich", - "app_desktop_info_mmi_erasure_failed": "Löschvorgang fehlgeschlagen", - "app_desktop_info_mmi_erasure_success": "Löschvorgang erfolgreich", - "app_desktop_info_mmi_disabling_failed": "Dienstsperrung fehlgeschlagen", - "app_desktop_info_mmi_disabling_success": "Dienst wurde gesperrt", - "app_desktop_info_mmi_enabling_failed": "Dienstfreigabe fehlgeschlagen", - "app_desktop_info_mmi_enabling_success": "Dienst wurde freigegeben", - "app_desktop_info_mmi_call_forwarding_disabled": "Anrufweiterleitung deaktiviert", - "app_desktop_info_mmi_call_barring_activated": "Anrufsperre wurde aktiviert", - "app_desktop_info_mmi_call_barring_deactivated": "Anrufsperre wurde deaktiviert", - "app_desktop_info_mmi_clip_activated": "CLIP aktiviert", - "app_desktop_info_mmi_clip_deactivated": "CLIP deaktiviert", - "app_desktop_info_mmi_clip_not_provisioned": "CLIP nicht bereitgestellt", - "app_desktop_info_mmi_clip_provisioned": "CLIP bereitgestellt", - "app_desktop_info_mmi_clip_unknown": "CLIP unbekannt", - "app_desktop_info_mmi_call_waiting_activated": "Anklopfen wurde aktiviert", - "app_desktop_info_mmi_call_waiting_deactivated": "Anklopfen wurde deaktiviert", - "app_desktop_info_mmi_call_forwarding": "Anrufweiterleitung", - "app_desktop_info_mmi_call_barring": "Anrufsperre", - "app_desktop_info_mmi_call_waiting": "Anklopfen", - "app_desktop_info_mmi_clip": "Anrufer-ID wird angezeigt (CLIP)", - "app_desktop_info_mmi_clir": "Anrufer-ID unterdrückt (CLIR)", - "app_desktop_info_mmi_imei": "IMEI (MEID)", - "app_desktop_info_mmi_result_success": "Erfolgreich", - "app_desktop_info_mmi_result_failed": "Fehlgeschlagen", - "sim_header_setup": "$SIM einrichten", - "sim_enter_pin_unlock": "PIN-Code eingeben, um

die$PINTYPE Karte einzurichten:
", - "sim_enter_enter_current": "Aktuellen PIN-Code eingeben:", - "sim_change_pin": "PIN-Code ändern", - "sim_enter_new_pin": "Neuen PIN-Code eingeben:", - "sim_confirm_new_pin": "Neuen PIN-Code bestätigen:", - "sim_setup_wrong_pin": "Falscher PIN-Code.

$ATTEMPTS Versuche übrig.
", - "sim_setup_wrong_pin_last_attempt": "Falscher PIN-Code.

1 Versuch übrig.
", - "sim_wrong_pin_confirmation": "Falscher PIN-Code.", - "sim_pin_changed_successfully": "PIN-Code erfolgreich geändert", - "sim_card_changed_successfully": "SIM-Karte erfolgreich geändert.", - "sim_card_select_successfully": "SIM-Karte erfolgreich ausgewählt.", - "sim_card_change_in_progress": "SIM-Wechselvorgang läuft.

Es dauert bis zu ein paar Sekunden.
", - "sim_card_select_in_progress": "SIM-Auswahlvorgang läuft.

Es dauert bis zu ein paar Sekunden.
", - "sim_cme_error": "SIM-Karte

CME-Fehler:$CMECODE
", - "sim_puk_blocked": "Die SIM-Karte ist gesperrt.

Bitte kontaktieren Sie den Betreiber.
", - "sim_setup_enter_puk": "Die SIM-Karte ist gesperrt.

Zum Entsperren PUK-Code eingeben:
", - "sim_setup_wrong_puk": "Falscher PUK-Code.

$ATTEMPTS Versuche übrig
", - "sim_setup_wrong_puk_last_attempt": "Falscher PUK-Code.

1 Versuch übrig
", - "sim_setup_wrong_puk_last_attempt_warning": "Wenn der Code diesmal falsch ist, wird die

SIM-Karte gesperrt und Sie müssen

den Betreiber kontaktieren.
", - "sim_card_pin_disabled": "PIN für SIM-Karte deaktiviert", - "sim_card_pin_enabled": "PIN für SIM-Karte aktiviert", - "sim_card_cant_connect": "Keine Verbindung mit $SIM-Karte möglich.

Bitte Karte einsetzen.
", - "sim_card_not_ready": "Warten auf Start des Modems.

Dies kann einen Moment dauern.
", - "app_desktop_press_to_unlock": "Entsperren drücken und dann #", - "app_desktop_press_to_complete_unlock": "Drücke # zum Entsperren", - "app_desktop_unread_messages": "Ungelesene Nachrichten", - "app_desktop_missed_calls": "Verpasste Anrufe", - "app_desktop_menu_phone": "ANRUFE", - "app_desktop_menu_contacts": "KONTAKTE", - "app_desktop_menu_messages": "NACHRICHTEN", - "app_desktop_menu_calendar": "KALENDER", - "app_desktop_menu_alarm": "ALARM", - "app_desktop_menu_meditation": "MEDITATION", - "app_desktop_menu_music": "MUSIK", - "app_desktop_menu_tools": "WERKZEUGE", - "app_desktop_menu_settings": "EINSTELLUNGEN", - "app_desktop_menu_title": "Menü", - "app_desktop_tools_title": "Werkzeuge", - "app_desktop_tools_notes": "NOTIZEN", - "app_desktop_tools_calculator": "RECHNER", - "app_desktop_tools_antenna": "ANTENNENTEST", - "app_desktop_poweroff_title": "Ausschalten", - "app_desktop_poweroff_question": "Das Telefon ausschalten?", - "app_desktop_show": "ZEIGEN", - "app_desktop_calls": "ANRUFE", - "app_desktop_clear": "LEEREN", - "app_desktop_clear_all": "KPL.-LEER.", - "app_desktop_replay": "ANTWORTEN", - "app_popup_volume_text": "LAUTSTÄRKE", - "app_popup_bt_volume_text": "BLUETOOTH-LAUTSTÄRKE", - "app_popup_music_volume_text": "MUSIKLAUTSTÄRKE", - "app_popup_call_volume_text": "ANRUFLAUTSTÄRKE", - "app_popup_muted_text": "STUMM", - "app_call_call": "ANRUFEN", - "app_call_clear": "LEEREN", - "app_call_reject": "ABLEHNEN", - "app_call_answer": "ANTWORTEN", - "app_call_message": "NACHRICHT", - "app_call_end_call": "ANRUF ENDE", - "app_call_emergency": "Notruf", - "app_call_is_calling": "ruft an", - "app_call_calling": "wird angerufen", - "app_call_call_ended": "Anruf beendet", - "app_call_call_rejected": "Anruf abgelehnt", - "app_call_contact": "KONTAKT", - "app_call_mute": "STUMMSCHALTEN", - "app_call_muted": "STUMM", - "app_call_speaker": "LTSPR.", - "app_call_speaker_on": "LTSPR. AN", - "app_call_bluetooth": "BLUETOOTH", - "app_call_no_sim": "Keine SIM-Karte.\n\nZum Anrufen\nSIM-Karte einsetzen.", - "app_call_no_network_connection": "Keine Netzwerkverbindung.", - "app_call_call_request_failed": "Etwas ist schief gelaufen.", - "app_call_offline": "Offline-Modus.\n\nZum Anrufen\n in Online-Modus wechseln.", - "app_sms_offline": "Offline-Modus.\n\nZum Senden einer SMS\n in Online-Modus wechseln.", - "app_call_emergency_text": "Notruf", - "app_call_wrong_emergency": "Anruf nicht möglich.\n$NUMBER ist keine Notrufnummer.", - "app_messages_title_main": "Nachrichten", - "app_messages_no_messages": "Noch keine Nachrichten.

Zum Hinzufügen linken Pfeil drücken.

", - "app_messages_no_templates": "Noch keine Vorlagen.

Erstellen Sie eine neue Vorlage

im Mudita Center, um sie in Ihrem

Pure zu verwenden.

", - "app_messages_thread_delete_confirmation": "Dieses Gespräch löschen?", - "app_messages_message_delete_confirmation": "

Diese Nachricht wirklich löschen

?
", - "app_messages_thread_no_result": "Keine Ergebnisse", - "app_messages_message": "Nachricht", - "app_messages_templates": "Vorlagen", - "app_messages_no_sim": "Keine SIM-Karte.\n\nZum Senden einer SMS\nSIM-Karte einsetzen.", - "app_messages_thread_draft": "Entwurf: ", - "app_messages_thread_not_sent": "Nicht gesendet: ", - "app_messages_thread_you": "Sie: ", - "app_onboarding_title": "Einführung", - "app_onboarding_start_configuration": "

Hallo!



Konfigurieren wir gemeinsam Ihr

Mudita Pure.
", - "app_onboarding_eula_license": "Lizenzvereinbarung (EULA)", - "app_onboarding_select_sim": "Aktive SIM auswählen", - "app_onboarding_select_sim_description": "Es kann immer nur eine SIM-Karte

aktiv sein. Sie können diese

jetzt auswählen und bei Bedarf

in den Einstellungen wechseln.
", - "app_onboarding_no_sim_selected_title": "SIM-Einrichtung", - "app_onboarding_no_sim_selected_description": "Keine SIM-Karte eingerichtet.

Richten Sie

SIM-Karten in den Einstellungen ein, um eine Verbindung zum Netzwerk herzustellen.
", - "app_onboarding_title_configuration": "Konfiguration", - "app_onboarding_title_update_info": "Aktualisierung des MuditaOS", - "app_onboarding_skip_confirm": "SIM-Einrichtung ist für die Netzwerkverbindung erforderlich. Einrichtung trotzdem überspringen? ", - "app_onboarding_configuration_successful": "Ihr Mudita Pure

ist jetzt einsatzbereit.
", - "app_onboarding_no_configuration": "Ihr Mudita Pure wurde noch nicht

konfiguriert. Sie können es in den

Einstellungen einrichten.
", - "app_onboarding_update_info": "Die aktuelle Version von MuditaOS ist

$VERSION.

Updates mit neuen Funktionen und Fehlerbehebungen erfolgen häufig.

Um Ihr Telefon zu aktualisieren, besuchen Sie bitte:

www.mudita.com/updateos

und folgen Sie den Anweisungen.", - "app_settings_title_main": "Einstellungen", - "app_settings_advanced": "Fortgeschritten", - "app_settings_bt": "Bluetooth", - "app_settings_bluetooth_add_device": "Gerät hinzufügen", - "app_settings_bluetooth_all_devices": "Alle Geräte", - "app_settings_bluetooth_searching_devices": "Geräte suchen … \nDas kann einen Moment dauern.", - "app_settings_bluetooth_main": "Bluetooth", - "app_settings_bluetooth_phone_name": "Name des Telefons", - "app_settings_bluetooth_phone_visibility": "Sichtbarkeit des Telefons", - "app_settings_bluetooth_enter_passkey": "Passwort eingeben:", - "app_settings_bluetooth_init_error_message": "Bluetooth-Initialisierungsprozess fehlgeschlagen.", - "app_settings_bluetooth_pairing_error_message": " Kopplungsvorgang fehlgeschlagen.

Überprüfen Sie das Gerät und
versuchen Sie es erneut.", - "app_settings_bluetooth_unpairing_error_message": " Entkopplungsvorgang fehlgeschlagen.

Überprüfen Sie das Gerät und
versuchen Sie es erneut.", - "app_settings_bluetooth_connecting_error_message": " Verbindungsvorgang fehlgeschlagen.

Überprüfen Sie das Gerät und
versuchen Sie es erneut.", - "bluetooth_popup": "Bluetooth", - "bluetooth_popup_pin": "PIN eingeben:", - "bluetooth_popup_passkey": "Passwort eingeben:", - "bluetooth_popup_pair_cancel_code": "Gerät $DEVICE möchte sich
mit Ihrem Pure verbinden. Bitte bestätigen Sie den Code: $CODE
", - "bluetooth_popup_pair_cancel_no_code": "Gerät $DEVICE möchte sich
mit Ihrem Pure verbinden.
", - "bluetooth_popup_confirm": "Bestätigen", - "bluetooth_popup_cancel": "Abbrechen", - "bluetooth_info_popup_success": "Ihr Handy ist mit $DEVICE gekoppelt.", - "bluetooth_info_popup_error": "Der Kopplungsvorgang mit $DEVICE

ist fehlgeschlagen. Fehlercode: $ERROR", - "app_settings_net": "Netzwerk", - "app_settings_disp_key": "Display und Tastenfeld", - "app_settings_display_display_light": "Displaylicht", - "app_settings_display_dark_mode": "Dunkelmodus (Beta)", - "app_settings_display_light_main": "Frontlicht", - "app_settings_display_light_auto": "Automatisch", - "app_settings_display_light_brightness": "Helligkeit", - "app_settings_display_font_size": "Schriftgröße", - "app_settings_display_locked_screen": "Gesperrter Bildschirm", - "app_settings_display_keypad_light": "Tastenlicht", - "app_settings_display_keypad_light_on": "Immer an", - "app_settings_display_keypad_light_active": "An wenn aktiv", - "app_settings_display_keypad_light_off": "Aus", - "app_settings_display_input_language": "Eingabesprache", - "app_settings_display_wallpaper": "Hintergrund", - "app_settings_display_wallpaper_logo": "Mudita Logo", - "app_settings_display_wallpaper_clock": "Uhr", - "app_settings_display_wallpaper_quotes": "Sprüche", - "app_settings_display_wallpaper_edit_quotes": "Sprüche ändern", - "app_settings_apps_alarm_clock_manual_volume": "Manuelle Lautstärke", - "app_settings_display_wallpaper_edit_custom_quotes": "Benutzerdefinierte Sprüche ändern", - "app_settings_display_wallpaper_quotes_edit": "Ändern", - "app_settings_display_wallpaper_quotes_delete": "Löschen", - "app_settings_display_wallpaper_quotes_new": "Neuer Spruch", - "app_settings_display_wallpaper_quotes_delete_confirmation": "Spruch löschen?", - "app_settings_display_wallpaper_quotes_delete_success": "Spruch wurde gelöscht.", - "app_settings_display_wallpaper_quotes_note": "Notiz", - "app_settings_display_wallpaper_quotes_author": "Autor", - "app_settings_display_wallpaper_quotes_our_favourites": "Unsere Favoriten", - "app_settings_display_wallpaper_quotes_custom": "Benutzerdefiniert", - "app_settings_display_wallpaper_quotes_categories": "Kategorien", - "app_settings_system": "System", - "app_settings_apps": "Applikationen", - "app_settings_apps_phone": "Telefon", - "app_settings_apps_messages": "Nachrichten", - "app_settings_show_unread_first": "Ungelesene zuerst zeigen", - "app_settings_apps_calendar": "Kalender", - "app_settings_apps_alarm_clock": "Wecker", - "app_settings_vibration": "Vibration", - "app_settings_sound": "Ton", - "app_settings_volume": "Lautstärke", - "app_settings_volume_focused": "Lautst.", - "app_settings_call_ringtome": "Rufton", - "app_settings_message_sound": "Nachrichtenton", - "app_settings_notification_sound": "Benachrichtigungston", - "app_settings_Templates": "Vorlagen", - "app_settings_title_torch": "Taschenlampe", - "app_settings_torch_sunset_red_light_option": "Abendrot-Licht", - "app_settings_torch_nightshift_time_option": "Nachtschicht-Zeit", - "app_settings_torch_description": "Während der Nachtschicht verwendet die Taschenlampe\nAbendrot-Licht, damit Sie und andere nicht in ihrem Schlaf gestört werden.", - "app_settings_title_nightshift": "Nachtschicht", - "app_settings_nightshift_from": "Von", - "app_settings_nightshift_to": "Bis", - "app_settings_date_and_time": "Datum und Zeit", - "app_settings_date_and_time_automatic_date_and_time": "Datum und Zeit (automatisch)", - "app_settings_date_and_time_change_date_and_time": "Datum und Zeit ändern", - "app_settings_date_and_time_automatic_time_zone": "Zeitzone (automatisch)", - "app_settings_date_and_time_change_time_zone": "Zeitzone ändern", - "app_settings_date_and_time_time_format": "Uhrzeitformat", - "app_settings_date_and_time_date_format": "Datumsformat", - "app_settings_date_and_time_time_zone": "Zeitzone", - "app_settings_title_day": "Tag", - "app_settings_title_month": "Monat", - "app_settings_title_year": "Jahr", - "app_settings_title_time": "Zeit", - "app_settings_cellular_passthrough": "Mobilfunk <-> USB", - "app_settings_display": "Display", - "app_settings_phone_modes": "Betriebsarten des Telefons", - "app_settings_security": "Sicherheit", - "app_settings_language": "Sprache", - "app_settings_factory_reset": "Auf Werkseinstellung zurücksetzen", - "app_settings_display_factory_reset_confirmation": "Dadurch wird dein Pure ausgeschaltet. Schalte es wieder ein, um mit dem Prozess fortzufahren.\nTelefon jetzt ausschalten?", - "app_settings_factory_reset_in_progress": "Die Werkseinstellungen wurden noch nicht vollständig wiederhergestellt. Schalte dein Pure wieder ein, um fortzufahren.", - "app_settings_about_your_pure": "Über Ihr Pure", - "app_settings_technical_information": "Technische Informationen", - "app_settings_tech_info_model": "Modell", - "app_settings_tech_info_serial_number": "Seriennummer", - "app_settings_tech_info_os_version": "OS-Version", - "app_settings_tech_info_imei": "IMEI", - "app_settings_tech_info_battery": "Batterie", - "app_settings_tech_info_pcb_mb": "pcbMB", - "app_settings_tech_info_pcb_lm": "pcbLM", - "app_settings_tech_info_pcb_um": "pcmUM", - "app_settings_tech_info_pcb_am": "pcbAM", - "app_settings_certification": "Zertifikate", - "app_settings_us_fcc_id": "US FCC ID", - "app_settings_canada_ic": "Kanada IC", - "app_settings_europe": "Europa", - "app_settings_sar": "SAR", - "app_settings_about": "Über Mudita Pure", - "app_settings_title_languages": "Sprachauswahl", - "app_settings_network_sim_cards": "SIM-Karten", - "app_settings_network_volte_not_available": "nicht verfügbar", - "app_settings_network_active_card": "Aktiver Slot", - "app_settings_network_unblock_card": "Entsperren Karte", - "app_settings_network_not_connected": "keine Karte", - "app_settings_network_operator_auto_select": "Automatische Auswahl", - "app_settings_network_all_operators": "Alle Bediener", - "app_settings_network_pin_settings": "PIN-Einstellungen", - "app_settings_network_pin": "PIN", - "app_settings_network_pin_change_code": "PIN-Code ändern", - "app_settings_network_import_contacts_from_sim_card": "Kontakte von SIM import.", - "app_settings_network_import_contacts_duplicates": "Duplikate von SIM", - "app_settings_network_import_contacts_from_sim_card_reading": "Import läuft...

Bitte warte einen Moment.
", - "app_settings_network_import_contacts_from_sim_card_no_contacts": "Auf dieser SIM-Karte befinden

sich keine Kontakte.
", - "app_settings_network_import_contacts_from_sim_card_duplicates": "Wir haben $DUPLICATES Duplikate gefunden. Möchten Sie

doppelte Kontakte importieren

und vorhandene ersetzen?
", - "app_settings_network_import_contacts_from_sim_card_success": "Kontakte erfolgreich importiert.", - "app_settings_network_sim1": "SIM 1", - "app_settings_network_sim2": "SIM 2", - "app_settings_network_sim_none": "Keine SIM", - "app_settings_network_voice_over_lte": "VoLTE", - "app_settings_network_apn_settings": "APN-Einstellungen", - "app_settings_toggle_transiting": "wird geprüft...", - "app_settings_toggle_on": "EIN", - "app_settings_toggle_off": "AUS", - "app_settings_security_phone_lock": "Sicherheitscode für Bildschirmsperre", - "app_settings_display_security_autolock": "Automatische Sperre", - "app_settings_security_change_phone_lock": "Sicherheitscode ändern", - "phone_lock_unlock": "Geben Sie den Sicherheitscode

zum Entsperren ein:
", - "phone_lock_unlock_invalid": "Falscher Sicherheitscode.", - "phone_lock_blocked": "Entschuldigung, Telefon gesperrt.", - "phone_lock_current": "Aktuellen Sicherheitscode eingeben", - "phone_lock_enter_new": "Neuen Sicherheitscode eingeben", - "phone_lock_confirm_new": "Neuen Sicherheitscode bestätigen", - "phone_lock_invalid": "Falscher Sicherheitscode!", - "phone_lock_changed_successfully": "Sicherheitscode erfolgreich geändert!", - "phone_lock_disabled": "Sicherheitscode deaktiviert!", - "phone_lock_set": "Sicherheitscode einstellen, der

das Telefon entsperrt
", - "phone_lock_confirm": "Sicherheitscode bestätigen", - "phone_lock_invalid_retry": "Falscher Sicherheitscode.

Sicherheitscode nochmals konfigurieren.
", - "phone_lock_configure": "Sicherheitscode konfigurieren", - "phone_lock_notification": "Sicherheitscode-Sperre für: $TIME", - "phone_lock_blocked_information": "Falscher Passcode.

Versuche es in $TIME noch einmal.
", - "app_settings_security_usb_passcode": "USB-Sicherheit", - "app_settings_apn_settings_no_apns": "Noch keine APN.

Zum Hinzufügen linken Pfeil drücken.

", - "app_settings_apn_options_delete": "Löschen", - "app_settings_apn_options_edit": "Ändern", - "app_settings_apn_options_set_as_default": "Als Standard festlegen", - "app_settings_new_edit_apn": "APN neu/ändern", - "app_settings_apn_name": "Name", - "app_settings_apn_APN": "APN", - "app_settings_apn_username": "Benutzername", - "app_settings_apn_password": "Kennwort", - "app_settings_apn_authtype": "Art der Authentifizierung", - "app_settings_apn_apntype": "APN-Typ", - "app_settings_apn_apnprotocol": "APN-Protokoll", - "app_settings_title_color_test": "Verfügbare Farben anzeigen", - "app_settings_toolbar_reset": "ZURÜCKSETZEN", - "app_settings_option_connecting": "WIRD VERBUNDEN", - "app_settings_option_pairing": "WIRD GEKOPPELT", - "app_settings_title_do_not_disturb": "Nicht stören", - "app_settings_title_offline": "Offline", - "app_settings_title_connection_frequency": "Verbindungsfrequenz", - "app_settings_connected": "Verbunden", - "app_settings_notifications_when_locked": "Benachrichtigen bei Sperre", - "app_settings_calls_from_favorites": "Anrufe von Favoriten", - "app_settings_allow": "Erlauben", - "app_settings_no_network_connection_flight_mode": "Flugmodus", - "app_settings_messages_only": "Nur Nachrichten", - "app_settings_info_dnd": "Alle Benachrichtigungen stumm erhalten. Sie können vollständige Benachrichtigungen von bevorzugten Kontakten zulassen.", - "app_settings_info_offline_flight_mode": "Vollständig getrennt. Anrufe, Nachrichten und Tethering sind nicht verfügbar.", - "app_settings_info_offline_messages_only": "Nachrichten basierend auf Verbindungsintervallen senden und herunterladen. Keine Anrufe oder Tethering.", - "app_phonebook_title_main": "Kontakte", - "common_search_uc": "Suchen", - "common_search_results": "Suchergebnisse", - "app_phonebook_search_no_results": "Keine Kontakte gefunden.", - "app_phonebook_contact_title": "Kontakt hinzufügen", - "app_phonebook_contact_no_name": "Kein Name", - "app_phonebook_contact_information": "Information", - "app_phonebook_contact_flag_fav": "FAVORITEN", - "app_phonebook_contact_flag_speed_dial": "KURZWAHL", - "app_phonebook_contact_flag_ice": "NOTFALL", - "app_phonebook_contact_flag_blocked": "VERSTOPFT", - "app_phonebook_ice_contacts_title": "ICE-Kontakte", - "app_phonebook_favorite_contacts_title": "Favoriten", - "app_phonebook_duplicate_speed_dial": "Die Nummer $CONTACT_SPEED_DIAL$ wurde \n $CONTACT_FORMATTED_NAME$zugewiesen. Ersetzen?", - "app_phonebook_duplicate_speed_dial_title": "Kurzwahltaste ($CONTACT_SPEED_DIAL$)", - "app_phonebook_options_edit": "Kontakte ändern", - "app_phonebook_options_block": "Blockieren", - "app_phonebook_options_block_confirm": "Diesen Kontakt blockieren?", - "app_phonebook_options_block_notification": "Kontakt blockiert.", - "app_phonebook_options_unblock": "Nicht mehr blockieren", - "app_phonebook_options_unblock_confirm": "Diesen Kontakt nicht mehr blockieren?", - "app_phonebook_options_unblock_notification": "Kontakt nicht mehr blockiert.", - "app_phonebook_options_delete": "Löschen", - "app_phonebook_options_delete_confirm": "Möchten Sie diesen Kontakt\nwirklich löschen?", - "app_phonebook_options_delete_notification": "Kontakt wurde erfolgreich\ngelöscht.", - "app_phonebook_options_forward_namecard": "Visitenkarte weiterleiten", - "app_phonebook_options_send_sms": "Als SMS senden", - "app_phonebook_new_contact_first_name": "Vorname", - "app_phonebook_new_contact_last_name": "Nachname", - "app_phonebook_new_contact_number": "Nummer", - "app_phonebook_new_contact_second_number": "Zweite Nummer", - "app_phonebook_new_contact_email": "E-Mail", - "app_phonebook_new_contact_address": "Adresse", - "app_phonebook_new_contact_note": "Notiz", - "app_phonebook_new_speed_dial_key": "Kurzwahltaste", - "app_phonebook_new_contact_invalid_number": "Dieser Kontakt kann nicht gespeichert werden.

Die von Ihnen eingegebene Telefonnummer

hat ein ungültiges Format.
", - "app_phonebook_new_add_to_fav": "Zu Favoriten hinzufügen", - "app_phonebook_new_add_to_ice": "Zu ICE hinzufügen", - "app_phonebook_check": "AUSWÄHLEN", - "app_phonebook_uncheck": "AUSWAHL ENTFERNEN", - "app_phonebook_multiple_numbers_first": "Nummer", - "app_phonebook_multiple_numbers_second": "Zweite nummer", - "app_phonebook_contact_deleted": "Der Kontakt wurde gelöscht.

Die Bearbeitung ist nicht möglich.
", - "app_meditation_title_main": "Meditationstimer", - "app_meditation_preparation_time": "Vorbereitungstimer", - "app_meditation_put_down_phone_and_wait": "Legen Sie das Telefon weg
und warten Sie auf den Gong.
", - "app_meditation_thank_you_for_session": "Danke für diese
Meditationseinheit.
", - "app_meditation_option_show_counter": "Meditationszähler zeigen", - "app_meditation_interval_chime": "Glocken-Intervall", - "app_meditation_interval_none": "Keiner", - "app_meditation_interval_every_x_minutes": "Alle %0 Minuten", - "app_meditation_minute": "MINUTE", - "app_meditation_minutes": "MINUTEN", - "app_music_player_all_songs": "Alle Lieder", - "app_music_player_play": "SPIELEN", - "app_music_player_music_library": "MUSIKBIBLIOTHEK", - "app_music_player_quit": "BEENDEN", - "app_music_player_music_empty_window_notification": "Musikbibliothek drücken, um\n einen Titel aus der Bibliothek auszuwählen.", - "app_special_input_window": "Sonderzeichen", - "app_emoji_input_window": "Emoji", - "sms_add_rec_num": "Empfänger hinzufügen oder eine Nummer eingeben", - "sms_title_message": "Neue Nachricht", - "sms_call_text": "Anruf ", - "sms_resend_failed": "Nochmal senden", - "sms_delete_conversation": "Gespräch löschen", - "sms_forward_message": "Nachricht weiterleiten", - "sms_copy": "Kopieren", - "sms_delete_message": "Nachricht löschen", - "sms_use_template": "Vorlage verwenden", - "sms_paste": "Einfügen", - "sms_mark_read": "Als gelesen markieren", - "sms_mark_unread": "Als ungelesen markieren", - "app_desktop_update": "Aktualisierung", - "app_desktop_update_to": "Aktualisierung auf", - "app_desktop_update_apply": "Möchten Sie diese Aktualisierung anwenden?", - "app_desktop_update_current": "Aktuell", - "app_desktop_update_start": "Aktualisierung starten", - "app_desktop_update_size": "Größe", - "app_desktop_update_bytes": "Bytes", - "app_desktop_update_unpacking": "Wird entpackt", - "app_desktop_update_preparing": "Vorbereiten der Aktualisierung von MuditaOS Version", - "app_desktop_update_muditaos": "Aktualisierung des MuditaOS", - "app_desktop_update_in_progress": "Aktualisierung läuft …", - "app_desktop_update_ready_for_reset": "Bereit für Reset …", - "app_desktop_update_success": "MuditaOS wurde erfolgreich auf Version $VERSION aktualisiert.", - "app_call_private_number": "Private Nummer", - "app_call_ending_call": "Anruf wird beendet", - "statusbar_tethering": "TETHERING", - "tethering": "Tethering", - "tethering_turn_off_question": "Tethering ausschalten?", - "tethering_enable_question": "Sie sind mit dem Computer verbunden.
Tethering einschalten?
(einige Funktionen können deaktiviert sein)
", - "tethering_phone_mode_change_prohibited": "Tethering ist eingeschaltet.

Andere Betriebsarten (Verbunden, DND,
Offline) werden von dieser Betriebsart überlagert
und funktionieren nicht.
", - "tethering_menu_access_decline": "Tethering ist eingeschaltet.

Schalten Sie Tethering aus,
um auf das Menü zuzugreifen
", - "app_bell_turn_off_question": "Schalten Sie das Gerät aus?", - "app_bell_goodbye": "Auf Wiedersehen", - "app_bell_settings_time_units_time_fmt_top_message": "Zeitformat", - "app_bell_settings_time_units_time_message": "Zeit", - "app_bell_settings_temp_scale": "Temperaturskala", - "app_bellmain_home_screen_bottom_desc_dp": "Tief drücken, um zu aktivieren", - "app_bellmain_home_screen_bottom_desc": "Der nächste Alarm klingelt", - "app_bellmain_home_screen_bottom_desc_in": "in", - "app_bellmain_home_screen_bottom_desc_and": "&", - "app_bell_alarm_deactivated": "Alarm deaktiviert", - "app_bellmain_alarm": "Alarm", - "app_bellmain_power_nap": "Kraft-Schläfchen", - "app_bellmain_meditation_timer": "Meditation", - "app_bellmain_relaxation": "Entspannung", - "app_bellmain_bedtime": "Schlafenzeit", - "app_bellmain_settings": "Einstellungen", - "app_bell_bedtime_notification": "Schlafenszeit", - "app_bell_alarm_set_not_active": "Alarm eingestellt.
Tief drücken, um zu aktivieren.
", - "app_bell_relaxation_timer_title": "Timer", - "app_bell_relaxation_once": "einmal", - "app_bell_relaxation_once_description": "das Lied wird einmal abgespielt", - "app_bell_relaxation_loop": "endlos", - "app_bell_relaxation_looped": "geschlungen", - "app_bell_relaxation_loop_description": "der Titel wird abgespielt, bis Sie ihn ausschalten", - "app_bell_relaxation_error_message": "Nicht unterstütztes Dateiformat", - "app_bell_onboarding_info_rotate": "Drehen um auszuwählen", - "app_bell_onboarding_info_light_click": "Leichter Klick um fortzufahren", - "app_bell_onboarding_info_deep_click_warning": "Sie haben tief gedrückt", - "app_bell_onboarding_info_deep_click_correction": "Seien Sie sanfter,
versuchen Sie diesmal leicht klicken
", - "app_bell_onboarding_welcome": "Willkommen", - "app_bell_onboarding_shortcuts_question": "Möchten Sie sich die Anleitung für die Kurzbefehle ansehen?", - "app_bell_onboarding_shortcuts_start": "Start", - "app_bell_onboarding_shortcuts_skip": "Überspringen", - "app_bell_onboarding_shortcuts_step_rotate": "Zum Auswählen drehen", - "app_bell_onboarding_shortcuts_step_light_click": "Zum Akzeptieren und Fortfahren sanft klicken", - "app_bell_onboarding_shortcuts_step_deep_press": "Zum Aktivieren oder Deaktivieren des Alarms tief eindrücken", - "app_bell_onboarding_shortcuts_step_home": "Rückseite 2 Sek. drücken, um zurückzukehren", - "app_bell_onboarding_shortcuts_step_battery": "Batteriestatus: Rückseite im Hauptbildschirm 2 Sek. drücken", - "app_bell_onboarding_shortcuts_step_turn_off": "Zum Ausstellen des Geräts Rückseite 10 Sek. drücken", - "app_bell_onboarding_shortcuts_step_restart": "Für Geräteneustart beide Seitenknöpfe 10 Sek. drücken", - "app_bell_onboarding_shortcuts_step_bedside_lamp": "Nachttischleuchte: Vorderlicht 2 Sek. drücken", - "app_bell_settings_home_view": "Startansicht", - "app_bell_settings_alarm_settings": "Alarmeinstellungen", - "app_bell_settings_alarm_settings_title": "Alarmeinstellungen", - "app_bell_settings_bedtime_tone": "Schlafens-Klang", - "app_bell_settings_bedtime_settings_tone": "Klang", - "app_bell_settings_bedtime_settings_volume": "Lautstärke", - "app_bell_settings_advanced": "Erweitert", - "app_bell_settings_turn_off": "Ausschalten", - "app_bell_settings_time_units": "Zeit", - "app_bell_settings_language": "Sprache", - "app_bell_settings_layout": "Zifferblatt", - "app_bell_settings_about": "Information", - "app_bell_settings_about_product": "Mudita Harmony", - "app_bell_settings_about_version": "OS-Version: $VERSION", - "app_bell_settings_about_storage_title": "Speicher", - "app_bell_settings_about_storage_text": "Verbraucht $USED_MEMORYMB von $TOTAL_MEMORYMB", - "app_bell_settings_about_info_title": "Handbuch & Zertifikat-Info", - "app_bell_settings_about_info_text": "www.mudita.com", - "app_bell_settings_alarm_settings_prewake_up": "Sanftes Wecken", - "app_bell_settings_alarm_settings_prewake_up_chime_top_description": "Klang vor dem Aufwachen", - "app_bell_settings_alarm_settings_prewake_up_chime_bottom_description": "vor dem Alarm", - "app_bell_settings_alarm_settings_prewake_up_chime_tone": "Klang", - "app_bell_settings_alarm_settings_prewake_up_chime_volume": "Lautstärke", - "app_bell_settings_alarm_settings_prewake_up_light_top_description": "Licht", - "app_bell_settings_alarm_settings_prewake_up_light_bottom_description": "vor dem Alarm", - "app_bell_settings_alarm_settings_alarm_tone_and_light": "Hauptalarm", - "app_bell_settings_alarm_settings_tone": "Alarmton", - "app_bell_settings_alarm_settings_volume": "Alarmlautstärke", - "app_bell_settings_alarm_settings_light": "Alarmleuchte", - "app_bell_settings_alarm_settings_snooze": "Schlummer", - "app_bell_settings_alarm_settings_snooze_length": "Schlummerlänge", - "app_bell_settings_alarm_settings_snooze_chime_interval": "Schlummer Klangintervall", - "app_bell_settings_alarm_settings_snooze_chime_interval_bot_desc": "während des Schlummern", - "app_bell_settings_alarm_settings_snooze_chime_tone": "Schlummer-Klang", - "app_bell_settings_alarm_settings_snooze_chime_volume": "Lautstärke", - "app_bell_settings_frontlight": "Frontlicht", - "app_bell_settings_frontlight_mode_top_message": "Frontlichtmodus", - "app_bell_settings_frontlight_mode_auto": "automatisch", - "app_bell_settings_frontlight_mode_on_demand": "manuell", - "app_bell_settings_frontlight_top_message": "Lichtstärke des Frontlichts", - "app_bell_greeting_msg": [ - "Guten Morgen! Stehen Sie auf" - ], - "app_bell_settings_factory_reset": "Zurücksetzen", - "app_bell_settings_display_factory_reset_confirmation": "Zurücksetzen?", - "app_bell_meditation_timer": "Meditation", - "app_bell_meditation_statistics": "Statistiken", - "app_bell_meditation_chime_interval": "Glocken-Intervall", - "app_bell_meditation_progress": "Meditation", - "app_bell_meditation_interval_none": "kein", - "app_bell_meditation_put_down_and_wait": "Legen Sie Mudita Harmony
ab und warten Sie auf den Gong
", - "app_bell_meditation_thank_you_for_session": "Danke für
die Sitzung
", - "app_bell_meditation_start": "Jetzt meditieren", - "app_bell_meditation_settings": "Einstellungen", - "app_bell_meditation_start_delay": "Verzögerung starten", - "app_bell_meditation_chime_interval_bottom": "der meditation", - "app_bell_meditation_chime_volume": "Glocken-Lautstärke", - "app_meditation_summary": "Du meditierst seit
", - "app_meditation_countdown_desc": "Beginnt in", - "app_meditation_summary_total": "Gesamt:
$VALUE
", - "app_meditation_summary_average": "Durchschnitt/tag:", - "app_meditation_summary_title": "Letzte $VALUE tage", - "app_bell_welcome_message": "Mudita Harmony
ist ausgeschaltet
", - "app_bell_welcome_charge_message": "Charge Harmony
und leicht drücken
" + "app_alarm_clock_delete_confirmation": "Diesen Alarm l\u00f6schen?", + "app_alarm_clock_edit_alarm_title": "Alarm \u00e4ndern", + "app_alarm_clock_new_alarm_title": "Neuer Alarm", + "app_alarm_clock_no_alarms_information": "Noch kein Alarm.

Zum Hinzuf\u00fcgen linken Pfeil dr\u00fccken.

", + "app_alarm_clock_options_delete": "L\u00f6schen", + "app_alarm_clock_options_edit": "\u00c4ndern", + "app_alarm_clock_options_turn_off_all_alarms": "Alle Alarme ausschalten", + "app_alarm_clock_play_pause": "PAUSE", + "app_alarm_clock_repeat": "Wiederholen", + "app_alarm_clock_repeat_custom": "Benutzerdefiniert", + "app_alarm_clock_repeat_everyday": "T\u00e4glich", + "app_alarm_clock_repeat_never": "Niemals", + "app_alarm_clock_repeat_week_days": "Wochentags", + "app_alarm_clock_snooze": "Schlummern", + "app_alarm_clock_snooze_10_min": "10 min", + "app_alarm_clock_snooze_15_min": "15 min", + "app_alarm_clock_snooze_30_min": "30 min", + "app_alarm_clock_snooze_5_min": "5 min", + "app_alarm_clock_sound": "Ton", + "app_alarm_clock_title_main": "Wecker", + "app_bell_alarm_deactivated": "Alarm deaktiviert", + "app_bell_alarm_set_not_active": "Alarm eingestellt.
Tief dr\u00fccken, um zu aktivieren.
", + "app_bell_bedtime_notification": "Schlafenszeit", + "app_bell_goodbye": "Auf Wiedersehen", + "app_bell_greeting_msg": [ + "Guten Morgen! Stehen Sie auf" + ], + "app_bell_meditation_chime_interval": "Glocken-Intervall", + "app_bell_meditation_chime_interval_bottom": "der meditation", + "app_bell_meditation_chime_volume": "Glocken-Lautst\u00e4rke", + "app_bell_meditation_interval_none": "kein", + "app_bell_meditation_settings": "Einstellungen", + "app_bell_meditation_start": "Jetzt meditieren", + "app_bell_meditation_start_delay": "Verz\u00f6gerung starten", + "app_bell_meditation_statistics": "Statistiken", + "app_bell_meditation_timer": "Meditation", + "app_bell_onboarding_info_deep_click_correction": "Seien Sie sanfter,
versuchen Sie diesmal leicht klicken
", + "app_bell_onboarding_info_deep_click_warning": "Sie haben tief gedr\u00fcckt", + "app_bell_onboarding_info_light_click": "Leichter Klick um fortzufahren", + "app_bell_onboarding_info_rotate": "Drehen um auszuw\u00e4hlen", + "app_bell_onboarding_shortcuts_question": "M\u00f6chten Sie sich die Anleitung f\u00fcr die Kurzbefehle ansehen?", + "app_bell_onboarding_shortcuts_skip": "\u00dcberspringen", + "app_bell_onboarding_shortcuts_start": "Start", + "app_bell_onboarding_shortcuts_step_battery": "Batteriestatus: R\u00fcckseite im Hauptbildschirm 2 Sek. dr\u00fccken", + "app_bell_onboarding_shortcuts_step_bedside_lamp": "Nachttischleuchte: Vorderlicht 2 Sek. dr\u00fccken", + "app_bell_onboarding_shortcuts_step_deep_press": "Zum Aktivieren oder Deaktivieren des Alarms tief eindr\u00fccken", + "app_bell_onboarding_shortcuts_step_home": "R\u00fcckseite 2 Sek. dr\u00fccken, um zur\u00fcckzukehren", + "app_bell_onboarding_shortcuts_step_light_click": "Zum Akzeptieren und Fortfahren sanft klicken", + "app_bell_onboarding_shortcuts_step_restart": "F\u00fcr Ger\u00e4teneustart beide Seitenkn\u00f6pfe 10 Sek. dr\u00fccken", + "app_bell_onboarding_shortcuts_step_rotate": "Zum Ausw\u00e4hlen drehen", + "app_bell_onboarding_shortcuts_step_turn_off": "Zum Ausstellen des Ger\u00e4ts R\u00fcckseite 10 Sek. dr\u00fccken", + "app_bell_relaxation_error_message": "Nicht unterst\u00fctztes Dateiformat", + "app_bell_relaxation_limit_error_message": "Datenlimit \u00fcberschritten.
Es k\u00f6nnte zu Fehlern kommen.
", + "app_bell_relaxation_file_deleted_message": "Die Datei wurde gelöscht.", + "app_bell_relaxation_loop": "endlos", + "app_bell_relaxation_loop_description": "der Titel wird abgespielt, bis Sie ihn ausschalten", + "app_bell_relaxation_looped": "geschlungen", + "app_bell_relaxation_once": "einmal", + "app_bell_relaxation_once_description": "das Lied wird einmal abgespielt", + "app_bell_relaxation_timer_title": "Timer", + "app_bell_settings_about": "Information", + "app_bell_settings_about_info_text": "www.mudita.com", + "app_bell_settings_about_info_title": "Handbuch & Zertifikat-Info", + "app_bell_settings_about_product": "Mudita Harmony", + "app_bell_settings_about_storage_text": "Verbraucht $USED_MEMORYMB von $TOTAL_MEMORYMB", + "app_bell_settings_about_storage_title": "Speicher", + "app_bell_settings_about_version": "OS-Version: $VERSION", + "app_bell_settings_alarm_settings": "Alarmeinstellungen", + "app_bell_settings_alarm_settings_alarm_tone_and_light": "Hauptalarm", + "app_bell_settings_alarm_settings_light": "Alarmleuchte", + "app_bell_settings_alarm_settings_prewake_up": "Sanftes Wecken", + "app_bell_settings_alarm_settings_prewake_up_chime_bottom_description": "vor dem Alarm", + "app_bell_settings_alarm_settings_prewake_up_chime_tone": "Klang", + "app_bell_settings_alarm_settings_prewake_up_chime_top_description": "Klang vor dem Aufwachen", + "app_bell_settings_alarm_settings_prewake_up_chime_volume": "Lautst\u00e4rke", + "app_bell_settings_alarm_settings_prewake_up_light_bottom_description": "vor dem Alarm", + "app_bell_settings_alarm_settings_prewake_up_light_top_description": "Licht", + "app_bell_settings_alarm_settings_snooze": "Schlummer", + "app_bell_settings_alarm_settings_snooze_chime_interval": "Schlummer Klangintervall", + "app_bell_settings_alarm_settings_snooze_chime_interval_bot_desc": "w\u00e4hrend des Schlummern", + "app_bell_settings_alarm_settings_snooze_chime_tone": "Schlummer-Klang", + "app_bell_settings_alarm_settings_snooze_chime_volume": "Lautst\u00e4rke", + "app_bell_settings_alarm_settings_snooze_length": "Schlummerl\u00e4nge", + "app_bell_settings_alarm_settings_title": "Alarmeinstellungen", + "app_bell_settings_alarm_settings_tone": "Alarmton", + "app_bell_settings_alarm_settings_volume": "Alarmlautst\u00e4rke", + "app_bell_settings_bedtime_settings_tone": "Klang", + "app_bell_settings_bedtime_settings_volume": "Lautst\u00e4rke", + "app_bell_settings_bedtime_tone": "Schlafens-Klang", + "app_bell_settings_display_factory_reset_confirmation": "Zur\u00fccksetzen?", + "app_bell_settings_factory_reset": "Zur\u00fccksetzen", + "app_bell_settings_frontlight": "Frontlicht", + "app_bell_settings_frontlight_mode_auto": "automatisch", + "app_bell_settings_frontlight_mode_on_demand": "manuell", + "app_bell_settings_frontlight_mode_top_message": "Frontlichtmodus", + "app_bell_settings_frontlight_top_message": "Lichtst\u00e4rke des Frontlichts", + "app_bell_settings_language": "Sprache", + "app_bell_settings_layout": "Zifferblatt", + "app_bell_settings_temp_scale": "Temperaturskala", + "app_bell_settings_time_units": "Zeit", + "app_bell_settings_time_units_time_fmt_top_message": "Zeitformat", + "app_bell_settings_time_units_time_message": "Zeit", + "app_bell_settings_turn_off": "Ausschalten", + "app_bell_turn_off_question": "Schalten Sie das Ger\u00e4t aus?", + "app_bell_welcome_charge_message": "Charge Harmony
und leicht dr\u00fccken
", + "app_bell_welcome_message": "Mudita Harmony
ist ausgeschaltet
", + "app_bellmain_alarm": "Alarm", + "app_bellmain_bedtime": "Schlafenzeit", + "app_bellmain_home_screen_bottom_desc": "Der n\u00e4chste Alarm klingelt", + "app_bellmain_home_screen_bottom_desc_and": "&", + "app_bellmain_home_screen_bottom_desc_dp": "Tief dr\u00fccken, um zu aktivieren", + "app_bellmain_home_screen_bottom_desc_in": "in", + "app_bellmain_meditation_timer": "Meditation", + "app_bellmain_power_nap": "Kraft-Schl\u00e4fchen", + "app_bellmain_relaxation": "Entspannung", + "app_bellmain_settings": "Einstellungen", + "app_bellmain_usb_status_connected": "Verbunden", + "app_calculator_decimal_separator": ".", + "app_calculator_equals": "GLEICH", + "app_calculator_error": "Fehler", + "app_calculator_title_main": "Rechner", + "app_calendar_all_day": "Ganzt\u00e4gig", + "app_calendar_bar_list": "LISTE", + "app_calendar_bar_month": "MONAT", + "app_calendar_custom_repeat_title": "Benutzerdefiniert wiederholen", + "app_calendar_edit": "\u00c4NDERN", + "app_calendar_edit_event_title": "Ereignis \u00e4ndern", + "app_calendar_event_delete_confirmation": "Dieses Ereignis l\u00f6schen?", + "app_calendar_event_detail": "Ereignis", + "app_calendar_event_detail_reminder": "Erinnerung", + "app_calendar_event_detail_repeat": "Wiederholen", + "app_calendar_event_error_dates": "Das Startdatum muss vor\ndem Enddatum liegen", + "app_calendar_event_error_empty_name": "Ereignisname darf nicht leer sein", + "app_calendar_new_edit_event_allday": "Ganzt\u00e4giges Ereignis", + "app_calendar_new_edit_event_end": "Ende", + "app_calendar_new_edit_event_name": "Ereignisname", + "app_calendar_new_edit_event_start": "Anfang", + "app_calendar_new_event_title": "Neues Ereignis", + "app_calendar_no_events_information": "Noch kein Ereignis.

Zum Hinzuf\u00fcgen linken Pfeil dr\u00fccken.

", + "app_calendar_options_delete": "L\u00f6schen", + "app_calendar_options_edit": "\u00c4ndern", + "app_calendar_reminder_15_min_before": "15 min davor", + "app_calendar_reminder_1_day_before": "1 Tag davor", + "app_calendar_reminder_1_hour_before": "1 Stunde davor", + "app_calendar_reminder_1_week_before": "1 Woche davor", + "app_calendar_reminder_2_days_before": "2 Tage davor", + "app_calendar_reminder_2_hour_before": "2 Stunden davor", + "app_calendar_reminder_30_min_before": "30 min davor", + "app_calendar_reminder_5_min_before": "5 min davor", + "app_calendar_reminder_event_time": "Bei Ereignisstart", + "app_calendar_reminder_never": "Niemals", + "app_calendar_repeat_custom": "Benutzerdefiniert", + "app_calendar_repeat_daily": "T\u00e4glich", + "app_calendar_repeat_month": "Monat", + "app_calendar_repeat_never": "Niemals", + "app_calendar_repeat_two_weeks": "Zwei Wochen", + "app_calendar_repeat_weekly": "W\u00f6chentlich", + "app_calendar_repeat_year": "Jahr", + "app_calendar_title_main": "Kalender", + "app_call_answer": "ANTWORTEN", + "app_call_bluetooth": "BLUETOOTH", + "app_call_call": "ANRUFEN", + "app_call_call_ended": "Anruf beendet", + "app_call_call_rejected": "Anruf abgelehnt", + "app_call_call_request_failed": "Etwas ist schief gelaufen.", + "app_call_calling": "wird angerufen", + "app_call_clear": "LEEREN", + "app_call_contact": "KONTAKT", + "app_call_emergency": "Notruf", + "app_call_emergency_text": "Notruf", + "app_call_end_call": "ANRUF ENDE", + "app_call_ending_call": "Anruf wird beendet", + "app_call_is_calling": "ruft an", + "app_call_message": "NACHRICHT", + "app_call_mute": "STUMMSCHALTEN", + "app_call_muted": "STUMM", + "app_call_no_network_connection": "Keine Netzwerkverbindung.", + "app_call_no_sim": "Keine SIM-Karte.\n\nZum Anrufen\nSIM-Karte einsetzen.", + "app_call_offline": "Offline-Modus.\n\nZum Anrufen\n in Online-Modus wechseln.", + "app_call_private_number": "Private Nummer", + "app_call_reject": "ABLEHNEN", + "app_call_speaker": "LTSPR.", + "app_call_speaker_on": "LTSPR. AN", + "app_call_wrong_emergency": "Anruf nicht m\u00f6glich.\n$NUMBER ist keine Notrufnummer.", + "app_calllog_date": "Datum", + "app_calllog_delete_all_calls": "Alle Anrufe l\u00f6schen", + "app_calllog_delete_all_calls_confirmation": "Alle Anrufe von der Liste l\u00f6schen?", + "app_calllog_delete_call_confirmation": "Diesen Anruf aus der Liste l\u00f6schen?", + "app_calllog_duration": "Dauer", + "app_calllog_incoming_call": "Eingehender Anruf", + "app_calllog_missed_call": "Entgangener Anruf", + "app_calllog_no_calls": "Noch keine Anrufe.", + "app_calllog_options_delete_call": "Anruf l\u00f6schen", + "app_calllog_outgoing_call": "Ausgehender Anruf", + "app_calllog_rejected_call": "Abgelehnter Anruf", + "app_calllog_title_main": "Anrufe", + "app_calllog_type": "Anruf", + "app_desktop_calls": "ANRUFE", + "app_desktop_clear": "LEEREN", + "app_desktop_clear_all": "KPL.-LEER.", + "app_desktop_emergency": "NOTRUF", + "app_desktop_info": "Info", + "app_desktop_info_mmi_call_barring": "Anrufsperre", + "app_desktop_info_mmi_call_barring_activated": "Anrufsperre wurde aktiviert", + "app_desktop_info_mmi_call_barring_deactivated": "Anrufsperre wurde deaktiviert", + "app_desktop_info_mmi_call_forwarding": "Anrufweiterleitung", + "app_desktop_info_mmi_call_forwarding_disabled": "Anrufweiterleitung deaktiviert", + "app_desktop_info_mmi_call_waiting": "Anklopfen", + "app_desktop_info_mmi_call_waiting_activated": "Anklopfen wurde aktiviert", + "app_desktop_info_mmi_call_waiting_deactivated": "Anklopfen wurde deaktiviert", + "app_desktop_info_mmi_clip": "Anrufer-ID wird angezeigt (CLIP)", + "app_desktop_info_mmi_clip_activated": "CLIP aktiviert", + "app_desktop_info_mmi_clip_deactivated": "CLIP deaktiviert", + "app_desktop_info_mmi_clip_not_provisioned": "CLIP nicht bereitgestellt", + "app_desktop_info_mmi_clip_provisioned": "CLIP bereitgestellt", + "app_desktop_info_mmi_clip_unknown": "CLIP unbekannt", + "app_desktop_info_mmi_clir": "Anrufer-ID unterdr\u00fcckt (CLIR)", + "app_desktop_info_mmi_clir_according_to_subscription": "CLIR laut Abonnement", + "app_desktop_info_mmi_clir_disabled": "CLIR deaktiviert", + "app_desktop_info_mmi_clir_enabled": "CLIR aktiviert", + "app_desktop_info_mmi_clir_not_provisioned": "CLIR nicht bereitgestellt", + "app_desktop_info_mmi_clir_permanent_provisioned": "CLIR permanent bereitgestellt", + "app_desktop_info_mmi_clir_temporary_allowed": "CLIR vor\u00fcbergehend zul\u00e4ssig", + "app_desktop_info_mmi_clir_temporary_restricted": "CLIR vor\u00fcbergehend eingeschr\u00e4nkt", + "app_desktop_info_mmi_clir_unknown": "CLIR unbekannt", + "app_desktop_info_mmi_common_activated": "Dienst wurde aktiviert", + "app_desktop_info_mmi_common_all_disabled": "Alle Tr\u00e4gerdienste deaktiviert", + "app_desktop_info_mmi_common_async": "async", + "app_desktop_info_mmi_common_data": "Daten", + "app_desktop_info_mmi_common_deactivated": "Dienst wurde deaktiviert", + "app_desktop_info_mmi_common_disabled": "deaktiviert", + "app_desktop_info_mmi_common_enabled": "aktiviert", + "app_desktop_info_mmi_common_failed": "fehlgeschlagen", + "app_desktop_info_mmi_common_fax": "FAX", + "app_desktop_info_mmi_common_mmi_not_supported": "nicht unterst\u00fctzt", + "app_desktop_info_mmi_common_no_message": "nicht", + "app_desktop_info_mmi_common_query": "Anfrage", + "app_desktop_info_mmi_common_sync": "sync", + "app_desktop_info_mmi_common_voice": "Stimme", + "app_desktop_info_mmi_confirmation": "Bitte warten...

Der MMI-/USSD- Code wird verarbeitet.
", + "app_desktop_info_mmi_disabling_failed": "Dienstsperrung fehlgeschlagen", + "app_desktop_info_mmi_disabling_success": "Dienst wurde gesperrt", + "app_desktop_info_mmi_enabling_failed": "Dienstfreigabe fehlgeschlagen", + "app_desktop_info_mmi_enabling_success": "Dienst wurde freigegeben", + "app_desktop_info_mmi_erasure_failed": "L\u00f6schvorgang fehlgeschlagen", + "app_desktop_info_mmi_erasure_success": "L\u00f6schvorgang erfolgreich", + "app_desktop_info_mmi_imei": "IMEI (MEID)", + "app_desktop_info_mmi_none_specified_failed": "Operation fehlgeschlagen", + "app_desktop_info_mmi_none_specified_success": "Operation erfolgreich", + "app_desktop_info_mmi_registration_failed": "Registrierung fehlgeschlagen", + "app_desktop_info_mmi_registration_success": "Registrierung erfolgreich", + "app_desktop_info_mmi_result_failed": "Fehlgeschlagen", + "app_desktop_info_mmi_result_success": "Erfolgreich", + "app_desktop_menu": "MEN\u00dc", + "app_desktop_menu_alarm": "ALARM", + "app_desktop_menu_calendar": "KALENDER", + "app_desktop_menu_contacts": "KONTAKTE", + "app_desktop_menu_meditation": "MEDITATION", + "app_desktop_menu_messages": "NACHRICHTEN", + "app_desktop_menu_music": "MUSIK", + "app_desktop_menu_phone": "ANRUFE", + "app_desktop_menu_settings": "EINSTELLUNGEN", + "app_desktop_menu_title": "Men\u00fc", + "app_desktop_menu_tools": "WERKZEUGE", + "app_desktop_missed_calls": "Verpasste Anrufe", + "app_desktop_poweroff_question": "Das Telefon ausschalten?", + "app_desktop_poweroff_title": "Ausschalten", + "app_desktop_press_to_complete_unlock": "Dr\u00fccke # zum Entsperren", + "app_desktop_press_to_unlock": "Entsperren dr\u00fccken und dann #", + "app_desktop_replay": "ANTWORTEN", + "app_desktop_show": "ZEIGEN", + "app_desktop_tools_antenna": "ANTENNENTEST", + "app_desktop_tools_calculator": "RECHNER", + "app_desktop_tools_notes": "NOTIZEN", + "app_desktop_tools_title": "Werkzeuge", + "app_desktop_unlock": "ENTSPERREN", + "app_desktop_unread_messages": "Ungelesene Nachrichten", + "app_desktop_unread_single_message": "Ungelesene Nachricht", + "app_emoji_input_window": "Emoji", + "app_meditation_countdown_desc": "Beginnt in", + "app_meditation_interval_chime": "Glocken-Intervall", + "app_meditation_interval_every_x_minutes": "Alle %0 Minuten", + "app_meditation_interval_none": "Keiner", + "app_meditation_minute": "MINUTE", + "app_meditation_minutes": "MINUTEN", + "app_meditation_option_show_counter": "Meditationsz\u00e4hler zeigen", + "app_meditation_preparation_time": "Vorbereitungstimer", + "app_meditation_put_down_phone_and_wait": "Legen Sie das Telefon weg
und warten Sie auf den Gong.
", + "app_meditation_summary": "Du meditierst seit
", + "app_meditation_summary_average": "Durchschnitt/tag:", + "app_meditation_summary_title": "Letzte $VALUE tage", + "app_meditation_summary_total": "Gesamt:
$VALUE
", + "app_meditation_thank_you_for_session": "Danke f\u00fcr diese
Meditationseinheit.
", + "app_meditation_title_main": "Meditationstimer", + "app_messages_message": "Nachricht", + "app_messages_message_delete_confirmation": "

Diese Nachricht wirklich l\u00f6schen

?
", + "app_messages_no_messages": "Noch keine Nachrichten.

Zum Hinzuf\u00fcgen linken Pfeil dr\u00fccken.

", + "app_messages_no_sim": "Keine SIM-Karte.\n\nZum Senden einer SMS\nSIM-Karte einsetzen.", + "app_messages_no_templates": "Noch keine Vorlagen.

Erstellen Sie eine neue Vorlage

im Mudita Center, um sie in Ihrem

Pure zu verwenden.

", + "app_messages_templates": "Vorlagen", + "app_messages_thread_delete_confirmation": "Dieses Gespr\u00e4ch l\u00f6schen?", + "app_messages_thread_draft": "Entwurf: ", + "app_messages_thread_no_result": "Keine Ergebnisse", + "app_messages_thread_not_sent": "Nicht gesendet: ", + "app_messages_thread_you": "Sie: ", + "app_messages_title_main": "Nachrichten", + "app_music_player_albums": "Alben", + "app_music_player_all_songs": "Alle Lieder", + "app_music_player_artists": "K\u00fcnstler", + "app_music_player_empty_track_notification": "Bitte w\u00e4hlen Sie einen Song aus der Bibliothek", + "app_music_player_music_empty_window_notification": "Musikbibliothek dr\u00fccken, um\n einen Titel aus der Bibliothek auszuw\u00e4hlen.", + "app_music_player_music_library": "MUSIKBIBLIOTHEK", + "app_music_player_music_library_window_name": "Musikbibliothek", + "app_music_player_play": "SPIELEN", + "app_music_player_playlists": "Wiedergabelisten", + "app_music_player_quit": "BEENDEN", + "app_music_player_start_window_notification": "Dr\u00fccken Sie nach unten, um

einen Song auszuw\u00e4hlen
", + "app_music_player_uknown_artist": "Unbekannter K\u00fcnstler", + "app_music_player_uknown_title": "Unbekannter Titel", + "app_notes_delete_note": "L\u00f6schen", + "app_notes_edit": "\u00c4NDERN", + "app_notes_edit_note": "\u00c4ndern Notiz", + "app_notes_edited": "Ge\u00e4ndert", + "app_notes_new_note": "Neue Notiz", + "app_notes_no_notes": "Noch keine Notiz.

Zum Hinzuf\u00fcgen linken Pfeil dr\u00fccken.

", + "app_notes_note_delete_confirmation": "Diese Notiz wirklich l\u00f6schen?", + "app_notes_search_no_results": "Keine Notizen gefunden.", + "app_notes_title_main": "Notizen", + "app_onboarding_configuration_successful": "Ihr Mudita Pure

ist jetzt einsatzbereit.
", + "app_onboarding_eula_license": "Lizenzvereinbarung (EULA)", + "app_onboarding_no_configuration": "Ihr Mudita Pure wurde noch nicht

konfiguriert. Sie k\u00f6nnen es in den

Einstellungen einrichten.
", + "app_onboarding_no_sim_selected_description": "Keine SIM-Karte eingerichtet.

Richten Sie

SIM-Karten in den Einstellungen ein, um eine Verbindung zum Netzwerk herzustellen.
", + "app_onboarding_no_sim_selected_title": "SIM-Einrichtung", + "app_onboarding_select_sim": "Aktive SIM ausw\u00e4hlen", + "app_onboarding_select_sim_description": "Es kann immer nur eine SIM-Karte

aktiv sein. Sie k\u00f6nnen diese

jetzt ausw\u00e4hlen und bei Bedarf

in den Einstellungen wechseln.
", + "app_onboarding_skip_confirm": "SIM-Einrichtung ist f\u00fcr die Netzwerkverbindung erforderlich. Einrichtung trotzdem \u00fcberspringen? ", + "app_onboarding_start_configuration": "

Hallo!



Konfigurieren wir gemeinsam Ihr

Mudita Pure.
", + "app_onboarding_title": "Einf\u00fchrung", + "app_onboarding_title_configuration": "Konfiguration", + "app_onboarding_title_update_info": "Aktualisierung des MuditaOS", + "app_onboarding_update_info": "Die aktuelle Version von MuditaOS ist

$VERSION.

Updates mit neuen Funktionen und Fehlerbehebungen erfolgen h\u00e4ufig.

Um Ihr Telefon zu aktualisieren, besuchen Sie bitte:

www.mudita.com/updateos

und folgen Sie den Anweisungen.", + "app_options_contact_add": "Zu Kontakten hinzuf\u00fcgen", + "app_options_contact_details": "Kontaktdaten", + "app_options_contact_edit": "Kontakte \u00e4ndern", + "app_options_invalid_option": " ", + "app_phonebook_check": "AUSW\u00c4HLEN", + "app_phonebook_contact_deleted": "Der Kontakt wurde gel\u00f6scht.

Die Bearbeitung ist nicht m\u00f6glich.
", + "app_phonebook_contact_flag_blocked": "VERSTOPFT", + "app_phonebook_contact_flag_fav": "FAVORITEN", + "app_phonebook_contact_flag_ice": "NOTFALL", + "app_phonebook_contact_flag_speed_dial": "KURZWAHL", + "app_phonebook_contact_information": "Information", + "app_phonebook_contact_no_name": "Kein Name", + "app_phonebook_contact_title": "Kontakt hinzuf\u00fcgen", + "app_phonebook_duplicate_speed_dial": "Die Nummer $CONTACT_SPEED_DIAL$ wurde \n $CONTACT_FORMATTED_NAME$zugewiesen. Ersetzen?", + "app_phonebook_duplicate_speed_dial_title": "Kurzwahltaste ($CONTACT_SPEED_DIAL$)", + "app_phonebook_favorite_contacts_title": "Favoriten", + "app_phonebook_ice_contacts_title": "ICE-Kontakte", + "app_phonebook_multiple_numbers_first": "Nummer", + "app_phonebook_multiple_numbers_second": "Zweite nummer", + "app_phonebook_new_add_to_fav": "Zu Favoriten hinzuf\u00fcgen", + "app_phonebook_new_add_to_ice": "Zu ICE hinzuf\u00fcgen", + "app_phonebook_new_contact_address": "Adresse", + "app_phonebook_new_contact_email": "E-Mail", + "app_phonebook_new_contact_first_name": "Vorname", + "app_phonebook_new_contact_invalid_number": "Dieser Kontakt kann nicht gespeichert werden.

Die von Ihnen eingegebene Telefonnummer

hat ein ung\u00fcltiges Format.
", + "app_phonebook_new_contact_last_name": "Nachname", + "app_phonebook_new_contact_note": "Notiz", + "app_phonebook_new_contact_number": "Nummer", + "app_phonebook_new_contact_second_number": "Zweite Nummer", + "app_phonebook_new_speed_dial_key": "Kurzwahltaste", + "app_phonebook_no_contacts": "Noch keine Kontakte.

Dr\u00fccken Sie Pfeil nach links, um neue hinzuzuf\u00fcgen.

", + "app_phonebook_no_contacts_yet": "Noch keine Kontakte.", + "app_phonebook_options_block": "Blockieren", + "app_phonebook_options_block_notification": "Kontakt blockiert.", + "app_phonebook_options_delete": "L\u00f6schen", + "app_phonebook_options_delete_confirm": "M\u00f6chten Sie diesen Kontakt\nwirklich l\u00f6schen?", + "app_phonebook_options_delete_notification": "Kontakt wurde erfolgreich\ngel\u00f6scht.", + "app_phonebook_options_edit": "Kontakte \u00e4ndern", + "app_phonebook_options_forward_namecard": "Visitenkarte weiterleiten", + "app_phonebook_options_send_sms": "Als SMS senden", + "app_phonebook_options_unblock": "Nicht mehr blockieren", + "app_phonebook_options_unblock_notification": "Kontakt nicht mehr blockiert.", + "app_phonebook_search_no_results": "Keine Kontakte gefunden.", + "app_phonebook_title_main": "Kontakte", + "app_phonebook_uncheck": "AUSWAHL ENTFERNEN", + "app_popup_bt_volume_text": "BLUETOOTH-LAUTST\u00c4RKE", + "app_popup_call_volume_text": "ANRUFLAUTST\u00c4RKE", + "app_popup_music_volume_text": "MUSIKLAUTST\u00c4RKE", + "app_popup_muted_text": "STUMM", + "app_popup_volume_text": "LAUTST\u00c4RKE", + "app_settings_Templates": "Vorlagen", + "app_settings_about": "\u00dcber Mudita Pure", + "app_settings_about_your_pure": "\u00dcber Ihr Pure", + "app_settings_advanced": "Fortgeschritten", + "app_settings_allow": "Erlauben", + "app_settings_apn_APN": "APN", + "app_settings_apn_apnprotocol": "APN-Protokoll", + "app_settings_apn_apntype": "APN-Typ", + "app_settings_apn_authtype": "Art der Authentifizierung", + "app_settings_apn_name": "Name", + "app_settings_apn_options_delete": "L\u00f6schen", + "app_settings_apn_options_edit": "\u00c4ndern", + "app_settings_apn_options_set_as_default": "Als Standard festlegen", + "app_settings_apn_password": "Kennwort", + "app_settings_apn_settings_no_apns": "Noch keine APN.

Zum Hinzuf\u00fcgen linken Pfeil dr\u00fccken.

", + "app_settings_apn_username": "Benutzername", + "app_settings_apps": "Applikationen", + "app_settings_apps_alarm_clock": "Wecker", + "app_settings_apps_alarm_clock_manual_volume": "Manuelle Lautst\u00e4rke", + "app_settings_apps_calendar": "Kalender", + "app_settings_apps_messages": "Nachrichten", + "app_settings_apps_phone": "Telefon", + "app_settings_bluetooth_add_device": "Ger\u00e4t hinzuf\u00fcgen", + "app_settings_bluetooth_all_devices": "Alle Ger\u00e4te", + "app_settings_bluetooth_connecting_error_message": " Verbindungsvorgang fehlgeschlagen.

\u00dcberpr\u00fcfen Sie das Ger\u00e4t und
versuchen Sie es erneut.", + "app_settings_bluetooth_enter_passkey": "Passwort eingeben:", + "app_settings_bluetooth_init_error_message": "Bluetooth-Initialisierungsprozess fehlgeschlagen.", + "app_settings_bluetooth_main": "Bluetooth", + "app_settings_bluetooth_phone_name": "Name des Telefons", + "app_settings_bluetooth_phone_visibility": "Sichtbarkeit des Telefons", + "app_settings_bluetooth_searching_devices": "Ger\u00e4te suchen \u2026 \nDas kann einen Moment dauern.", + "app_settings_bluetooth_unpairing_error_message": " Entkopplungsvorgang fehlgeschlagen.

\u00dcberpr\u00fcfen Sie das Ger\u00e4t und
versuchen Sie es erneut.", + "app_settings_bt": "Bluetooth", + "app_settings_call_ringtome": "Rufton", + "app_settings_calls_from_favorites": "Anrufe von Favoriten", + "app_settings_certification": "Zertifikate", + "app_settings_connected": "Verbunden", + "app_settings_date_and_time": "Datum und Zeit", + "app_settings_date_and_time_automatic_date_and_time": "Datum und Zeit (automatisch)", + "app_settings_date_and_time_change_date_and_time": "Datum und Zeit \u00e4ndern", + "app_settings_date_and_time_change_time_zone": "Zeitzone \u00e4ndern", + "app_settings_date_and_time_date_format": "Datumsformat", + "app_settings_date_and_time_time_format": "Uhrzeitformat", + "app_settings_date_and_time_time_zone": "Zeitzone", + "app_settings_disp_key": "Display und Tastenfeld", + "app_settings_display": "Display", + "app_settings_display_dark_mode": "Dunkelmodus (Beta)", + "app_settings_display_display_light": "Displaylicht", + "app_settings_display_factory_reset_confirmation": "Dadurch wird dein Pure ausgeschaltet. Schalte es wieder ein, um mit dem Prozess fortzufahren.\nTelefon jetzt ausschalten?", + "app_settings_display_font_size": "Schriftgr\u00f6\u00dfe", + "app_settings_display_input_language": "Eingabesprache", + "app_settings_display_keypad_light": "Tastenlicht", + "app_settings_display_keypad_light_active": "An wenn aktiv", + "app_settings_display_keypad_light_off": "Aus", + "app_settings_display_keypad_light_on": "Immer an", + "app_settings_display_light_auto": "Automatisch", + "app_settings_display_light_brightness": "Helligkeit", + "app_settings_display_light_main": "Frontlicht", + "app_settings_display_security_autolock": "Automatische Sperre", + "app_settings_display_wallpaper": "Hintergrund", + "app_settings_display_wallpaper_clock": "Uhr", + "app_settings_display_wallpaper_edit_custom_quotes": "Benutzerdefinierte Spr\u00fcche \u00e4ndern", + "app_settings_display_wallpaper_edit_quotes": "Spr\u00fcche \u00e4ndern", + "app_settings_display_wallpaper_logo": "Mudita Logo", + "app_settings_display_wallpaper_quotes": "Spr\u00fcche", + "app_settings_display_wallpaper_quotes_author": "Autor", + "app_settings_display_wallpaper_quotes_categories": "Kategorien", + "app_settings_display_wallpaper_quotes_delete": "L\u00f6schen", + "app_settings_display_wallpaper_quotes_delete_confirmation": "Spruch l\u00f6schen?", + "app_settings_display_wallpaper_quotes_delete_success": "Spruch wurde gel\u00f6scht.", + "app_settings_display_wallpaper_quotes_edit": "\u00c4ndern", + "app_settings_display_wallpaper_quotes_new": "Neuer Spruch", + "app_settings_display_wallpaper_quotes_note": "Notiz", + "app_settings_factory_reset": "Auf Werkseinstellung zur\u00fccksetzen", + "app_settings_factory_reset_in_progress": "Die Werkseinstellungen wurden noch nicht vollst\u00e4ndig wiederhergestellt. Schalte dein Pure wieder ein, um fortzufahren.", + "app_settings_info_dnd": "Alle Benachrichtigungen stumm erhalten. Sie k\u00f6nnen vollst\u00e4ndige Benachrichtigungen von bevorzugten Kontakten zulassen.", + "app_settings_info_offline_flight_mode": "Vollst\u00e4ndig getrennt. Anrufe, Nachrichten und Tethering sind nicht verf\u00fcgbar.", + "app_settings_info_offline_messages_only": "Nachrichten basierend auf Verbindungsintervallen senden und herunterladen. Keine Anrufe oder Tethering.", + "app_settings_language": "Sprache", + "app_settings_message_sound": "Nachrichtenton", + "app_settings_messages_only": "Nur Nachrichten", + "app_settings_net": "Netzwerk", + "app_settings_network_active_card": "Aktiver Slot", + "app_settings_network_all_operators": "Alle Bediener", + "app_settings_network_apn_settings": "APN-Einstellungen", + "app_settings_network_import_contacts_duplicates": "Duplikate von SIM", + "app_settings_network_import_contacts_from_sim_card": "Kontakte von SIM import.", + "app_settings_network_import_contacts_from_sim_card_duplicates": "Wir haben $DUPLICATES Duplikate gefunden. M\u00f6chten Sie

doppelte Kontakte importieren

und vorhandene ersetzen?
", + "app_settings_network_import_contacts_from_sim_card_no_contacts": "Auf dieser SIM-Karte befinden

sich keine Kontakte.
", + "app_settings_network_import_contacts_from_sim_card_reading": "Import l\u00e4uft...

Bitte warte einen Moment.
", + "app_settings_network_import_contacts_from_sim_card_success": "Kontakte erfolgreich importiert.", + "app_settings_network_not_connected": "keine Karte", + "app_settings_network_operator_auto_select": "Automatische Auswahl", + "app_settings_network_pin": "PIN", + "app_settings_network_pin_change_code": "PIN-Code \u00e4ndern", + "app_settings_network_pin_settings": "PIN-Einstellungen", + "app_settings_network_sim1": "SIM 1", + "app_settings_network_sim2": "SIM 2", + "app_settings_network_sim_cards": "SIM-Karten", + "app_settings_network_sim_none": "Keine SIM", + "app_settings_network_unblock_card": "Entsperren Karte", + "app_settings_network_voice_over_lte": "VoLTE", + "app_settings_network_volte_not_available": "nicht verf\u00fcgbar", + "app_settings_new_edit_apn": "APN neu/\u00e4ndern", + "app_settings_no_network_connection_flight_mode": "Flugmodus", + "app_settings_notifications_when_locked": "Benachrichtigen bei Sperre", + "app_settings_option_connected_audio": "VERBUNDENE AUDIOQUELLE", + "app_settings_option_connected_voice": "VERBUNDENE STIMME", + "app_settings_option_connected_both": "VERBUNDENE STIMME, AUDIOQUELLE", + "app_settings_option_connecting": "WIRD VERBUNDEN", + "app_settings_option_pairing": "WIRD GEKOPPELT", + "app_settings_phone_modes": "Betriebsarten des Telefons", + "app_settings_sar": "SAR", + "app_settings_security": "Sicherheit", + "app_settings_security_change_phone_lock": "Sicherheitscode \u00e4ndern", + "app_settings_security_phone_lock": "Sicherheitscode f\u00fcr Bildschirmsperre", + "app_settings_show_unread_first": "Ungelesene zuerst zeigen", + "app_settings_sound": "Ton", + "app_settings_system": "System", + "app_settings_tech_info_battery": "Batterie", + "app_settings_tech_info_imei": "IMEI", + "app_settings_tech_info_model": "Modell", + "app_settings_tech_info_os_version": "OS-Version", + "app_settings_tech_info_pcb_am": "pcbAM", + "app_settings_tech_info_pcb_lm": "pcbLM", + "app_settings_tech_info_pcb_mb": "pcbMB", + "app_settings_tech_info_pcb_um": "pcmUM", + "app_settings_tech_info_serial_number": "Seriennummer", + "app_settings_title_color_test": "Verf\u00fcgbare Farben anzeigen", + "app_settings_title_connection_frequency": "Verbindungsfrequenz", + "app_settings_title_day": "Tag", + "app_settings_title_do_not_disturb": "Nicht st\u00f6ren", + "app_settings_title_languages": "Sprachauswahl", + "app_settings_title_main": "Einstellungen", + "app_settings_title_month": "Monat", + "app_settings_title_offline": "Offline", + "app_settings_title_time": "Zeit", + "app_settings_title_year": "Jahr", + "app_settings_toggle_off": "AUS", + "app_settings_toggle_on": "EIN", + "app_settings_toggle_transiting": "wird gepr\u00fcft...", + "app_settings_toolbar_reset": "ZUR\u00dcCKSETZEN", + "app_settings_vibration": "Vibration", + "app_settings_volume": "Lautst\u00e4rke", + "app_settings_volume_focused": "Lautst.", + "app_sms_offline": "Offline-Modus.\n\nZum Senden einer SMS\n in Online-Modus wechseln.", + "app_special_input_window": "Sonderzeichen", + "bluetooth_info_popup_error": "Der Kopplungsvorgang mit $DEVICE

ist fehlgeschlagen. Fehlercode: $ERROR", + "bluetooth_info_popup_success": "Ihr Handy ist mit $DEVICE gekoppelt.", + "bluetooth_popup": "Bluetooth", + "bluetooth_popup_cancel": "Abbrechen", + "bluetooth_popup_confirm": "Best\u00e4tigen", + "bluetooth_popup_pair_cancel_code": "Ger\u00e4t $DEVICE m\u00f6chte sich
mit Ihrem Pure verbinden. Bitte best\u00e4tigen Sie den Code: $CODE
", + "bluetooth_popup_pair_cancel_no_code": "Ger\u00e4t $DEVICE m\u00f6chte sich
mit Ihrem Pure verbinden.
", + "bluetooth_popup_passkey": "Passwort eingeben:", + "bluetooth_popup_pin": "PIN eingeben:", + "brightness_text": "HELLIGKEIT", + "common_AM": "AM", + "common_PM": "PM", + "common_abort": "ABBRECHEN", + "common_accept": "ANNEHMEN", + "common_add": "HINZUF\u00dcGEN", + "common_adjust": "ANPASSEN", + "common_april": "April", + "common_august": "August", + "common_back": "ZUR\u00dcCK", + "common_call": "ANRUFEN", + "common_check": "AUSW\u00c4HLEN", + "common_confirm": "BEST\u00c4TIGEN", + "common_connect": "VERBINDEN", + "common_contacts": "KONTAKTE", + "common_december": "Dezember", + "common_disconnect": "TRENNEN", + "common_edit": "\u00c4NDERN", + "common_emoji": "EMOJI", + "common_february": "Februar", + "common_forget": "VERGESSEN", + "common_fr": "FR", + "common_fri": "Fr", + "common_friday": "Freitag", + "common_information": "Informationen", + "common_january": "Januar", + "common_july": "Juli", + "common_june": "Juni", + "common_march": "M\u00e4rz", + "common_may": "Mai", + "common_minute_lower": "minute", + "common_minute_short": "min", + "common_minutes_lower": "minuten", + "common_minutes_lower_genitive": "minuten", + "common_mo": "MO", + "common_mon": "Mo", + "common_monday": "Montag", + "common_no": "Nein", + "common_november": "November", + "common_october": "Oktober", + "common_ok": "BEST\u00c4TIGEN", + "common_open": "\u00d6FFNEN", + "common_options": "OPTIONEN", + "common_options_title": "Einstellungen", + "common_pause": "PAUSIEREN", + "common_paused": "Pausiert", + "common_play": "ABSPIELEN", + "common_replace": "ERSETZEN", + "common_reply": "ANTWORTEN", + "common_results_prefix": "Ergebnisse: ", + "common_resume": "FORTFAHREN", + "common_retry": "NOCHMAL VERSUCHEN", + "common_sa": "SA", + "common_sat": "Sa", + "common_saturday": "Samstag", + "common_save": "SPEICHERN", + "common_search": "SUCHEN", + "common_search_results": "Suchergebnisse", + "common_search_uc": "Suchen", + "common_second_lower": "sekunde", + "common_seconds_lower": "sekunden", + "common_select": "AUSW\u00c4HLEN", + "common_send": "SENDEN", + "common_september": "September", + "common_set": "EINSTELLEN", + "common_show": "ANZEIGEN", + "common_skip": "\u00dcBERSPRINGEN", + "common_special_characters": "SPEZIAL", + "common_start": "STARTEN", + "common_stop": "STOPPEN", + "common_su": "SO", + "common_sun": "So", + "common_sunday": "Sonntag", + "common_switch": "WECHSELN", + "common_text_copy": "Text kopieren", + "common_text_paste": "Text einf\u00fcgen", + "common_th": "DO", + "common_thu": "Do", + "common_thursday": "Donnerstag", + "common_today": "Heute", + "common_tu": "DI", + "common_tue": "Di", + "common_tuesday": "Dienstag", + "common_uncheck": "AUSWAHL ENTFERNEN", + "common_use": "BENUTZEN", + "common_we": "MI", + "common_wed": "Mi", + "common_wednesday": "Mittwoch", + "common_yes": "Ja", + "common_yesterday": "Gestern", + "duration_0hmin_0sec": "%0N:%0S", + "duration_0min_0sec": "%0M:%0S", + "duration_hour_0min_0sec": "%H:%0M:%0S", + "duration_min_0sec": "%M:%0S", + "home_modes_connected": "VERBUNDEN", + "home_modes_message_only": "Nur Nachrichten", + "home_modes_notdisturb": "NICHT ST\u00d6REN", + "home_modes_offline": "OFFLINE", + "locale_12hour_min": "%I:%M %p", + "locale_12hour_min_short": "%I:%M", + "locale_24hour_min": "%H:%M", + "locale_date_DD_MM_YY": "%d.%m.%y", + "locale_date_MM_DD_YY": "%m.%d.%y", + "locale_date_full": "%d.%m.%Y", + "locale_date_short": "%d.%m", + "metadata": { + "display_name": "Deutsch" + }, + "phone_lock_blocked": "Entschuldigung, Telefon gesperrt.", + "phone_lock_blocked_information": "Falscher Passcode.

Versuche es in $TIME noch einmal.
", + "phone_lock_changed_successfully": "Sicherheitscode erfolgreich ge\u00e4ndert!", + "phone_lock_configure": "Sicherheitscode konfigurieren", + "phone_lock_confirm": "Sicherheitscode best\u00e4tigen", + "phone_lock_confirm_new": "Neuen Sicherheitscode best\u00e4tigen", + "phone_lock_current": "Aktuellen Sicherheitscode eingeben", + "phone_lock_disabled": "Sicherheitscode deaktiviert!", + "phone_lock_enter_new": "Neuen Sicherheitscode eingeben", + "phone_lock_invalid": "Falscher Sicherheitscode!", + "phone_lock_invalid_retry": "Falscher Sicherheitscode.

Sicherheitscode nochmals konfigurieren.
", + "phone_lock_notification": "Sicherheitscode-Sperre f\u00fcr: $TIME", + "phone_lock_set": "Sicherheitscode einstellen, der

das Telefon entsperrt
", + "phone_lock_unlock": "Geben Sie den Sicherheitscode

zum Entsperren ein:
", + "phone_lock_unlock_invalid": "Falscher Sicherheitscode.", + "phone_needs_rebooting": "Das Telefon muss neu gestartet werden. Dr\u00fccken Sie zur Best\u00e4tigung eine beliebige Taste und entfernen Sie die Batterie f\u00fcr 10 Sekunden, um das Ger\u00e4t komplett neu starten zu lassen.", + "sim_card_cant_connect": "Keine Verbindung mit $SIM-Karte m\u00f6glich.

Bitte Karte einsetzen.
", + "sim_card_change_in_progress": "SIM-Wechselvorgang l\u00e4uft.

Es dauert bis zu ein paar Sekunden.
", + "sim_card_changed_successfully": "SIM-Karte erfolgreich ge\u00e4ndert.", + "sim_card_not_ready": "Warten auf Start des Modems.

Dies kann einen Moment dauern.
", + "sim_card_pin_disabled": "PIN f\u00fcr SIM-Karte deaktiviert", + "sim_card_pin_enabled": "PIN f\u00fcr SIM-Karte aktiviert", + "sim_card_select_in_progress": "SIM-Auswahlvorgang l\u00e4uft.

Es dauert bis zu ein paar Sekunden.
", + "sim_card_select_successfully": "SIM-Karte erfolgreich ausgew\u00e4hlt.", + "sim_change_pin": "PIN-Code \u00e4ndern", + "sim_cme_error": "SIM-Karte

CME-Fehler:$CMECODE
", + "sim_confirm_new_pin": "Neuen PIN-Code best\u00e4tigen:", + "sim_enter_enter_current": "Aktuellen PIN-Code eingeben:", + "sim_enter_new_pin": "Neuen PIN-Code eingeben:", + "sim_enter_pin_unlock": "PIN-Code eingeben, um

die$PINTYPE Karte einzurichten:
", + "sim_header_setup": "$SIM einrichten", + "sim_pin_changed_successfully": "PIN-Code erfolgreich ge\u00e4ndert", + "sim_puk_blocked": "Die SIM-Karte ist gesperrt.

Bitte kontaktieren Sie den Betreiber.
", + "sim_setup_enter_puk": "Die SIM-Karte ist gesperrt.

Zum Entsperren PUK-Code eingeben:
", + "sim_setup_wrong_pin": "Falscher PIN-Code.

$ATTEMPTS Versuche \u00fcbrig.
", + "sim_setup_wrong_pin_last_attempt": "Falscher PIN-Code.

1 Versuch \u00fcbrig.
", + "sim_setup_wrong_puk": "Falscher PUK-Code.

$ATTEMPTS Versuche \u00fcbrig
", + "sim_setup_wrong_puk_last_attempt": "Falscher PUK-Code.

1 Versuch \u00fcbrig
", + "sim_setup_wrong_puk_last_attempt_warning": "Wenn der Code diesmal falsch ist, wird die

SIM-Karte gesperrt und Sie m\u00fcssen

den Betreiber kontaktieren.
", + "sim_wrong_pin_confirmation": "Falscher PIN-Code.", + "sms_add_rec_num": "Empf\u00e4nger hinzuf\u00fcgen oder eine Nummer eingeben", + "sms_call_text": "Anruf ", + "sms_copy": "Kopieren", + "sms_delete_conversation": "Gespr\u00e4ch l\u00f6schen", + "sms_delete_message": "Nachricht l\u00f6schen", + "sms_forward_message": "Nachricht weiterleiten", + "sms_mark_read": "Als gelesen markieren", + "sms_mark_unread": "Als ungelesen markieren", + "sms_paste": "Einf\u00fcgen", + "sms_resend_failed": "Nochmal senden", + "sms_title_message": "Neue Nachricht", + "sms_use_template": "Vorlage verwenden", + "statusbar_battery_charging": "Aufladen", + "statusbar_battery_plugged": "Stecker", + "tethering": "Tethering", + "tethering_enable_question": "Sie sind mit dem Computer verbunden.
Tethering einschalten?
(einige Funktionen k\u00f6nnen deaktiviert sein)
", + "tethering_menu_access_decline": "Tethering ist eingeschaltet.

Schalten Sie Tethering aus,
um auf das Men\u00fc zuzugreifen
", + "tethering_phone_mode_change_prohibited": "Tethering ist eingeschaltet.

Andere Betriebsarten (Verbunden, DND,
Offline) werden von dieser Betriebsart \u00fcberlagert
und funktionieren nicht.
", + "tethering_turn_off_question": "Tethering ausschalten?" } diff --git a/image/system_a/data/lang/English.json b/image/system_a/data/lang/English.json index 60632e3074..7a3d8f5259 100644 --- a/image/system_a/data/lang/English.json +++ b/image/system_a/data/lang/English.json @@ -1,765 +1,727 @@ { - "metadata": { - "display_name": "English" - }, - "common_add": "ADD", - "common_open": "OPEN", - "common_call": "CALL", - "common_save": "SAVE", - "common_edit": "EDIT", - "common_import": "IMPORT", - "common_send": "SEND", - "common_reply": "REPLY", - "common_confirm": "CONFIRM", - "common_select": "SELECT", - "common_use": "USE", - "common_ok": "OK", - "common_back": "BACK", - "common_skip": "SKIP", - "common_contacts": "CONTACTS", - "common_set": "SET", - "common_show": "SHOW", - "common_yes": "Yes", - "common_no": "No", - "common_switch": "SWITCH", - "common_options": "OPTIONS", - "common_options_title": "Options", - "common_information": "Information", - "common_check": "CHECK", - "common_uncheck": "UNCHECK", - "common_emoji": "EMOJI", - "common_special_characters": "SPECIAL", - "common_start": "START", - "common_stop": "STOP", - "common_resume": "RESUME", - "common_pause": "PAUSE", - "common_play": "PLAY", - "common_retry": "TRY AGAIN", - "common_replace": "REPLACE", - "common_abort": "ABORT", - "common_connect": "CONNECT", - "common_disconnect": "DISCONNECT", - "common_forget": "FORGET", - "common_adjust": "ADJUST", - "common_mo": "MO", - "common_tu": "TU", - "common_we": "WE", - "common_th": "TH", - "common_fr": "FR", - "common_sa": "SA", - "common_su": "SU", - "common_mon": "Mon", - "common_tue": "Tue", - "common_wed": "Wed", - "common_thu": "Thu", - "common_fri": "Fri", - "common_sat": "Sat", - "common_sun": "Sun", - "common_monday": "Monday", - "common_tuesday": "Tuesday", - "common_wednesday": "Wednesday", - "common_thursday": "Thursday", - "common_friday": "Friday", - "common_saturday": "Saturday", - "common_sunday": "Sunday", - "common_january": "January", - "common_february": "February", - "common_march": "March", - "common_april": "April", - "common_may": "May", - "common_june": "June", - "common_july": "July", - "common_august": "August", - "common_september": "September", - "common_october": "October", - "common_november": "November", - "common_december": "December", - "common_yesterday": "Yesterday", - "common_today": "Today", - "common_results_prefix": "Results: ", - "common_search": "SEARCH", - "common_accept": "ACCEPT", - "common_minute_lower": "minute", - "common_minutes_lower": "minutes", - "common_minutes_lower_genitive": "minutes", - "common_minute_short": "min", - "common_second_lower": "second", - "common_seconds_lower": "seconds", - "common_seconds_lower_genitive": "seconds", - "common_second_short": "sec", - "common_paused": "Paused", - "common_text_copy": "Copy text", - "common_text_paste": "Paste text", - "locale_12hour_min": "%I:%M %p", - "locale_12hour_min_short": "%I:%M", - "locale_24hour_min": "%H:%M", - "locale_date_DD_MM_YYYY": "%d.%m.%Y", - "locale_date_MM_DD_YYYY": "%m.%d.%Y", - "locale_date_DD_MM_YY": "%d.%m.%y", - "locale_date_MM_DD_YY": "%m.%d.%y", - "locale_date_DD_MM": "%d.%m", - "locale_date_MM_DD": "%m.%d", - "locale_date_Day_DD_Mon": "%A, %d %b", - "locale_date_Day_Mon_DD": "%A, %b %d", - "common_AM": "AM", - "common_PM": "PM", - "duration_min_0sec": "%M:%0S", - "duration_0min_0sec": "%0M:%0S", - "duration_0hmin_0sec": "%0N:%0S", - "duration_hour_0min_0sec": "%H:%0M:%0S", - "brightness_text": "BRIGHTNESS", - "phone_needs_rebooting": "Your phone needs rebooting. Press any key to confirm and please remove the battery for 10 seconds to perform a full reboot", - "home_modes_connected": "CONNECTED", - "home_modes_notdisturb": "DO NOT DISTURB", - "home_modes_offline": "OFFLINE", - "home_modes_message_only": "Message only", - "statusbar_battery_charging": "Charg", - "statusbar_battery_plugged": "Plug", - "app_alarm_clock_title_main": "Alarm clock", - "app_alarm_clock_repeat_never": "Never", - "app_alarm_clock_repeat_everyday": "Everyday", - "app_alarm_clock_repeat_week_days": "Weekdays", - "app_alarm_clock_repeat_custom": "Custom", - "app_alarm_clock_no_alarms_information": "No alarms yet.

Press left arrow to add new.

", - "app_alarm_clock_options_edit": "Edit", - "app_alarm_clock_options_delete": "Delete", - "app_alarm_clock_options_turn_off_all_alarms": "Turn off all alarms", - "app_alarm_clock_delete_confirmation": "Delete this alarm?", - "app_alarm_clock_new_alarm_title": "New alarm", - "app_alarm_clock_edit_alarm_title": "Edit alarm", - "app_alarm_clock_sound": "Sound", - "app_alarm_clock_snooze": "Snooze", - "app_alarm_clock_repeat": "Repeat", - "app_alarm_clock_no_snooze": "None", - "app_alarm_clock_snooze_5_min": "5 min", - "app_alarm_clock_snooze_10_min": "10 min", - "app_alarm_clock_snooze_15_min": "15 min", - "app_alarm_clock_snooze_30_min": "30 min", - "app_alarm_clock_custom_repeat_title": "Custom repeat", - "app_calendar_title_main": "Calendar", - "app_calendar_all_day": "All day", - "app_calculator_title_main": "Calculator", - "app_calculator_equals": "EQUALS", - "app_calculator_decimal_separator": ".", - "app_calculator_error": "Error", - "app_options_invalid_option": " ", - "app_options_contact_details": "Contact details", - "app_options_contact_add": "Add to contacts", - "app_options_contact_edit": "Edit Contact", - "app_notes_title_main": "Notes", - "app_notes_edit_note": "Edit note", - "app_notes_new_note": "New note", - "app_notes_edit": "EDIT", - "app_notes_edited": "Edited", - "app_notes_delete_note": "Delete", - "app_notes_note_delete_confirmation": "Do you really want to delete this note?", - "app_notes_no_notes": "No notes yet.

Press left arrow to add new.

", - "app_notes_search_no_results": "No notes found.", - "app_calllog_title_main": "Calls", - "app_calllog_no_calls": "No calls yet.", - "app_calllog_type": "Call", - "app_calllog_duration": "Duration", - "app_calllog_incoming_call": "Incoming call", - "app_calllog_outgoing_call": "Outgoing call", - "app_calllog_missed_call": "Missed call", - "app_calllog_rejected_call": "Rejected call", - "app_calllog_empty_incoming": "Incoming", - "app_calllog_empty_outgoing": "Outgoing", - "app_calllog_empty_missed": "Missed", - "app_calllog_date": "Date", - "app_calllog_options_delete_call": "Delete call", - "app_calllog_delete_call_confirmation": "Delete this call from the list?", - "app_calllog_delete_all_calls": "Delete all calls", - "app_calllog_delete_all_calls_confirmation": "Delete all calls from the list?", - "app_desktop_unlock": "UNLOCK", - "app_desktop_menu": "MENU", - "app_desktop_emergency": "SOS", - "app_desktop_info": "Info", - "app_desktop_info_mmi_none_specified_failed": "Operation failed", - "app_desktop_info_mmi_none_specified_success": "Operation successful", - "app_desktop_info_mmi_common_failed": "failed", - "app_desktop_info_mmi_common_no_message": "not", - "app_desktop_info_mmi_common_mmi_not_supported": "not supported", - "app_desktop_info_mmi_common_enabled": "enabled", - "app_desktop_info_mmi_common_disabled": "disabled", - "app_desktop_info_mmi_common_voice": "voice", - "app_desktop_info_mmi_common_data": "data", - "app_desktop_info_mmi_common_fax": "FAX", - "app_desktop_info_mmi_common_sync": "sync", - "app_desktop_info_mmi_common_async": "async", - "app_desktop_info_mmi_common_all_disabled": "all bearer services disabled", - "app_desktop_info_mmi_common_deactivated": "service was deactivated", - "app_desktop_info_mmi_common_activated": "service was activated", - "app_desktop_info_mmi_common_query": "query", - "app_desktop_info_mmi_clir_according_to_subscription": "CLIR according to subscription", - "app_desktop_info_mmi_clir_enabled": "CLIR enabled", - "app_desktop_info_mmi_clir_disabled": "CLIR diasbled", - "app_desktop_info_mmi_clir_not_provisioned": "CLIR not provisioned", - "app_desktop_info_mmi_clir_permanent_provisioned": "CLIR permanently provisioned", - "app_desktop_info_mmi_clir_unknown": "CLIR unknown", - "app_desktop_info_mmi_clir_temporary_restricted": "CLIR temporarily restricted", - "app_desktop_info_mmi_clir_temporary_allowed": "CLIR temporarily allowed", - "app_desktop_info_mmi_registration_failed": "Registration failed", - "app_desktop_info_mmi_registration_success": "Registration was successful", - "app_desktop_info_mmi_erasure_failed": "Erasure failed", - "app_desktop_info_mmi_erasure_success": "Erasure was successful", - "app_desktop_info_mmi_disabling_failed": "Service disabling failed", - "app_desktop_info_mmi_disabling_success": "Service has been disabled", - "app_desktop_info_mmi_enabling_failed": "Service enabling failed", - "app_desktop_info_mmi_enabling_success": "Service has been enabled", - "app_desktop_info_mmi_call_forwarding_disabled": "call forwarding disabled", - "app_desktop_info_mmi_call_barring_activated": "Call barring was activated", - "app_desktop_info_mmi_call_barring_deactivated": "Call barring was deactivated", - "app_desktop_info_mmi_clip_activated": "CLIP activated", - "app_desktop_info_mmi_clip_deactivated": "CLIP deactivated", - "app_desktop_info_mmi_clip_not_provisioned": "CLIP not provisioned", - "app_desktop_info_mmi_clip_provisioned": "CLIP provisioned", - "app_desktop_info_mmi_clip_unknown": "CLIP unknown", - "app_desktop_info_mmi_call_waiting_activated": "Call waiting was activated", - "app_desktop_info_mmi_call_waiting_deactivated": "Call waiting was deactivated", - "app_desktop_info_mmi_call_forwarding": "Call forwarding", - "app_desktop_info_mmi_call_barring": "Call barring", - "app_desktop_info_mmi_call_waiting": "Call waiting", - "app_desktop_info_mmi_clip": "Caller ID displayed (CLIP)", - "app_desktop_info_mmi_clir": "Caller ID suppressed (CLIR)", - "app_desktop_info_mmi_imei": "IMEI (MEID)", - "app_desktop_info_mmi_result_success": "Success", - "app_desktop_info_mmi_result_failed": "Failed", - "sim_header_setup": "$SIM setup", - "sim_enter_pin_unlock": "Enter the PIN code to set up

the $PINTYPE card:
", - "sim_enter_enter_current": "Type current PIN code:", - "sim_change_pin": "Change PIN code", - "sim_enter_new_pin": "Enter new PIN code:", - "sim_confirm_new_pin": "Confirm new PIN code:", - "sim_setup_wrong_pin": "Wrong PIN code. You have

$ATTEMPTS attempts left.
", - "sim_setup_wrong_pin_last_attempt": "Wrong PIN code. You have

1 attempt left.
", - "sim_wrong_pin_confirmation": "Wrong PIN code.", - "sim_pin_changed_successfully": "PIN code changed successfully", - "sim_card_changed_successfully": "SIM card changed successfully.", - "sim_card_select_successfully": "SIM selection process has been

completed.
", - "sim_card_change_in_progress": "SIM change process in progress.

It will take up to a few seconds.
", - "sim_card_select_in_progress": "SIM selection process in progress.

It will take up to a few seconds.
", - "sim_cme_error": "SIM card

CME error:$CMECODE
", - "sim_puk_blocked": "The SIM card is blocked.

Please, contact the operator.
", - "sim_setup_enter_puk": "The SIM card is blocked.

To unblock it, type the PUK code:
", - "sim_setup_wrong_puk": "Wrong PUK code.

You have $ATTEMPTS attempts left
", - "sim_setup_wrong_puk_last_attempt": "Wrong PUK code.

You have 1 attempt left
", - "sim_setup_wrong_puk_last_attempt_warning": "If the code is wrong this time, the

SIM card will be blocked and you'll

have to contact the operator.
", - "sim_card_pin_disabled": "SIM card PIN disabled", - "sim_card_pin_enabled": "SIM card PIN enabled", - "sim_card_cant_connect": "Cannot connect to $SIM card.

Please insert card.
", - "sim_card_not_ready": "Waiting for modem to start.

This may take a moment.
", - "app_desktop_press_to_unlock": "Press Unlock and then #", - "app_desktop_press_to_complete_unlock": "Press # to unlock", - "app_desktop_unread_messages": "Unread messages", - "app_desktop_missed_calls": "Missed calls", - "app_desktop_alarm_snooze": "Snooze", - "app_desktop_menu_phone": "CALLS", - "app_desktop_menu_contacts": "CONTACTS", - "app_desktop_menu_messages": "MESSAGES", - "app_desktop_menu_calendar": "CALENDAR", - "app_desktop_menu_alarm": "ALARM", - "app_desktop_menu_meditation": "MEDITATION", - "app_desktop_menu_music": "MUSIC", - "app_desktop_menu_tools": "TOOLS", - "app_desktop_menu_settings": "SETTINGS", - "app_desktop_menu_title": "Menu", - "app_desktop_tools_title": "Tools", - "app_desktop_tools_notes": "NOTES", - "app_desktop_tools_calculator": "CALCULATOR", - "app_desktop_tools_antenna": "ANTENNA TEST", - "app_desktop_poweroff_title": "Turn off", - "app_desktop_poweroff_question": "Turn off the phone?", - "app_desktop_show": "SHOW", - "app_desktop_calls": "CALLS", - "app_desktop_clear": "CLEAR", - "app_desktop_clear_all": "CLEAR ALL", - "app_desktop_replay": "REPLY", - "app_popup_volume_text": "VOLUME", - "app_popup_bt_volume_text": "BLUETOOTH VOLUME", - "app_popup_music_volume_text": "MUSIC VOLUME", - "app_popup_call_volume_text": "CALL VOLUME", - "app_popup_muted_text": "MUTED", - "app_popup_snooze_text": "SNOOZE", - "app_popup_alarm_text": "alarm", - "app_popup_alarm_snoozed_till": "snoozed till", - "app_call_call": "CALL", - "app_call_clear": "CLEAR", - "app_call_reject": "REJECT", - "app_call_answer": "ANSWER", - "app_call_message": "MESSAGE", - "app_call_end_call": "END CALL", - "app_call_emergency": "Emergency call", - "app_call_is_calling": "is calling", - "app_call_calling": "calling...", - "app_call_call_ended": "call ended", - "app_call_call_rejected": "call rejected", - "app_call_contact": "CONTACT", - "app_call_mute": "MUTE", - "app_call_muted": "MUTED", - "app_call_speaker": "SPEAKER", - "app_call_speaker_on": "SPEAKER ON", - "app_call_bluetooth": "BLUETOOTH", - "app_call_no_sim": "No SIM.\n\nTo make a call,\nplease insert a SIM card.", - "app_call_no_network_connection": "No Network Connection.", - "app_call_call_request_failed": "Something went wrong.", - "app_call_offline": "You're Offline.\n\nTo make a call,\n switch the mode.", - "app_sms_offline": "You're Offline.\n\nTo send message,\n switch the mode.", - "app_call_emergency_text": "Emergency call", - "app_call_wrong_emergency": "Can't make a call.\n$NUMBER is not an emergency number.", - "app_messages_title_main": "Messages", - "app_messages_no_messages": "No messages yet.

Press left arrow to add new.

", - "app_messages_no_templates": "No templates yet.

Create a new template in Mudita

Center to use in your Pure.

", - "app_messages_thread_delete_confirmation": "Delete this conversation?", - "app_messages_message_delete_confirmation": "Delete this message?", - "app_messages_thread_no_result": "There are no results", - "app_messages_message": "Message", - "app_messages_templates": "Templates", - "app_messages_no_sim": "No SIM.\n\nTo send a SMS,\nplease insert a SIM card.", - "app_messages_thread_draft": "Draft: ", - "app_messages_thread_not_sent": "Not sent: ", - "app_messages_thread_you": "You: ", - "app_onboarding_title": "Onboarding", - "app_onboarding_start_configuration": "

Hello!



Let's configure your Mudita Pure.", - "app_onboarding_eula_license": "License agreement (EULA)", - "app_onboarding_select_sim": "Choose active SIM", - "app_onboarding_select_sim_description": "Only one SIM can be active at a time.

You can choose it now and switch in

the Settings whenever needed.
", - "app_onboarding_no_sim_selected_title": "SIM setup", - "app_onboarding_no_sim_selected_description": "No SIM card set up.

To connect to network, set up

SIM cards in Settings.
>", - "app_onboarding_title_configuration": "Configuration", - "app_onboarding_title_update_info": "MuditaOS update", - "app_onboarding_skip_confirm": "SIM setup is required for network connection. Skip the setup anyway? ", - "app_onboarding_configuration_successful": "Your Mudita Pure

is ready to use.
", - "app_onboarding_no_configuration": "Your Mudita Pure has not been

configured. You can go to

Settings to set it up.
", - "app_onboarding_update_info": "The current version of MuditaOS is

$VERSION

Updates with new features and fixes appear often.

To update your Phone please

visit:
www.mudita.com/updateos

and follow the instructions.", - "app_settings_title_main": "Settings", - "app_settings_advanced": "Advanced", - "app_settings_bt": "Bluetooth", - "app_settings_bluetooth_add_device": "Add device", - "app_settings_bluetooth_all_devices": "All devices", - "app_settings_bluetooth_searching_devices": "Searching devices... \nIt may take a moment.", - "app_settings_bluetooth_main": "Bluetooth", - "app_settings_bluetooth_phone_name": "Phone name", - "app_settings_bluetooth_phone_visibility": "Phone visibility", - "app_settings_bluetooth_init_error_message": "Bluetooth initialization process has failed.", - "app_settings_bluetooth_pairing_error_message": "Pairing process has failed.

Check the device and
TRY AGAIN.", - "app_settings_bluetooth_unpairing_error_message": "Unpairing process has failed.

Check the device and
TRY AGAIN.", - "app_settings_bluetooth_connecting_error_message": "Connection process has failed.

Check the device and
TRY AGAIN.", - "app_settings_net": "Network", - "app_settings_disp_key": "Display and keypad", - "app_settings_display_display_light": "Display light", - "app_settings_display_dark_mode": "Dark mode (Beta)", - "app_settings_display_light_main": "Frontlight", - "app_settings_display_light_auto": "Automatic", - "app_settings_display_light_brightness": "Brightness", - "app_settings_display_font_size": "Font size", - "app_settings_display_locked_screen": "Locked screen", - "app_settings_display_keypad_light": "Keypad light", - "app_settings_display_input_language": "Input language", - "app_settings_display_wallpaper": "Wallpaper", - "app_settings_display_wallpaper_logo": "Mudita logo", - "app_settings_display_wallpaper_clock": "Clock", - "app_settings_display_wallpaper_quotes": "Quotes", - "app_settings_display_wallpaper_edit_quotes": "Edit quotes", - "app_settings_display_wallpaper_edit_custom_quotes": "Edit custom quotes", - "app_settings_display_wallpaper_quotes_edit": "Edit", - "app_settings_display_wallpaper_quotes_delete": "Delete", - "app_settings_display_wallpaper_quotes_new": "New quote", - "app_settings_display_wallpaper_quotes_delete_confirmation": "Delete this quote?", - "app_settings_display_wallpaper_quotes_delete_success": "Quote deleted.", - "app_settings_display_wallpaper_quotes_note": "Note", - "app_settings_display_wallpaper_quotes_author": "Author", - "app_settings_display_wallpaper_quotes_our_favourites": "Our favorites", - "app_settings_display_wallpaper_quotes_custom": "Custom", - "app_settings_display_wallpaper_quotes_categories": "Select categories", - "app_settings_system": "System", - "app_settings_apps": "Apps", - "app_settings_apps_phone": "Phone", - "app_settings_apps_messages": "Messages", - "app_settings_show_unread_first": "Show unread first", - "app_settings_apps_alarm_clock": "Alarm clock", - "app_settings_apps_alarm_clock_manual_volume": "Manual sound volume", - "app_settings_vibration": "Vibration", - "app_settings_sound": "Sound", - "app_settings_volume": "Volume", - "app_settings_volume_focused": "Volume", - "app_settings_call_ringtome": "Call ringtone", - "app_settings_message_sound": "Message sound", - "app_settings_notification_sound": "Notification sound", - "app_settings_Templates": "Templates", - "app_settings_title_torch": "Torch", - "app_settings_torch_sunset_red_light_option": "Sunset red light", - "app_settings_torch_nightshift_time_option": "Nightshift time", - "app_settings_torch_description": "In the nightshift, the torch will use\nsunset red light so it won't disturb\nyour and others sleep.", - "app_settings_title_nightshift": "Nightshift", - "app_settings_nightshift_from": "From", - "app_settings_nightshift_to": "To", - "app_settings_date_and_time": "Date and time", - "app_settings_date_and_time_automatic_date_and_time": "Automatic date and time", - "app_settings_date_and_time_change_date_and_time": "Change date and time", - "app_settings_date_and_time_automatic_time_zone": "Automatic time zone", - "app_settings_date_and_time_change_time_zone": "Change time zone", - "app_settings_date_and_time_time_format": "Time format", - "app_settings_date_and_time_date_format": "Date format", - "app_settings_date_and_time_time_zone": "Time zone", - "app_settings_title_day": "Day", - "app_settings_title_month": "Month", - "app_settings_title_year": "Year", - "app_settings_title_time": "Time", - "app_settings_cellular_passthrough": "Cellular <-> USB", - "app_settings_display": "Display", - "app_settings_phone_modes": "Phone modes", - "app_settings_security": "Security", - "app_settings_language": "Language", - "app_settings_factory_reset": "Factory reset", - "app_settings_display_factory_reset_confirmation": "Your Pure will turn off. Turn it on manually to continue the process.\nTurn off the phone now?", - "app_settings_factory_reset_in_progress": "The factory reset process is not\ncompleted yet, turn on your Pure\nto continue.", - "app_settings_about_your_pure": "About your Pure", - "app_settings_technical_information": "Technical Information", - "app_settings_tech_info_model": "Model", - "app_settings_tech_info_serial_number": "Serial number", - "app_settings_tech_info_os_version": "OS Version", - "app_settings_tech_info_imei": "IMEI", - "app_settings_tech_info_battery": "Battery", - "app_settings_tech_info_pcb_mb": "pcbMB", - "app_settings_tech_info_pcb_lm": "pcbLM", - "app_settings_tech_info_pcb_um": "pcmUM", - "app_settings_tech_info_pcb_am": "pcbAM", - "app_settings_certification": "Certification", - "app_settings_us_fcc_id": "US FCC ID", - "app_settings_canada_ic": "Canada IC", - "app_settings_europe": "Europe", - "app_settings_sar": "SAR", - "app_settings_about": "About Mudita Pure", - "app_settings_title_languages": "Language selection", - "app_settings_network_sim_cards": "SIM cards", - "app_settings_network_volte_not_available": "not available", - "app_settings_network_active_card": "Active slot", - "app_settings_network_unblock_card": "Unblock card", - "app_settings_network_not_connected": "no card", - "app_settings_network_operator_auto_select": "Operator auto-select", - "app_settings_network_all_operators": "All operators", - "app_settings_network_pin_settings": "PIN settings", - "app_settings_network_pin": "PIN", - "app_settings_network_pin_change_code": "Change PIN code", - "app_settings_network_import_contacts": "Import contacts", - "app_settings_network_import_contacts_duplicates": "Duplicates from SIM", - "app_settings_network_import_contacts_from_sim_card": "Import contacts from SIM card", - "app_settings_network_import_contacts_from_sim_card_reading": "Importing in progress...

Please wait a moment.
", - "app_settings_network_import_contacts_from_sim_card_no_contacts": "There are no contacts

on this SIM card.
", - "app_settings_network_import_contacts_from_sim_card_duplicates": "We found $DUPLICATES duplicates. Do you want

to import duplicated contacts and

replace existing ones.
", - "app_settings_network_import_contacts_from_sim_card_success": "Contacts imported successfully.", - "app_settings_network_sim1": "SIM1", - "app_settings_network_sim2": "SIM2", - "app_settings_network_sim_none": "No SIM", - "app_settings_network_voice_over_lte": "VoLTE", - "app_settings_network_apn_settings": "APN settings", - "app_settings_toggle_transiting": "checking...", - "app_settings_toggle_on": "ON", - "app_settings_toggle_off": "OFF", - "app_settings_security_phone_lock": "Lock screen passcode", - "app_settings_display_security_autolock": "Auto lock", - "app_settings_security_change_phone_lock": "Change passcode", - "phone_lock_unlock": "Enter the passcode

to unlock:
", - "phone_lock_blocked_information": "Wrong passcode.

Try again in $TIME.
", - "phone_lock_blocked_information_seconds": " seconds", - "phone_lock_blocked_information_minute": "a minute", - "phone_lock_blocked_information_minutes": " minutes", - "phone_lock_notification": "Passcode lock for $TIME", - "phone_lock_unlock_invalid": "Wrong passcode.

Please try again.
", - "phone_lock_blocked": "Sorry, phone blocked", - "phone_lock_current": "Type current passcode", - "phone_lock_enter_new": "Enter new passcode", - "phone_lock_confirm_new": "Confirm new passcode", - "phone_lock_invalid": "Wrong passcode!", - "phone_lock_changed_successfully": "Passcode changed successfully!", - "phone_lock_disabled": "Passcode disabled!", - "phone_lock_set": "Set passcode that unlocks

the phone
", - "phone_lock_confirm": "Confirm the passcode", - "phone_lock_invalid_retry": "Wrong passcode.

Configure passcode again.
", - "phone_lock_configure": "Configure passcode", - "app_settings_security_usb_passcode": "USB security", - "app_settings_apn_settings_no_apns": "No APNs yet.

Press left arrow to add new.

", - "app_settings_apn_options_delete": "Delete", - "app_settings_apn_options_edit": "Edit", - "app_settings_apn_options_set_as_default": "Set as default", - "app_settings_new_edit_apn": "New/Edit APN", - "app_settings_apn_name": "Name", - "app_settings_apn_APN": "APN", - "app_settings_apn_username": "Username", - "app_settings_apn_password": "Password", - "app_settings_apn_authtype": "Authentication type", - "app_settings_apn_apntype": "APN type", - "app_settings_apn_apnprotocol": "APN protocol", - "app_settings_title_color_test": "Display available colors", - "app_settings_toolbar_reset": "RESET", - "app_settings_option_connected_audio": "CONNECTED AUDIO", - "app_settings_option_connected_voice": "CONNECTED VOICE", - "app_settings_option_connected_both": "CONNECTED VOICE, AUDIO", - "app_settings_option_connecting": "CONNECTING", - "app_settings_option_pairing": "PAIRING", - "app_settings_title_do_not_disturb": "Do not disturb", - "app_settings_title_offline": "Offline", - "app_settings_title_connection_frequency": "Connection frequency", - "app_settings_connected": "Connected", - "app_settings_notifications_when_locked": "Notifications when locked", - "app_settings_calls_from_favorites": "Calls from favorites", - "app_settings_allow": "Allow", - "app_settings_no_network_connection_flight_mode": "Flight mode", - "app_settings_messages_only": "Messages only", - "app_settings_info_dnd": "Silently receive all notifications. You can allow full notifications from favorite contacts.", - "app_settings_info_offline_flight_mode": "Fully disconnected. Calls, messages and tethering are unavailable.", - "app_settings_info_offline_messages_only": "Send and download messages based on connection intervals. No calls nor tethering.", - "app_phonebook_title_main": "Contacts", - "common_search_uc": "Search", - "common_search_results": "Search results", - "app_phonebook_search_no_results": "No contacts found.", - "app_phonebook_no_contacts": "No contacts yet.

Press left arrow to add new.

", - "app_phonebook_no_contacts_yet": "No contacts yet.", - "app_phonebook_contact_title": "Add contact", - "app_phonebook_contact_no_name": "no name", - "app_phonebook_contact_information": "Information", - "app_phonebook_contact_flag_fav": "FAVORITES", - "app_phonebook_contact_flag_speed_dial": "SPEED DIAL", - "app_phonebook_contact_flag_ice": "ICE", - "app_phonebook_contact_flag_blocked": "BLOCKED", - "app_phonebook_ice_contacts_title": "Emergency Contacts", - "app_phonebook_favorite_contacts_title": "Favorites", - "app_phonebook_duplicate_numbers": "This number is assigned to \n $CONTACT_FORMATTED_NAME$. Replace it?", - "app_phonebook_duplicate_speed_dial": "Number $CONTACT_SPEED_DIAL$ is assigned to \n $CONTACT_FORMATTED_NAME$. Replace it?", - "app_phonebook_duplicate_speed_dial_title": "Speed dial key ($CONTACT_SPEED_DIAL$)", - "app_phonebook_options_edit": "Edit contact", - "app_phonebook_options_block": "Block", - "app_phonebook_options_block_confirm": "Block this contact?", - "app_phonebook_options_block_notification": "Contact blocked.", - "app_phonebook_options_unblock": "Unblock", - "app_phonebook_options_unblock_confirm": "Unblock this contact?", - "app_phonebook_options_unblock_notification": "Contact unblocked.", - "app_phonebook_options_delete": "Delete", - "app_phonebook_options_delete_confirm": "Do you really want to delete\nthis contact?", - "app_phonebook_options_delete_notification": "This contact has been deleted\nsuccessfully.", - "app_phonebook_options_forward_namecard": "Forward namecard", - "app_phonebook_options_send_sms": "Send via SMS", - "app_phonebook_new_contact_first_name": "First name", - "app_phonebook_new_contact_last_name": "Last name", - "app_phonebook_new_contact_number": "Phone number", - "app_phonebook_new_contact_second_number": "Second phone number", - "app_phonebook_new_contact_email": "Email", - "app_phonebook_new_contact_address": "Address", - "app_phonebook_new_contact_note": "Note", - "app_phonebook_new_speed_dial_key": "Speed dial key", - "app_phonebook_new_contact_invalid_number": "Cannot save this contact.

The phone number you entered

is in an invalid format.
", - "app_phonebook_new_add_to_fav": "Add to favorites", - "app_phonebook_new_add_to_ice": "Emergency Contact (ICE)", - "app_phonebook_check": "CHECK", - "app_phonebook_uncheck": "UNCHECK", - "app_phonebook_multiple_numbers_first": "Number", - "app_phonebook_multiple_numbers_second": "Second number", - "app_phonebook_contact_deleted": "Contact has been deleted.

Editing is not possible.
", - "app_meditation_title_main": "Meditation timer", - "app_meditation_preparation_time": "Preparation time", - "app_meditation_put_down_phone_and_wait": "Put down the phone
and wait for the gong.
", - "app_meditation_thank_you_for_session": "Thank you for this
meditation session.
", - "app_meditation_option_show_counter": "Show meditation counter", - "app_meditation_interval_chime": "Interval chime", - "app_meditation_interval_none": "None", - "app_meditation_interval_every_x_minutes": "Every %0 minutes", - "app_meditation_minute": "MINUTE", - "app_meditation_minutes": "MINUTES", - "app_music_player_all_songs": "All songs", - "app_music_player_artists": "Artists", - "app_music_player_albums": "Albums", - "app_music_player_playlists": "Playlists", - "app_music_player_uknown_title": "Unknown Title", - "app_music_player_uknown_artist": "Unknown Artist", - "app_music_player_music_library_window_name": "Music Library", - "app_music_player_music_library": "MUSIC LIBRARY", - "app_music_player_quit": "QUIT", - "app_music_player_empty_track_notification": "Please choose a song from library", - "app_music_player_start_window_notification": "Press down arrow to choose

a song from the library
", - "app_music_player_music_empty_window_notification": "No songs yet", - "app_special_input_window": "Special characters", - "app_emoji_input_window": "Emoji", - "sms_add_rec_num": "Add contact or type a number", - "sms_title_message": "New message", - "sms_call_text": "Call ", - "sms_resend_failed": "Send again", - "sms_delete_conversation": "Delete conversation", - "sms_forward_message": "Forward message", - "sms_copy": "Copy", - "sms_delete_message": "Delete message", - "sms_use_template": "Use template", - "sms_paste": "Paste", - "sms_mark_read": "Mark as read", - "sms_mark_unread": "Mark as unread", - "app_desktop_update": "Update", - "app_desktop_update_to": "Update to", - "app_desktop_update_apply": "Do you want to apply this update?", - "app_desktop_update_current": "Current", - "app_desktop_update_start": "Update start", - "app_desktop_update_size": "size", - "app_desktop_update_bytes": "bytes", - "app_desktop_update_unpacking": "Unpacking", - "app_desktop_update_preparing": "Preparing MuditaOS update ver.", - "app_desktop_update_muditaos": "MuditaOS update", - "app_desktop_update_in_progress": "Update in progress...", - "app_desktop_update_ready_for_reset": "Ready for reset...", - "app_desktop_update_success": "MuditaOS has been updated to ver. $VERSION succesfully.", - "app_call_private_number": "Private number", - "app_call_ending_call": "Disconnecting call", - "statusbar_tethering": "TETHERING", - "tethering": "Tethering", - "tethering_turn_off_question": "Turn tethering off?", - "tethering_enable_question": "You're connected to the computer.
Turn tethering on?
(some functions may be disabled)
", - "tethering_phone_mode_change_prohibited": "Tethering is on.

Other modes (Connected, DND,
Offline) are overriden by this mode
and are not working.
", - "tethering_menu_access_decline": "Tethering is on.

To access menu,
turn tethering off.
", - "bluetooth_popup": "Bluetooth", - "bluetooth_popup_pin": "Enter PIN:", - "bluetooth_popup_passkey": "Enter passkey:", - "bluetooth_popup_pair_cancel_code": "Device $DEVICE would like to pair
with your Pure. Please confirm
the code: $CODE
", - "bluetooth_popup_pair_cancel_no_code": "Device $DEVICE would like to pair with your Pure.", - "bluetooth_popup_confirm": "Confirm", - "bluetooth_popup_cancel": "Cancel", - "bluetooth_info_popup_success": "Your phone is paired with:

$DEVICE", - "bluetooth_info_popup_error": "Pairing process with $DEVICE

has failed. Error code: $ERROR", - "app_bell_settings_time_units_time_fmt_top_message": "Time format", - "app_bell_settings_time_units_time_message": "Time", - "app_bellmain_alarm": "Alarm", - "app_bellmain_bedtime": "Bedtime", - "app_bell_bedtime_notification": "It is your bedtime", - "app_bellmain_power_nap": "Power nap", - "app_bellmain_meditation_timer": "Meditation", - "app_bellmain_relaxation": "Relaxation", - "app_bellmain_settings": "Settings", - "app_bellmain_main_window_title": "Mudita Harmony", - "app_bell_meditation_timer": "Meditation", - "app_bell_meditation_settings": "Settings", - "app_bell_meditation_start": "Meditate now", - "app_bell_meditation_statistics": "Statistics", - "app_bell_meditation_chime_volume": "Chime volume", - "app_bell_meditation_chime_interval": "Chime interval", - "app_bell_meditation_chime_interval_bottom": "of the meditation", - "app_bell_meditation_start_delay": "Start delay", - "app_bell_meditation_progress": "Meditation timer", - "app_bell_meditation_interval_none": "None", - "app_bell_meditation_put_down_and_wait": "Put down Mudita Harmony
and wait for the gong
", - "app_bell_meditation_thank_you_for_session": "Thank you for
the session
", - "app_bell_onboarding_info_rotate": "Rotate to select", - "app_bell_onboarding_info_light_click": "Light click to continue", - "app_bell_onboarding_info_deep_click_warning": "You've deep pressed", - "app_bell_onboarding_info_deep_click_correction": "Be more gentle,
try light click this time
", - "app_bell_onboarding_welcome": "Welcome", - "app_bell_onboarding_shortcuts_question": "Do you want to see Shortcuts instruction?", - "app_bell_onboarding_shortcuts_start": "Start", - "app_bell_onboarding_shortcuts_skip": "Skip", - "app_bell_onboarding_shortcuts_step_rotate": "Rotate to select", - "app_bell_onboarding_shortcuts_step_light_click": "Light click to accept and move forward", - "app_bell_onboarding_shortcuts_step_deep_press": "Deep press to activate or deactivate the alarm", - "app_bell_onboarding_shortcuts_step_home": "Long press back (2s) to return to the home view", - "app_bell_onboarding_shortcuts_step_battery": "Long press back (2s) on the home view to see battery status", - "app_bell_onboarding_shortcuts_step_turn_off": "Press back for 10s to turn off the device", - "app_bell_onboarding_shortcuts_step_restart": "Press both side buttons for 10s to restart the device", - "app_bell_onboarding_shortcuts_step_bedside_lamp": "Long press frontlight (2s) to turn on a bedside lamp", - "app_bell_settings_advanced": "Advanced", - "app_bell_settings_time_units": "Time", - "app_bell_settings_temp_scale": "Temperature scale", - "app_bell_settings_language": "Language", - "app_bell_settings_layout": "Clock face", - "app_bell_settings_about": "About", - "app_bell_settings_about_product": "Mudita Harmony", - "app_bell_settings_about_version": "OS version: $VERSION", - "app_bell_settings_about_storage_title": "Storage", - "app_bell_settings_about_storage_text": "$USED_MEMORYMB of $TOTAL_MEMORYMB used", - "app_bell_settings_about_info_title": "Manual & certification info", - "app_bell_settings_about_info_text": "www.mudita.com", - "app_bell_settings_alarm_settings": "Alarm", - "app_bell_settings_alarm_settings_title": "Alarm settings", - "app_bell_settings_alarm_settings_tone": "Main alarm tone", - "app_bell_settings_alarm_settings_volume": "Main alarm volume", - "app_bell_settings_alarm_settings_light": "Main alarm light", - "app_bell_settings_alarm_settings_prewake_up": "Pre-wake up", - "app_bell_settings_alarm_settings_prewake_up_chime_top_description": "Pre-wake up chime", - "app_bell_settings_alarm_settings_prewake_up_chime_bottom_description": "before the alarm", - "app_bell_settings_alarm_settings_prewake_up_chime_tone": "Pre-wake up chime tone", - "app_bell_settings_alarm_settings_prewake_up_chime_volume": "Pre-wake up chime volume", - "app_bell_settings_alarm_settings_prewake_up_light_top_description": "Pre-wake up light", - "app_bell_settings_alarm_settings_prewake_up_light_bottom_description": "before the alarm", - "app_bell_settings_alarm_settings_alarm_tone_and_light": "Main alarm", - "app_bell_settings_bedtime_tone": "Bedtime tone", - "app_bell_settings_bedtime_settings_tone": "Bedtime tone", - "app_bell_settings_bedtime_settings_volume": "Bedtime tone
volume
", - "app_bell_settings_home_view": "Home view", - "app_bell_settings_turn_off": "Turn off", - "app_bell_settings_alarm_settings_snooze": "Snooze", - "app_bell_settings_alarm_settings_snooze_length": "Snooze length", - "app_bell_settings_alarm_settings_snooze_chime_interval": "Snooze chime interval", - "app_bell_settings_alarm_settings_snooze_chime_interval_bot_desc": "recurring during
snooze
", - "app_bell_settings_alarm_settings_snooze_chime_tone": "Snooze chime tone", - "app_bell_settings_alarm_settings_snooze_chime_volume": "Snooze chime volume", - "app_bellmain_home_screen_bottom_desc": "Next alarm will ring", - "app_bellmain_home_screen_bottom_desc_in": "in", - "app_bellmain_home_screen_bottom_desc_and": "&", - "app_bellmain_home_screen_bottom_desc_less_than": "less than", - "app_bellmain_home_screen_bottom_desc_dp": "Deep press to activate", - "app_bell_alarm_deactivated": "Alarm deactivated", - "app_bell_alarm_set_not_active": "Alarm set.
Deep press to activate.
", - "app_bell_settings_frontlight": "Frontlight", - "app_bell_settings_frontlight_top_message": "Frontlight intensity", - "app_bell_settings_frontlight_mode_top_message": "Frontlight mode", - "app_bell_settings_frontlight_mode_auto": "auto", - "app_bell_settings_frontlight_mode_on_demand": "on demand", - "app_bell_relaxation_timer_title": "Relaxation time", - "app_bell_relaxation_once": "once", - "app_bell_relaxation_once_description": "the song will play one time", - "app_bell_relaxation_loop": "loop", - "app_bell_relaxation_looped": "looped", - "app_bell_relaxation_loop_description": "the song will play until you turn it off", - "app_bell_relaxation_error_message": "Unsupported media type", - "app_bell_turn_off_question": "Turn off Mudita Harmony?", - "app_bell_goodbye": "Goodbye", - "app_bell_reset_message": "Resetting Mudita
Harmony
", - "app_bell_welcome_message": "Mudita Harmony
is switched OFF
", - "app_bell_welcome_charge_message": "Charge Harmony
and press light click
", - "app_bell_greeting_msg": [ - "Good Morning!
It's a Beautiful Day!
", - "Rise and shine!
Seize the day
", - "Greetings & Salutations!
It's Wake-up time!
", - "Morning!
Enjoy the day!
", - "Good day to you!
Today is a new day.
", - "It's a Beautiful Day
Time to rise & shine
", - "It's a Brand New Day!
Make the most of it!
", - "Hello!
Have an AMAZING DAY
", - "Bonjour!
Let the day begin!
", - "What a lovely day!
Don't stay in bed!
", - "Hello Sunshine!
Go brighten the world!
", - "Morning Greetings!
Go forth with a smile
", - "Good Morning!
It's time to get up!
", - "Buenos Dias!
Rise & shine all day!
", - "Dzien Dobry!
Make it a GREAT day!
", - "Howdy!
Time to take charge!
", - "Salutations!
Salute the day!
", - "Cześć
Welcome to TODAY!
", - "Ciao!
Let's do something amazing!
", - "Morning is here!
A new day has arrived!
", - "Time to get up!
All we have is NOW!
", - "Hallå!
Life is better with Fika!
", - "Namaste!
Make it a GREAT day!
", - "Ahoy!
It's time to set sail
", - "What's happening!
How did you sleep?
", - "G'day!
Take on the day!
", - "How's it going?
Did you sleep well?
", - "Hej!
It's a spectacular day!
", - "Buon giorno!
Everyday is a miracle!
", - "Hello Sunshine!
Make your day sparkle!
", - "Cheers to the day!
The future starts NOW!
", - "Wakey Wakey!
The morning awaits!
", - "Hejsan!
Have a wonderful day!
" - ], - "app_bell_settings_factory_reset": "Factory reset", - "app_bell_settings_display_factory_reset_confirmation": "Reset to factory

settings ?
", - "app_meditation_summary": "You've meditated for
", - "app_meditation_countdown_desc": "Starts in", - "app_meditation_summary_total": "Total:
$VALUE
", - "app_meditation_summary_average": "Average/day:", - "app_meditation_summary_title": "Last $VALUE days" + "app_alarm_clock_custom_repeat_title": "Custom repeat", + "app_alarm_clock_delete_confirmation": "Delete this alarm?", + "app_alarm_clock_edit_alarm_title": "Edit alarm", + "app_alarm_clock_new_alarm_title": "New alarm", + "app_alarm_clock_no_alarms_information": "No alarms yet.

Press left arrow to add new.

", + "app_alarm_clock_no_snooze": "None", + "app_alarm_clock_options_delete": "Delete", + "app_alarm_clock_options_edit": "Edit", + "app_alarm_clock_options_turn_off_all_alarms": "Turn off all alarms", + "app_alarm_clock_repeat": "Repeat", + "app_alarm_clock_repeat_custom": "Custom", + "app_alarm_clock_repeat_everyday": "Everyday", + "app_alarm_clock_repeat_never": "Never", + "app_alarm_clock_repeat_week_days": "Weekdays", + "app_alarm_clock_snooze": "Snooze", + "app_alarm_clock_snooze_10_min": "10 min", + "app_alarm_clock_snooze_15_min": "15 min", + "app_alarm_clock_snooze_30_min": "30 min", + "app_alarm_clock_snooze_5_min": "5 min", + "app_alarm_clock_sound": "Sound", + "app_alarm_clock_title_main": "Alarm clock", + "app_bell_alarm_deactivated": "Alarm deactivated", + "app_bell_alarm_set_not_active": "Alarm set.
Deep press to activate.
", + "app_bell_bedtime_notification": "It is your bedtime", + "app_bell_goodbye": "Goodbye", + "app_bell_greeting_msg": [ + "Good Morning!
It's a Beautiful Day!
", + "Rise and shine!
Seize the day
", + "Greetings & Salutations!
It's Wake-up time!
", + "Morning!
Enjoy the day!
", + "Good day to you!
Today is a new day.
", + "It's a Beautiful Day
Time to rise & shine
", + "It's a Brand New Day!
Make the most of it!
", + "Hello!
Have an AMAZING DAY
", + "Bonjour!
Let the day begin!
", + "What a lovely day!
Don't stay in bed!
", + "Hello Sunshine!
Go brighten the world!
", + "Morning Greetings!
Go forth with a smile
", + "Good Morning!
It's time to get up!
", + "Buenos Dias!
Rise & shine all day!
", + "Dzien Dobry!
Make it a GREAT day!
", + "Howdy!
Time to take charge!
", + "Salutations!
Salute the day!
", + "Cze\u015b\u0107
Welcome to TODAY!
", + "Ciao!
Let's do something amazing!
", + "Morning is here!
A new day has arrived!
", + "Time to get up!
All we have is NOW!
", + "Hall\u00e5!
Life is better with Fika!
", + "Namaste!
Make it a GREAT day!
", + "Ahoy!
It's time to set sail
", + "What's happening!
How did you sleep?
", + "G'day!
Take on the day!
", + "How's it going?
Did you sleep well?
", + "Hej!
It's a spectacular day!
", + "Buon giorno!
Everyday is a miracle!
", + "Hello Sunshine!
Make your day sparkle!
", + "Cheers to the day!
The future starts NOW!
", + "Wakey Wakey!
The morning awaits!
", + "Hejsan!
Have a wonderful day!
" + ], + "app_bell_meditation_chime_interval": "Chime interval", + "app_bell_meditation_chime_interval_bottom": "of the meditation", + "app_bell_meditation_chime_volume": "Chime volume", + "app_bell_meditation_interval_none": "None", + "app_bell_meditation_settings": "Settings", + "app_bell_meditation_start": "Meditate now", + "app_bell_meditation_start_delay": "Start delay", + "app_bell_meditation_statistics": "Statistics", + "app_bell_meditation_timer": "Meditation", + "app_bell_onboarding_info_deep_click_correction": "Be more gentle,
try light click this time
", + "app_bell_onboarding_info_deep_click_warning": "You've deep pressed", + "app_bell_onboarding_info_light_click": "Light click to continue", + "app_bell_onboarding_info_rotate": "Rotate to select", + "app_bell_onboarding_shortcuts_question": "Do you want to see Shortcuts instruction?", + "app_bell_onboarding_shortcuts_skip": "Skip", + "app_bell_onboarding_shortcuts_start": "Start", + "app_bell_onboarding_shortcuts_step_battery": "Long press back (2s) on the home view to see battery status", + "app_bell_onboarding_shortcuts_step_bedside_lamp": "Long press frontlight (2s) to turn on a bedside lamp", + "app_bell_onboarding_shortcuts_step_deep_press": "Deep press to activate or deactivate the alarm", + "app_bell_onboarding_shortcuts_step_home": "Long press back (2s) to return to the home view", + "app_bell_onboarding_shortcuts_step_light_click": "Light click to accept and move forward", + "app_bell_onboarding_shortcuts_step_restart": "Press both side buttons for 10s to restart the device", + "app_bell_onboarding_shortcuts_step_rotate": "Rotate to select", + "app_bell_onboarding_shortcuts_step_turn_off": "Press back for 10s to turn off the device", + "app_bell_relaxation_error_message": "Unsupported media type", + "app_bell_relaxation_limit_error_message": "File limit exceeded.
Not all files may be displayed
correctly
", + "app_bell_relaxation_file_deleted_message": "The file has been deleted.", + "app_bell_relaxation_loop": "loop", + "app_bell_relaxation_loop_description": "the song will play until you turn it off", + "app_bell_relaxation_looped": "looped", + "app_bell_relaxation_once": "once", + "app_bell_relaxation_once_description": "the song will play one time", + "app_bell_relaxation_timer_title": "Relaxation time", + "app_bell_reset_message": "Resetting Mudita
Harmony
", + "app_bell_settings_about": "About", + "app_bell_settings_about_info_text": "www.mudita.com", + "app_bell_settings_about_info_title": "Manual & certification info", + "app_bell_settings_about_product": "Mudita Harmony", + "app_bell_settings_about_storage_text": "$USED_MEMORYMB of $TOTAL_MEMORYMB used", + "app_bell_settings_about_storage_title": "Storage", + "app_bell_settings_about_version": "OS version: $VERSION", + "app_bell_settings_alarm_settings": "Alarm", + "app_bell_settings_alarm_settings_alarm_tone_and_light": "Main alarm", + "app_bell_settings_alarm_settings_light": "Main alarm light", + "app_bell_settings_alarm_settings_prewake_up": "Pre-wake up", + "app_bell_settings_alarm_settings_prewake_up_chime_bottom_description": "before the alarm", + "app_bell_settings_alarm_settings_prewake_up_chime_tone": "Pre-wake up chime tone", + "app_bell_settings_alarm_settings_prewake_up_chime_top_description": "Pre-wake up chime", + "app_bell_settings_alarm_settings_prewake_up_chime_volume": "Pre-wake up chime volume", + "app_bell_settings_alarm_settings_prewake_up_light_bottom_description": "before the alarm", + "app_bell_settings_alarm_settings_prewake_up_light_top_description": "Pre-wake up light", + "app_bell_settings_alarm_settings_snooze": "Snooze", + "app_bell_settings_alarm_settings_snooze_chime_interval": "Snooze chime interval", + "app_bell_settings_alarm_settings_snooze_chime_interval_bot_desc": "recurring during
snooze
", + "app_bell_settings_alarm_settings_snooze_chime_tone": "Snooze chime tone", + "app_bell_settings_alarm_settings_snooze_chime_volume": "Snooze chime volume", + "app_bell_settings_alarm_settings_snooze_length": "Snooze length", + "app_bell_settings_alarm_settings_title": "Alarm settings", + "app_bell_settings_alarm_settings_tone": "Main alarm tone", + "app_bell_settings_alarm_settings_volume": "Main alarm volume", + "app_bell_settings_bedtime_settings_tone": "Bedtime tone", + "app_bell_settings_bedtime_settings_volume": "Bedtime tone
volume
", + "app_bell_settings_bedtime_tone": "Bedtime tone", + "app_bell_settings_display_factory_reset_confirmation": "Reset to factory

settings ?
", + "app_bell_settings_factory_reset": "Factory reset", + "app_bell_settings_frontlight": "Frontlight", + "app_bell_settings_frontlight_mode_auto": "auto", + "app_bell_settings_frontlight_mode_on_demand": "on demand", + "app_bell_settings_frontlight_mode_top_message": "Frontlight mode", + "app_bell_settings_frontlight_top_message": "Frontlight intensity", + "app_bell_settings_language": "Language", + "app_bell_settings_layout": "Clock face", + "app_bell_settings_temp_scale": "Temperature scale", + "app_bell_settings_time_units": "Time", + "app_bell_settings_time_units_time_fmt_top_message": "Time format", + "app_bell_settings_time_units_time_message": "Time", + "app_bell_settings_turn_off": "Turn off", + "app_bell_turn_off_question": "Turn off Mudita Harmony?", + "app_bell_welcome_charge_message": "Charge Harmony
and press light click
", + "app_bell_welcome_message": "Mudita Harmony
is switched OFF
", + "app_bellmain_alarm": "Alarm", + "app_bellmain_bedtime": "Bedtime", + "app_bellmain_home_screen_bottom_desc": "Next alarm will ring", + "app_bellmain_home_screen_bottom_desc_and": "&", + "app_bellmain_home_screen_bottom_desc_dp": "Deep press to activate", + "app_bellmain_home_screen_bottom_desc_in": "in", + "app_bellmain_home_screen_bottom_desc_less_than": "less than", + "app_bellmain_meditation_timer": "Meditation", + "app_bellmain_power_nap": "Power nap", + "app_bellmain_relaxation": "Relaxation", + "app_bellmain_settings": "Settings", + "app_bellmain_usb_status_connected": "Connected", + "app_calculator_decimal_separator": ".", + "app_calculator_equals": "EQUALS", + "app_calculator_error": "Error", + "app_calculator_title_main": "Calculator", + "app_calendar_all_day": "All day", + "app_calendar_title_main": "Calendar", + "app_call_answer": "ANSWER", + "app_call_bluetooth": "BLUETOOTH", + "app_call_call": "CALL", + "app_call_call_ended": "call ended", + "app_call_call_rejected": "call rejected", + "app_call_call_request_failed": "Something went wrong.", + "app_call_calling": "calling...", + "app_call_clear": "CLEAR", + "app_call_contact": "CONTACT", + "app_call_emergency": "Emergency call", + "app_call_emergency_text": "Emergency call", + "app_call_end_call": "END CALL", + "app_call_ending_call": "Disconnecting call", + "app_call_is_calling": "is calling", + "app_call_message": "MESSAGE", + "app_call_mute": "MUTE", + "app_call_muted": "MUTED", + "app_call_no_network_connection": "No Network Connection.", + "app_call_no_sim": "No SIM.\n\nTo make a call,\nplease insert a SIM card.", + "app_call_offline": "You're Offline.\n\nTo make a call,\n switch the mode.", + "app_call_private_number": "Private number", + "app_call_reject": "REJECT", + "app_call_speaker": "SPEAKER", + "app_call_speaker_on": "SPEAKER ON", + "app_call_wrong_emergency": "Can't make a call.\n$NUMBER is not an emergency number.", + "app_calllog_date": "Date", + "app_calllog_delete_all_calls": "Delete all calls", + "app_calllog_delete_all_calls_confirmation": "Delete all calls from the list?", + "app_calllog_delete_call_confirmation": "Delete this call from the list?", + "app_calllog_duration": "Duration", + "app_calllog_empty_incoming": "Incoming", + "app_calllog_empty_missed": "Missed", + "app_calllog_empty_outgoing": "Outgoing", + "app_calllog_incoming_call": "Incoming call", + "app_calllog_missed_call": "Missed call", + "app_calllog_no_calls": "No calls yet.", + "app_calllog_options_delete_call": "Delete call", + "app_calllog_outgoing_call": "Outgoing call", + "app_calllog_rejected_call": "Rejected call", + "app_calllog_title_main": "Calls", + "app_calllog_type": "Call", + "app_desktop_alarm_snooze": "Snooze", + "app_desktop_calls": "CALLS", + "app_desktop_clear": "CLEAR", + "app_desktop_clear_all": "CLEAR ALL", + "app_desktop_emergency": "SOS", + "app_desktop_info": "Info", + "app_desktop_info_mmi_call_barring": "Call barring", + "app_desktop_info_mmi_call_barring_activated": "Call barring was activated", + "app_desktop_info_mmi_call_barring_deactivated": "Call barring was deactivated", + "app_desktop_info_mmi_call_forwarding": "Call forwarding", + "app_desktop_info_mmi_call_forwarding_disabled": "call forwarding disabled", + "app_desktop_info_mmi_call_waiting": "Call waiting", + "app_desktop_info_mmi_call_waiting_activated": "Call waiting was activated", + "app_desktop_info_mmi_call_waiting_deactivated": "Call waiting was deactivated", + "app_desktop_info_mmi_clip": "Caller ID displayed (CLIP)", + "app_desktop_info_mmi_clip_activated": "CLIP activated", + "app_desktop_info_mmi_clip_deactivated": "CLIP deactivated", + "app_desktop_info_mmi_clip_not_provisioned": "CLIP not provisioned", + "app_desktop_info_mmi_clip_provisioned": "CLIP provisioned", + "app_desktop_info_mmi_clip_unknown": "CLIP unknown", + "app_desktop_info_mmi_clir": "Caller ID suppressed (CLIR)", + "app_desktop_info_mmi_clir_according_to_subscription": "CLIR according to subscription", + "app_desktop_info_mmi_clir_disabled": "CLIR diasbled", + "app_desktop_info_mmi_clir_enabled": "CLIR enabled", + "app_desktop_info_mmi_clir_not_provisioned": "CLIR not provisioned", + "app_desktop_info_mmi_clir_permanent_provisioned": "CLIR permanently provisioned", + "app_desktop_info_mmi_clir_temporary_allowed": "CLIR temporarily allowed", + "app_desktop_info_mmi_clir_temporary_restricted": "CLIR temporarily restricted", + "app_desktop_info_mmi_clir_unknown": "CLIR unknown", + "app_desktop_info_mmi_common_activated": "service was activated", + "app_desktop_info_mmi_common_all_disabled": "all bearer services disabled", + "app_desktop_info_mmi_common_async": "async", + "app_desktop_info_mmi_common_data": "data", + "app_desktop_info_mmi_common_deactivated": "service was deactivated", + "app_desktop_info_mmi_common_disabled": "disabled", + "app_desktop_info_mmi_common_enabled": "enabled", + "app_desktop_info_mmi_common_failed": "failed", + "app_desktop_info_mmi_common_fax": "FAX", + "app_desktop_info_mmi_common_mmi_not_supported": "not supported", + "app_desktop_info_mmi_common_no_message": "not", + "app_desktop_info_mmi_common_query": "query", + "app_desktop_info_mmi_common_sync": "sync", + "app_desktop_info_mmi_common_voice": "voice", + "app_desktop_info_mmi_confirmation": "Please wait...

Processing USSD code.
", + "app_desktop_info_mmi_disabling_failed": "Service disabling failed", + "app_desktop_info_mmi_disabling_success": "Service has been disabled", + "app_desktop_info_mmi_enabling_failed": "Service enabling failed", + "app_desktop_info_mmi_enabling_success": "Service has been enabled", + "app_desktop_info_mmi_erasure_failed": "Erasure failed", + "app_desktop_info_mmi_erasure_success": "Erasure was successful", + "app_desktop_info_mmi_imei": "IMEI (MEID)", + "app_desktop_info_mmi_none_specified_failed": "Operation failed", + "app_desktop_info_mmi_none_specified_success": "Operation successful", + "app_desktop_info_mmi_registration_failed": "Registration failed", + "app_desktop_info_mmi_registration_success": "Registration was successful", + "app_desktop_info_mmi_result_failed": "Failed", + "app_desktop_info_mmi_result_success": "Success", + "app_desktop_menu": "MENU", + "app_desktop_menu_alarm": "ALARM", + "app_desktop_menu_calendar": "CALENDAR", + "app_desktop_menu_contacts": "CONTACTS", + "app_desktop_menu_meditation": "MEDITATION", + "app_desktop_menu_messages": "MESSAGES", + "app_desktop_menu_music": "MUSIC", + "app_desktop_menu_phone": "CALLS", + "app_desktop_menu_settings": "SETTINGS", + "app_desktop_menu_title": "Menu", + "app_desktop_menu_tools": "TOOLS", + "app_desktop_missed_calls": "Missed calls", + "app_desktop_poweroff_question": "Turn off the phone?", + "app_desktop_poweroff_title": "Turn off", + "app_desktop_press_to_complete_unlock": "Press # to unlock", + "app_desktop_press_to_unlock": "Press Unlock and then #", + "app_desktop_replay": "REPLY", + "app_desktop_show": "SHOW", + "app_desktop_tools_antenna": "ANTENNA TEST", + "app_desktop_tools_calculator": "CALCULATOR", + "app_desktop_tools_notes": "NOTES", + "app_desktop_tools_title": "Tools", + "app_desktop_unlock": "UNLOCK", + "app_desktop_unread_messages": "Unread messages", + "app_desktop_unread_single_message": "Unread message", + "app_emoji_input_window": "Emoji", + "app_meditation_countdown_desc": "Starts in", + "app_meditation_interval_chime": "Interval chime", + "app_meditation_interval_every_x_minutes": "Every %0 minutes", + "app_meditation_interval_none": "None", + "app_meditation_minute": "MINUTE", + "app_meditation_minutes": "MINUTES", + "app_meditation_option_show_counter": "Show meditation counter", + "app_meditation_preparation_time": "Preparation time", + "app_meditation_put_down_phone_and_wait": "Put down the phone
and wait for the gong.
", + "app_meditation_summary": "You've meditated for
", + "app_meditation_summary_average": "Average/day:", + "app_meditation_summary_title": "Last $VALUE days", + "app_meditation_summary_total": "Total:
$VALUE
", + "app_meditation_thank_you_for_session": "Thank you for this
meditation session.
", + "app_meditation_title_main": "Meditation timer", + "app_messages_message": "Message", + "app_messages_message_delete_confirmation": "Delete this message?", + "app_messages_no_messages": "No messages yet.

Press left arrow to add new.

", + "app_messages_no_sim": "No SIM.\n\nTo send a SMS,\nplease insert a SIM card.", + "app_messages_no_templates": "No templates yet.

Create a new template in Mudita

Center to use in your Pure.

", + "app_messages_templates": "Templates", + "app_messages_thread_delete_confirmation": "Delete this conversation?", + "app_messages_thread_draft": "Draft: ", + "app_messages_thread_no_result": "There are no results", + "app_messages_thread_not_sent": "Not sent: ", + "app_messages_thread_you": "You: ", + "app_messages_title_main": "Messages", + "app_music_player_albums": "Albums", + "app_music_player_all_songs": "All songs", + "app_music_player_artists": "Artists", + "app_music_player_empty_track_notification": "Please choose a song from library", + "app_music_player_music_empty_window_notification": "No songs yet", + "app_music_player_music_library": "MUSIC LIBRARY", + "app_music_player_music_library_window_name": "Music Library", + "app_music_player_playlists": "Playlists", + "app_music_player_quit": "QUIT", + "app_music_player_start_window_notification": "Press down arrow to choose

a song from the library
", + "app_music_player_uknown_artist": "Unknown Artist", + "app_music_player_uknown_title": "Unknown Title", + "app_notes_delete_note": "Delete", + "app_notes_edit": "EDIT", + "app_notes_edit_note": "Edit note", + "app_notes_edited": "Edited", + "app_notes_new_note": "New note", + "app_notes_no_notes": "No notes yet.

Press left arrow to add new.

", + "app_notes_note_delete_confirmation": "Do you really want to delete this note?", + "app_notes_search_no_results": "No notes found.", + "app_notes_title_main": "Notes", + "app_onboarding_configuration_successful": "Your Mudita Pure

is ready to use.
", + "app_onboarding_eula_license": "License agreement (EULA)", + "app_onboarding_no_configuration": "Your Mudita Pure has not been

configured. You can go to

Settings to set it up.
", + "app_onboarding_no_sim_selected_description": "No SIM card set up.

To connect to network, set up

SIM cards in Settings.
>", + "app_onboarding_no_sim_selected_title": "SIM setup", + "app_onboarding_select_sim": "Choose active SIM", + "app_onboarding_select_sim_description": "Only one SIM can be active at a time.

You can choose it now and switch in

the Settings whenever needed.
", + "app_onboarding_skip_confirm": "SIM setup is required for network connection. Skip the setup anyway? ", + "app_onboarding_start_configuration": "

Hello!



Let's configure your Mudita Pure.", + "app_onboarding_title": "Onboarding", + "app_onboarding_title_configuration": "Configuration", + "app_onboarding_title_update_info": "MuditaOS update", + "app_onboarding_update_info": "The current version of MuditaOS is

$VERSION

Updates with new features and fixes appear often.

To update your Phone please

visit:
www.mudita.com/updateos

and follow the instructions.", + "app_options_contact_add": "Add to contacts", + "app_options_contact_details": "Contact details", + "app_options_contact_edit": "Edit Contact", + "app_options_invalid_option": " ", + "app_phonebook_check": "CHECK", + "app_phonebook_contact_deleted": "Contact has been deleted.

Editing is not possible.
", + "app_phonebook_contact_flag_blocked": "BLOCKED", + "app_phonebook_contact_flag_fav": "FAVORITES", + "app_phonebook_contact_flag_ice": "ICE", + "app_phonebook_contact_flag_speed_dial": "SPEED DIAL", + "app_phonebook_contact_information": "Information", + "app_phonebook_contact_no_name": "no name", + "app_phonebook_contact_title": "Add contact", + "app_phonebook_duplicate_numbers": "This number is assigned to \n $CONTACT_FORMATTED_NAME$. Replace it?", + "app_phonebook_duplicate_speed_dial": "Number $CONTACT_SPEED_DIAL$ is assigned to \n $CONTACT_FORMATTED_NAME$. Replace it?", + "app_phonebook_duplicate_speed_dial_title": "Speed dial key ($CONTACT_SPEED_DIAL$)", + "app_phonebook_favorite_contacts_title": "Favorites", + "app_phonebook_ice_contacts_title": "Emergency Contacts", + "app_phonebook_multiple_numbers_first": "Number", + "app_phonebook_multiple_numbers_second": "Second number", + "app_phonebook_new_add_to_fav": "Add to favorites", + "app_phonebook_new_add_to_ice": "Emergency Contact (ICE)", + "app_phonebook_new_contact_address": "Address", + "app_phonebook_new_contact_email": "Email", + "app_phonebook_new_contact_first_name": "First name", + "app_phonebook_new_contact_invalid_number": "Cannot save this contact.

The phone number you entered

is in an invalid format.
", + "app_phonebook_new_contact_last_name": "Last name", + "app_phonebook_new_contact_note": "Note", + "app_phonebook_new_contact_number": "Phone number", + "app_phonebook_new_contact_second_number": "Second phone number", + "app_phonebook_new_speed_dial_key": "Speed dial key", + "app_phonebook_no_contacts": "No contacts yet.

Press left arrow to add new.

", + "app_phonebook_no_contacts_yet": "No contacts yet.", + "app_phonebook_options_block": "Block", + "app_phonebook_options_block_notification": "Contact blocked.", + "app_phonebook_options_delete": "Delete", + "app_phonebook_options_delete_confirm": "Do you really want to delete\nthis contact?", + "app_phonebook_options_delete_notification": "This contact has been deleted\nsuccessfully.", + "app_phonebook_options_edit": "Edit contact", + "app_phonebook_options_forward_namecard": "Forward namecard", + "app_phonebook_options_send_sms": "Send via SMS", + "app_phonebook_options_unblock": "Unblock", + "app_phonebook_options_unblock_notification": "Contact unblocked.", + "app_phonebook_search_no_results": "No contacts found.", + "app_phonebook_title_main": "Contacts", + "app_phonebook_uncheck": "UNCHECK", + "app_popup_alarm_snoozed_till": "snoozed till", + "app_popup_alarm_text": "alarm", + "app_popup_bt_volume_text": "BLUETOOTH VOLUME", + "app_popup_call_volume_text": "CALL VOLUME", + "app_popup_music_volume_text": "MUSIC VOLUME", + "app_popup_muted_text": "MUTED", + "app_popup_snooze_text": "SNOOZE", + "app_popup_volume_text": "VOLUME", + "app_settings_Templates": "Templates", + "app_settings_about": "About Mudita Pure", + "app_settings_about_your_pure": "About your Pure", + "app_settings_advanced": "Advanced", + "app_settings_allow": "Allow", + "app_settings_apn_APN": "APN", + "app_settings_apn_apnprotocol": "APN protocol", + "app_settings_apn_apntype": "APN type", + "app_settings_apn_authtype": "Authentication type", + "app_settings_apn_name": "Name", + "app_settings_apn_options_delete": "Delete", + "app_settings_apn_options_edit": "Edit", + "app_settings_apn_options_set_as_default": "Set as default", + "app_settings_apn_password": "Password", + "app_settings_apn_settings_no_apns": "No APNs yet.

Press left arrow to add new.

", + "app_settings_apn_username": "Username", + "app_settings_apps": "Apps", + "app_settings_apps_alarm_clock": "Alarm clock", + "app_settings_apps_alarm_clock_manual_volume": "Manual sound volume", + "app_settings_apps_messages": "Messages", + "app_settings_apps_phone": "Phone", + "app_settings_bluetooth_add_device": "Add device", + "app_settings_bluetooth_all_devices": "All devices", + "app_settings_bluetooth_connecting_error_message": "Connection process has failed.

Check the device and
TRY AGAIN.", + "app_settings_bluetooth_init_error_message": "Bluetooth initialization process has failed.", + "app_settings_bluetooth_main": "Bluetooth", + "app_settings_bluetooth_phone_name": "Phone name", + "app_settings_bluetooth_phone_visibility": "Phone visibility", + "app_settings_bluetooth_searching_devices": "Searching devices... \nIt may take a moment.", + "app_settings_bluetooth_unpairing_error_message": "Unpairing process has failed.

Check the device and
TRY AGAIN.", + "app_settings_bt": "Bluetooth", + "app_settings_call_ringtome": "Call ringtone", + "app_settings_calls_from_favorites": "Calls from favorites", + "app_settings_certification": "Certification", + "app_settings_connected": "Connected", + "app_settings_date_and_time": "Date and time", + "app_settings_date_and_time_automatic_date_and_time": "Automatic date and time", + "app_settings_date_and_time_change_date_and_time": "Change date and time", + "app_settings_date_and_time_change_time_zone": "Change time zone", + "app_settings_date_and_time_date_format": "Date format", + "app_settings_date_and_time_time_format": "Time format", + "app_settings_date_and_time_time_zone": "Time zone", + "app_settings_disp_key": "Display and keypad", + "app_settings_display": "Display", + "app_settings_display_dark_mode": "Dark mode (Beta)", + "app_settings_display_display_light": "Display light", + "app_settings_display_factory_reset_confirmation": "Your Pure will turn off. Turn it on manually to continue the process.\nTurn off the phone now?", + "app_settings_display_font_size": "Font size", + "app_settings_display_input_language": "Input language", + "app_settings_display_keypad_light": "Keypad light", + "app_settings_display_light_auto": "Automatic", + "app_settings_display_light_brightness": "Brightness", + "app_settings_display_light_main": "Frontlight", + "app_settings_display_security_autolock": "Auto lock", + "app_settings_display_wallpaper": "Wallpaper", + "app_settings_display_wallpaper_clock": "Clock", + "app_settings_display_wallpaper_edit_custom_quotes": "Edit custom quotes", + "app_settings_display_wallpaper_edit_quotes": "Edit quotes", + "app_settings_display_wallpaper_logo": "Mudita logo", + "app_settings_display_wallpaper_quotes": "Quotes", + "app_settings_display_wallpaper_quotes_author": "Author", + "app_settings_display_wallpaper_quotes_categories": "Select categories", + "app_settings_display_wallpaper_quotes_delete": "Delete", + "app_settings_display_wallpaper_quotes_delete_confirmation": "Delete this quote?", + "app_settings_display_wallpaper_quotes_delete_success": "Quote deleted.", + "app_settings_display_wallpaper_quotes_edit": "Edit", + "app_settings_display_wallpaper_quotes_new": "New quote", + "app_settings_display_wallpaper_quotes_note": "Note", + "app_settings_factory_reset": "Factory reset", + "app_settings_factory_reset_in_progress": "The factory reset process is not\ncompleted yet, turn on your Pure\nto continue.", + "app_settings_info_dnd": "Silently receive all notifications. You can allow full notifications from favorite contacts.", + "app_settings_info_offline_flight_mode": "Fully disconnected. Calls, messages and tethering are unavailable.", + "app_settings_info_offline_messages_only": "Send and download messages based on connection intervals. No calls nor tethering.", + "app_settings_language": "Language", + "app_settings_message_sound": "Message sound", + "app_settings_messages_only": "Messages only", + "app_settings_net": "Network", + "app_settings_network_active_card": "Active slot", + "app_settings_network_all_operators": "All operators", + "app_settings_network_apn_settings": "APN settings", + "app_settings_network_import_contacts": "Import contacts", + "app_settings_network_import_contacts_duplicates": "Duplicates from SIM", + "app_settings_network_import_contacts_from_sim_card": "Import contacts from SIM card", + "app_settings_network_import_contacts_from_sim_card_duplicates": "We found $DUPLICATES duplicates. Do you want

to import duplicated contacts and

replace existing ones.
", + "app_settings_network_import_contacts_from_sim_card_no_contacts": "There are no contacts

on this SIM card.
", + "app_settings_network_import_contacts_from_sim_card_reading": "Importing in progress...

Please wait a moment.
", + "app_settings_network_import_contacts_from_sim_card_success": "Contacts imported successfully.", + "app_settings_network_not_connected": "no card", + "app_settings_network_operator_auto_select": "Operator auto-select", + "app_settings_network_pin": "PIN", + "app_settings_network_pin_change_code": "Change PIN code", + "app_settings_network_pin_settings": "PIN settings", + "app_settings_network_sim1": "SIM1", + "app_settings_network_sim2": "SIM2", + "app_settings_network_sim_cards": "SIM cards", + "app_settings_network_sim_none": "No SIM", + "app_settings_network_unblock_card": "Unblock card", + "app_settings_network_voice_over_lte": "VoLTE", + "app_settings_network_volte_not_available": "not available", + "app_settings_new_edit_apn": "New/Edit APN", + "app_settings_no_network_connection_flight_mode": "Flight mode", + "app_settings_notifications_when_locked": "Notifications when locked", + "app_settings_option_connected_audio": "CONNECTED AUDIO", + "app_settings_option_connected_both": "CONNECTED VOICE, AUDIO", + "app_settings_option_connected_voice": "CONNECTED VOICE", + "app_settings_option_connecting": "CONNECTING", + "app_settings_option_pairing": "PAIRING", + "app_settings_phone_modes": "Phone modes", + "app_settings_sar": "SAR", + "app_settings_security": "Security", + "app_settings_security_change_phone_lock": "Change passcode", + "app_settings_security_phone_lock": "Lock screen passcode", + "app_settings_show_unread_first": "Show unread first", + "app_settings_sound": "Sound", + "app_settings_system": "System", + "app_settings_tech_info_battery": "Battery", + "app_settings_tech_info_imei": "IMEI", + "app_settings_tech_info_model": "Model", + "app_settings_tech_info_os_version": "OS Version", + "app_settings_tech_info_pcb_am": "pcbAM", + "app_settings_tech_info_pcb_lm": "pcbLM", + "app_settings_tech_info_pcb_mb": "pcbMB", + "app_settings_tech_info_pcb_um": "pcmUM", + "app_settings_tech_info_serial_number": "Serial number", + "app_settings_title_color_test": "Display available colors", + "app_settings_title_connection_frequency": "Connection frequency", + "app_settings_title_day": "Day", + "app_settings_title_do_not_disturb": "Do not disturb", + "app_settings_title_languages": "Language selection", + "app_settings_title_main": "Settings", + "app_settings_title_month": "Month", + "app_settings_title_offline": "Offline", + "app_settings_title_time": "Time", + "app_settings_title_year": "Year", + "app_settings_toggle_off": "OFF", + "app_settings_toggle_on": "ON", + "app_settings_toggle_transiting": "checking...", + "app_settings_toolbar_reset": "RESET", + "app_settings_vibration": "Vibration", + "app_settings_volume": "Volume", + "app_settings_volume_focused": "Volume", + "app_sms_offline": "You're Offline.\n\nTo send message,\n switch the mode.", + "app_special_input_window": "Special characters", + "bluetooth_info_popup_error": "Pairing process with $DEVICE

has failed. Error code: $ERROR", + "bluetooth_info_popup_success": "Your phone is paired with:

$DEVICE", + "bluetooth_popup": "Bluetooth", + "bluetooth_popup_cancel": "Cancel", + "bluetooth_popup_confirm": "Confirm", + "bluetooth_popup_pair_cancel_code": "Device $DEVICE would like to pair
with your Pure. Please confirm
the code: $CODE
", + "bluetooth_popup_pair_cancel_no_code": "Device $DEVICE would like to pair with your Pure.", + "bluetooth_popup_passkey": "Enter passkey:", + "bluetooth_popup_pin": "Enter PIN:", + "brightness_text": "BRIGHTNESS", + "common_AM": "AM", + "common_PM": "PM", + "common_abort": "ABORT", + "common_accept": "ACCEPT", + "common_add": "ADD", + "common_adjust": "ADJUST", + "common_april": "April", + "common_august": "August", + "common_back": "BACK", + "common_call": "CALL", + "common_check": "CHECK", + "common_confirm": "CONFIRM", + "common_connect": "CONNECT", + "common_contacts": "CONTACTS", + "common_december": "December", + "common_disconnect": "DISCONNECT", + "common_edit": "EDIT", + "common_emoji": "EMOJI", + "common_february": "February", + "common_forget": "FORGET", + "common_fr": "FR", + "common_fri": "Fri", + "common_friday": "Friday", + "common_import": "IMPORT", + "common_information": "Information", + "common_january": "January", + "common_july": "July", + "common_june": "June", + "common_march": "March", + "common_may": "May", + "common_minute_lower": "minute", + "common_minute_short": "min", + "common_minutes_lower": "minutes", + "common_minutes_lower_genitive": "minutes", + "common_mo": "MO", + "common_mon": "Mon", + "common_monday": "Monday", + "common_no": "No", + "common_november": "November", + "common_october": "October", + "common_ok": "OK", + "common_open": "OPEN", + "common_options": "OPTIONS", + "common_options_title": "Options", + "common_pause": "PAUSE", + "common_paused": "Paused", + "common_play": "PLAY", + "common_replace": "REPLACE", + "common_reply": "REPLY", + "common_results_prefix": "Results: ", + "common_resume": "RESUME", + "common_retry": "TRY AGAIN", + "common_sa": "SA", + "common_sat": "Sat", + "common_saturday": "Saturday", + "common_save": "SAVE", + "common_search": "SEARCH", + "common_search_results": "Search results", + "common_search_uc": "Search", + "common_second_lower": "second", + "common_seconds_lower": "seconds", + "common_seconds_lower_genitive": "seconds", + "common_select": "SELECT", + "common_send": "SEND", + "common_september": "September", + "common_set": "SET", + "common_show": "SHOW", + "common_skip": "SKIP", + "common_special_characters": "SPECIAL", + "common_start": "START", + "common_stop": "STOP", + "common_su": "SU", + "common_sun": "Sun", + "common_sunday": "Sunday", + "common_switch": "SWITCH", + "common_text_copy": "Copy text", + "common_text_paste": "Paste text", + "common_th": "TH", + "common_thu": "Thu", + "common_thursday": "Thursday", + "common_today": "Today", + "common_tu": "TU", + "common_tue": "Tue", + "common_tuesday": "Tuesday", + "common_uncheck": "UNCHECK", + "common_use": "USE", + "common_we": "WE", + "common_wed": "Wed", + "common_wednesday": "Wednesday", + "common_yes": "Yes", + "common_yesterday": "Yesterday", + "duration_0hmin_0sec": "%0N:%0S", + "duration_0min_0sec": "%0M:%0S", + "duration_hour_0min_0sec": "%H:%0M:%0S", + "duration_min_0sec": "%M:%0S", + "home_modes_connected": "CONNECTED", + "home_modes_message_only": "Message only", + "home_modes_notdisturb": "DO NOT DISTURB", + "home_modes_offline": "OFFLINE", + "locale_12hour_min": "%I:%M %p", + "locale_12hour_min_short": "%I:%M", + "locale_24hour_min": "%H:%M", + "locale_date_DD_MM": "%d.%m", + "locale_date_DD_MM_YY": "%d.%m.%y", + "locale_date_DD_MM_YYYY": "%d.%m.%Y", + "locale_date_Day_DD_Mon": "%A, %d %b", + "locale_date_Day_Mon_DD": "%A, %b %d", + "locale_date_MM_DD": "%m.%d", + "locale_date_MM_DD_YY": "%m.%d.%y", + "locale_date_MM_DD_YYYY": "%m.%d.%Y", + "metadata": { + "display_name": "English" + }, + "phone_lock_blocked": "Sorry, phone blocked", + "phone_lock_blocked_information": "Wrong passcode.

Try again in $TIME.
", + "phone_lock_blocked_information_minute": "a minute", + "phone_lock_blocked_information_minutes": " minutes", + "phone_lock_blocked_information_seconds": " seconds", + "phone_lock_changed_successfully": "Passcode changed successfully!", + "phone_lock_configure": "Configure passcode", + "phone_lock_confirm": "Confirm the passcode", + "phone_lock_confirm_new": "Confirm new passcode", + "phone_lock_current": "Type current passcode", + "phone_lock_disabled": "Passcode disabled!", + "phone_lock_enter_new": "Enter new passcode", + "phone_lock_invalid": "Wrong passcode!", + "phone_lock_invalid_retry": "Wrong passcode.

Configure passcode again.
", + "phone_lock_notification": "Passcode lock for $TIME", + "phone_lock_set": "Set passcode that unlocks

the phone
", + "phone_lock_unlock": "Enter the passcode

to unlock:
", + "phone_lock_unlock_invalid": "Wrong passcode.

Please try again.
", + "phone_needs_rebooting": "Your phone needs rebooting. Press any key to confirm and please remove the battery for 10 seconds to perform a full reboot", + "sim_card_cant_connect": "Cannot connect to $SIM card.

Please insert card.
", + "sim_card_change_in_progress": "SIM change process in progress.

It will take up to a few seconds.
", + "sim_card_changed_successfully": "SIM card changed successfully.", + "sim_card_not_ready": "Waiting for modem to start.

This may take a moment.
", + "sim_card_pin_disabled": "SIM card PIN disabled", + "sim_card_pin_enabled": "SIM card PIN enabled", + "sim_card_select_in_progress": "SIM selection process in progress.

It will take up to a few seconds.
", + "sim_card_select_successfully": "SIM selection process has been

completed.
", + "sim_change_pin": "Change PIN code", + "sim_cme_error": "SIM card

CME error:$CMECODE
", + "sim_confirm_new_pin": "Confirm new PIN code:", + "sim_enter_enter_current": "Type current PIN code:", + "sim_enter_new_pin": "Enter new PIN code:", + "sim_enter_pin_unlock": "Enter the PIN code to set up

the $PINTYPE card:
", + "sim_header_setup": "$SIM setup", + "sim_pin_changed_successfully": "PIN code changed successfully", + "sim_puk_blocked": "The SIM card is blocked.

Please, contact the operator.
", + "sim_setup_enter_puk": "The SIM card is blocked.

To unblock it, type the PUK code:
", + "sim_setup_wrong_pin": "Wrong PIN code. You have

$ATTEMPTS attempts left.
", + "sim_setup_wrong_pin_last_attempt": "Wrong PIN code. You have

1 attempt left.
", + "sim_setup_wrong_puk": "Wrong PUK code.

You have $ATTEMPTS attempts left
", + "sim_setup_wrong_puk_last_attempt": "Wrong PUK code.

You have 1 attempt left
", + "sim_setup_wrong_puk_last_attempt_warning": "If the code is wrong this time, the

SIM card will be blocked and you'll

have to contact the operator.
", + "sim_wrong_pin_confirmation": "Wrong PIN code.", + "sms_add_rec_num": "Add contact or type a number", + "sms_call_text": "Call ", + "sms_copy": "Copy", + "sms_delete_conversation": "Delete conversation", + "sms_delete_message": "Delete message", + "sms_forward_message": "Forward message", + "sms_mark_read": "Mark as read", + "sms_mark_unread": "Mark as unread", + "sms_paste": "Paste", + "sms_resend_failed": "Send again", + "sms_title_message": "New message", + "sms_use_template": "Use template", + "statusbar_battery_charging": "Charg", + "statusbar_battery_plugged": "Plug", + "tethering": "Tethering", + "tethering_enable_question": "You're connected to the computer.
Turn tethering on?
(some functions may be disabled)
", + "tethering_menu_access_decline": "Tethering is on.

To access menu,
turn tethering off.
", + "tethering_phone_mode_change_prohibited": "Tethering is on.

Other modes (Connected, DND,
Offline) are overriden by this mode
and are not working.
", + "tethering_turn_off_question": "Turn tethering off?" } diff --git a/image/system_a/data/lang/Espanol.json b/image/system_a/data/lang/Espanol.json index 1cdf78e736..3706f82ede 100644 --- a/image/system_a/data/lang/Espanol.json +++ b/image/system_a/data/lang/Espanol.json @@ -1,749 +1,716 @@ { - "metadata": { - "display_name": "Español" - }, - "common_add": "AÑADIR", - "common_open": "ABRIR", - "common_call": "LLAMAR", - "common_save": "GUARDAR", - "common_edit": "EDITAR", - "common_send": "ENVIAR", - "common_reply": "RESPONDER", - "common_confirm": "CONFIRMAR", - "common_select": "SELECCIONAR", - "common_use": "USAR", - "common_ok": "OK", - "common_back": "ATRÁS", - "common_skip": "OMITIR", - "common_contacts": "CONTACTOS", - "common_set": "ESTABLECER", - "common_show": "MOSTRAR", - "common_yes": "Sí", - "common_no": "No", - "common_switch": "CAMBIAR", - "common_options": "OPCIONES", - "common_options_title": "Opciones", - "common_information": "Información", - "common_check": "MARCAR", - "common_uncheck": "DESMARCAR", - "common_emoji": "EMOJI", - "common_special_characters": "ESPECIAL", - "common_start": "INICIAR", - "common_stop": "DETENER", - "common_resume": "REANUDAR", - "common_pause": "PAUSA", - "common_play": "REPRODUCIR", - "common_retry": "REINTENTAR", - "common_replace": "REEMPLAZAR", - "common_abort": "ANULAR", - "common_connect": "CONECTAR", - "common_disconnect": "DESCONECTAR", - "common_forget": "OLVIDAR", - "common_adjust": "AJUSTAR", - "common_mo": "L", - "common_tu": "M", - "common_we": "X", - "common_th": "J", - "common_fr": "V", - "common_sa": "S", - "common_su": "D", - "common_mon": "Lu.", - "common_tue": "Ma.", - "common_wed": "Mi.", - "common_thu": "Ju.", - "common_fri": "Vi.", - "common_sat": "Sá.", - "common_sun": "Do.", - "common_monday": "Lunes", - "common_tuesday": "Martes", - "common_wednesday": "Miércoles", - "common_thursday": "Jueves", - "common_friday": "Viernes", - "common_saturday": "Sábado", - "common_sunday": "Domingo", - "common_january": "Enero", - "common_february": "Febrero", - "common_march": "Marzo", - "common_april": "Abril", - "common_may": "Mayo", - "common_june": "Junio", - "common_july": "Julio", - "common_august": "Agosto", - "common_september": "Septiembre", - "common_october": "Octubre", - "common_november": "Noviembre", - "common_december": "Diciembre", - "common_yesterday": "Ayer", - "common_today": "Hoy", - "common_results_prefix": "Resultados: ", - "common_search": "BUSCAR", - "common_accept": "ACEPTAR", - "common_minute_lower": "minuto", - "common_minutes_lower": "minutos", - "common_minutes_lower_genitive": "minutos", - "common_minute_short": "min", - "common_second_lower": "segundo", - "common_seconds_lower": "segundos", - "common_paused": "Pausado", - "common_text_copy": "Copiar texto", - "common_text_paste": "Pegar texto", - "locale_12hour_min": "%I:%M %p", - "locale_12hour_min_short": "%I:%M", - "locale_24hour_min": "%H:%M", - "locale_date_full": "%d.%m.%Y", - "locale_date_short": "%d.%m", - "locale_date_DD_MM_YY": "%d.%m.%y", - "locale_date_MM_DD_YY": "%m.%d.%y", - "common_AM": "AM", - "common_PM": "PM", - "duration_min_0sec": "%M:%0S", - "duration_0min_0sec": "%0M:%0S", - "duration_0hmin_0sec": "%0N:%0S", - "duration_hour_0min_0sec": "%H:%0M:%0S", - "brightness_text": "BRILLO", - "phone_needs_rebooting": "Tu teléfono necesita reiniciarse. Pulsa cualquier tecla para confirmar y retira la batería del dispositivo durante 10 segundos para reiniciarlo por completo.", - "home_modes_connected": "CONECTADO", - "home_modes_notdisturb": "NO MOLESTAR", - "home_modes_offline": "DESCONECTADO", - "home_modes_message_only": "Solo mensajes", - "statusbar_battery_charging": "Carg.", - "statusbar_battery_plugged": "Enchuf.", - "app_alarm_clock_title_main": "Alarma", - "app_alarm_clock_repeat_never": "Nunca", - "app_alarm_clock_repeat_everyday": "Todos los días", - "app_alarm_clock_repeat_week_days": "Días laborables", - "app_alarm_clock_repeat_custom": "Personalizado", - "app_alarm_clock_no_alarms_information": "No hay alarmas.

Pulsa la flecha izquierda para añadir una.

", - "app_alarm_clock_options_edit": "Editar", - "app_alarm_clock_options_delete": "Eliminar", - "app_alarm_clock_options_turn_off_all_alarms": "Apagar todas las alarmas", - "app_alarm_clock_delete_confirmation": "¿Eliminar esta alarma?", - "app_alarm_clock_new_alarm_title": "Nueva alarma", - "app_alarm_clock_edit_alarm_title": "Editar alarma", - "app_alarm_clock_sound": "Sonido", - "app_alarm_clock_snooze": "Posponer", - "app_alarm_clock_repeat": "Repetir", - "app_alarm_clock_snooze_5_min": "5 min", - "app_alarm_clock_snooze_10_min": "10 min", - "app_alarm_clock_snooze_15_min": "15 min", - "app_alarm_clock_snooze_30_min": "30 min", - "app_alarm_clock_play_pause": "REPRODUCIR/PAUSA", - "app_calendar_title_main": "Calendario", - "app_calendar_options_edit": "Editar", - "app_calendar_options_delete": "Eliminar", - "app_calendar_event_delete_confirmation": "¿Eliminar este evento?", - "app_calendar_bar_month": "MES", - "app_calendar_bar_list": "LISTA", - "app_calendar_event_detail": "Evento", - "app_calendar_event_detail_repeat": "Repetir", - "app_calendar_event_detail_reminder": "Recordatorio", - "app_calendar_no_events_information": "No hay eventos.

Pulsa la flecha izquierda para añadir uno.

", - "app_calendar_repeat_never": "Nunca", - "app_calendar_repeat_daily": "Diario", - "app_calendar_repeat_weekly": "Semanal", - "app_calendar_repeat_two_weeks": "Cada dos semanas", - "app_calendar_repeat_month": "Mes", - "app_calendar_repeat_year": "Año", - "app_calendar_repeat_custom": "Personalizado", - "app_calendar_reminder_never": "Nunca", - "app_calendar_reminder_event_time": "En el momento del evento", - "app_calendar_reminder_5_min_before": "5 min antes", - "app_calendar_reminder_15_min_before": "15 min antes", - "app_calendar_reminder_30_min_before": "30 min antes", - "app_calendar_reminder_1_hour_before": "1 h antes", - "app_calendar_reminder_2_hour_before": "2 h antes", - "app_calendar_reminder_1_day_before": "1 día antes", - "app_calendar_reminder_2_days_before": "2 días antes", - "app_calendar_reminder_1_week_before": "1 semana antes", - "app_calendar_custom_repeat_title": "Repetición personalizada", - "app_calendar_new_event_title": "Nuevo evento", - "app_calendar_edit_event_title": "Editar evento", - "app_calendar_edit": "EDITAR", - "app_calendar_new_edit_event_name": "Nombre del evento", - "app_calendar_new_edit_event_allday": "Evento de todo el día", - "app_calendar_all_day": "Todo el día", - "app_calendar_new_edit_event_start": "Inicio", - "app_calendar_new_edit_event_end": "Fin", - "app_calendar_event_error_dates": "La fecha de inicio debe ser anterior\na la de finalización", - "app_calendar_event_error_empty_name": "El nombre del evento no puede estar vacío", - "app_calculator_title_main": "Calculadora", - "app_calculator_equals": "IGUAL A", - "app_calculator_decimal_separator": ",", - "app_calculator_error": "Error", - "app_options_invalid_option": " ", - "app_options_contact_details": "Detalles de contacto", - "app_options_contact_add": "Añadir a contactos", - "app_options_contact_edit": "Editar contacto", - "app_notes_title_main": "Notas", - "app_notes_edit_note": "Editar nota", - "app_notes_new_note": "Nueva nota", - "app_notes_edit": "EDITAR", - "app_notes_edited": "Editado", - "app_notes_delete_note": "Eliminar", - "app_notes_note_delete_confirmation": "¿Seguro que quieres eliminar esta nota?", - "app_notes_no_notes": "No hay notas.

Pulsa la flecha izquierda para añadir una.

", - "app_notes_search_no_results": "No se encontraron notas.", - "app_calllog_title_main": "Llamadas", - "app_calllog_type": "Llamada", - "app_calllog_duration": "Duración", - "app_calllog_incoming_call": "Llamada entrante", - "app_calllog_outgoing_call": "Llamada saliente", - "app_calllog_missed_call": "Llamada perdida", - "app_calllog_rejected_call": "Llamada rechazada", - "app_calllog_date": "Fecha", - "app_calllog_options_delete_call": "Eliminar llamada", - "app_calllog_delete_call_confirmation": "¿Eliminar esta llamada de la lista?", - "app_calllog_delete_all_calls": "Eliminar todas las llamadas", - "app_calllog_delete_all_calls_confirmation": "Eliminar todas las llamadas de\nla lista?", - "app_calllog_no_calls": "Aún no hay llamadas.", - "app_phonebook_no_contacts": "Aún no hay contactos.

Presiona la flecha izquierda para agregar nuevos.

", - "app_phonebook_no_contacts_yet": "Aún no hay contactos.", - "app_music_player_artists": " Artistas ", - "app_music_player_albums": " Álbumes ", - "app_music_player_playlists": " Listas de reproducción ", - "app_music_player_uknown_title": "Título desconocido", - "app_music_player_uknown_artist": "Artista desconocido", - "app_music_player_music_library_window_name": "Biblioteca de música", - "app_music_player_empty_track_notification": "Elige una canción de la biblioteca", - "app_music_player_start_window_notification": " Presiona la abajo para elegir

una canción
", - "app_desktop_unlock": "DESBLOQUEAR", - "app_desktop_menu": "MENÚ", - "app_desktop_emergency": "SOS", - "app_desktop_info": "Info.", - "app_desktop_info_mmi_none_specified_failed": "Error en la operación", - "app_desktop_info_mmi_none_specified_success": "Operación completada", - "app_desktop_info_mmi_common_failed": "error", - "app_desktop_info_mmi_common_no_message": "no", - "app_desktop_info_mmi_common_mmi_not_supported": "no compatible", - "app_desktop_info_mmi_common_enabled": "activado", - "app_desktop_info_mmi_common_disabled": "desactivado", - "app_desktop_info_mmi_common_voice": "voz", - "app_desktop_info_mmi_common_data": "datos", - "app_desktop_info_mmi_common_fax": "FAX", - "app_desktop_info_mmi_common_sync": "sincr.", - "app_desktop_info_mmi_common_async": "asincr.", - "app_desktop_info_mmi_common_all_disabled": "todos los servicios del portador desactivados", - "app_desktop_info_mmi_common_deactivated": "el servicio se ha desactivado", - "app_desktop_info_mmi_common_activated": "el servicio se ha activado", - "app_desktop_info_mmi_common_query": "consulta", - "app_desktop_info_mmi_clir_according_to_subscription": "CLIR según la suscripción", - "app_desktop_info_mmi_clir_enabled": "CLIR activado", - "app_desktop_info_mmi_clir_disabled": "CLIR desactivado", - "app_desktop_info_mmi_clir_not_provisioned": "CLIR no aprovisionado", - "app_desktop_info_mmi_clir_permanent_provisioned": "CLIR aprovisionado permanentemente", - "app_desktop_info_mmi_clir_unknown": "CLIR desconocido", - "app_desktop_info_mmi_clir_temporary_restricted": "CLIR restringido temporalmente", - "app_desktop_info_mmi_clir_temporary_allowed": "CLIR permitido temporalmente", - "app_desktop_info_mmi_registration_failed": "Error en el registro", - "app_desktop_info_mmi_registration_success": "Registro correcto", - "app_desktop_info_mmi_erasure_failed": "Error al borrar", - "app_desktop_info_mmi_erasure_success": "Borrado correcto", - "app_desktop_info_mmi_disabling_failed": "Error al desactivar servicio", - "app_desktop_info_mmi_disabling_success": "El servicio se ha desactivado", - "app_desktop_info_mmi_enabling_failed": "Error al activar servicio", - "app_desktop_info_mmi_enabling_success": "El servicio se ha activado", - "app_desktop_info_mmi_call_forwarding_disabled": "desvío de llamadas desactivado", - "app_desktop_info_mmi_call_barring_activated": "Bloqueo de llamadas activado", - "app_desktop_info_mmi_call_barring_deactivated": "Bloqueo de llamadas desactivado", - "app_desktop_info_mmi_clip_activated": "CLIP activado", - "app_desktop_info_mmi_clip_deactivated": "CLIP desactivado", - "app_desktop_info_mmi_clip_not_provisioned": "CLIP no aprovisionado", - "app_desktop_info_mmi_clip_provisioned": "CLIP aprovisionado", - "app_desktop_info_mmi_clip_unknown": "CLIP desconocido", - "app_desktop_info_mmi_call_waiting_activated": "Llamada en espera activada", - "app_desktop_info_mmi_call_waiting_deactivated": "Llamada en espera desactivada", - "app_desktop_info_mmi_call_forwarding": "Desvío de llamadas", - "app_desktop_info_mmi_call_barring": "Bloqueo de llamadas", - "app_desktop_info_mmi_call_waiting": "Llamada en espera", - "app_desktop_info_mmi_clip": "Id. de llamada visible (CLIP)", - "app_desktop_info_mmi_clir": "Id. de llamada oculta (CLIR)", - "app_desktop_info_mmi_imei": "IMEI (MEID)", - "app_desktop_info_mmi_result_success": "Correcto", - "app_desktop_info_mmi_result_failed": "Error", - "sim_header_setup": "Configuración de $SIM", - "sim_enter_pin_unlock": "Introduce el código PIN

para configurar la tarjeta $PINTYPE:
", - "sim_enter_enter_current": "Introduce el código PIN actual:", - "sim_change_pin": "Cambiar código PIN", - "sim_enter_new_pin": "Introduce el nuevo código PIN:", - "sim_confirm_new_pin": "Confirma el nuevo código PIN:", - "sim_setup_wrong_pin": "Código PIN incorrecto. Te quedan

$ATTEMPTS intentos.
", - "sim_setup_wrong_pin_last_attempt": "Código PIN incorrecto. Te queda

1 intento.
", - "sim_wrong_pin_confirmation": "Código PIN incorrecto.", - "sim_pin_changed_successfully": "El código PIN se ha cambiado con éxito.", - "sim_card_changed_successfully": "La tarjeta SIM se ha cambiado con éxito.", - "sim_card_select_successfully": "Tarjeta SIM seleccionada con éxito.", - "sim_card_change_in_progress": "Proceso de cambio de SIM en curso.

Tarda unos segundos.
", - "sim_card_select_in_progress": "Proceso de selección de SIM en curso.

Tarda unos segundos.
", - "sim_cme_error": "Tarjeta SIM

Error CME:$CMECODE
", - "sim_puk_blocked": "La tarjeta SIM está bloqueada.

Ponte en contacto con tu operador.
", - "sim_setup_enter_puk": "La tarjeta SIM está bloqueada.

Para desbloquearla, introduce el código PUK:
", - "sim_setup_wrong_puk": "Código PUK incorrecto.

Te quedan $ATTEMPTS intentos.
", - "sim_setup_wrong_puk_last_attempt": "Código PUK incorrecto.

Te queda 1 intento.
", - "sim_setup_wrong_puk_last_attempt_warning": "Si introduces un código incorrecto, la

tarjeta SIM se bloqueará

y deberás ponerte en contacto con tu operador.
", - "sim_card_pin_disabled": "PIN de la tarjeta SIM desactivado", - "sim_card_pin_enabled": "PIN de la tarjeta SIM activado", - "sim_card_cant_connect": "No se puede conectar con la tarjeta $SIM.

Inserta la tarjeta.
", - "sim_card_not_ready": "Esperando a que el módem se encienda.

Esto puede tardar unos instantes.
", - "app_desktop_press_to_unlock": "Pulsa Desbloquear y después #", - "app_desktop_press_to_complete_unlock": "Presione # para desbloquear", - "app_desktop_unread_messages": "Mensajes no leídos", - "app_desktop_missed_calls": "Llamadas perdidas", - "app_desktop_menu_phone": "LLAMADAS", - "app_desktop_menu_contacts": "CONTACTOS", - "app_desktop_menu_messages": "MENSAJES", - "app_desktop_menu_calendar": "CALENDARIO", - "app_desktop_menu_alarm": "ALARMA", - "app_desktop_menu_meditation": "MEDITACIÓN", - "app_desktop_menu_music": "MÚSICA", - "app_desktop_menu_tools": "HERRAMIENTAS", - "app_desktop_menu_settings": "AJUSTES", - "app_desktop_menu_title": "Menú", - "app_desktop_tools_title": "Herramientas", - "app_desktop_tools_notes": "NOTAS", - "app_desktop_tools_calculator": "CALCULADORA", - "app_desktop_tools_antenna": "PRUEBA DE ANTENA", - "app_desktop_poweroff_title": "Apagar", - "app_desktop_poweroff_question": "¿Apagar el teléfono?", - "app_desktop_show": "MOSTRAR", - "app_desktop_calls": "LLAMADAS", - "app_desktop_clear": "BORRAR", - "app_desktop_clear_all": "BORRAR TODO", - "app_desktop_replay": "RESPONDER", - "app_popup_volume_text": "VOLUMEN", - "app_popup_bt_volume_text": "VOLUMEN DEL BLUETOOTH", - "app_popup_music_volume_text": "VOLUMEN DE MÚSICA", - "app_popup_call_volume_text": "VOLUMEN DE LLAMADAS", - "app_popup_muted_text": "SILENCIADO", - "app_call_call": "LLAMAR", - "app_call_clear": "BORRAR", - "app_call_reject": "RECHAZAR", - "app_call_answer": "RESPONDER", - "app_call_message": "MENSAJE", - "app_call_end_call": "COLGAR", - "app_call_emergency": "Llamada de emergencia", - "app_call_is_calling": "está llamando", - "app_call_calling": "llamando...", - "app_call_call_ended": "llamada finalizada", - "app_call_call_rejected": "llamada rechazada", - "app_call_contact": "CONTACTO", - "app_call_mute": "SILENCIAR", - "app_call_muted": "SILENCIADO", - "app_call_speaker": "ALTAVOZ", - "app_call_speaker_on": "ALTAVOZ ON", - "app_call_bluetooth": "BLUETOOTH", - "app_call_no_sim": "No hay SIM.\n\nPara hacer una llamada,\ndebes insertar una tarjeta SIM.", - "app_call_no_network_connection": "No hay conexión de red.", - "app_call_call_request_failed": "Algo salió mal.", - "app_call_offline": "No tienes conexión.\n\nPara hacer una llamada,\n cambia al modo Conectado.", - "app_sms_offline": "No tienes conexión.\n\nPara enviar un SMS,\n cambia al modo Conectado.", - "app_call_emergency_text": "Llamada de emergencia", - "app_call_wrong_emergency": "No es posible realizar la llamada.\n$NUMBER no es un número de emergencias.", - "app_messages_title_main": "Mensajes", - "app_messages_no_messages": "No hay mensajes.

Pulsa la flecha izquierda para añadir uno.

", - "app_messages_no_templates": "Aún no hay plantillas.

Crea una nueva plantilla en Mudita

Center para usar en tu Pure.

", - "app_messages_thread_delete_confirmation": "¿Eliminar esta conversación?", - "app_messages_message_delete_confirmation": "

¿Seguro que quieres eliminar

este mensaje?
", - "app_messages_thread_no_result": "No hay resultados", - "app_messages_message": "Mensaje", - "app_messages_templates": "Plantillas", - "app_messages_no_sim": "No hay SIM.\n\nPara enviar un SMS,\ndebes insertar una tarjeta SIM.", - "app_messages_thread_draft": "Borrador: ", - "app_messages_thread_not_sent": "No enviado: ", - "app_messages_thread_you": "Tú: ", - "app_onboarding_title": "Primeros pasos", - "app_onboarding_start_configuration": "

¡Hola!



Vamos a configurar tu Mudita Pure.", - "app_onboarding_eula_license": "Acuerdo de licencia (ALUF)", - "app_onboarding_select_sim": "Elegir SIM activa", - "app_onboarding_select_sim_description": "Solo puede haber una SIM activa a la vez.

Puedes elegirla ahora y cambiarla

en Ajustes siempre que quieras.
", - "app_onboarding_no_sim_selected_title": "Configuración de SIM", - "app_onboarding_no_sim_selected_description": "No se ha configurado ninguna tarjeta SIM.

Para conectarte a la red, configura una

tarjeta SIM en Ajustes.
>", - "app_onboarding_title_configuration": "Configuración", - "app_onboarding_title_update_info": "Actualización del SO de Mudita", - "app_onboarding_skip_confirm": "Es necesario configurar la SIM para conectarse a la red. ¿Omitir la configuración? ", - "app_onboarding_configuration_successful": "Tu Mudita Pure

ya está listo.
", - "app_onboarding_no_configuration": "Tu Mudita Pure no está

configurado. Ve a

Ajustes para configurarlo.
", - "app_onboarding_update_info": "La versión actual del SO de Mudita es la$VERSION

Las frecuentes actualizaciones incluyen nuevas funciones y correcciones.

Para actualizar tu teléfono,

visita:
www.mudita.com/updateos

y sigue las instrucciones.", - "app_settings_title_main": "Ajustes", - "app_settings_advanced": "Avanzados", - "app_settings_bt": "Bluetooth", - "app_settings_bluetooth_add_device": "Añadir dispositivo", - "app_settings_bluetooth_all_devices": "Añadir dispositivos", - "app_settings_bluetooth_searching_devices": "Buscando dispositivos... \nEsto puede tardar unos instantes.", - "app_settings_bluetooth_main": "Bluetooth", - "app_settings_bluetooth_phone_name": "Nombre del teléfono", - "app_settings_bluetooth_phone_visibility": "Visibilidad del teléfono", - "app_settings_bluetooth_enter_passkey": "Introducir clave de paso:", - "app_settings_bluetooth_init_error_message": "Error en el proceso de inicialización de Bluetooth.", - "app_settings_bluetooth_pairing_error_message": "Error en el proceso de emparejamiento.

Comprueba el dispositivo e
INTÉNTALO DE NUEVO.", - "app_settings_bluetooth_unpairing_error_message": "Error en el proceso de desemparejamiento.

Comprueba el dispositivo e
INTÉNTALO DE NUEVO.", - "app_settings_bluetooth_connecting_error_message": "Error en el proceso de conexión.

Comprueba el dispositivo e
INTÉNTALO DE NUEVO.", - "bluetooth_popup": "Bluetooth", - "bluetooth_popup_pin": "Introduzca en PIN:", - "bluetooth_popup_passkey": "Introduzca la contraseña:", - "bluetooth_popup_pair_cancel_code": "El dispositivo $DEVICE quiere emparejarse con tu Pure.
Debes confirmar el código: $CODE
", - "bluetooth_popup_pair_cancel_no_code": "El dispositivo $DEVICE quiere emparejarse con tu Pure.", - "bluetooth_popup_confirm": "Confirmar", - "bluetooth_popup_cancel": "Cancelar", - "bluetooth_info_popup_success": "Su teléfono está emparejado con:

$DEVICE", - "bluetooth_info_popup_error": "Proceso de vinculación con $DEVICE

ha fallado. Código de error: $ERROR", - "app_settings_net": "Red", - "app_settings_disp_key": "Pantalla y teclado numérico", - "app_settings_display_display_light": "Luz de pantalla", - "app_settings_display_dark_mode": "Modo oscuro (Beta)", - "app_settings_display_light_main": "Luz frontal", - "app_settings_display_light_auto": "Automática", - "app_settings_display_light_brightness": "Brillo", - "app_settings_display_font_size": "Tamaño de la fuente", - "app_settings_display_locked_screen": "Pantalla bloqueada", - "app_settings_display_keypad_light": "Luz de teclado numérico", - "app_settings_display_keypad_light_on": "Siempre encendida", - "app_settings_display_keypad_light_active": "Cuando está activo", - "app_settings_display_keypad_light_off": "Apagada", - "app_settings_display_input_language": "Idioma de entrada", - "app_settings_display_wallpaper": "Fondo de pantalla", - "app_settings_display_wallpaper_logo": "Logotipo de Mudita", - "app_settings_display_wallpaper_clock": "Reloj", - "app_settings_apps_alarm_clock_manual_volume": "Volumen de sonido manual", - "app_settings_display_wallpaper_quotes": "Citas", - "app_settings_display_wallpaper_edit_quotes": "Editar citas", - "app_settings_display_wallpaper_edit_custom_quotes": "Editar citas personalizadas", - "app_settings_display_wallpaper_quotes_edit": "Editar", - "app_settings_display_wallpaper_quotes_delete": "Eliminar", - "app_settings_display_wallpaper_quotes_new": "Nueva cita", - "app_settings_display_wallpaper_quotes_delete_confirmation": "¿Eliminar cita?", - "app_settings_display_wallpaper_quotes_delete_success": "Cita eliminada.", - "app_settings_display_wallpaper_quotes_note": "Nota", - "app_settings_display_wallpaper_quotes_author": "Autor", - "app_settings_display_wallpaper_quotes_our_favourites": "Nuestras favoritas", - "app_settings_display_wallpaper_quotes_custom": "Personalizado", - "app_settings_display_wallpaper_quotes_categories": "Categorías", - "app_settings_system": "Sistema", - "app_settings_apps": "Aplicaciones", - "app_settings_apps_phone": "Teléfono", - "app_settings_apps_messages": "Mensajes", - "app_settings_show_unread_first": "Mostrar no leídos primero", - "app_settings_apps_calendar": "Calendario", - "app_settings_apps_alarm_clock": "Alarma", - "app_settings_vibration": "Vibración", - "app_settings_sound": "Sonido", - "app_settings_volume": "Volumen", - "app_settings_volume_focused": "Volumen", - "app_settings_call_ringtome": "Tono de llamada", - "app_settings_message_sound": "Sonido de mensajes", - "app_settings_notification_sound": "Sonido de notificaciones", - "app_settings_Templates": "Plantillas", - "app_settings_title_torch": "Linterna", - "app_settings_torch_sunset_red_light_option": "Luz del atardecer", - "app_settings_torch_nightshift_time_option": "Modo noche", - "app_settings_torch_description": "En el modo noche, la linterna usará\nla luz del atardecer para\nno interferir en tu sueño.", - "app_settings_title_nightshift": "Noche", - "app_settings_nightshift_from": "De", - "app_settings_nightshift_to": "Para", - "app_settings_date_and_time": "Fecha y hora", - "app_settings_date_and_time_automatic_date_and_time": "Fecha y hora automáticas", - "app_settings_date_and_time_change_date_and_time": "Cambiar fecha y hora", - "app_settings_date_and_time_automatic_time_zone": "Zona horaria automática", - "app_settings_date_and_time_change_time_zone": "Cambiar zona horaria", - "app_settings_date_and_time_time_format": "Formato de hora", - "app_settings_date_and_time_date_format": "Formato de fecha", - "app_settings_date_and_time_time_zone": "Zona horaria", - "app_settings_title_day": "Día", - "app_settings_title_month": "Mes", - "app_settings_title_year": "Año", - "app_settings_title_time": "Hora", - "app_settings_cellular_passthrough": "Móvil <-> USB", - "app_settings_display": "Pantalla", - "app_settings_phone_modes": "Modos del teléfono", - "app_settings_security": "Seguridad", - "app_settings_language": "Idioma", - "app_settings_factory_reset": "Configuración de fábrica", - "app_settings_display_factory_reset_confirmation": "Tu Pure se va a apagar. Enciéndelo manualmente para continuar.\n¿Quieres apagar el teléfono ahora?", - "app_settings_factory_reset_in_progress": "Aún no se han restablecido los valores de fábrica, enciende tu dispositivo Pure para continuar.", - "app_settings_about_your_pure": "Mi dispositivo Pure", - "app_settings_technical_information": "Información técnica", - "app_settings_tech_info_model": "Modelo", - "app_settings_tech_info_serial_number": "Número de serie", - "app_settings_tech_info_os_version": "Versión del SO", - "app_settings_tech_info_imei": "IMEI", - "app_settings_tech_info_battery": "Batería", - "app_settings_tech_info_pcb_mb": "pcbMB", - "app_settings_tech_info_pcb_lm": "pcbLM", - "app_settings_tech_info_pcb_um": "pcmUM", - "app_settings_tech_info_pcb_am": "pcbAM", - "app_settings_certification": "Certificación", - "app_settings_us_fcc_id": "FCC ID de EE. UU.", - "app_settings_canada_ic": "Certifiación IC de Canadá", - "app_settings_europe": "Europa", - "app_settings_sar": "TAE", - "app_settings_about": "Sobre Mudita Pure", - "app_settings_title_languages": "Selección de idioma", - "app_settings_network_sim_cards": "Tarjetas SIM", - "app_settings_network_volte_not_available": "no disponible", - "app_settings_network_active_card": "Toma activa", - "app_settings_network_unblock_card": "Desbloquear la tarjeta", - "app_settings_network_not_connected": "sin tarjeta", - "app_settings_network_operator_auto_select": "Selección automática de operador", - "app_settings_network_all_operators": "Todos los operadores", - "app_settings_network_pin_settings": "Configuración de PIN", - "app_settings_network_pin": "PIN", - "app_settings_network_pin_change_code": "Cambiar código PIN", - "app_settings_network_import_contacts_from_sim_card": "Importar contactos de la SIM", - "app_settings_network_import_contacts": "Importar contactos", - "app_settings_network_import_contacts_duplicates": "Duplicados de SIM", - "app_settings_network_import_contacts_from_sim_card_reading": "Importación en curso ...

Espere un momento.
", - "app_settings_network_import_contacts_from_sim_card_no_contacts": "No hay contactos

en esta tarjeta SIM.
", - "app_settings_network_import_contacts_from_sim_card_duplicates": "Encontramos $DUPLICATES duplicados. ¿Quieres importar

contactos duplicados y reemplazar los existentes?
", - "app_settings_network_import_contacts_from_sim_card_success": "Contactos importados correctamente.", - "app_settings_network_sim1": "SIM1", - "app_settings_network_sim2": "SIM2", - "app_settings_network_sim_none": "No hay SIM", - "app_settings_network_voice_over_lte": "VoLTE", - "app_settings_network_apn_settings": "Configuración de APN", - "app_settings_security_phone_lock": "Código de acceso", - "app_settings_toggle_transiting": "comprobando...", - "app_settings_toggle_on": "ACT", - "app_settings_toggle_off": "DES", - "app_settings_display_security_autolock": "Bloq. auto.", - "app_settings_security_change_phone_lock": "Cambiar código de acceso", - "phone_lock_unlock": "Introduce el código de acceso

para desbloquear:
", - "phone_lock_unlock_invalid": "Código de acceso incorrecto.", - "phone_lock_blocked": "Lo sentimos, el teléfono está bloqueado.", - "phone_lock_current": "Introduce el código de acceso actual:", - "phone_lock_enter_new": "Introduce el nuevo código de acceso:", - "phone_lock_confirm_new": "Confirma el nuevo código de acceso:", - "phone_lock_invalid": "¡Código de acceso incorrecto!", - "phone_lock_notification": "Bloqueo de código de acceso para: $TIME", - "phone_lock_blocked_information": "Código de acceso incorrecto.

Inténtalo de nuevo en $TIME.
", - "phone_lock_changed_successfully": "¡El código de acceso se ha cambiado correctamente!", - "phone_lock_disabled": "¡Código de acceso desactivado!", - "phone_lock_set": "Elige el código de acceso que

desbloquea el teléfono.
", - "phone_lock_confirm": "Confirma el código de acceso:", - "phone_lock_invalid_retry": "Código de acceso incorrecto.

Vuelve a configurar el código de acceso.
", - "phone_lock_configure": "Configura el código de acceso:", - "app_settings_security_usb_passcode": "Seguridad USB", - "app_settings_apn_settings_no_apns": "No hay ningún APN.

Pulsa la flecha izquierda para añadir uno.

", - "app_settings_apn_options_delete": "Eliminar", - "app_settings_apn_options_edit": "Editar", - "app_settings_apn_options_set_as_default": "Establecer como predeterminado", - "app_settings_new_edit_apn": "Nuevo/Editar APN", - "app_settings_apn_name": "Nombre", - "app_settings_apn_APN": "APN", - "app_settings_apn_username": "Usuario", - "app_settings_apn_password": "Contraseña", - "app_settings_apn_authtype": "Tipo de autenticación", - "app_settings_apn_apntype": "Tipo de APN", - "app_settings_apn_apnprotocol": "Protocolo APN", - "app_settings_title_color_test": "Mostrar colores disponibles", - "app_settings_toolbar_reset": "RESTABLECER", - "app_settings_option_connecting": "CONECTANDO", - "app_settings_option_pairing": "EMPAREJANDO", - "app_settings_title_do_not_disturb": "No molestar", - "app_settings_title_offline": "Desconectado", - "app_settings_title_connection_frequency": "Frecuencia de conexión", - "app_settings_connected": "Conectado", - "app_settings_notifications_when_locked": "Notificaciones cuando esté bloqueado", - "app_settings_calls_from_favorites": "Llamadas de favoritos", - "app_settings_allow": "Permitir", - "app_settings_no_network_connection_flight_mode": "Modo avión", - "app_settings_messages_only": "Solo mensajes", - "app_settings_info_dnd": "Recibe todas las notificaciones en silencio. Puedes permitir notificaciones completas de tus contactos favoritos.", - "app_settings_info_offline_flight_mode": "Completamente desconectado. Las llamadas, los mensajes y la conexión no están disponibles.", - "app_settings_info_offline_messages_only": "Envía y descarga mensajes según los intervalos de conexión. Sin llamadas ni conexión.", - "app_phonebook_title_main": "Contactos", - "common_search_uc": "Buscar", - "common_search_results": "Buscar resultados", - "app_phonebook_search_no_results": "No se encontraron contactos.", - "app_phonebook_contact_title": "Añadir contacto", - "app_phonebook_contact_no_name": "sin nombre", - "app_phonebook_contact_information": "Información", - "app_phonebook_contact_flag_fav": "FAVORITOS", - "app_phonebook_contact_flag_speed_dial": "MAR.RÁPIDA", - "app_phonebook_contact_flag_ice": "EMERGENCIA", - "app_phonebook_contact_flag_blocked": "OBSTRUIDO", - "app_phonebook_ice_contacts_title": "Contactos de emergencia", - "app_phonebook_favorite_contacts_title": "Favoritos", - "app_phonebook_duplicate_speed_dial": "El número $CONTACT_SPEED_DIAL$ está asignado a \n $CONTACT_FORMATTED_NAME$. ¿Reemplazarlo?", - "app_phonebook_duplicate_speed_dial_title": "Tecla de marcación rápida ($CONTACT_SPEED_DIAL$)", - "app_phonebook_options_edit": "Editar contacto", - "app_phonebook_options_block": "Bloquear", - "app_phonebook_options_block_confirm": "¿Bloquear este contacto?", - "app_phonebook_options_block_notification": "Contacto bloqueado.", - "app_phonebook_options_unblock": "Desbloquear", - "app_phonebook_options_unblock_confirm": "¿Desbloquear este contacto?", - "app_phonebook_options_unblock_notification": "Contacto desbloqueado.", - "app_phonebook_options_delete": "Eliminar", - "app_phonebook_options_delete_confirm": "¿Seguro que quieres eliminar\neste contacto?", - "app_phonebook_options_delete_notification": "Este contacto se ha eliminado\ncon éxito.", - "app_phonebook_options_forward_namecard": "Reenviar tarjeta de visita", - "app_phonebook_options_send_sms": "Enviar por SMS", - "app_phonebook_new_contact_first_name": "Nombre", - "app_phonebook_new_contact_last_name": "Apellido", - "app_phonebook_new_contact_number": "Número", - "app_phonebook_new_contact_second_number": "Número alternativo", - "app_phonebook_new_contact_email": "Correo electrónico", - "app_phonebook_new_contact_address": "Dirección", - "app_phonebook_new_contact_note": "Nota", - "app_phonebook_new_speed_dial_key": "Tecla de marcación rápida", - "app_phonebook_new_contact_invalid_number": "No se puede guardar este contacto.

El número de teléfono que ingresó

tiene un formato no válido.
", - "app_phonebook_new_add_to_fav": "Añadir a favoritos", - "app_phonebook_new_add_to_ice": "Añadir a contactos de emergencia", - "app_phonebook_check": "MARCAR", - "app_phonebook_uncheck": "DESMARCAR", - "app_phonebook_multiple_numbers_first": "Número", - "app_phonebook_multiple_numbers_second": "Número alternativo", - "app_phonebook_contact_deleted": "Se ha eliminado el contacto.

No es posible editar.
", - "app_meditation_title_main": "Temporizador de meditación", - "app_meditation_preparation_time": "Tiempo de preparación", - "app_meditation_put_down_phone_and_wait": "Deja a un lado el teléfono
y espera a que suene el gong.
", - "app_meditation_thank_you_for_session": "Gracias por esta
sesión de meditación.
", - "app_meditation_option_show_counter": "Mostrar temporizador de meditación", - "app_meditation_interval_chime": "Campanilla de intervalo", - "app_meditation_interval_none": "Ninguno", - "app_meditation_interval_every_x_minutes": "Cada %0 minutos", - "app_meditation_minute": "MINUTO", - "app_meditation_minutes": "MINUTOS", - "app_music_player_all_songs": "Todas las canciones", - "app_music_player_play": "REPRODUCIR", - "app_music_player_music_library": "BIBLIOTECA DE MÚSICA", - "app_music_player_quit": "SALIR", - "app_music_player_music_empty_window_notification": "Selecciona la Biblioteca de música para elegir\n una canción de la biblioteca.", - "app_special_input_window": "Caracteres especiales", - "app_emoji_input_window": "Emoji", - "sms_add_rec_num": "Añadir destinatario o escribir un número", - "sms_title_message": "Mensaje nuevo", - "sms_call_text": "Llamar ", - "sms_resend_failed": "Reenviar", - "sms_delete_conversation": "Eliminar conversación", - "sms_forward_message": "Reenviar mensaje", - "sms_copy": "Copiar", - "sms_delete_message": "Eliminar mensaje", - "sms_use_template": "Usar plantilla", - "sms_paste": "Pegar", - "sms_mark_read": "Marcar como leído", - "sms_mark_unread": "Marcar como no leído", - "app_desktop_update": "Actualizar", - "app_desktop_update_to": "Actualizar a", - "app_desktop_update_apply": "¿Quieres aplicar esta actualización?", - "app_desktop_update_current": "Actual", - "app_desktop_update_start": "Iniciar actualización", - "app_desktop_update_size": "tamaño", - "app_desktop_update_bytes": "bytes", - "app_desktop_update_unpacking": "Desempaquetando", - "app_desktop_update_preparing": "Preparando la versión de la actualización del SO de Mudita.", - "app_desktop_update_muditaos": "Actualización del SO de Mudita", - "app_desktop_update_in_progress": "Actualización en curso...", - "app_desktop_update_ready_for_reset": "Preparado para restablecer...", - "app_desktop_update_success": "El SO de MuditaOS se ha actualizado a la ver. $VERSION correctamente.", - "app_call_private_number": "Número privado", - "app_call_ending_call": "Desconectando llamada", - "statusbar_tethering": "ANCLAJE DE RED", - "tethering": "Anclaje de red", - "tethering_turn_off_question": "¿Desactivar el anclaje de red?", - "tethering_enable_question": "Estás conectado al ordenador.
¿Activar el anclaje de red?
(algunas funciones podrían desactivarse)
", - "tethering_phone_mode_change_prohibited": "El anclaje de red está activado.

Este modo anula otros modos (Conectado, No molestar,
Desconectado)
y hace que dejen de funcionar.
", - "tethering_menu_access_decline": "El anclaje de red está activado.

Para acceder al menú,
desactiva el tethering.
", - "app_bellmain_home_screen_bottom_desc": "La siguiente alarma sonará", - "app_bellmain_home_screen_bottom_desc_in": "en", - "app_bellmain_home_screen_bottom_desc_and": "&", - "app_bell_alarm_deactivated": "Alarma desactivada", - "app_bell_turn_off_question": "¿Apagar Mudita Harmony?", - "app_bell_goodbye": "Adiós", - "app_bell_settings_time_units_time_fmt_top_message": "Formato de hora", - "app_bell_settings_time_units_time_message": "Hora", - "app_bell_settings_temp_scale": "Escala de temperatura", - "app_bell_onboarding_info_rotate": "Girar para seleccionar", - "app_bell_onboarding_info_light_click": "Click ligeramente para continuar", - "app_bell_onboarding_info_deep_click_warning": "Has presionado muy profundo", - "app_bell_onboarding_info_deep_click_correction": "Sé más suave,
intenta presionar ligeramente esta vez
", - "app_bell_onboarding_welcome": "Bienvenido", - "app_bell_onboarding_shortcuts_question": "¿Quieres ver instrucciones de accesos directos?", - "app_bell_onboarding_shortcuts_start": "Comenzar", - "app_bell_onboarding_shortcuts_skip": "Saltar", - "app_bell_onboarding_shortcuts_step_rotate": "Girar para seleccionar", - "app_bell_onboarding_shortcuts_step_light_click": "Clic ligero para aceptar y avanzar", - "app_bell_onboarding_shortcuts_step_deep_press": "Mantener pulsado para activar o desactivar la alarma", - "app_bell_onboarding_shortcuts_step_home": "Mantén pulsado Volver atrás (2 s) para ir al Inicio", - "app_bell_onboarding_shortcuts_step_battery": "Mantén pulsado Volver atrás (2 s) para comprobar batería", - "app_bell_onboarding_shortcuts_step_turn_off": "Pulsa Volver atrás 10 s para apagar el dispositivo", - "app_bell_onboarding_shortcuts_step_restart": "Pulsa ambos botones laterales 10 s para reiniciar", - "app_bell_onboarding_shortcuts_step_bedside_lamp": "Mantén pulsada la luz frontal (2 s) para encenderla", - "app_bellmain_home_screen_bottom_desc_dp": "Presionar a fondo para activar", - "app_bellmain_alarm": "Alarma", - "app_bellmain_power_nap": "Siesta", - "app_bellmain_meditation_timer": "Meditación", - "app_bellmain_relaxation": "Relajación", - "app_bellmain_bedtime": "Hora de dormir", - "app_bellmain_settings": "Ajustes", - "app_bell_bedtime_notification": "Es tu hora de dormir", - "app_bell_relaxation_timer_title": "Temporizador", - "app_bell_relaxation_once": "una vez", - "app_bell_relaxation_once_description": "la canción se reproducirá una vez", - "app_bell_relaxation_loop": "bucle", - "app_bell_relaxation_looped": "en bucle", - "app_bell_relaxation_loop_description": "la canción se reproducirá hasta que la apagues", - "app_bell_relaxation_error_message": "Formato de archivo no admitido", - "app_bell_settings_home_view": "Vista de inicio", - "app_bell_settings_alarm_settings": "Ajustes de alarma", - "app_bell_settings_alarm_settings_title": "Ajustes de alarma", - "app_bell_settings_bedtime_tone": "Hora de dormir", - "app_bell_settings_bedtime_settings_tone": "Hora de dormir", - "app_bell_settings_bedtime_settings_volume": "Volumen", - "app_bell_settings_advanced": "Avanzados", - "app_bell_settings_turn_off": "Apagar", - "app_bell_settings_time_units": "Hora", - "app_bell_settings_language": "Idioma", - "app_bell_settings_layout": "Esfera del reloj", - "app_bell_settings_about": "Información", - "app_bell_settings_about_product": "Mudita Harmony", - "app_bell_settings_about_version": "Versión del SO: $VERSION", - "app_bell_settings_about_storage_title": "Almacenamiento", - "app_bell_settings_about_storage_text": "Usados $USED_MEMORYMB de $TOTAL_MEMORYMB", - "app_bell_settings_about_info_title": "Manual y certificación", - "app_bell_settings_about_info_text": "www.mudita.com", - "app_bell_settings_frontlight": "Luz frontal", - "app_bell_settings_alarm_settings_prewake_up": "Despertar gradual", - "app_bell_settings_alarm_settings_prewake_up_chime_top_description": "Despertar gradualmente", - "app_bell_settings_alarm_settings_prewake_up_chime_bottom_description": "antes de la alarma", - "app_bell_settings_alarm_settings_prewake_up_chime_tone": "Tono", - "app_bell_settings_alarm_settings_prewake_up_chime_volume": "Volumen", - "app_bell_settings_alarm_settings_prewake_up_light_top_description": "Luz", - "app_bell_settings_alarm_settings_prewake_up_light_bottom_description": "antes de la alarma", - "app_bell_settings_alarm_settings_alarm_tone_and_light": "Alarma principal", - "app_bell_settings_alarm_settings_tone": "Tono de alarma", - "app_bell_settings_alarm_settings_volume": "Volumen de alarma", - "app_bell_settings_alarm_settings_light": "Luz de alarma", - "app_bell_settings_alarm_settings_snooze": "Repetición", - "app_bell_settings_alarm_settings_snooze_length": "Duración de Repetición", - "app_bell_settings_alarm_settings_snooze_chime_interval": "Intervalo del tono", - "app_bell_settings_alarm_settings_snooze_chime_interval_bot_desc": "durante la función de repetición", - "app_bell_settings_alarm_settings_snooze_chime_tone": "Tono", - "app_bell_settings_alarm_settings_snooze_chime_volume": "Volumen", - "app_bell_settings_frontlight_mode_top_message": "Modo de luz frontal", - "app_bell_settings_frontlight_mode_auto": "automático", - "app_bell_settings_frontlight_mode_on_demand": "manual", - "app_bell_settings_frontlight_top_message": "Intensidad de luz frontal", - "app_bell_greeting_msg": [ - "¡Hola! Levántate y brilla" - ], - "app_bell_settings_factory_reset": "Restablecer", - "app_bell_settings_display_factory_reset_confirmation": "¿Restablecer la configuración?", - "app_bell_meditation_timer": "Meditación", - "app_bell_meditation_statistics": "Estadísticas", - "app_bell_meditation_chime_interval": "Intervalo", - "app_bell_meditation_progress": "Meditación", - "app_bell_meditation_interval_none": "Ninguno", - "app_bell_meditation_put_down_and_wait": "Posicione Mudita Harmony
y espere el gong
", - "app_bell_meditation_thank_you_for_session": "Gracias
por la sesión
", - "app_bell_meditation_start": "Meditar ahora", - "app_bell_meditation_settings": "Ajustes", - "app_bell_meditation_start_delay": "Retraso en el inicio", - "app_bell_meditation_chime_interval_bottom": "de la meditación", - "app_bell_meditation_chime_volume": "Volumen del timbre", - "app_meditation_summary": "Has meditado por
", - "app_meditation_countdown_desc": "Empieza en", - "app_meditation_summary_total": "Total:
$VALUE
", - "app_meditation_summary_average": "Promedio/por día:", - "app_meditation_summary_title": "Últimos $VALUE días", - "app_bell_welcome_message": "Mudita Harmony
está apagado
", - "app_bell_welcome_charge_message": "Carga tu Harmony
y pulsa levemente
" + "app_alarm_clock_delete_confirmation": "\u00bfEliminar esta alarma?", + "app_alarm_clock_edit_alarm_title": "Editar alarma", + "app_alarm_clock_new_alarm_title": "Nueva alarma", + "app_alarm_clock_no_alarms_information": "No hay alarmas.

Pulsa la flecha izquierda para a\u00f1adir una.

", + "app_alarm_clock_options_delete": "Eliminar", + "app_alarm_clock_options_edit": "Editar", + "app_alarm_clock_options_turn_off_all_alarms": "Apagar todas las alarmas", + "app_alarm_clock_play_pause": "REPRODUCIR/PAUSA", + "app_alarm_clock_repeat": "Repetir", + "app_alarm_clock_repeat_custom": "Personalizado", + "app_alarm_clock_repeat_everyday": "Todos los d\u00edas", + "app_alarm_clock_repeat_never": "Nunca", + "app_alarm_clock_repeat_week_days": "D\u00edas laborables", + "app_alarm_clock_snooze": "Posponer", + "app_alarm_clock_snooze_10_min": "10 min", + "app_alarm_clock_snooze_15_min": "15 min", + "app_alarm_clock_snooze_30_min": "30 min", + "app_alarm_clock_snooze_5_min": "5 min", + "app_alarm_clock_sound": "Sonido", + "app_alarm_clock_title_main": "Alarma", + "app_bell_alarm_deactivated": "Alarma desactivada", + "app_bell_bedtime_notification": "Es tu hora de dormir", + "app_bell_goodbye": "Adi\u00f3s", + "app_bell_greeting_msg": [ + "\u00a1Hola! Lev\u00e1ntate y brilla" + ], + "app_bell_meditation_chime_interval": "Intervalo", + "app_bell_meditation_chime_interval_bottom": "de la meditaci\u00f3n", + "app_bell_meditation_chime_volume": "Volumen del timbre", + "app_bell_meditation_interval_none": "Ninguno", + "app_bell_meditation_settings": "Ajustes", + "app_bell_meditation_start": "Meditar ahora", + "app_bell_meditation_start_delay": "Retraso en el inicio", + "app_bell_meditation_statistics": "Estad\u00edsticas", + "app_bell_meditation_timer": "Meditaci\u00f3n", + "app_bell_onboarding_info_deep_click_correction": "S\u00e9 m\u00e1s suave,
intenta presionar ligeramente esta vez
", + "app_bell_onboarding_info_deep_click_warning": "Has presionado muy profundo", + "app_bell_onboarding_info_light_click": "Click ligeramente para continuar", + "app_bell_onboarding_info_rotate": "Girar para seleccionar", + "app_bell_onboarding_shortcuts_question": "\u00bfQuieres ver instrucciones de accesos directos?", + "app_bell_onboarding_shortcuts_skip": "Saltar", + "app_bell_onboarding_shortcuts_start": "Comenzar", + "app_bell_onboarding_shortcuts_step_battery": "Mant\u00e9n pulsado Volver atr\u00e1s (2 s) para comprobar bater\u00eda", + "app_bell_onboarding_shortcuts_step_bedside_lamp": "Mant\u00e9n pulsada la luz frontal (2 s) para encenderla", + "app_bell_onboarding_shortcuts_step_deep_press": "Mantener pulsado para activar o desactivar la alarma", + "app_bell_onboarding_shortcuts_step_home": "Mant\u00e9n pulsado Volver atr\u00e1s (2 s) para ir al Inicio", + "app_bell_onboarding_shortcuts_step_light_click": "Clic ligero para aceptar y avanzar", + "app_bell_onboarding_shortcuts_step_restart": "Pulsa ambos botones laterales 10 s para reiniciar", + "app_bell_onboarding_shortcuts_step_rotate": "Girar para seleccionar", + "app_bell_onboarding_shortcuts_step_turn_off": "Pulsa Volver atr\u00e1s 10 s para apagar el dispositivo", + "app_bell_relaxation_error_message": "Formato de archivo no admitido", + "app_bell_relaxation_limit_error_message": "L\u00edmite de archivos alcanzado,
pueden producirse errores.
", + "app_bell_relaxation_file_deleted_message": "Se ha eliminado el archivo.", + "app_bell_relaxation_loop": "bucle", + "app_bell_relaxation_loop_description": "la canci\u00f3n se reproducir\u00e1 hasta que la apagues", + "app_bell_relaxation_looped": "en bucle", + "app_bell_relaxation_once": "una vez", + "app_bell_relaxation_once_description": "la canci\u00f3n se reproducir\u00e1 una vez", + "app_bell_relaxation_timer_title": "Temporizador", + "app_bell_settings_about": "Informaci\u00f3n", + "app_bell_settings_about_info_text": "www.mudita.com", + "app_bell_settings_about_info_title": "Manual y certificaci\u00f3n", + "app_bell_settings_about_product": "Mudita Harmony", + "app_bell_settings_about_storage_text": "Usados $USED_MEMORYMB de $TOTAL_MEMORYMB", + "app_bell_settings_about_storage_title": "Almacenamiento", + "app_bell_settings_about_version": "Versi\u00f3n del SO: $VERSION", + "app_bell_settings_alarm_settings": "Ajustes de alarma", + "app_bell_settings_alarm_settings_alarm_tone_and_light": "Alarma principal", + "app_bell_settings_alarm_settings_light": "Luz de alarma", + "app_bell_settings_alarm_settings_prewake_up": "Despertar gradual", + "app_bell_settings_alarm_settings_prewake_up_chime_bottom_description": "antes de la alarma", + "app_bell_settings_alarm_settings_prewake_up_chime_tone": "Tono", + "app_bell_settings_alarm_settings_prewake_up_chime_top_description": "Despertar gradualmente", + "app_bell_settings_alarm_settings_prewake_up_chime_volume": "Volumen", + "app_bell_settings_alarm_settings_prewake_up_light_bottom_description": "antes de la alarma", + "app_bell_settings_alarm_settings_prewake_up_light_top_description": "Luz", + "app_bell_settings_alarm_settings_snooze": "Repetici\u00f3n", + "app_bell_settings_alarm_settings_snooze_chime_interval": "Intervalo del tono", + "app_bell_settings_alarm_settings_snooze_chime_interval_bot_desc": "durante la funci\u00f3n de repetici\u00f3n", + "app_bell_settings_alarm_settings_snooze_chime_tone": "Tono", + "app_bell_settings_alarm_settings_snooze_chime_volume": "Volumen", + "app_bell_settings_alarm_settings_snooze_length": "Duraci\u00f3n de Repetici\u00f3n", + "app_bell_settings_alarm_settings_title": "Ajustes de alarma", + "app_bell_settings_alarm_settings_tone": "Tono de alarma", + "app_bell_settings_alarm_settings_volume": "Volumen de alarma", + "app_bell_settings_bedtime_settings_tone": "Hora de dormir", + "app_bell_settings_bedtime_settings_volume": "Volumen", + "app_bell_settings_bedtime_tone": "Hora de dormir", + "app_bell_settings_display_factory_reset_confirmation": "\u00bfRestablecer la configuraci\u00f3n?", + "app_bell_settings_factory_reset": "Restablecer", + "app_bell_settings_frontlight": "Luz frontal", + "app_bell_settings_frontlight_mode_auto": "autom\u00e1tico", + "app_bell_settings_frontlight_mode_on_demand": "manual", + "app_bell_settings_frontlight_mode_top_message": "Modo de luz frontal", + "app_bell_settings_frontlight_top_message": "Intensidad de luz frontal", + "app_bell_settings_language": "Idioma", + "app_bell_settings_layout": "Esfera del reloj", + "app_bell_settings_temp_scale": "Escala de temperatura", + "app_bell_settings_time_units": "Hora", + "app_bell_settings_time_units_time_fmt_top_message": "Formato de hora", + "app_bell_settings_time_units_time_message": "Hora", + "app_bell_settings_turn_off": "Apagar", + "app_bell_turn_off_question": "\u00bfApagar Mudita Harmony?", + "app_bell_welcome_charge_message": "Carga tu Harmony
y pulsa levemente
", + "app_bell_welcome_message": "Mudita Harmony
est\u00e1 apagado
", + "app_bellmain_alarm": "Alarma", + "app_bellmain_bedtime": "Hora de dormir", + "app_bellmain_home_screen_bottom_desc": "La siguiente alarma sonar\u00e1", + "app_bellmain_home_screen_bottom_desc_and": "&", + "app_bellmain_home_screen_bottom_desc_dp": "Presionar a fondo para activar", + "app_bellmain_home_screen_bottom_desc_in": "en", + "app_bellmain_meditation_timer": "Meditaci\u00f3n", + "app_bellmain_power_nap": "Siesta", + "app_bellmain_relaxation": "Relajaci\u00f3n", + "app_bellmain_settings": "Ajustes", + "app_bellmain_usb_status_connected": "Conectado", + "app_calculator_decimal_separator": ",", + "app_calculator_equals": "IGUAL A", + "app_calculator_error": "Error", + "app_calculator_title_main": "Calculadora", + "app_calendar_all_day": "Todo el d\u00eda", + "app_calendar_bar_list": "LISTA", + "app_calendar_bar_month": "MES", + "app_calendar_custom_repeat_title": "Repetici\u00f3n personalizada", + "app_calendar_edit": "EDITAR", + "app_calendar_edit_event_title": "Editar evento", + "app_calendar_event_delete_confirmation": "\u00bfEliminar este evento?", + "app_calendar_event_detail": "Evento", + "app_calendar_event_detail_reminder": "Recordatorio", + "app_calendar_event_detail_repeat": "Repetir", + "app_calendar_event_error_dates": "La fecha de inicio debe ser anterior\na la de finalizaci\u00f3n", + "app_calendar_event_error_empty_name": "El nombre del evento no puede estar vac\u00edo", + "app_calendar_new_edit_event_allday": "Evento de todo el d\u00eda", + "app_calendar_new_edit_event_end": "Fin", + "app_calendar_new_edit_event_name": "Nombre del evento", + "app_calendar_new_edit_event_start": "Inicio", + "app_calendar_new_event_title": "Nuevo evento", + "app_calendar_no_events_information": "No hay eventos.

Pulsa la flecha izquierda para a\u00f1adir uno.

", + "app_calendar_options_delete": "Eliminar", + "app_calendar_options_edit": "Editar", + "app_calendar_reminder_15_min_before": "15 min antes", + "app_calendar_reminder_1_day_before": "1 d\u00eda antes", + "app_calendar_reminder_1_hour_before": "1 h antes", + "app_calendar_reminder_1_week_before": "1 semana antes", + "app_calendar_reminder_2_days_before": "2 d\u00edas antes", + "app_calendar_reminder_2_hour_before": "2 h antes", + "app_calendar_reminder_30_min_before": "30 min antes", + "app_calendar_reminder_5_min_before": "5 min antes", + "app_calendar_reminder_event_time": "En el momento del evento", + "app_calendar_reminder_never": "Nunca", + "app_calendar_repeat_custom": "Personalizado", + "app_calendar_repeat_daily": "Diario", + "app_calendar_repeat_month": "Mes", + "app_calendar_repeat_never": "Nunca", + "app_calendar_repeat_two_weeks": "Cada dos semanas", + "app_calendar_repeat_weekly": "Semanal", + "app_calendar_repeat_year": "A\u00f1o", + "app_calendar_title_main": "Calendario", + "app_call_answer": "RESPONDER", + "app_call_bluetooth": "BLUETOOTH", + "app_call_call": "LLAMAR", + "app_call_call_ended": "llamada finalizada", + "app_call_call_rejected": "llamada rechazada", + "app_call_call_request_failed": "Algo sali\u00f3 mal.", + "app_call_calling": "llamando...", + "app_call_clear": "BORRAR", + "app_call_contact": "CONTACTO", + "app_call_emergency": "Llamada de emergencia", + "app_call_emergency_text": "Llamada de emergencia", + "app_call_end_call": "COLGAR", + "app_call_ending_call": "Desconectando llamada", + "app_call_is_calling": "est\u00e1 llamando", + "app_call_message": "MENSAJE", + "app_call_mute": "SILENCIAR", + "app_call_muted": "SILENCIADO", + "app_call_no_network_connection": "No hay conexi\u00f3n de red.", + "app_call_no_sim": "No hay SIM.\n\nPara hacer una llamada,\ndebes insertar una tarjeta SIM.", + "app_call_offline": "No tienes conexi\u00f3n.\n\nPara hacer una llamada,\n cambia al modo Conectado.", + "app_call_private_number": "N\u00famero privado", + "app_call_reject": "RECHAZAR", + "app_call_speaker": "ALTAVOZ", + "app_call_speaker_on": "ALTAVOZ ON", + "app_call_wrong_emergency": "No es posible realizar la llamada.\n$NUMBER no es un n\u00famero de emergencias.", + "app_calllog_date": "Fecha", + "app_calllog_delete_all_calls": "Eliminar todas las llamadas", + "app_calllog_delete_all_calls_confirmation": "Eliminar todas las llamadas de\nla lista?", + "app_calllog_delete_call_confirmation": "\u00bfEliminar esta llamada de la lista?", + "app_calllog_duration": "Duraci\u00f3n", + "app_calllog_incoming_call": "Llamada entrante", + "app_calllog_missed_call": "Llamada perdida", + "app_calllog_no_calls": "A\u00fan no hay llamadas.", + "app_calllog_options_delete_call": "Eliminar llamada", + "app_calllog_outgoing_call": "Llamada saliente", + "app_calllog_rejected_call": "Llamada rechazada", + "app_calllog_title_main": "Llamadas", + "app_calllog_type": "Llamada", + "app_desktop_calls": "LLAMADAS", + "app_desktop_clear": "BORRAR", + "app_desktop_clear_all": "BORRAR TODO", + "app_desktop_emergency": "SOS", + "app_desktop_info": "Info.", + "app_desktop_info_mmi_call_barring": "Bloqueo de llamadas", + "app_desktop_info_mmi_call_barring_activated": "Bloqueo de llamadas activado", + "app_desktop_info_mmi_call_barring_deactivated": "Bloqueo de llamadas desactivado", + "app_desktop_info_mmi_call_forwarding": "Desv\u00edo de llamadas", + "app_desktop_info_mmi_call_forwarding_disabled": "desv\u00edo de llamadas desactivado", + "app_desktop_info_mmi_call_waiting": "Llamada en espera", + "app_desktop_info_mmi_call_waiting_activated": "Llamada en espera activada", + "app_desktop_info_mmi_call_waiting_deactivated": "Llamada en espera desactivada", + "app_desktop_info_mmi_clip": "Id. de llamada visible (CLIP)", + "app_desktop_info_mmi_clip_activated": "CLIP activado", + "app_desktop_info_mmi_clip_deactivated": "CLIP desactivado", + "app_desktop_info_mmi_clip_not_provisioned": "CLIP no aprovisionado", + "app_desktop_info_mmi_clip_provisioned": "CLIP aprovisionado", + "app_desktop_info_mmi_clip_unknown": "CLIP desconocido", + "app_desktop_info_mmi_clir": "Id. de llamada oculta (CLIR)", + "app_desktop_info_mmi_clir_according_to_subscription": "CLIR seg\u00fan la suscripci\u00f3n", + "app_desktop_info_mmi_clir_disabled": "CLIR desactivado", + "app_desktop_info_mmi_clir_enabled": "CLIR activado", + "app_desktop_info_mmi_clir_not_provisioned": "CLIR no aprovisionado", + "app_desktop_info_mmi_clir_permanent_provisioned": "CLIR aprovisionado permanentemente", + "app_desktop_info_mmi_clir_temporary_allowed": "CLIR permitido temporalmente", + "app_desktop_info_mmi_clir_temporary_restricted": "CLIR restringido temporalmente", + "app_desktop_info_mmi_clir_unknown": "CLIR desconocido", + "app_desktop_info_mmi_common_activated": "el servicio se ha activado", + "app_desktop_info_mmi_common_all_disabled": "todos los servicios del portador desactivados", + "app_desktop_info_mmi_common_async": "asincr.", + "app_desktop_info_mmi_common_data": "datos", + "app_desktop_info_mmi_common_deactivated": "el servicio se ha desactivado", + "app_desktop_info_mmi_common_disabled": "desactivado", + "app_desktop_info_mmi_common_enabled": "activado", + "app_desktop_info_mmi_common_failed": "error", + "app_desktop_info_mmi_common_fax": "FAX", + "app_desktop_info_mmi_common_mmi_not_supported": "no compatible", + "app_desktop_info_mmi_common_no_message": "no", + "app_desktop_info_mmi_common_query": "consulta", + "app_desktop_info_mmi_common_sync": "sincr.", + "app_desktop_info_mmi_common_voice": "voz", + "app_desktop_info_mmi_confirmation": "Espere, porfavor...

Procesando el c\u00f3digo MMI/USSD.
", + "app_desktop_info_mmi_disabling_failed": "Error al desactivar servicio", + "app_desktop_info_mmi_disabling_success": "El servicio se ha desactivado", + "app_desktop_info_mmi_enabling_failed": "Error al activar servicio", + "app_desktop_info_mmi_enabling_success": "El servicio se ha activado", + "app_desktop_info_mmi_erasure_failed": "Error al borrar", + "app_desktop_info_mmi_erasure_success": "Borrado correcto", + "app_desktop_info_mmi_imei": "IMEI (MEID)", + "app_desktop_info_mmi_none_specified_failed": "Error en la operaci\u00f3n", + "app_desktop_info_mmi_none_specified_success": "Operaci\u00f3n completada", + "app_desktop_info_mmi_registration_failed": "Error en el registro", + "app_desktop_info_mmi_registration_success": "Registro correcto", + "app_desktop_info_mmi_result_failed": "Error", + "app_desktop_info_mmi_result_success": "Correcto", + "app_desktop_menu": "MEN\u00da", + "app_desktop_menu_alarm": "ALARMA", + "app_desktop_menu_calendar": "CALENDARIO", + "app_desktop_menu_contacts": "CONTACTOS", + "app_desktop_menu_meditation": "MEDITACI\u00d3N", + "app_desktop_menu_messages": "MENSAJES", + "app_desktop_menu_music": "M\u00daSICA", + "app_desktop_menu_phone": "LLAMADAS", + "app_desktop_menu_settings": "AJUSTES", + "app_desktop_menu_title": "Men\u00fa", + "app_desktop_menu_tools": "HERRAMIENTAS", + "app_desktop_missed_calls": "Llamadas perdidas", + "app_desktop_poweroff_question": "\u00bfApagar el tel\u00e9fono?", + "app_desktop_poweroff_title": "Apagar", + "app_desktop_press_to_complete_unlock": "Presione # para desbloquear", + "app_desktop_press_to_unlock": "Pulsa Desbloquear y despu\u00e9s #", + "app_desktop_replay": "RESPONDER", + "app_desktop_show": "MOSTRAR", + "app_desktop_tools_antenna": "PRUEBA DE ANTENA", + "app_desktop_tools_calculator": "CALCULADORA", + "app_desktop_tools_notes": "NOTAS", + "app_desktop_tools_title": "Herramientas", + "app_desktop_unlock": "DESBLOQUEAR", + "app_desktop_unread_messages": "Mensajes no le\u00eddos", + "app_desktop_unread_single_message": "Mensaje no le\u00eddo", + "app_emoji_input_window": "Emoji", + "app_meditation_countdown_desc": "Empieza en", + "app_meditation_interval_chime": "Campanilla de intervalo", + "app_meditation_interval_every_x_minutes": "Cada %0 minutos", + "app_meditation_interval_none": "Ninguno", + "app_meditation_minute": "MINUTO", + "app_meditation_minutes": "MINUTOS", + "app_meditation_option_show_counter": "Mostrar temporizador de meditaci\u00f3n", + "app_meditation_preparation_time": "Tiempo de preparaci\u00f3n", + "app_meditation_put_down_phone_and_wait": "Deja a un lado el tel\u00e9fono
y espera a que suene el gong.
", + "app_meditation_summary": "Has meditado por
", + "app_meditation_summary_average": "Promedio/por d\u00eda:", + "app_meditation_summary_title": "\u00daltimos $VALUE d\u00edas", + "app_meditation_summary_total": "Total:
$VALUE
", + "app_meditation_thank_you_for_session": "Gracias por esta
sesi\u00f3n de meditaci\u00f3n.
", + "app_meditation_title_main": "Temporizador de meditaci\u00f3n", + "app_messages_message": "Mensaje", + "app_messages_message_delete_confirmation": "

\u00bfSeguro que quieres eliminar

este mensaje?
", + "app_messages_no_messages": "No hay mensajes.

Pulsa la flecha izquierda para a\u00f1adir uno.

", + "app_messages_no_sim": "No hay SIM.\n\nPara enviar un SMS,\ndebes insertar una tarjeta SIM.", + "app_messages_no_templates": "A\u00fan no hay plantillas.

Crea una nueva plantilla en Mudita

Center para usar en tu Pure.

", + "app_messages_templates": "Plantillas", + "app_messages_thread_delete_confirmation": "\u00bfEliminar esta conversaci\u00f3n?", + "app_messages_thread_draft": "Borrador: ", + "app_messages_thread_no_result": "No hay resultados", + "app_messages_thread_not_sent": "No enviado: ", + "app_messages_thread_you": "T\u00fa: ", + "app_messages_title_main": "Mensajes", + "app_music_player_albums": " \u00c1lbumes ", + "app_music_player_all_songs": "Todas las canciones", + "app_music_player_artists": " Artistas ", + "app_music_player_empty_track_notification": "Elige una canci\u00f3n de la biblioteca", + "app_music_player_music_empty_window_notification": "Selecciona la Biblioteca de m\u00fasica para elegir\n una canci\u00f3n de la biblioteca.", + "app_music_player_music_library": "BIBLIOTECA DE M\u00daSICA", + "app_music_player_music_library_window_name": "Biblioteca de m\u00fasica", + "app_music_player_play": "REPRODUCIR", + "app_music_player_playlists": " Listas de reproducci\u00f3n ", + "app_music_player_quit": "SALIR", + "app_music_player_start_window_notification": " Presiona la abajo para elegir

una canci\u00f3n
", + "app_music_player_uknown_artist": "Artista desconocido", + "app_music_player_uknown_title": "T\u00edtulo desconocido", + "app_notes_delete_note": "Eliminar", + "app_notes_edit": "EDITAR", + "app_notes_edit_note": "Editar nota", + "app_notes_edited": "Editado", + "app_notes_new_note": "Nueva nota", + "app_notes_no_notes": "No hay notas.

Pulsa la flecha izquierda para a\u00f1adir una.

", + "app_notes_note_delete_confirmation": "\u00bfSeguro que quieres eliminar esta nota?", + "app_notes_search_no_results": "No se encontraron notas.", + "app_notes_title_main": "Notas", + "app_onboarding_configuration_successful": "Tu Mudita Pure

ya est\u00e1 listo.
", + "app_onboarding_eula_license": "Acuerdo de licencia (ALUF)", + "app_onboarding_no_configuration": "Tu Mudita Pure no est\u00e1

configurado. Ve a

Ajustes para configurarlo.
", + "app_onboarding_no_sim_selected_description": "No se ha configurado ninguna tarjeta SIM.

Para conectarte a la red, configura una

tarjeta SIM en Ajustes.
>", + "app_onboarding_no_sim_selected_title": "Configuraci\u00f3n de SIM", + "app_onboarding_select_sim": "Elegir SIM activa", + "app_onboarding_select_sim_description": "Solo puede haber una SIM activa a la vez.

Puedes elegirla ahora y cambiarla

en Ajustes siempre que quieras.
", + "app_onboarding_skip_confirm": "Es necesario configurar la SIM para conectarse a la red. \u00bfOmitir la configuraci\u00f3n? ", + "app_onboarding_start_configuration": "

\u00a1Hola!



Vamos a configurar tu Mudita Pure.", + "app_onboarding_title": "Primeros pasos", + "app_onboarding_title_configuration": "Configuraci\u00f3n", + "app_onboarding_title_update_info": "Actualizaci\u00f3n del SO de Mudita", + "app_onboarding_update_info": "La versi\u00f3n actual del SO de Mudita es la$VERSION

Las frecuentes actualizaciones incluyen nuevas funciones y correcciones.

Para actualizar tu tel\u00e9fono,

visita:
www.mudita.com/updateos

y sigue las instrucciones.", + "app_options_contact_add": "A\u00f1adir a contactos", + "app_options_contact_details": "Detalles de contacto", + "app_options_contact_edit": "Editar contacto", + "app_options_invalid_option": " ", + "app_phonebook_check": "MARCAR", + "app_phonebook_contact_deleted": "Se ha eliminado el contacto.

No es posible editar.
", + "app_phonebook_contact_flag_blocked": "OBSTRUIDO", + "app_phonebook_contact_flag_fav": "FAVORITOS", + "app_phonebook_contact_flag_ice": "EMERGENCIA", + "app_phonebook_contact_flag_speed_dial": "MAR.R\u00c1PIDA", + "app_phonebook_contact_information": "Informaci\u00f3n", + "app_phonebook_contact_no_name": "sin nombre", + "app_phonebook_contact_title": "A\u00f1adir contacto", + "app_phonebook_duplicate_speed_dial": "El n\u00famero $CONTACT_SPEED_DIAL$ est\u00e1 asignado a \n $CONTACT_FORMATTED_NAME$. \u00bfReemplazarlo?", + "app_phonebook_duplicate_speed_dial_title": "Tecla de marcaci\u00f3n r\u00e1pida ($CONTACT_SPEED_DIAL$)", + "app_phonebook_favorite_contacts_title": "Favoritos", + "app_phonebook_ice_contacts_title": "Contactos de emergencia", + "app_phonebook_multiple_numbers_first": "N\u00famero", + "app_phonebook_multiple_numbers_second": "N\u00famero alternativo", + "app_phonebook_new_add_to_fav": "A\u00f1adir a favoritos", + "app_phonebook_new_add_to_ice": "A\u00f1adir a contactos de emergencia", + "app_phonebook_new_contact_address": "Direcci\u00f3n", + "app_phonebook_new_contact_email": "Correo electr\u00f3nico", + "app_phonebook_new_contact_first_name": "Nombre", + "app_phonebook_new_contact_invalid_number": "No se puede guardar este contacto.

El n\u00famero de tel\u00e9fono que ingres\u00f3

tiene un formato no v\u00e1lido.
", + "app_phonebook_new_contact_last_name": "Apellido", + "app_phonebook_new_contact_note": "Nota", + "app_phonebook_new_contact_number": "N\u00famero", + "app_phonebook_new_contact_second_number": "N\u00famero alternativo", + "app_phonebook_new_speed_dial_key": "Tecla de marcaci\u00f3n r\u00e1pida", + "app_phonebook_no_contacts": "A\u00fan no hay contactos.

Presiona la flecha izquierda para agregar nuevos.

", + "app_phonebook_no_contacts_yet": "A\u00fan no hay contactos.", + "app_phonebook_options_block": "Bloquear", + "app_phonebook_options_block_notification": "Contacto bloqueado.", + "app_phonebook_options_delete": "Eliminar", + "app_phonebook_options_delete_confirm": "\u00bfSeguro que quieres eliminar\neste contacto?", + "app_phonebook_options_delete_notification": "Este contacto se ha eliminado\ncon \u00e9xito.", + "app_phonebook_options_edit": "Editar contacto", + "app_phonebook_options_forward_namecard": "Reenviar tarjeta de visita", + "app_phonebook_options_send_sms": "Enviar por SMS", + "app_phonebook_options_unblock": "Desbloquear", + "app_phonebook_options_unblock_notification": "Contacto desbloqueado.", + "app_phonebook_search_no_results": "No se encontraron contactos.", + "app_phonebook_title_main": "Contactos", + "app_phonebook_uncheck": "DESMARCAR", + "app_popup_bt_volume_text": "VOLUMEN DEL BLUETOOTH", + "app_popup_call_volume_text": "VOLUMEN DE LLAMADAS", + "app_popup_music_volume_text": "VOLUMEN DE M\u00daSICA", + "app_popup_muted_text": "SILENCIADO", + "app_popup_volume_text": "VOLUMEN", + "app_settings_Templates": "Plantillas", + "app_settings_about": "Sobre Mudita Pure", + "app_settings_about_your_pure": "Mi dispositivo Pure", + "app_settings_advanced": "Avanzados", + "app_settings_allow": "Permitir", + "app_settings_apn_APN": "APN", + "app_settings_apn_apnprotocol": "Protocolo APN", + "app_settings_apn_apntype": "Tipo de APN", + "app_settings_apn_authtype": "Tipo de autenticaci\u00f3n", + "app_settings_apn_name": "Nombre", + "app_settings_apn_options_delete": "Eliminar", + "app_settings_apn_options_edit": "Editar", + "app_settings_apn_options_set_as_default": "Establecer como predeterminado", + "app_settings_apn_password": "Contrase\u00f1a", + "app_settings_apn_settings_no_apns": "No hay ning\u00fan APN.

Pulsa la flecha izquierda para a\u00f1adir uno.

", + "app_settings_apn_username": "Usuario", + "app_settings_apps": "Aplicaciones", + "app_settings_apps_alarm_clock": "Alarma", + "app_settings_apps_alarm_clock_manual_volume": "Volumen de sonido manual", + "app_settings_apps_calendar": "Calendario", + "app_settings_apps_messages": "Mensajes", + "app_settings_apps_phone": "Tel\u00e9fono", + "app_settings_bluetooth_add_device": "A\u00f1adir dispositivo", + "app_settings_bluetooth_all_devices": "A\u00f1adir dispositivos", + "app_settings_bluetooth_connecting_error_message": "Error en el proceso de conexi\u00f3n.

Comprueba el dispositivo e
INT\u00c9NTALO DE NUEVO.", + "app_settings_bluetooth_enter_passkey": "Introducir clave de paso:", + "app_settings_bluetooth_init_error_message": "Error en el proceso de inicializaci\u00f3n de Bluetooth.", + "app_settings_bluetooth_main": "Bluetooth", + "app_settings_bluetooth_phone_name": "Nombre del tel\u00e9fono", + "app_settings_bluetooth_phone_visibility": "Visibilidad del tel\u00e9fono", + "app_settings_bluetooth_searching_devices": "Buscando dispositivos... \nEsto puede tardar unos instantes.", + "app_settings_bluetooth_unpairing_error_message": "Error en el proceso de desemparejamiento.

Comprueba el dispositivo e
INT\u00c9NTALO DE NUEVO.", + "app_settings_bt": "Bluetooth", + "app_settings_call_ringtome": "Tono de llamada", + "app_settings_calls_from_favorites": "Llamadas de favoritos", + "app_settings_certification": "Certificaci\u00f3n", + "app_settings_connected": "Conectado", + "app_settings_date_and_time": "Fecha y hora", + "app_settings_date_and_time_automatic_date_and_time": "Fecha y hora autom\u00e1ticas", + "app_settings_date_and_time_change_date_and_time": "Cambiar fecha y hora", + "app_settings_date_and_time_change_time_zone": "Cambiar zona horaria", + "app_settings_date_and_time_date_format": "Formato de fecha", + "app_settings_date_and_time_time_format": "Formato de hora", + "app_settings_date_and_time_time_zone": "Zona horaria", + "app_settings_disp_key": "Pantalla y teclado num\u00e9rico", + "app_settings_display": "Pantalla", + "app_settings_display_dark_mode": "Modo oscuro (Beta)", + "app_settings_display_display_light": "Luz de pantalla", + "app_settings_display_factory_reset_confirmation": "Tu Pure se va a apagar. Enci\u00e9ndelo manualmente para continuar.\n\u00bfQuieres apagar el tel\u00e9fono ahora?", + "app_settings_display_font_size": "Tama\u00f1o de la fuente", + "app_settings_display_input_language": "Idioma de entrada", + "app_settings_display_keypad_light": "Luz de teclado num\u00e9rico", + "app_settings_display_keypad_light_active": "Cuando est\u00e1 activo", + "app_settings_display_keypad_light_off": "Apagada", + "app_settings_display_keypad_light_on": "Siempre encendida", + "app_settings_display_light_auto": "Autom\u00e1tica", + "app_settings_display_light_brightness": "Brillo", + "app_settings_display_light_main": "Luz frontal", + "app_settings_display_security_autolock": "Bloq. auto.", + "app_settings_display_wallpaper": "Fondo de pantalla", + "app_settings_display_wallpaper_clock": "Reloj", + "app_settings_display_wallpaper_edit_custom_quotes": "Editar citas personalizadas", + "app_settings_display_wallpaper_edit_quotes": "Editar citas", + "app_settings_display_wallpaper_logo": "Logotipo de Mudita", + "app_settings_display_wallpaper_quotes": "Citas", + "app_settings_display_wallpaper_quotes_author": "Autor", + "app_settings_display_wallpaper_quotes_categories": "Categor\u00edas", + "app_settings_display_wallpaper_quotes_delete": "Eliminar", + "app_settings_display_wallpaper_quotes_delete_confirmation": "\u00bfEliminar cita?", + "app_settings_display_wallpaper_quotes_delete_success": "Cita eliminada.", + "app_settings_display_wallpaper_quotes_edit": "Editar", + "app_settings_display_wallpaper_quotes_new": "Nueva cita", + "app_settings_display_wallpaper_quotes_note": "Nota", + "app_settings_factory_reset": "Configuraci\u00f3n de f\u00e1brica", + "app_settings_factory_reset_in_progress": "A\u00fan no se han restablecido los valores de f\u00e1brica, enciende tu dispositivo Pure para continuar.", + "app_settings_info_dnd": "Recibe todas las notificaciones en silencio. Puedes permitir notificaciones completas de tus contactos favoritos.", + "app_settings_info_offline_flight_mode": "Completamente desconectado. Las llamadas, los mensajes y la conexi\u00f3n no est\u00e1n disponibles.", + "app_settings_info_offline_messages_only": "Env\u00eda y descarga mensajes seg\u00fan los intervalos de conexi\u00f3n. Sin llamadas ni conexi\u00f3n.", + "app_settings_language": "Idioma", + "app_settings_message_sound": "Sonido de mensajes", + "app_settings_messages_only": "Solo mensajes", + "app_settings_net": "Red", + "app_settings_network_active_card": "Toma activa", + "app_settings_network_all_operators": "Todos los operadores", + "app_settings_network_apn_settings": "Configuraci\u00f3n de APN", + "app_settings_network_import_contacts": "Importar contactos", + "app_settings_network_import_contacts_duplicates": "Duplicados de SIM", + "app_settings_network_import_contacts_from_sim_card": "Importar contactos de la SIM", + "app_settings_network_import_contacts_from_sim_card_duplicates": "Encontramos $DUPLICATES duplicados. \u00bfQuieres importar

contactos duplicados y reemplazar los existentes?
", + "app_settings_network_import_contacts_from_sim_card_no_contacts": "No hay contactos

en esta tarjeta SIM.
", + "app_settings_network_import_contacts_from_sim_card_reading": "Importaci\u00f3n en curso ...

Espere un momento.
", + "app_settings_network_import_contacts_from_sim_card_success": "Contactos importados correctamente.", + "app_settings_network_not_connected": "sin tarjeta", + "app_settings_network_operator_auto_select": "Selecci\u00f3n autom\u00e1tica de operador", + "app_settings_network_pin": "PIN", + "app_settings_network_pin_change_code": "Cambiar c\u00f3digo PIN", + "app_settings_network_pin_settings": "Configuraci\u00f3n de PIN", + "app_settings_network_sim1": "SIM1", + "app_settings_network_sim2": "SIM2", + "app_settings_network_sim_cards": "Tarjetas SIM", + "app_settings_network_sim_none": "No hay SIM", + "app_settings_network_unblock_card": "Desbloquear la tarjeta", + "app_settings_network_voice_over_lte": "VoLTE", + "app_settings_network_volte_not_available": "no disponible", + "app_settings_new_edit_apn": "Nuevo/Editar APN", + "app_settings_no_network_connection_flight_mode": "Modo avi\u00f3n", + "app_settings_notifications_when_locked": "Notificaciones cuando est\u00e9 bloqueado", + "app_settings_option_connected_audio": "AUDIO CONECTADO", + "app_settings_option_connected_voice": "VOZ CONECTADA", + "app_settings_option_connected_both": "VOZ Y AUDIO CONECTADOS", + "app_settings_option_connecting": "CONECTANDO", + "app_settings_option_pairing": "EMPAREJANDO", + "app_settings_phone_modes": "Modos del tel\u00e9fono", + "app_settings_sar": "TAE", + "app_settings_security": "Seguridad", + "app_settings_security_change_phone_lock": "Cambiar c\u00f3digo de acceso", + "app_settings_security_phone_lock": "C\u00f3digo de acceso", + "app_settings_show_unread_first": "Mostrar no le\u00eddos primero", + "app_settings_sound": "Sonido", + "app_settings_system": "Sistema", + "app_settings_tech_info_battery": "Bater\u00eda", + "app_settings_tech_info_imei": "IMEI", + "app_settings_tech_info_model": "Modelo", + "app_settings_tech_info_os_version": "Versi\u00f3n del SO", + "app_settings_tech_info_pcb_am": "pcbAM", + "app_settings_tech_info_pcb_lm": "pcbLM", + "app_settings_tech_info_pcb_mb": "pcbMB", + "app_settings_tech_info_pcb_um": "pcmUM", + "app_settings_tech_info_serial_number": "N\u00famero de serie", + "app_settings_title_color_test": "Mostrar colores disponibles", + "app_settings_title_connection_frequency": "Frecuencia de conexi\u00f3n", + "app_settings_title_day": "D\u00eda", + "app_settings_title_do_not_disturb": "No molestar", + "app_settings_title_languages": "Selecci\u00f3n de idioma", + "app_settings_title_main": "Ajustes", + "app_settings_title_month": "Mes", + "app_settings_title_offline": "Desconectado", + "app_settings_title_time": "Hora", + "app_settings_title_year": "A\u00f1o", + "app_settings_toggle_off": "DES", + "app_settings_toggle_on": "ACT", + "app_settings_toggle_transiting": "comprobando...", + "app_settings_toolbar_reset": "RESTABLECER", + "app_settings_vibration": "Vibraci\u00f3n", + "app_settings_volume": "Volumen", + "app_settings_volume_focused": "Volumen", + "app_sms_offline": "No tienes conexi\u00f3n.\n\nPara enviar un SMS,\n cambia al modo Conectado.", + "app_special_input_window": "Caracteres especiales", + "bluetooth_info_popup_error": "Proceso de vinculaci\u00f3n con $DEVICE

ha fallado. C\u00f3digo de error: $ERROR", + "bluetooth_info_popup_success": "Su tel\u00e9fono est\u00e1 emparejado con:

$DEVICE", + "bluetooth_popup": "Bluetooth", + "bluetooth_popup_cancel": "Cancelar", + "bluetooth_popup_confirm": "Confirmar", + "bluetooth_popup_pair_cancel_code": "El dispositivo $DEVICE quiere emparejarse con tu Pure.
Debes confirmar el c\u00f3digo: $CODE
", + "bluetooth_popup_pair_cancel_no_code": "El dispositivo $DEVICE quiere emparejarse con tu Pure.", + "bluetooth_popup_passkey": "Introduzca la contrase\u00f1a:", + "bluetooth_popup_pin": "Introduzca en PIN:", + "brightness_text": "BRILLO", + "common_AM": "AM", + "common_PM": "PM", + "common_abort": "ANULAR", + "common_accept": "ACEPTAR", + "common_add": "A\u00d1ADIR", + "common_adjust": "AJUSTAR", + "common_april": "Abril", + "common_august": "Agosto", + "common_back": "ATR\u00c1S", + "common_call": "LLAMAR", + "common_check": "MARCAR", + "common_confirm": "CONFIRMAR", + "common_connect": "CONECTAR", + "common_contacts": "CONTACTOS", + "common_december": "Diciembre", + "common_disconnect": "DESCONECTAR", + "common_edit": "EDITAR", + "common_emoji": "EMOJI", + "common_february": "Febrero", + "common_forget": "OLVIDAR", + "common_fr": "V", + "common_fri": "Vi.", + "common_friday": "Viernes", + "common_information": "Informaci\u00f3n", + "common_january": "Enero", + "common_july": "Julio", + "common_june": "Junio", + "common_march": "Marzo", + "common_may": "Mayo", + "common_minute_lower": "minuto", + "common_minute_short": "min", + "common_minutes_lower": "minutos", + "common_minutes_lower_genitive": "minutos", + "common_mo": "L", + "common_mon": "Lu.", + "common_monday": "Lunes", + "common_no": "No", + "common_november": "Noviembre", + "common_october": "Octubre", + "common_ok": "OK", + "common_open": "ABRIR", + "common_options": "OPCIONES", + "common_options_title": "Opciones", + "common_pause": "PAUSA", + "common_paused": "Pausado", + "common_play": "REPRODUCIR", + "common_replace": "REEMPLAZAR", + "common_reply": "RESPONDER", + "common_results_prefix": "Resultados: ", + "common_resume": "REANUDAR", + "common_retry": "REINTENTAR", + "common_sa": "S", + "common_sat": "S\u00e1.", + "common_saturday": "S\u00e1bado", + "common_save": "GUARDAR", + "common_search": "BUSCAR", + "common_search_results": "Buscar resultados", + "common_search_uc": "Buscar", + "common_second_lower": "segundo", + "common_seconds_lower": "segundos", + "common_select": "SELECCIONAR", + "common_send": "ENVIAR", + "common_september": "Septiembre", + "common_set": "ESTABLECER", + "common_show": "MOSTRAR", + "common_skip": "OMITIR", + "common_special_characters": "ESPECIAL", + "common_start": "INICIAR", + "common_stop": "DETENER", + "common_su": "D", + "common_sun": "Do.", + "common_sunday": "Domingo", + "common_switch": "CAMBIAR", + "common_text_copy": "Copiar texto", + "common_text_paste": "Pegar texto", + "common_th": "J", + "common_thu": "Ju.", + "common_thursday": "Jueves", + "common_today": "Hoy", + "common_tu": "M", + "common_tue": "Ma.", + "common_tuesday": "Martes", + "common_uncheck": "DESMARCAR", + "common_use": "USAR", + "common_we": "X", + "common_wed": "Mi.", + "common_wednesday": "Mi\u00e9rcoles", + "common_yes": "S\u00ed", + "common_yesterday": "Ayer", + "duration_0hmin_0sec": "%0N:%0S", + "duration_0min_0sec": "%0M:%0S", + "duration_hour_0min_0sec": "%H:%0M:%0S", + "duration_min_0sec": "%M:%0S", + "home_modes_connected": "CONECTADO", + "home_modes_message_only": "Solo mensajes", + "home_modes_notdisturb": "NO MOLESTAR", + "home_modes_offline": "DESCONECTADO", + "locale_12hour_min": "%I:%M %p", + "locale_12hour_min_short": "%I:%M", + "locale_24hour_min": "%H:%M", + "locale_date_DD_MM_YY": "%d.%m.%y", + "locale_date_MM_DD_YY": "%m.%d.%y", + "locale_date_full": "%d.%m.%Y", + "locale_date_short": "%d.%m", + "metadata": { + "display_name": "Espa\u00f1ol" + }, + "phone_lock_blocked": "Lo sentimos, el tel\u00e9fono est\u00e1 bloqueado.", + "phone_lock_blocked_information": "C\u00f3digo de acceso incorrecto.

Int\u00e9ntalo de nuevo en $TIME.
", + "phone_lock_changed_successfully": "\u00a1El c\u00f3digo de acceso se ha cambiado correctamente!", + "phone_lock_configure": "Configura el c\u00f3digo de acceso:", + "phone_lock_confirm": "Confirma el c\u00f3digo de acceso:", + "phone_lock_confirm_new": "Confirma el nuevo c\u00f3digo de acceso:", + "phone_lock_current": "Introduce el c\u00f3digo de acceso actual:", + "phone_lock_disabled": "\u00a1C\u00f3digo de acceso desactivado!", + "phone_lock_enter_new": "Introduce el nuevo c\u00f3digo de acceso:", + "phone_lock_invalid": "\u00a1C\u00f3digo de acceso incorrecto!", + "phone_lock_invalid_retry": "C\u00f3digo de acceso incorrecto.

Vuelve a configurar el c\u00f3digo de acceso.
", + "phone_lock_notification": "Bloqueo de c\u00f3digo de acceso para: $TIME", + "phone_lock_set": "Elige el c\u00f3digo de acceso que

desbloquea el tel\u00e9fono.
", + "phone_lock_unlock": "Introduce el c\u00f3digo de acceso

para desbloquear:
", + "phone_lock_unlock_invalid": "C\u00f3digo de acceso incorrecto.", + "phone_needs_rebooting": "Tu tel\u00e9fono necesita reiniciarse. Pulsa cualquier tecla para confirmar y retira la bater\u00eda del dispositivo durante 10 segundos para reiniciarlo por completo.", + "sim_card_cant_connect": "No se puede conectar con la tarjeta $SIM.

Inserta la tarjeta.
", + "sim_card_change_in_progress": "Proceso de cambio de SIM en curso.

Tarda unos segundos.
", + "sim_card_changed_successfully": "La tarjeta SIM se ha cambiado con \u00e9xito.", + "sim_card_not_ready": "Esperando a que el m\u00f3dem se encienda.

Esto puede tardar unos instantes.
", + "sim_card_pin_disabled": "PIN de la tarjeta SIM desactivado", + "sim_card_pin_enabled": "PIN de la tarjeta SIM activado", + "sim_card_select_in_progress": "Proceso de selecci\u00f3n de SIM en curso.

Tarda unos segundos.
", + "sim_card_select_successfully": "Tarjeta SIM seleccionada con \u00e9xito.", + "sim_change_pin": "Cambiar c\u00f3digo PIN", + "sim_cme_error": "Tarjeta SIM

Error CME:$CMECODE
", + "sim_confirm_new_pin": "Confirma el nuevo c\u00f3digo PIN:", + "sim_enter_enter_current": "Introduce el c\u00f3digo PIN actual:", + "sim_enter_new_pin": "Introduce el nuevo c\u00f3digo PIN:", + "sim_enter_pin_unlock": "Introduce el c\u00f3digo PIN

para configurar la tarjeta $PINTYPE:
", + "sim_header_setup": "Configuraci\u00f3n de $SIM", + "sim_pin_changed_successfully": "El c\u00f3digo PIN se ha cambiado con \u00e9xito.", + "sim_puk_blocked": "La tarjeta SIM est\u00e1 bloqueada.

Ponte en contacto con tu operador.
", + "sim_setup_enter_puk": "La tarjeta SIM est\u00e1 bloqueada.

Para desbloquearla, introduce el c\u00f3digo PUK:
", + "sim_setup_wrong_pin": "C\u00f3digo PIN incorrecto. Te quedan

$ATTEMPTS intentos.
", + "sim_setup_wrong_pin_last_attempt": "C\u00f3digo PIN incorrecto. Te queda

1 intento.
", + "sim_setup_wrong_puk": "C\u00f3digo PUK incorrecto.

Te quedan $ATTEMPTS intentos.
", + "sim_setup_wrong_puk_last_attempt": "C\u00f3digo PUK incorrecto.

Te queda 1 intento.
", + "sim_setup_wrong_puk_last_attempt_warning": "Si introduces un c\u00f3digo incorrecto, la

tarjeta SIM se bloquear\u00e1

y deber\u00e1s ponerte en contacto con tu operador.
", + "sim_wrong_pin_confirmation": "C\u00f3digo PIN incorrecto.", + "sms_add_rec_num": "A\u00f1adir destinatario o escribir un n\u00famero", + "sms_call_text": "Llamar ", + "sms_copy": "Copiar", + "sms_delete_conversation": "Eliminar conversaci\u00f3n", + "sms_delete_message": "Eliminar mensaje", + "sms_forward_message": "Reenviar mensaje", + "sms_mark_read": "Marcar como le\u00eddo", + "sms_mark_unread": "Marcar como no le\u00eddo", + "sms_paste": "Pegar", + "sms_resend_failed": "Reenviar", + "sms_title_message": "Mensaje nuevo", + "sms_use_template": "Usar plantilla", + "statusbar_battery_charging": "Carg.", + "statusbar_battery_plugged": "Enchuf.", + "tethering": "Anclaje de red", + "tethering_enable_question": "Est\u00e1s conectado al ordenador.
\u00bfActivar el anclaje de red?
(algunas funciones podr\u00edan desactivarse)
", + "tethering_menu_access_decline": "El anclaje de red est\u00e1 activado.

Para acceder al men\u00fa,
desactiva el tethering.
", + "tethering_phone_mode_change_prohibited": "El anclaje de red est\u00e1 activado.

Este modo anula otros modos (Conectado, No molestar,
Desconectado)
y hace que dejen de funcionar.
", + "tethering_turn_off_question": "\u00bfDesactivar el anclaje de red?" } diff --git a/image/system_a/data/lang/Francais.json b/image/system_a/data/lang/Francais.json index 7964135872..2d07a84b24 100644 --- a/image/system_a/data/lang/Francais.json +++ b/image/system_a/data/lang/Francais.json @@ -1,720 +1,687 @@ { - "metadata": { - "display_name": "Français" - }, - "common_add": "AJOUTER", - "common_open": "OUVRIR", - "common_call": "APPELER", - "common_save": "SAUVEGARDER", - "common_reply": "RÉPONDRE", - "common_edit": "MODIFIER", - "common_send": "ENVOYER", - "common_confirm": "CONFIRMER", - "common_select": "SÉLECTIONNER", - "common_use": "UTILISER", - "common_ok": "OK", - "common_back": "RETOUR", - "common_skip": "SAUTER", - "common_contacts": "CONTACTS", - "common_set": "DÉFINIR", - "common_show": "AFFICHER", - "common_yes": "Oui", - "common_no": "Non", - "common_switch": "CHANGER", - "common_options": "OPTIONS", - "common_options_title": "Options", - "common_information": "Information", - "common_check": "COCHER", - "common_uncheck": "DÉCOCHER", - "common_emoji": "EMOJI", - "common_special_characters": "SPÉCIAL", - "common_start": "DÉBUTER", - "common_stop": "ARRÊTER", - "common_resume": "REPRENDRE", - "common_pause": "ARRÊTER", - "common_play": "JOUER", - "common_retry": "ESSAYER DE NOUVEAU", - "common_replace": "REMPLACER", - "common_abort": "ANNULER", - "common_connect": "CONNECTER", - "common_disconnect": "DÉCONNECTER", - "common_forget": "OUBLIER", - "common_adjust": "AJUSTER", - "common_mo": "LU", - "common_tu": "MA", - "common_we": "ME", - "common_th": "JE", - "common_fr": "VE", - "common_sa": "SA", - "common_su": "DI", - "common_mon": "Lun", - "common_tue": "Mar", - "common_wed": "Mer", - "common_thu": "Jeu", - "common_fri": "Ven", - "common_sat": "Sam", - "common_sun": "Dim", - "common_monday": "Lundi", - "common_tuesday": "Mardi", - "common_wednesday": "Mercredi", - "common_thursday": "Jeudi", - "common_friday": "Vendredi", - "common_saturday": "Samedi", - "common_sunday": "Dimanche", - "common_january": "Janvier", - "common_february": "Février", - "common_march": "Mars", - "common_april": "Avril", - "common_may": "Mai", - "common_june": "Juin", - "common_july": "Juillet", - "common_august": "Août", - "common_september": "Septembre", - "common_october": "Octobre", - "common_november": "Novembre", - "common_december": "Décembre", - "common_yesterday": "Hier", - "common_today": "Aujourd'hui", - "common_results_prefix": "Résultats : ", - "common_search": "CHERCHE", - "common_accept": "ACCEPTER", - "common_minute_lower": "minute", - "common_minutes_lower": "minutes", - "common_minutes_lower_genitive": "minutes", - "common_minute_short": "min", - "common_second_lower": "seconde", - "common_seconds_lower": "secondes", - "common_paused": "En pause", - "common_text_copy": "Copier le texte", - "common_text_paste": "Coller le texte", - "locale_12hour_min": "%I:%M %p", - "locale_12hour_min_short": "%I:%M", - "locale_24hour_min": "%H:%M", - "locale_date_DD_MM_YYYY": "%d.%m.%Y", - "locale_date_MM_DD_YYYY": "%m.%d.%Y", - "locale_date_DD_MM_YY": "%d.%m.%y", - "locale_date_MM_DD_YY": "%m.%d.%y", - "locale_date_DD_MM": "%d.%m", - "locale_date_MM_DD": "%m.%d", - "locale_date_Day_DD_Mon": "%A, %d %b", - "locale_date_Day_Mon_DD": "%A, %b %d", - "common_AM": "AM", - "common_PM": "PM", - "duration_min_0sec": "%M:%0S", - "duration_0min_0sec": "%0M:%0S", - "duration_0hmin_0sec": "%0N:%0S", - "duration_hour_0min_0sec": "%H:%0M:%0S", - "brightness_text": "LUMINOSITÉ", - "phone_needs_rebooting": "Your phone needs rebooting. Press any key to confirm and please remove the battery for 10 seconds to perform a full reboot", - "home_modes_connected": "CONNECTÉ", - "home_modes_notdisturb": "NE PAS DÉRANGER", - "home_modes_offline": "HORS LIGNE", - "home_modes_message_only": "Message seulement", - "statusbar_battery_charging": "Charg", - "statusbar_battery_plugged": "Plug", - "app_alarm_clock_title_main": "Réveil-matin", - "app_alarm_clock_repeat_never": "Jamais", - "app_alarm_clock_repeat_everyday": "Tous les jours", - "app_alarm_clock_repeat_week_days": "Jours de la semaine", - "app_alarm_clock_repeat_custom": "Personnalisé", - "app_alarm_clock_no_alarms_information": "Aucune alarme pour le moment.

Appuyez sur la flèche gauche pour en ajouter une nouvelle.

", - "app_alarm_clock_options_edit": "Modifier", - "app_alarm_clock_options_delete": "Supprimer", - "app_alarm_clock_options_turn_off_all_alarms": "Éteignez toutes les alarmes", - "app_alarm_clock_delete_confirmation": "Supprimer cette alarme ?", - "app_alarm_clock_new_alarm_title": "Nouvelle alarme", - "app_alarm_clock_edit_alarm_title": "Modifier l'alarme", - "app_alarm_clock_sound": "Son", - "app_alarm_clock_snooze": "Snooze", - "app_alarm_clock_repeat": "Répéter", - "app_alarm_clock_snooze_5_min": "5 min", - "app_alarm_clock_snooze_10_min": "10 min", - "app_alarm_clock_snooze_15_min": "15 min", - "app_alarm_clock_snooze_30_min": "30 min", - "app_alarm_clock_play_pause": "JOUER/PAUSE", - "app_alarm_clock_custom_repeat_title": "Custom repeat", - "app_calendar_title_main": "Calendrier", - "app_calendar_all_day": "Toute la journée", - "app_calculator_title_main": "Calculatrice", - "app_calculator_equals": "ÉQUIVAUT À", - "app_calculator_decimal_separator": ",", - "app_calculator_error": "Erreur", - "app_options_invalid_option": "