forked from e16/e16
1
0
Fork 0

Trim whitespace from translatable strings.

SVN revision: 48723
This commit is contained in:
Kim Woelders 2010-05-09 19:03:19 +00:00
parent 490dff5974
commit 0466673fbf
23 changed files with 69 additions and 75 deletions

View File

@ -209,7 +209,7 @@ ActionclassDestroy(ActionClass * ac)
if (ac->ref_count > 0)
{
DialogOK("ActionClass Error!", _("%u references remain\n"),
DialogOK("ActionClass Error!", _("%u references remain"),
ac->ref_count);
return;
}

View File

@ -191,7 +191,7 @@ Espawn(int argc __UNUSED__, char **argv)
execvp(argv[0], argv);
AlertOK(_("There was an error running the program:\n%s\n"), argv[0]);
AlertOK(_("There was an error running the program:\n%s"), argv[0]);
exit(100);
}

View File

@ -251,8 +251,7 @@ BackgroundDestroy(Background * bg)
#endif
if (bg->ref_count > 0)
{
DialogOK("Background Error!", _("%u references remain\n"),
bg->ref_count);
DialogOK("Background Error!", _("%u references remain"), bg->ref_count);
return -1;
}
@ -1507,7 +1506,7 @@ BG_DialogSetFileName(DItem * di)
stmp = fullfileof(BackgroundGetBgFile(tmp_bg));
Esnprintf(s, sizeof(s),
_("Background definition information:\nName: %s\nFile: %s\n"),
_("Background definition information:\nName: %s\nFile: %s"),
BackgroundGetName(tmp_bg), (stmp) ? stmp : _("-NONE-"));
DialogItemSetText(di, s);
}
@ -1998,21 +1997,21 @@ _DlgFillBackground(Dialog * d, DItem * table, void *data)
DialogItemSetAlign(table2, 512, 0);
di = DialogAddItem(table2, DITEM_BUTTON);
DialogItemSetText(di, _("Move to Front\n"));
DialogItemSetText(di, _("Move to Front"));
DialogItemSetCallback(di, CB_ConfigureFrontBG, 0, NULL);
DialogBindKey(d, "F", CB_ConfigureFrontBG, 0, NULL);
di = DialogAddItem(table2, DITEM_BUTTON);
DialogItemSetText(di, _("Duplicate\n"));
DialogItemSetText(di, _("Duplicate"));
DialogItemSetCallback(di, CB_ConfigureNewBG, 0, NULL);
di = DialogAddItem(table2, DITEM_BUTTON);
DialogItemSetText(di, _("Unlist\n"));
DialogItemSetText(di, _("Unlist"));
DialogItemSetCallback(di, CB_ConfigureDelBG, 0, NULL);
DialogBindKey(d, "D", CB_ConfigureDelBG, 0, NULL);
di = DialogAddItem(table2, DITEM_BUTTON);
DialogItemSetText(di, _("Delete File\n"));
DialogItemSetText(di, _("Delete File"));
DialogItemSetCallback(di, CB_ConfigureDelBG, 1, NULL);
DialogBindKey(d, "Delete", CB_ConfigureDelBG, 1, NULL);
@ -2080,12 +2079,12 @@ _DlgFillBackground(Dialog * d, DItem * table, void *data)
DialogItemSetColSpan(di, 2);
DialogItemSetFill(di, 0, 0);
DialogItemSetAlign(di, 512, 512);
DialogItemSetText(di, _("BG Colour\n"));
DialogItemSetText(di, _("BG Colour"));
di = DialogAddItem(table3, DITEM_TEXT);
DialogItemSetFill(di, 0, 0);
DialogItemSetAlign(di, 1024, 512);
DialogItemSetText(di, _("Red:\n"));
DialogItemSetText(di, _("Red:"));
di = tmp_w[3] = DialogAddItem(table3, DITEM_SLIDER);
DialogItemSliderSetBounds(di, 0, 255);
@ -2096,7 +2095,7 @@ _DlgFillBackground(Dialog * d, DItem * table, void *data)
di = DialogAddItem(table3, DITEM_TEXT);
DialogItemSetFill(di, 0, 0);
DialogItemSetAlign(di, 1024, 512);
DialogItemSetText(di, _("Green:\n"));
DialogItemSetText(di, _("Green:"));
di = tmp_w[4] = DialogAddItem(table3, DITEM_SLIDER);
DialogItemSliderSetBounds(di, 0, 255);
@ -2107,7 +2106,7 @@ _DlgFillBackground(Dialog * d, DItem * table, void *data)
di = DialogAddItem(table3, DITEM_TEXT);
DialogItemSetFill(di, 0, 0);
DialogItemSetAlign(di, 1024, 512);
DialogItemSetText(di, _("Blue:\n"));
DialogItemSetText(di, _("Blue:"));
di = tmp_w[5] = DialogAddItem(table3, DITEM_SLIDER);
DialogItemSliderSetBounds(di, 0, 255);
@ -2216,7 +2215,7 @@ const DialogDef DlgBackground = {
N_("Desktop Background Settings"),
SOUND_SETTINGS_BG,
"pix/bg.png",
N_("Enlightenment Desktop\n" "Background Settings Dialog\n"),
N_("Enlightenment Desktop\n" "Background Settings Dialog"),
_DlgFillBackground,
DLG_OAC, CB_ConfigureBG,
};

