Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | // *************************************************************************** |
michael@0 | 2 | // * |
michael@0 | 3 | // * Copyright (C) 2013 International Business Machines |
michael@0 | 4 | // * Corporation and others. All Rights Reserved. |
michael@0 | 5 | // * Tool: org.unicode.cldr.icu.NewLdml2IcuConverter |
michael@0 | 6 | // * Source File: <path>/common/main/bn_IN.xml |
michael@0 | 7 | // * |
michael@0 | 8 | // *************************************************************************** |
michael@0 | 9 | bn_IN{ |
michael@0 | 10 | Ellipsis{ |
michael@0 | 11 | final{"{0}…"} |
michael@0 | 12 | initial{"…{0}"} |
michael@0 | 13 | medial{"{0}…{1}"} |
michael@0 | 14 | } |
michael@0 | 15 | NumberElements{ |
michael@0 | 16 | latn{ |
michael@0 | 17 | patternsLong{ |
michael@0 | 18 | decimalFormat{ |
michael@0 | 19 | 1000{ |
michael@0 | 20 | one{"0 হাজার"} |
michael@0 | 21 | other{"0 হাজার"} |
michael@0 | 22 | } |
michael@0 | 23 | 10000{ |
michael@0 | 24 | one{"00 হাজার"} |
michael@0 | 25 | other{"00 হাজার"} |
michael@0 | 26 | } |
michael@0 | 27 | 100000{ |
michael@0 | 28 | one{"000 হাজার"} |
michael@0 | 29 | other{"000 হাজার"} |
michael@0 | 30 | } |
michael@0 | 31 | 1000000{ |
michael@0 | 32 | one{"0 মিলিয়ন"} |
michael@0 | 33 | other{"0 মিলিয়ন"} |
michael@0 | 34 | } |
michael@0 | 35 | 10000000{ |
michael@0 | 36 | one{"00 মিলিয়ন"} |
michael@0 | 37 | other{"00 মিলিয়ন"} |
michael@0 | 38 | } |
michael@0 | 39 | 100000000{ |
michael@0 | 40 | one{"000 মিলিয়ন"} |
michael@0 | 41 | other{"000 মিলিয়ন"} |
michael@0 | 42 | } |
michael@0 | 43 | 1000000000{ |
michael@0 | 44 | one{"0 বিলিয়ন"} |
michael@0 | 45 | other{"0 বিলিয়ন"} |
michael@0 | 46 | } |
michael@0 | 47 | 10000000000{ |
michael@0 | 48 | one{"00 বিলিয়ন"} |
michael@0 | 49 | other{"00 বিলিয়ন"} |
michael@0 | 50 | } |
michael@0 | 51 | 100000000000{ |
michael@0 | 52 | one{"000 বিলিয়ন"} |
michael@0 | 53 | other{"000 বিলিয়ন"} |
michael@0 | 54 | } |
michael@0 | 55 | 1000000000000{ |
michael@0 | 56 | one{"0 ট্রিলিয়ন"} |
michael@0 | 57 | other{"0 ট্রিলিয়ন"} |
michael@0 | 58 | } |
michael@0 | 59 | 10000000000000{ |
michael@0 | 60 | one{"00 ট্রিলিয়ন"} |
michael@0 | 61 | other{"00 ট্রিলিয়ন"} |
michael@0 | 62 | } |
michael@0 | 63 | 100000000000000{ |
michael@0 | 64 | one{"000 ট্রিলিয়ন"} |
michael@0 | 65 | other{"000 ট্রিলিয়ন"} |
michael@0 | 66 | } |
michael@0 | 67 | } |
michael@0 | 68 | } |
michael@0 | 69 | patternsShort{ |
michael@0 | 70 | decimalFormat{ |
michael@0 | 71 | 1000{ |
michael@0 | 72 | one{"0K"} |
michael@0 | 73 | other{"0K"} |
michael@0 | 74 | } |
michael@0 | 75 | 10000{ |
michael@0 | 76 | one{"00K"} |
michael@0 | 77 | other{"00K"} |
michael@0 | 78 | } |
michael@0 | 79 | 100000{ |
michael@0 | 80 | one{"000K"} |
michael@0 | 81 | other{"000K"} |
michael@0 | 82 | } |
michael@0 | 83 | 1000000{ |
michael@0 | 84 | one{"0M"} |
michael@0 | 85 | other{"0M"} |
michael@0 | 86 | } |
michael@0 | 87 | 10000000{ |
michael@0 | 88 | one{"00M"} |
michael@0 | 89 | other{"00M"} |
michael@0 | 90 | } |
michael@0 | 91 | 100000000{ |
michael@0 | 92 | one{"000M"} |
michael@0 | 93 | other{"000M"} |
michael@0 | 94 | } |
michael@0 | 95 | 1000000000{ |
michael@0 | 96 | one{"0B"} |
michael@0 | 97 | other{"0B"} |
michael@0 | 98 | } |
michael@0 | 99 | 10000000000{ |
michael@0 | 100 | one{"00B"} |
michael@0 | 101 | other{"00B"} |
michael@0 | 102 | } |
michael@0 | 103 | 100000000000{ |
michael@0 | 104 | one{"000B"} |
michael@0 | 105 | other{"000B"} |
michael@0 | 106 | } |
michael@0 | 107 | 1000000000000{ |
michael@0 | 108 | one{"0T"} |
michael@0 | 109 | other{"0T"} |
michael@0 | 110 | } |
michael@0 | 111 | 10000000000000{ |
michael@0 | 112 | one{"00T"} |
michael@0 | 113 | other{"00T"} |
michael@0 | 114 | } |
michael@0 | 115 | 100000000000000{ |
michael@0 | 116 | one{"000T"} |
michael@0 | 117 | other{"000T"} |
michael@0 | 118 | } |
michael@0 | 119 | } |
michael@0 | 120 | } |
michael@0 | 121 | } |
michael@0 | 122 | } |
michael@0 | 123 | Version{"2.0.92.80"} |
michael@0 | 124 | calendar{ |
michael@0 | 125 | gregorian{ |
michael@0 | 126 | intervalFormats{ |
michael@0 | 127 | yMMMM{ |
michael@0 | 128 | M{"MM – MM -y"} |
michael@0 | 129 | } |
michael@0 | 130 | } |
michael@0 | 131 | quarters{ |
michael@0 | 132 | format{ |
michael@0 | 133 | abbreviated{ |
michael@0 | 134 | "ত্রৈমাসিক", |
michael@0 | 135 | "ষাণ্মাসিক", |
michael@0 | 136 | "চতুর্থাংশ ৩", |
michael@0 | 137 | "বার্ষিক", |
michael@0 | 138 | } |
michael@0 | 139 | wide{ |
michael@0 | 140 | "ত্রৈমাসিক", |
michael@0 | 141 | "ষাণ্মাসিক", |
michael@0 | 142 | "তৃতীয় চতুর্থাংশ", |
michael@0 | 143 | "বার্ষিক", |
michael@0 | 144 | } |
michael@0 | 145 | } |
michael@0 | 146 | stand-alone{ |
michael@0 | 147 | abbreviated{ |
michael@0 | 148 | "Q1", |
michael@0 | 149 | "Q2", |
michael@0 | 150 | "Q3", |
michael@0 | 151 | "Q4", |
michael@0 | 152 | } |
michael@0 | 153 | wide{ |
michael@0 | 154 | "ত্রৈমাসিক", |
michael@0 | 155 | "ষাণ্মাসিক", |
michael@0 | 156 | "তৃতীয় চতুর্থাংশ", |
michael@0 | 157 | "বার্ষিক", |
michael@0 | 158 | } |
michael@0 | 159 | } |
michael@0 | 160 | } |
michael@0 | 161 | } |
michael@0 | 162 | } |
michael@0 | 163 | fields{ |
michael@0 | 164 | dayperiod{ |
michael@0 | 165 | dn{"AM/PM"} |
michael@0 | 166 | } |
michael@0 | 167 | } |
michael@0 | 168 | unitsNarrow{ |
michael@0 | 169 | angle{ |
michael@0 | 170 | arc-second{ |
michael@0 | 171 | one{"{0}″"} |
michael@0 | 172 | other{"{0}″"} |
michael@0 | 173 | } |
michael@0 | 174 | } |
michael@0 | 175 | area{ |
michael@0 | 176 | square-kilometer{ |
michael@0 | 177 | one{"{0} km²"} |
michael@0 | 178 | other{"{0} km²"} |
michael@0 | 179 | } |
michael@0 | 180 | square-mile{ |
michael@0 | 181 | one{"{0} mi²"} |
michael@0 | 182 | other{"{0} mi²"} |
michael@0 | 183 | } |
michael@0 | 184 | } |
michael@0 | 185 | speed{ |
michael@0 | 186 | kilometer-per-hour{ |
michael@0 | 187 | one{"{0} kph"} |
michael@0 | 188 | other{"{0} kph"} |
michael@0 | 189 | } |
michael@0 | 190 | meter-per-second{ |
michael@0 | 191 | one{"{0} m/s"} |
michael@0 | 192 | other{"{0} m/s"} |
michael@0 | 193 | } |
michael@0 | 194 | mile-per-hour{ |
michael@0 | 195 | one{"{0} mph"} |
michael@0 | 196 | other{"{0} mph"} |
michael@0 | 197 | } |
michael@0 | 198 | } |
michael@0 | 199 | volume{ |
michael@0 | 200 | cubic-kilometer{ |
michael@0 | 201 | one{"{0} km³"} |
michael@0 | 202 | other{"{0} km³"} |
michael@0 | 203 | } |
michael@0 | 204 | cubic-mile{ |
michael@0 | 205 | one{"{0}mi³"} |
michael@0 | 206 | other{"{0} mi³"} |
michael@0 | 207 | } |
michael@0 | 208 | } |
michael@0 | 209 | } |
michael@0 | 210 | } |