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