View File

@ -689,7 +689,7 @@ BorderDestroy(const Border * b)
if (b->ref_count > 0)
{
DialogOK("Border Error!", _("%u references remain\n"), b->ref_count);
DialogOK("Border Error!", _("%u references remain"), b->ref_count);
return;
}

View File

@ -180,7 +180,7 @@ ButtonDestroy(Button * b)
if (b->ref_count > 0)
{
DialogOK("Button Error!", _("%u references remain\n"), b->ref_count);
DialogOK("Button Error!", _("%u references remain"), b->ref_count);
return;
}

View File

@ -195,7 +195,7 @@ ConfigParseline1(char *str, char *s2, char **p2, char **p3)
{
if (fields != 1)
{
Alert(_("CONFIG: ignoring extra data in \"%s\"\n"), str);
Alert(_("CONFIG: ignoring extra data in \"%s\""), str);
}
}
else if (i1 != CONFIG_INVALID)
@ -203,7 +203,7 @@ ConfigParseline1(char *str, char *s2, char **p2, char **p3)
if (fields != 2)
{
i1 = CONFIG_INVALID;
Alert(_("CONFIG: missing required data in \"%s\"\n"), str);
Alert(_("CONFIG: missing required data in \"%s\""), str);
}
}
@ -297,14 +297,14 @@ ConfigFileRead(FILE * fs)
{
if (fields != 1)
{
Alert(_("CONFIG: ignoring extra data in \"%s\"\n"), s);
Alert(_("CONFIG: ignoring extra data in \"%s\""), s);
}
}
else if (i1 != CONFIG_INVALID)
{
if (fields != 2)
{
Alert(_("CONFIG: missing required data in \"%s\"\n"), s);
Alert(_("CONFIG: missing required data in \"%s\""), s);
i1 = CONFIG_INVALID;
}
}

View File

@ -1739,7 +1739,7 @@ static const DialogDef DlgContainer = {
NULL,
SOUND_SETTINGS_ICONBOX,
"pix/iconbox.png",
N_("Enlightenment Iconbox\n" "Settings Dialog\n"),
N_("Enlightenment Iconbox\n" "Settings Dialog"),
_DlgFillContainer,
DLG_OAC, CB_ConfigureContainer,
};

View File

@ -128,7 +128,7 @@ ECursorDestroy(ECursor * ec)
if (ec->ref_count > 0)
{
DialogOK("ECursor Error!", _("%u references remain\n"), ec->ref_count);
DialogOK("ECursor Error!", _("%u references remain"), ec->ref_count);
return;
}

View File

