| OLD | NEW |
| 1 //******************************************************************************
* | 1 //******************************************************************************
* |
| 2 //* | 2 //* |
| 3 //* Copyright (C) 2002-2009, International Business Machines | 3 //* Copyright (C) 2002-2009, International Business Machines |
| 4 //* Corporation and others. All Rights Reserved. | 4 //* Corporation and others. All Rights Reserved. |
| 5 //* | 5 //* |
| 6 //******************************************************************************
* | 6 //******************************************************************************
* |
| 7 | 7 |
| 8 | 8 |
| 9 // This is a test resource to check whether the aliasing mechanism works | 9 // This is a test resource to check whether the aliasing mechanism works |
| 10 // as advertised | 10 // as advertised |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 // aliasing to another resource | 21 // aliasing to another resource |
| 22 simplealias:alias { "testtypes/menu/file/open" } // simple referencing | 22 simplealias:alias { "testtypes/menu/file/open" } // simple referencing |
| 23 | 23 |
| 24 // alias that uses another alias and references parts of the end structure | 24 // alias that uses another alias and references parts of the end structure |
| 25 referencingalias:alias { "testaliases/anotheralias/2" } // Referencing throu
gh another alias | 25 referencingalias:alias { "testaliases/anotheralias/2" } // Referencing throu
gh another alias |
| 26 anotheralias:alias { "/ICUDATA/ja_JP/LocaleScript" } // Provoke a fallback t
oo | 26 anotheralias:alias { "/ICUDATA/ja_JP/LocaleScript" } // Provoke a fallback t
oo |
| 27 | 27 |
| 28 LocaleScript:alias { "/ICUDATA/ja/LocaleScript" } | 28 LocaleScript:alias { "/ICUDATA/ja/LocaleScript" } |
| 29 | 29 |
| 30 // aliasing using position | 30 // aliasing using position |
| 31 boundaries:alias { "/ICUDATA-brkitr/ja" } // Referencing corresponding resou
rce in another bundle | 31 boundaries:alias { "/ICUDATA-brkitr/th" } // Referencing corresponding resou
rce in another bundle |
| 32 | 32 |
| 33 // aliasing arrays | 33 // aliasing arrays |
| 34 zoneTests { | 34 zoneTests { |
| 35 zoneAlias:alias { "/ICUDATA-zone/en/zoneStrings" } // Referencing by ind
ex | 35 zoneAlias:alias { "/ICUDATA-zone/en/zoneStrings" } // Referencing by ind
ex |
| 36 zoneAlias1:alias { "/ICUDATA-zone/en/zoneStrings/3" } // Referencing by
index | 36 zoneAlias1:alias { "/ICUDATA-zone/en/zoneStrings/3" } // Referencing by
index |
| 37 zoneAlias2:alias { "/ICUDATA-zone/en/zoneStrings/3/0" } // Referencing b
y index | 37 zoneAlias2:alias { "/ICUDATA-zone/en/zoneStrings/3/0" } // Referencing b
y index |
| 38 } | 38 } |
| 39 | 39 |
| 40 // Test aliasing parts of an array using position | 40 // Test aliasing parts of an array using position |
| 41 zoneStrings { | 41 zoneStrings { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 56 :alias { "te/zoneStrings/2/4" } //"PDT", | 56 :alias { "te/zoneStrings/2/4" } //"PDT", |
| 57 :alias { "te/zoneStrings/2/5" } //"Los Angeles", | 57 :alias { "te/zoneStrings/2/5" } //"Los Angeles", |
| 58 } | 58 } |
| 59 testAliasToTree:alias{"/ICUDATA-coll/en/collations"} | 59 testAliasToTree:alias{"/ICUDATA-coll/en/collations"} |
| 60 | 60 |
| 61 } | 61 } |
| 62 | 62 |
| 63 //eof | 63 //eof |
| 64 | 64 |
| 65 | 65 |
| OLD | NEW |