home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Emulation / BasiliskII / src / Unix / user_strings_unix.cpp < prev    next >
C/C++ Source or Header  |  1999-10-27  |  4KB  |  91 lines

  1. /*
  2.  *  user_strings_unix.cpp - Unix-specific localizable strings
  3.  *
  4.  *  Basilisk II (C) 1997-1999 Christian Bauer
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  */
  20.  
  21. #include "sysdeps.h"
  22. #include "user_strings.h"
  23.  
  24.  
  25. // Platform-specific string definitions
  26. user_string_def platform_strings[] = {
  27.     // Common strings that have a platform-specific variant
  28.     {STR_VOLUME_IS_MOUNTED_WARN, "The volume '%s' is mounted under Unix. Basilisk II will try to unmount it."},
  29.     {STR_EXTFS_CTRL, "Unix Root"},
  30.     {STR_EXTFS_NAME, "Unix Directory Tree"},
  31.     {STR_EXTFS_VOLUME_NAME, "Unix"},
  32.  
  33.     // Purely platform-specific strings
  34.     {STR_NO_XSERVER_ERR, "Cannot connect to X server '%s'."},
  35.     {STR_NO_XVISUAL_ERR, "Cannot obtain appropriate X visual."},
  36.     {STR_UNSUPP_DEPTH_ERR, "Unsupported color depth of screen."},
  37.     {STR_NO_FBDEVICE_FILE_ERR, "Cannot open frame buffer device specification file %s (%s)."},
  38.     {STR_FBDEV_NAME_ERR, "The %s frame buffer is not supported in %d bit mode."},
  39.     {STR_FBDEV_MMAP_ERR, "Cannot mmap() the frame buffer memory (%s)."},
  40.  
  41.     {STR_NO_SHEEP_NET_DRIVER_WARN, "Cannot open %s (%s). Ethernet will not be available."},
  42.     {STR_SHEEP_NET_ATTACH_WARN, "Cannot attach to Ethernet card (%s). Ethernet will not be available."},
  43.     {STR_SCSI_DEVICE_OPEN_WARN, "Cannot open %s (%s). SCSI Manager access to this device will be disabled."},
  44.     {STR_SCSI_DEVICE_NOT_SCSI_WARN, "%s doesn't seem to comply to the Generic SCSI API. SCSI Manager access to this device will be disabled."},
  45.     {STR_NO_AUDIO_DEV_WARN, "Cannot open %s (%s). Audio output will be disabled."},
  46.     {STR_NO_ESD_WARN, "Cannot open ESD connection. Audio output will be disabled."},
  47.     {STR_AUDIO_FORMAT_WARN, "Audio hardware doesn't support signed 16 bit format. Audio output will be disabled."},
  48.     {STR_KEYCODE_FILE_WARN, "Cannot open keycode translation file %s (%s)."},
  49.     {STR_KEYCODE_VENDOR_WARN, "Cannot find vendor '%s' in keycode translation file %s."},
  50.  
  51.     {STR_PREFS_MENU_FILE_GTK, "/_File"},
  52.     {STR_PREFS_ITEM_START_GTK, "/File/_Start Basilisk II"},
  53.     {STR_PREFS_ITEM_ZAP_PRAM_GTK, "/File/_Zap PRAM File"},
  54.     {STR_PREFS_ITEM_SEPL_GTK, "/File/sepl"},
  55.     {STR_PREFS_ITEM_QUIT_GTK, "/File/_Quit Basilisk II"},
  56.     {STR_HELP_MENU_GTK, "/_Help"},
  57.     {STR_HELP_ITEM_ABOUT_GTK, "/Help/_About Basilisk II"},
  58.  
  59.     {STR_KEYCODES_CTRL, "Use Raw Keycodes"},
  60.     {STR_KEYCODE_FILE_CTRL, "Keycode Translation File"},
  61.     {STR_FBDEV_NAME_CTRL, "Frame Buffer Name"},
  62.     {STR_FBDEVICE_FILE_CTRL, "Frame Buffer Spec File"},
  63.  
  64.     {-1, NULL}    // End marker
  65. };
  66.  
  67.  
  68. /*
  69.  *  Fetch pointer to string, given the string number
  70.  */
  71.  
  72. const char *GetString(int num)
  73. {
  74.     // First search for platform-specific string
  75.     int i = 0;
  76.     while (platform_strings[i].num >= 0) {
  77.         if (platform_strings[i].num == num)
  78.             return platform_strings[i].str;
  79.         i++;
  80.     }
  81.  
  82.     // Not found, search for common string
  83.     i = 0;
  84.     while (common_strings[i].num >= 0) {
  85.         if (common_strings[i].num == num)
  86.             return common_strings[i].str;
  87.         i++;
  88.     }
  89.     return NULL;
  90. }
  91.