@ -150,7 +150,7 @@ DeskControlsCreate(Desk * dsk)
ActionclassAddAction(ac, a);
ActionAddTo(a, "desk next");
t = _("Click here to raise this desktop\nto the top.\n");
t = _("Click here to raise this desktop\nto the top.");
ActionclassSetTooltipString(ac, t);
}
@ -162,7 +162,7 @@ DeskControlsCreate(Desk * dsk)
ActionclassAddAction(ac, a);
ActionAddTo(a, "desk prev");
t = _("Click here to lower this desktop\nto the bottom.\n");
t = _("Click here to lower this desktop\nto the bottom.");
ActionclassSetTooltipString(ac, t);
}
@ -2337,7 +2337,7 @@ _DlgFillDesks(Dialog * d, DItem * table, void *data __UNUSED__)
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
DialogItemSetText(di, _("Number of virtual desktops:\n"));
DialogItemSetText(di, _("Number of virtual desktops:"));
di = dd->desk_text = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
@ -2368,7 +2368,7 @@ _DlgFillDesks(Dialog * d, DItem * table, void *data __UNUSED__)
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
DialogItemSetAlign(di, 1024, 512);
DialogItemSetText(di, _("Desktop Slide speed:\n"));
DialogItemSetText(di, _("Desktop Slide speed:"));
di = DialogAddItem(table, DITEM_SLIDER);
DialogItemSetColSpan(di, 2);
@ -2430,7 +2430,7 @@ const DialogDef DlgDesks = {
N_("Multiple Desktop Settings"),
SOUND_SETTINGS_DESKTOPS,
"pix/desktops.png",
N_("Enlightenment Multiple Desktop\n" "Settings Dialog\n"),
N_("Enlightenment Multiple Desktop\n" "Settings Dialog"),
_DlgFillDesks,
DLG_OAC, CB_ConfigureDesktops,
};
@ -2530,7 +2530,7 @@ _DlgFillAreas(Dialog * d, DItem * table, void *data __UNUSED__)
DialogItemTableSetOptions(table, 1, 0, 0, 0);
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetText(di, _("Virtual Desktop size:\n"));
DialogItemSetText(di, _("Virtual Desktop size:"));
di = dd->area_text = DialogAddItem(table, DITEM_TEXT);
DialogItemSetText(di, "X");
@ -2592,7 +2592,7 @@ _DlgFillAreas(Dialog * d, DItem * table, void *data __UNUSED__)
DialogItemRadioButtonGroupSetValPtr(radio, &dd->edge_flip);
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetText(di, _("Resistance at edge of screen:\n"));
DialogItemSetText(di, _("Resistance at edge of screen:"));
di = DialogAddItem(table, DITEM_SLIDER);
DialogItemSliderSetMinLength(di, 10);
@ -2608,7 +2608,7 @@ const DialogDef DlgAreas = {
N_("Virtual Desktop Settings"),
SOUND_SETTINGS_AREA,
"pix/areas.png",
N_("Enlightenment Virtual Desktop\n" "Settings Dialog\n"),
N_("Enlightenment Virtual Desktop\n" "Settings Dialog"),
_DlgFillAreas,
DLG_OAC, CB_ConfigureAreas,
};

View File

@ -978,7 +978,7 @@ const DialogDef DlgFocus = {
N_("Focus Settings"),
SOUND_SETTINGS_FOCUS,
"pix/focus.png",
N_("Enlightenment Focus\n" "Settings Dialog\n"),
N_("Enlightenment Focus\n" "Settings Dialog"),
_DlgFillFocus,
DLG_OAC, CB_ConfigureFocus,
};

View File

@ -842,7 +842,7 @@ const DialogDef DlgFx = {
N_("Special FX Settings"),
SOUND_SETTINGS_FX,
"pix/fx.png",
N_("Enlightenment Special Effects\n" "Settings Dialog\n"),
N_("Enlightenment Special Effects\n" "Settings Dialog"),
_DlgFillFx,
DLG_OAC, CB_ConfigureFX,
};

View File

