home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / DOpus4-GPL / DOpus_Icon / strings.c < prev   
C/C++ Source or Header  |  2000-01-27  |  2KB  |  149 lines

  1. /*
  2.  
  3. Directory Opus 4
  4. Original GPL release version 4.12
  5. Copyright 1993-2000 Jonathan Potter
  6.  
  7. This program is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU General Public License
  9. as published by the Free Software Foundation; either version 2
  10. of the License, or (at your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. All users of Directory Opus 4 (including versions distributed
  22. under the GPL) are entitled to upgrade to the latest version of
  23. Directory Opus version 5 at a reduced price. Please see
  24. http://www.gpsoft.com.au for more information.
  25.  
  26. The release of Directory Opus 4 under the GPL in NO WAY affects
  27. the existing commercial status of Directory Opus 5.
  28.  
  29. */
  30.  
  31. #include "iconinfo.h"
  32.  
  33. char **string_table;
  34.  
  35. struct DefaultString
  36.     default_strings[]={
  37.         {STR_REMAP_COLORS,
  38.         "Remap colors"},
  39.  
  40.         {STR_SAVE,
  41.         "Save"},
  42.  
  43.         {STR_SKIP,
  44.         "Skip"},
  45.  
  46.         {STR_CANCEL,
  47.         "Cancel"},
  48.  
  49.         {STR_DELETE,
  50.         "Delete"},
  51.  
  52.         {STR_NEW,
  53.         "New"},
  54.  
  55.         {STR_TOOLTYPES,
  56.         "Tool types:"},
  57.  
  58.         {STR_COMMENT,
  59.         "Comment:"},
  60.  
  61.         {STR_DEFAULT_TOOL,
  62.         "Default tool:"},
  63.  
  64.         {STR_VALIDATING,
  65.         "Validating"},
  66.  
  67.         {STR_WRITE_PROTECTED,
  68.         "Write protected"},
  69.  
  70.         {STR_READ_WRITE,
  71.         "Read/Write"},
  72.  
  73.         {STR_SCRIPT,
  74.         "_Script"},
  75.  
  76.         {STR_ARCHIVED,
  77.         "_Archived"},
  78.  
  79.         {STR_READABLE,
  80.         "_Readable"},
  81.  
  82.         {STR_WRITABLE,
  83.         "_Writable"},
  84.  
  85.         {STR_EXECUTABLE,
  86.         "_Executable"},
  87.  
  88.         {STR_DELETABLE,
  89.         "_Deletable"},
  90.  
  91.         {STR_BLOCKS,
  92.         "Blocks"},
  93.  
  94.         {STR_USED,
  95.         "Used"},
  96.  
  97.         {STR_FREE,
  98.         "Free"},
  99.  
  100.         {STR_BLOCK_SIZE,
  101.         "Block size"},
  102.  
  103.         {STR_CREATED,
  104.         "Created"},
  105.  
  106.         {STR_LAST_CHANGED,
  107.         "Last changed"},
  108.  
  109.         {STR_BYTES,
  110.         "Bytes"},
  111.  
  112.         {STR_STACK,
  113.         "Stack"},
  114.  
  115.         {STR_DISK,
  116.         "Disk"},
  117.  
  118.         {STR_DRAWER,
  119.         "Drawer"},
  120.  
  121.         {STR_TOOL,
  122.         "Tool"},
  123.  
  124.         {STR_PROJECT,
  125.         "Project"},
  126.  
  127.         {STR_TRASH,
  128.         "Trash"},
  129.  
  130.         {STR_DEVICE,
  131.         "Device"},
  132.  
  133.         {STR_KICK,
  134.         "Kick"},
  135.  
  136.         {STR_APPICON,
  137.         "AppIcon"},
  138.  
  139.         {STR_ICON,
  140.         "Icon"},
  141.  
  142.         {STR_STRING_COUNT,
  143.         NULL}};
  144.  
  145. #ifdef STRINGS_ONLY
  146. char string_type[]="DOpus_Print strings";
  147. char *string_save="DM_Icon_%s.STR";
  148. #endif
  149.