mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
1af17b7672
setting dialog strings. Align titles with columns for standalone version.
65 lines
1.6 KiB
C
Executable file
65 lines
1.6 KiB
C
Executable file
/*
|
|
* Copyright 2002 by Eric House (xwords@eehouse.org). All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/* This is the linux version of what's always been a palm file. There's
|
|
* probably a better way of doing this, but this is it for now.
|
|
*/
|
|
|
|
#ifndef _LOCALIZEDSTRINCLUDES_H_
|
|
#define _LOCALIZEDSTRINCLUDES_H_
|
|
|
|
enum {
|
|
STRD_REMAINING_TILES_ADD,
|
|
STRD_UNUSED_TILES_SUB,
|
|
STR_COMMIT_CONFIRM,
|
|
STR_BONUS_ALL,
|
|
STRD_TURN_SCORE,
|
|
STR_LOCAL_NAME,
|
|
STR_NONLOCAL_NAME,
|
|
STRD_TIME_PENALTY_SUB,
|
|
|
|
STRD_CUMULATIVE_SCORE,
|
|
STRS_TRAY_AT_START,
|
|
STRS_MOVE_DOWN,
|
|
STRS_MOVE_ACROSS,
|
|
STRS_NEW_TILES,
|
|
STRSS_TRADED_FOR,
|
|
STR_PASS,
|
|
STR_PHONY_REJECTED,
|
|
|
|
STRD_ROBOT_TRADED,
|
|
STR_ROBOT_MOVED,
|
|
STR_REMOTE_MOVED,
|
|
|
|
STR_PASSED,
|
|
STRSD_SUMMARYSCORED,
|
|
STRD_TRADED,
|
|
STR_LOSTTURN,
|
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
|
STR_LOCALPLAYERS,
|
|
#endif
|
|
STR_TOTALPLAYERS,
|
|
|
|
STRS_VALUES_HEADER,
|
|
|
|
STR_NOT_USED
|
|
};
|
|
|
|
|
|
#endif
|