@ -706,7 +706,7 @@ static const DialogDef DlgGroupChoose = {
N_("Window Group Selection"),
SOUND_SETTINGS_GROUP,
"pix/group.png",
N_("Enlightenment Window Group\n" "Selection Dialog\n"),
N_("Enlightenment Window Group\n" "Selection Dialog"),
_DlgFillGroupChoose,
DLG_OC, ChooseGroup,
};
@ -731,24 +731,24 @@ ChooseGroupDialog(EWin * ewin, const char *message, char group_select,
{
DialogOK(_("Window Group Error"),
_
("\n This window currently does not belong to any groups. \n"
" You can only destroy groups or remove windows from groups \n"
" through a window that actually belongs to at least one group.\n\n"));
("This window currently does not belong to any groups.\n"
"You can only destroy groups or remove windows from groups\n"
"through a window that actually belongs to at least one group."));
return;
}
if ((num_groups == 0) && (group_select == GROUP_SELECT_ALL_EXCEPT_EWIN))
{
DialogOK(_("Window Group Error"),
_("\n Currently, no groups exist or this window \n"
" already belongs to all existing groups. \n"
" You have to start other groups first. \n\n"));
_("Currently, no groups exist or this window\n"
"already belongs to all existing groups.\n"
"You have to start other groups first."));
return;
}
if (!tmp_groups)
{
DialogOK(_("Window Group Error"),
_
("\n Currently, no groups exist. You have to start a group first.\n\n"));
("Currently, no groups exist. You have to start a group first."));
return;
}
@ -832,7 +832,7 @@ _DlgFillGroups(Dialog * d, DItem * table, void *data)
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
DialogItemSetAlign(di, 0, 512);
DialogItemSetText(di, _(" Pick the group to configure: "));
DialogItemSetText(di, _("Pick the group to configure:"));
group_member_strings =
GetWinGroupMemberNames(ewin->groups, ewin->num_groups);
@ -863,8 +863,8 @@ _DlgFillGroups(Dialog * d, DItem * table, void *data)
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
DialogItemSetAlign(di, 0, 512);
DialogItemSetText(di, _(" The following actions are \n"
" applied to all group members: "));
DialogItemSetText(di, _("The following actions are\n"
"applied to all group members:"));
di = DialogAddItem(table, DITEM_CHECKBUTTON);
DialogItemSetColSpan(di, 2);
@ -908,7 +908,7 @@ static const DialogDef DlgGroups = {
N_("Window Group Settings"),
SOUND_SETTINGS_GROUP,
"pix/group.png",
N_("Enlightenment Window Group\n" "Settings Dialog\n"),
N_("Enlightenment Window Group\n" "Settings Dialog"),
_DlgFillGroups,
DLG_OAC, CB_ConfigureGroup,
};
@ -922,8 +922,7 @@ SettingsGroups(EWin * ewin)
if (ewin->num_groups == 0)
{
DialogOK(_("Window Group Error"),
_
("\n This window currently does not belong to any groups. \n\n"));
_("This window currently does not belong to any groups."));
return;
}
@ -958,7 +957,7 @@ _DlgFillGroupDefaults(Dialog * d __UNUSED__, DItem * table,
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
DialogItemSetAlign(di, 0, 512);
DialogItemSetText(di, _(" Per-group settings: "));
DialogItemSetText(di, _("Per-group settings:"));
di = DialogAddItem(table, DITEM_SEPARATOR);
DialogItemSetColSpan(di, 2);
@ -1004,7 +1003,7 @@ _DlgFillGroupDefaults(Dialog * d __UNUSED__, DItem * table,
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetColSpan(di, 2);
DialogItemSetAlign(di, 0, 512);
DialogItemSetText(di, _(" Global settings: "));
DialogItemSetText(di, _("Global settings:"));
di = DialogAddItem(table, DITEM_CHECKBUTTON);
DialogItemSetColSpan(di, 2);
@ -1018,7 +1017,7 @@ const DialogDef DlgGroupDefaults = {
N_("Default Group Control Settings"),
SOUND_SETTINGS_GROUP,
"pix/group.png",
N_("Enlightenment Default\n" "Group Control Settings Dialog\n"),
N_("Enlightenment Default\n" "Group Control Settings Dialog"),
_DlgFillGroupDefaults,
DLG_OAC, CB_ConfigureDefaultGroupSettings,
};

View File

@ -334,8 +334,7 @@ ImageclassDestroy(ImageClass * ic)
if (ic->ref_count > 0)
{
DialogOK("ImageClass Error!", _("%u references remain\n"),
ic->ref_count);
DialogOK("ImageClass Error!", _("%u references remain"), ic->ref_count);
return;
}

View File

@ -2167,7 +2167,7 @@ const DialogDef DlgMenus = {
N_("Menu Settings"),
SOUND_SETTINGS_MENUS,
"pix/place.png",
N_("Enlightenment Menu\n" "Settings Dialog\n"),
N_("Enlightenment Menu\n" "Settings Dialog"),
_DlgFillMenus,
DLG_OAC, CB_ConfigureMenus,
};

View File

@ -264,7 +264,7 @@ const DialogDef DlgThemeTrans = {
N_("Selective Transparency Settings"),
SOUND_SETTINGS_TRANS,
"pix/tips.png",
N_("Enlightenment Selective Transparency\n" "Settings Dialog\n"),
N_("Enlightenment Selective Transparency\n" "Settings Dialog"),
_DlgFillThemeTrans,
DLG_OAC, CB_ConfigureTrans,
};

View File

@ -1996,7 +1996,7 @@ const DialogDef DlgPagers = {
N_("Pager Settings"),
SOUND_SETTINGS_PAGER,
"pix/pager.png",
N_("Enlightenment Desktop & Area\n" "Pager Settings Dialog\n"),
N_("Enlightenment Desktop & Area\n" "Pager Settings Dialog"),
_DlgFillPagers,
DLG_OAC, CB_ConfigurePager,
};

View File

@ -644,9 +644,7 @@ SessionLogoutConfirm(void)
table = DialogInitItem(d);
DialogSetTitle(d, _("Are you sure?"));
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetText(di, _("\n\n"
" Are you sure you wish to log out ? \n"
"\n\n"));
DialogItemSetText(di, _("Are you sure you wish to log out ?"));
table = DialogAddItem(table, DITEM_TABLE);
DialogItemSetAlign(table, 512, 0);
DialogItemSetFill(table, 0, 0);
@ -654,14 +652,14 @@ SessionLogoutConfirm(void)
if (Conf.session.enable_reboot_halt)
{
DialogItemTableSetOptions(table, 4, 0, 1, 0);
DialogItemAddButton(table, _(" Yes, Shut Down "), LogoutCB, 3,
DialogItemAddButton(table, _("Yes, Shut Down"), LogoutCB, 3,
1, DLG_BUTTON_OK);
DialogItemAddButton(table, _(" Yes, Reboot "), LogoutCB, 2,
DialogItemAddButton(table, _("Yes, Reboot"), LogoutCB, 2,
1, DLG_BUTTON_OK);
}
DialogItemAddButton(table, _(" Yes, Log Out "), LogoutCB, 1,
DialogItemAddButton(table, _("Yes, Log Out"), LogoutCB, 1,
1, DLG_BUTTON_OK);
DialogItemAddButton(table, _(" No "), NULL, 0, 1, DLG_BUTTON_CANCEL);
DialogItemAddButton(table, _("No"), NULL, 0, 1, DLG_BUTTON_CANCEL);
DialogBindKey(d, "Escape", DialogCallbackClose, 0, NULL);
DialogBindKey(d, "Return", LogoutCB, 1, NULL);
}
@ -816,7 +814,7 @@ const DialogDef DlgSession = {
N_("Session Settings"),
SOUND_SETTINGS_SESSION,
"pix/miscellaneous.png",
N_("Enlightenment Session\n" "Settings Dialog\n"),
N_("Enlightenment Session\n" "Settings Dialog"),
_DlgFillSession,
DLG_OAC, CB_ConfigureSession,
};

View File

@ -235,7 +235,7 @@ const DialogDef DlgMoveResize = {
N_("Move & Resize Settings"),
SOUND_SETTINGS_MOVERESIZE,
"pix/moveres.png",
N_("Enlightenment Move & Resize\n" "Method Settings Dialog\n"),
N_("Enlightenment Move & Resize\n" "Method Settings Dialog"),
_DlgFillMoveResize,
DLG_OAC, CB_ConfigureMoveResize,
};
@ -470,7 +470,7 @@ const DialogDef DlgPlacement = {
N_("Window Placement Settings"),
SOUND_SETTINGS_PLACEMENT,
"pix/place.png",
N_("Enlightenment Window Placement\n" "Settings Dialog\n"),
N_("Enlightenment Window Placement\n" "Settings Dialog"),
_DlgFillPlacement,
DLG_OAC, CB_ConfigurePlacement,
};
@ -550,7 +550,7 @@ const DialogDef DlgMisc = {
N_("Miscellaneous Settings"),
SOUND_SETTINGS_MISCELLANEOUS,
"pix/miscellaneous.png",
N_("Enlightenment Miscellaneous\n" "Settings Dialog\n"),
N_("Enlightenment Miscellaneous\n" "Settings Dialog"),
_DlgFillMisc,
DLG_OAC, CB_ConfigureMiscellaneous,
};
@ -687,7 +687,7 @@ const DialogDef DlgComposite = {
N_("Composite Settings"),
SOUND_SETTINGS_COMPOSITE,
"pix/pager.png",
N_("Enlightenment Composite\n" "Settings Dialog\n"),
N_("Enlightenment Composite\n" "Settings Dialog"),
_DlgFillComposite,
DLG_OAC, CB_ConfigureComposite,
};

View File

@ -1064,7 +1064,7 @@ const DialogDef DlgRemember = {
N_("Remembered Windows Settings"),
SOUND_SETTINGS_PAGER,
"pix/snapshots.png",
N_("Enlightenment Remembered\n" "Windows Settings Dialog\n"),
N_("Enlightenment Remembered\n" "Windows Settings Dialog"),
_DlgFillRemember,
DLG_OC, CB_ApplyRemember,
};
@ -1158,7 +1158,7 @@ SnapshotsSaveReal(void *data __UNUSED__)
Eprintf("SnapshotsSaveReal: %s\n", buf);
E_mv(s, buf);
if (!isfile(buf))
Alert(_("Error saving snaps file\n"));
Alert(_("Error saving snaps file"));
GroupsSave();

View File

@ -466,7 +466,7 @@ const DialogDef DlgSound = {
N_("Audio Settings"),
SOUND_SETTINGS_AUDIO,
"pix/sound.png",
N_("Enlightenment Audio\n" "Settings Dialog\n"),
N_("Enlightenment Audio\n" "Settings Dialog"),
_DlgFillSound,
DLG_OAC, CB_ConfigureAudio,
};

View File

@ -122,8 +122,7 @@ TextclassDestroy(TextClass * tc)
{
if (tc->ref_count > 0)
{
DialogOK("TextClass Error!", _("%u references remain\n"),
tc->ref_count);
DialogOK("TextClass Error!", _("%u references remain"), tc->ref_count);
return;
}
Efree(tc->name);

View File

@ -413,7 +413,7 @@ const DialogDef DlgTheme = {
N_("Theme Settings"),
SOUND_SETTINGS_MISCELLANEOUS,
"pix/miscellaneous.png",
N_("Enlightenment Theme\n" "Settings Dialog\n"),
N_("Enlightenment Theme\n" "Settings Dialog"),
_DlgThemeFill,
DLG_OAC, _DlgThemeConfigure,
};

View File

@ -132,7 +132,7 @@ TooltipDestroy(ToolTip * tt)
if (tt->ref_count > 0)
{
DialogOK("ToolTip Error!", _("%u references remain\n"), tt->ref_count);
DialogOK("ToolTip Error!", _("%u references remain"), tt->ref_count);
}
}
#endif
@ -860,7 +860,7 @@ _DlgFillTooltips(Dialog * d __UNUSED__, DItem * table, void *data __UNUSED__)
di = DialogAddItem(table, DITEM_TEXT);
DialogItemSetAlign(di, 0, 512);
DialogItemSetText(di, _("Tooltip Delay:\n"));
DialogItemSetText(di, _("Tooltip Delay:"));
di = DialogAddItem(table, DITEM_SLIDER);
DialogItemSliderSetBounds(di, 0, 300);
@ -875,7 +875,7 @@ const DialogDef DlgTooltips = {
N_("Tooltip Settings"),
SOUND_SETTINGS_TOOLTIPS,
"pix/tips.png",
N_("Enlightenment Tooltip\n" "Settings Dialog\n"),
N_("Enlightenment Tooltip\n" "Settings Dialog"),
_DlgFillTooltips,
DLG_OAC, CB_ConfigureTooltips,
};