OLD | NEW |
(Empty) | |
| 1 //******************************************************************************
* |
| 2 //* |
| 3 //* Copyright (C) 2003, International Business Machines |
| 4 //* Corporation and others. All Rights Reserved. |
| 5 //* |
| 6 //******************************************************************************
* |
| 7 |
| 8 /** |
| 9 * These are top level comments for the bundle. Tag name: ra |
| 10 * @translate yes |
| 11 * @note Comments for tag named ra |
| 12 */ |
| 13 ra{ |
| 14 /** |
| 15 * Top level comments for the string.Tag name: test1 |
| 16 * @translate yes |
| 17 * @note {0} represents the position of OSNAME and {1} represents the positi
on of job name |
| 18 * e.g: The OS/400 job named SYSLOG |
| 19 */ |
| 20 test1{"The {0} job named {1}"} |
| 21 /** |
| 22 * Tag name: test2 |
| 23 * @note This resource is for test2 |
| 24 * @translate yes |
| 25 */ |
| 26 test2{"some translatable stuff"} |
| 27 |
| 28 /** |
| 29 * Top level comments for TestTable. Tag name: TestTable |
| 30 * @translate yes |
| 31 * @note This resource is for TestTable |
| 32 */ |
| 33 TestTable{ |
| 34 /** |
| 35 * Tag name: test3 |
| 36 * @translate yes |
| 37 * @note This resource is for test3 |
| 38 */ |
| 39 test3{"jasldjfa"} |
| 40 /** |
| 41 * Tag name: test4 |
| 42 * @translate yes |
| 43 * @note This resource is for test4 |
| 44 */ |
| 45 test4{"asdfasdf"} |
| 46 /** |
| 47 * Tag name: test5 |
| 48 * @translate yes |
| 49 * @note This resource is for test5 |
| 50 */ |
| 51 test5:int{1} |
| 52 /** |
| 53 * Tag name: test6 |
| 54 * @translate yes |
| 55 * @note This resource is for test6 |
| 56 */ |
| 57 test6:bin{"0102"} |
| 58 } |
| 59 /** |
| 60 * Top level comments for Tag name: TestArray |
| 61 * @translate yes |
| 62 * @note This resource is for Tag name: Array |
| 63 */ |
| 64 TestArray{ |
| 65 /** |
| 66 * comments for un-named string |
| 67 * @translate yes |
| 68 * @note This resource is un-named string |
| 69 */ |
| 70 :string{"abcde"}, |
| 71 /** |
| 72 * comments for un-named int |
| 73 * @translate yes |
| 74 * @note This resource is un-named int |
| 75 */ |
| 76 :int{1}, |
| 77 /** |
| 78 * comments for un-named binary |
| 79 * @translate yes |
| 80 * @note This resource is for un-named binary |
| 81 */ |
| 82 :bin{"12312312"} |
| 83 } |
| 84 |
| 85 /** |
| 86 * comments for TestInclude |
| 87 * @translate yes |
| 88 * @note This resource is for TestInclude |
| 89 */ |
| 90 TestInclude:include{"translit_rules.txt"} |
| 91 |
| 92 /** |
| 93 * comments for TestImport |
| 94 * @translate yes |
| 95 * @note This resource is for TestImport |
| 96 */ |
| 97 TestImpport:import{"importtest.bin"} |
| 98 |
| 99 /** |
| 100 * comments for TestIntVector |
| 101 * @translate yes |
| 102 * @note This resource is for TestIntVector |
| 103 */ |
| 104 TestIntVector{ |
| 105 /** |
| 106 * comments for element 1 |
| 107 * @translate yes |
| 108 * @note This resource is for element 1 |
| 109 */ |
| 110 1, |
| 111 /** |
| 112 * comments for element 2 |
| 113 * @translate yes |
| 114 * @note This resource is for element 2 |
| 115 */ |
| 116 2, |
| 117 /** |
| 118 * comments for element 3 |
| 119 * @translate yes |
| 120 * @note This resource is for element 3 |
| 121 */ |
| 122 3 |
| 123 } |
| 124 |
| 125 } |
OLD | NEW |