From 94cd715514584c06ad7214aea0cef7d08f302f5f Mon Sep 17 00:00:00 2001 From: tcheko Date: Mon, 6 Jul 2009 15:30:10 +0000 Subject: [PATCH] Finished localization of sereditor.c git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@31552 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/prefs/serial/sereditor.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/workbench/prefs/serial/sereditor.c b/workbench/prefs/serial/sereditor.c index c7db6f3ad..97c214aa7 100644 --- a/workbench/prefs/serial/sereditor.c +++ b/workbench/prefs/serial/sereditor.c @@ -161,27 +161,27 @@ Object *SerEditor__OM_NEW(Class *CLASS, Object *self, struct opSet *message) VGroup, Child, ColGroup(2), - Child, Label1("Baudrate"), + Child, Label1(MSG(MSG_GAD_BAUDRATE)), Child, data->baudrate = CycleObject, MUIA_Cycle_Entries, BaudrateLabels, End, - Child, Label1("Data Bits"), + Child, Label1(MSG(MSG_GAD_DATABITS)), Child, data->databits = CycleObject, MUIA_Cycle_Entries, DataBitsLabels, End, - Child, Label1("Parity"), + Child, Label1(MSG(MSG_GAD_PARITY)), Child, data->parity = CycleObject, MUIA_Cycle_Entries, data->ParityLabels, End, - Child, Label1("Stop Bits"), + Child, Label1(MSG(MSG_GAD_STOPBITS)), Child, data->stopbits = CycleObject, MUIA_Cycle_Entries, StopBitsLabels, End, - Child, Label1("Input Buffer Size"), + Child, Label1(MSG(MSG_GAD_INPUTBUFFERSIZE)), Child, data->inputbuffersize = CycleObject, MUIA_Cycle_Entries, BufferSizeLabels, End, - Child, Label1("Output Buffer Size"), + Child, Label1(MSG(MSG_GAD_OUTPUTBUFFERSIZE)), Child, data->outputbuffersize = CycleObject, MUIA_Cycle_Entries, BufferSizeLabels, End, -- 2.11.4.GIT