mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-29 10:26:36 +01:00
e64ecfb78d
new param passed to remote and changing final score formatting and menu items to match. Still need to show old menu on android in case where game has already ended.
68 lines
1.7 KiB
C
68 lines
1.7 KiB
C
/* Copyright 2001 by Eric House (xwords@eehouse.org) (fixin@peak.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,
|
|
STRD_TURN_SCORE,
|
|
STR_BONUS_ALL,
|
|
STR_NONLOCAL_NAME,
|
|
STR_LOCAL_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,
|
|
STRS_REMOTE_MOVED,
|
|
|
|
STR_PASSED,
|
|
STRSD_SUMMARYSCORED,
|
|
STRD_TRADED,
|
|
STR_LOSTTURN,
|
|
|
|
STR_LOCALPLAYERS,
|
|
STR_TOTALPLAYERS,
|
|
STR_REMOTE,
|
|
|
|
STRS_VALUES_HEADER,
|
|
STRD_REMAINS_HEADER,
|
|
STRD_REMAINS_EXPL,
|
|
|
|
STR_RESIGNED,
|
|
STR_WINNER,
|
|
|
|
STR_LAST
|
|
};
|
|
|
|
|
|
#endif
|