Index: trunk/extensions/ParserFunctions/Convert.php |
— | — | @@ -202,13 +202,13 @@ |
203 | 203 | if( $this->raw ){ |
204 | 204 | return trim( $string ); |
205 | 205 | } else { |
206 | | - $unit = $this->targetUnit->getText( |
| 206 | + return $this->targetUnit->getText( |
| 207 | + $string, |
207 | 208 | $this->lastValue, |
208 | 209 | $this->link, |
209 | 210 | $this->abbreviate, |
210 | 211 | $this->language |
211 | 212 | ); |
212 | | - return $string . $unit; |
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
— | — | @@ -736,12 +736,13 @@ |
737 | 737 | |
738 | 738 | /** |
739 | 739 | * Get the text of the unit |
| 740 | + * @param $string String Original text, with the number converted |
740 | 741 | * @param $value String number for PLURAL support |
741 | 742 | * @param $link Bool |
742 | 743 | * @param $language Language |
743 | 744 | * @return String |
744 | 745 | */ |
745 | | - public function getText( $value, $link=false, $abbreviate=false, $language=null ){ |
| 746 | + public function getText( $string, $value, $link=false, $abbreviate=false, $language=null ){ |
746 | 747 | global $wgContLang; |
747 | 748 | $value = $wgContLang->formatNum( $value ); |
748 | 749 | |
— | — | @@ -750,7 +751,7 @@ |
751 | 752 | $this->dimension->getName(), |
752 | 753 | $this->unitName, |
753 | 754 | $this->prefix, |
754 | | - $value, $link, $abbreviate, $language |
| 755 | + $string, $value, $link, $abbreviate, $language |
755 | 756 | ); |
756 | 757 | |
757 | 758 | } elseif( !wfEmptyMsg( "pfunc-convert-unit-{$this->dimension->getName(true)}-{$this->unitName[0]}-{$this->unitName[1]}" ) ){ |
— | — | @@ -761,7 +762,7 @@ |
762 | 763 | $this->dimension->getName(true), |
763 | 764 | "{$this->unitName[0]}-{$this->unitName[1]}", |
764 | 765 | $this->prefix, # This will probably be rubbish, but it's the wiki users' problem, not ours |
765 | | - $value, $link, $abbreviate, $language |
| 766 | + $string, $value, $link, $abbreviate, $language |
766 | 767 | ); |
767 | 768 | |
768 | 769 | } else { |
— | — | @@ -770,12 +771,13 @@ |
771 | 772 | $dimensionNames[0], |
772 | 773 | $this->unitName[0], |
773 | 774 | $this->prefix[0], |
774 | | - $value, $link, $abbreviate, $language |
| 775 | + $string, $value, $link, $abbreviate, $language |
775 | 776 | ); |
776 | 777 | $msg2Text = $this->getTextFromMessage( |
777 | 778 | $dimensionNames[1], |
778 | 779 | $this->unitName[1], |
779 | 780 | $this->prefix[1], |
| 781 | + '', |
780 | 782 | 1, # Singular for denominator |
781 | 783 | $link, $abbreviate, $language |
782 | 784 | ); |
— | — | @@ -785,7 +787,7 @@ |
786 | 788 | return trim( $msgText ); |
787 | 789 | } |
788 | 790 | |
789 | | - protected function getTextFromMessage( $dimension, $unit, $prefix, $number, $link, $abbreviate, $language ){ |
| 791 | + protected function getTextFromMessage( $dimension, $unit, $prefix, $string, $number, $link, $abbreviate, $language ){ |
790 | 792 | $abbr = $abbreviate ? '-abbr' : ''; |
791 | 793 | $prefix = $prefix === null |
792 | 794 | ? '' |
— | — | @@ -794,6 +796,7 @@ |
795 | 797 | $text = wfMsgExt( |
796 | 798 | "pfunc-convert-unit-$dimension-$unit$abbr", |
797 | 799 | array( 'parsemag', 'language' => $language ), |
| 800 | + $string, |
798 | 801 | $number, |
799 | 802 | $prefix |
800 | 803 | ); |
Index: trunk/extensions/ParserFunctions/ParserFunctions.i18n.php |
— | — | @@ -100,171 +100,171 @@ |
101 | 101 | 'pfunc-convert-prefix-yocto-abbr' => 'y', |
102 | 102 | |
103 | 103 | # LENGTH |
104 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2meter|$2meters}}', |
105 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angstrom|angstroms}}', |
106 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|mile|miles}}', |
107 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlongs}}', |
108 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|chain|chains}}', |
109 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|rod|rods}}', |
110 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|fathom|fathoms}}', |
111 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|yard|yards}}', |
112 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|foot|feet}}', |
113 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|hand|hands}}', |
114 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|inch|inches}}', |
115 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|nautical mile|nautical miles}}', |
116 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|nautical mile (pre-1970 British)|nautical miles (pre-1970 British)}}', |
117 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|nautical mile (pre-1954 US)|nautical miles (pre-1954 US)}}', |
118 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsec|$2parsecs}}', |
119 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2lightyear|$2lightyears}}', |
120 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomical unit|astronomical units}}', |
| 104 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3meter|$3meters}}', |
| 105 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angstrom|angstroms}}', |
| 106 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|mile|miles}}', |
| 107 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlongs}}', |
| 108 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|chain|chains}}', |
| 109 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|rod|rods}}', |
| 110 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|fathom|fathoms}}', |
| 111 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|yard|yards}}', |
| 112 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|foot|feet}}', |
| 113 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|hand|hands}}', |
| 114 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|inch|inches}}', |
| 115 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|nautical mile|nautical miles}}', |
| 116 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|nautical mile (pre-1970 British)|nautical miles (pre-1970 British)}}', |
| 117 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|nautical mile (pre-1954 US)|nautical miles (pre-1954 US)}}', |
| 118 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsec|$3parsecs}}', |
| 119 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3lightyear|$3lightyears}}', |
| 120 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomical unit|astronomical units}}', |
121 | 121 | |
122 | | - 'pfunc-convert-unit-length-metre-abbr' => '$2m', |
123 | | - 'pfunc-convert-unit-length-angstrom-abbr' => 'Å', |
124 | | - 'pfunc-convert-unit-length-mile-abbr' => 'mi', |
125 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
126 | | - 'pfunc-convert-unit-length-chain-abbr' => 'chain', |
127 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
128 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'fathom', |
129 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
130 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
131 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
132 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
133 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
134 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'nmi (Brit)', |
135 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'nmi (pre-1954 US)', |
136 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
137 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2ly', |
138 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'AU', |
| 122 | + 'pfunc-convert-unit-length-metre-abbr' => '$1$3m', |
| 123 | + 'pfunc-convert-unit-length-angstrom-abbr' => '$1Å', |
| 124 | + 'pfunc-convert-unit-length-mile-abbr' => '$1mi', |
| 125 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 126 | + 'pfunc-convert-unit-length-chain-abbr' => '$1chain', |
| 127 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 128 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1fathom', |
| 129 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 130 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 131 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 132 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 133 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 134 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1nmi (Brit)', |
| 135 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1nmi (pre-1954 US)', |
| 136 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 137 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3ly', |
| 138 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1AU', |
139 | 139 | |
140 | 140 | # AREA # |
141 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|square kilometer|square kilometers}}', |
142 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|square meter|square meters}}', |
143 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|square centimeter|square centimeters}}', |
144 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|square millimeter|square millimeters}}', |
145 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hectare|hectares}}', |
146 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|square mile|square miles}}', |
147 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|acre|acres}}', |
148 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|square yard|square yards}}', |
149 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|square foot|square feet}}', |
150 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|square inch|square inches}}', |
151 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|square nautical mile|square nautical miles}}', |
152 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunams}}', |
153 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsubo}}', |
| 141 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|square kilometer|square kilometers}}', |
| 142 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|square meter|square meters}}', |
| 143 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|square centimeter|square centimeters}}', |
| 144 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|square millimeter|square millimeters}}', |
| 145 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hectare|hectares}}', |
| 146 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|square mile|square miles}}', |
| 147 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|acre|acres}}', |
| 148 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|square yard|square yards}}', |
| 149 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|square foot|square feet}}', |
| 150 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|square inch|square inches}}', |
| 151 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|square nautical mile|square nautical miles}}', |
| 152 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunams}}', |
| 153 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsubo}}', |
154 | 154 | |
155 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
156 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
157 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
158 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
159 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
160 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'sq mi', |
161 | | - 'pfunc-convert-unit-area-acre-abbr' => 'acre', |
162 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'sq yd', |
163 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'sq ft', |
164 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'sq in', |
165 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'sq nmi', |
166 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
167 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
| 155 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 156 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 157 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 158 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 159 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 160 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1sq mi', |
| 161 | + 'pfunc-convert-unit-area-acre-abbr' => '$1acre', |
| 162 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1sq yd', |
| 163 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1sq ft', |
| 164 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1sq in', |
| 165 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1sq nmi', |
| 166 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 167 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
168 | 168 | |
169 | 169 | # TIME # |
170 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|second|seconds}}', |
171 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2year|$2years}}', |
172 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|day|days}}', |
173 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|hour|hours}}', |
174 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minute|minutes}}', |
| 170 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|second|seconds}}', |
| 171 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3year|$3years}}', |
| 172 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|day|days}}', |
| 173 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|hour|hours}}', |
| 174 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minute|minutes}}', |
175 | 175 | |
176 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
177 | | - 'pfunc-convert-unit-time-year-abbr' => '$2yr', |
178 | | - 'pfunc-convert-unit-time-day-abbr' => 'day', |
179 | | - 'pfunc-convert-unit-time-hour-abbr' => 'hr', |
180 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
| 176 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 177 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3yr', |
| 178 | + 'pfunc-convert-unit-time-day-abbr' => '$1day', |
| 179 | + 'pfunc-convert-unit-time-hour-abbr' => '$1hr', |
| 180 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
181 | 181 | |
182 | 182 | # VOLUME # |
183 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|cubic meter|cubic meters}}', |
184 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|cubic centimeter|cubic centimeters}}', |
185 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|cubic millimeter|cubic millimeters}}', |
186 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|kiloliter|kiloliters}}', |
187 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|liter|liters}}', |
188 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|centiliter|centiliters}}', |
189 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|milliliter|milliliters}}', |
190 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|cubic yard|cubic yards}}', |
191 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|cubic foot|cubic feet}}', |
192 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|cubic inch|cubic inches}}', |
193 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|barrel|barrels}}', |
194 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|bushel|bushels}}', |
195 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|gallon|gallons}}', |
196 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|quart|quarts}}', |
197 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|pint|pints}}', |
198 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|fluid ounce|fluid ounces}}', |
199 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|US barrel|US barrels}}', |
200 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|barrel|barrel}}', |
201 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|barrel|barrel}}', |
202 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|US gallon|US gallons}}', |
203 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|US quart|US quarts}}', |
204 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|US pint|US pints}}', |
205 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|US fluid ounce|US fluid ounces}}', |
206 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|US dry barrel|US dry barrels}}', |
207 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|US bushel|US bushels}}', |
208 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|US dry gallon|US dry gallons}}', |
209 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|US dry quart|US dry quarts}}', |
210 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|US dry pint|US dry pints}}', |
| 183 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|cubic meter|cubic meters}}', |
| 184 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|cubic centimeter|cubic centimeters}}', |
| 185 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|cubic millimeter|cubic millimeters}}', |
| 186 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|kiloliter|kiloliters}}', |
| 187 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|liter|liters}}', |
| 188 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|centiliter|centiliters}}', |
| 189 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|milliliter|milliliters}}', |
| 190 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|cubic yard|cubic yards}}', |
| 191 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|cubic foot|cubic feet}}', |
| 192 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|cubic inch|cubic inches}}', |
| 193 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|barrel|barrels}}', |
| 194 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|bushel|bushels}}', |
| 195 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|gallon|gallons}}', |
| 196 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|quart|quarts}}', |
| 197 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|pint|pints}}', |
| 198 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|fluid ounce|fluid ounces}}', |
| 199 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|US barrel|US barrels}}', |
| 200 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|barrel|barrel}}', |
| 201 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|barrel|barrel}}', |
| 202 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|US gallon|US gallons}}', |
| 203 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|US quart|US quarts}}', |
| 204 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|US pint|US pints}}', |
| 205 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|US fluid ounce|US fluid ounces}}', |
| 206 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|US dry barrel|US dry barrels}}', |
| 207 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|US bushel|US bushels}}', |
| 208 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|US dry gallon|US dry gallons}}', |
| 209 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|US dry quart|US dry quarts}}', |
| 210 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|US dry pint|US dry pints}}', |
211 | 211 | |
212 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
213 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
214 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
215 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
216 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'cu yd', |
217 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'cu ft', |
218 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'cu in', |
219 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl', |
220 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh', |
221 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
222 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt', |
223 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt', |
224 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl oz', |
225 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'US bbl', |
226 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'bbl', |
227 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'bbl', |
228 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'US gal', |
229 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'US qt', |
230 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'US pt', |
231 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'US fl oz', |
232 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'US bbl', |
233 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'US bsh', |
234 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'US dry gal', |
235 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'US dry qt', |
236 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'US dry pt', |
| 212 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 213 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 214 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 215 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 216 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1cu yd', |
| 217 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1cu ft', |
| 218 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1cu in', |
| 219 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl', |
| 220 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh', |
| 221 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 222 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt', |
| 223 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt', |
| 224 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl oz', |
| 225 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1US bbl', |
| 226 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1bbl', |
| 227 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1bbl', |
| 228 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1US gal', |
| 229 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1US qt', |
| 230 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1US pt', |
| 231 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1US fl oz', |
| 232 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1US bbl', |
| 233 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1US bsh', |
| 234 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1US dry gal', |
| 235 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1US dry qt', |
| 236 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1US dry pt', |
237 | 237 | |
238 | 238 | # SPEED |
239 | | - 'pfunc-convert-unit-speed-mile-hour' => 'miles per hour', |
240 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
| 239 | + 'pfunc-convert-unit-speed-mile-hour' => '$1miles per hour', |
| 240 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
241 | 241 | |
242 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mph', |
243 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
| 242 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mph', |
| 243 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
244 | 244 | |
245 | 245 | # PRESSURE |
246 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascal|$2pascals}}', |
247 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
248 | | - 'pfunc-convert-unit-pressure-decibar' => 'decibar', |
249 | | - 'pfunc-convert-unit-pressure-millibar' => 'millibar', |
250 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobarye', |
251 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
252 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosphere|atmospheres}}', |
253 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|Torr|Torr}}', |
254 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|millimeter of mercury|millimeters of mercury}}', |
255 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|inch of mercury|inches of mercury}}', |
256 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|pound per square-inch|pounds per square-inch}}', |
| 246 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascal|$3pascals}}', |
| 247 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 248 | + 'pfunc-convert-unit-pressure-decibar' => '$1decibar', |
| 249 | + 'pfunc-convert-unit-pressure-millibar' => '$1millibar', |
| 250 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobarye', |
| 251 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 252 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosphere|atmospheres}}', |
| 253 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|Torr|Torr}}', |
| 254 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|millimeter of mercury|millimeters of mercury}}', |
| 255 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|inch of mercury|inches of mercury}}', |
| 256 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|pound per square-inch|pounds per square-inch}}', |
257 | 257 | |
258 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
259 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
260 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
261 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
262 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
263 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
264 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
265 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
266 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
267 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
268 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 258 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 259 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 260 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 261 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 262 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 263 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 264 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 265 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 266 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 267 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 268 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
269 | 269 | ); |
270 | 270 | |
271 | 271 | /** Message documentation (Message documentation) |
— | — | @@ -278,8 +278,8 @@ |
279 | 279 | 'pfunc_desc' => '{{desc}}', |
280 | 280 | 'pfunc_expr_division_by_zero' => '{{Identical|Divizion by zero}}', |
281 | 281 | 'pfunc_string_too_long' => 'PLURAL is supported for $1.', |
282 | | - 'pfunc-convert-unit-length-parsec-abbr' => 'The $2 is directly connected to the abbreviated unit to hold abbreviations like "kilo", "milli", "pico", etc.', |
283 | | - 'pfunc-convert-unit-length-lightyear-abbr' => 'The $2 is directly connected to the abbreviated unit to hold abbreviations like "kilo", "milli", "pico", etc.', |
| 282 | + 'pfunc-convert-unit-length-parsec-abbr' => 'The $3 is directly connected to the abbreviated unit to hold abbreviations like "kilo", "milli", "pico", etc.', |
| 283 | + 'pfunc-convert-unit-length-lightyear-abbr' => 'The $3 is directly connected to the abbreviated unit to hold abbreviations like "kilo", "milli", "pico", etc.', |
284 | 284 | ); |
285 | 285 | |
286 | 286 | /** Afrikaans (Afrikaans) |
— | — | @@ -779,28 +779,28 @@ |
780 | 780 | 'pfunc-convert-prefix-zepto' => 'zepto', |
781 | 781 | 'pfunc-convert-prefix-yocto' => 'yokto', |
782 | 782 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
783 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2metr|$2metry|$2metrů}}', |
784 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|míle|míle|mil}}', |
785 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|stopa|stopy|stop}}', |
786 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|palec|palce|palců}}', |
787 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsek|$2parseky|$2parseků}}', |
788 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomická jednotka|astronomické jednotky|astronomických jednotek}}', |
789 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|kilometr čtvereční|kilometry čtvereční|kilometrů čtverečních}}', |
790 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hektar|hektary|hektarů}}', |
791 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|akr|akry|akrů}}', |
792 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|čtvereční stopa|čtvereční stopy|čtverečních stop}}', |
793 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|čtvereční palec|čtvereční palce|čtverečních palců}}', |
794 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km²', |
795 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm²', |
796 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm²', |
797 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm²', |
798 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm³', |
799 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm³', |
800 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
801 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascal|$2pascaly|$2pascalů}}', |
802 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosféra|atmosféry|atmosfér}}', |
803 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|torr|torry|torrů}}', |
804 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
| 783 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3metr|$3metry|$3metrů}}', |
| 784 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|míle|míle|mil}}', |
| 785 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|stopa|stopy|stop}}', |
| 786 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|palec|palce|palců}}', |
| 787 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsek|$3parseky|$3parseků}}', |
| 788 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomická jednotka|astronomické jednotky|astronomických jednotek}}', |
| 789 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|kilometr čtvereční|kilometry čtvereční|kilometrů čtverečních}}', |
| 790 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hektar|hektary|hektarů}}', |
| 791 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|akr|akry|akrů}}', |
| 792 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|čtvereční stopa|čtvereční stopy|čtverečních stop}}', |
| 793 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|čtvereční palec|čtvereční palce|čtverečních palců}}', |
| 794 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km²', |
| 795 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m²', |
| 796 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm²', |
| 797 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm²', |
| 798 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m³', |
| 799 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm³', |
| 800 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 801 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascal|$3pascaly|$3pascalů}}', |
| 802 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosféra|atmosféry|atmosfér}}', |
| 803 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|torr|torry|torrů}}', |
| 804 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
805 | 805 | ); |
806 | 806 | |
807 | 807 | /** Danish (Dansk) |
— | — | @@ -904,152 +904,152 @@ |
905 | 905 | 'pfunc-convert-prefix-zepto' => 'Zepto', |
906 | 906 | 'pfunc-convert-prefix-yocto' => 'Yokto', |
907 | 907 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
908 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|Meter|Meter}}', |
909 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|Ångström|Ångström}}', |
910 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|Meile|Meilen}}', |
911 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|Furlong|Furlong}}', |
912 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|Chain|Chain}}', |
913 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|Rute|Ruten}}', |
914 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|Fathom|Fathom}}', |
915 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|Yard|Yard}}', |
916 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|Fuß|Fuß}}', |
917 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|Hand|Hand}}', |
918 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|Zoll|Zoll}}', |
919 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|Seemeile|Seemeilen}}', |
920 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|britische Seemeile (vor 1970)|britische Seemeilen (vor 1970)}}', |
921 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|US-Seemeile (vor 1954)|US-Seemeilen (vor 1954)}}', |
922 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsec|$2parsec}}', |
923 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2 Lichtjahr|$2 Lichtjahre}}', |
924 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomische Einheit|astronomische Einheiten}}', |
925 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
926 | | - 'pfunc-convert-unit-length-chain-abbr' => 'Chain', |
927 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
928 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'Faden', |
929 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
930 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
931 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
932 | | - 'pfunc-convert-unit-length-inch-abbr' => '″', |
933 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
934 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'nmi (Brit)', |
935 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'nmi (US, vor 1954)', |
936 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
937 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2lj', |
938 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'AE', |
939 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|Quadratkilometer|Quadratkilometer}}', |
940 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|Quadratmeter|Quadratmeter}}', |
941 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|Quadratzentimeter|Quadratzentimeter}}', |
942 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|Quadratmillimeter|Quadratmillimeter}}', |
943 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|Hektar|Hektar}}', |
944 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|Quadratmeile|Quadratmeilen}}', |
945 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|Acre|Acre}}', |
946 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|Quadratyard|Quadratyard}}', |
947 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|Quadratfuß|Quadratfuß}}', |
948 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|Quadratzoll|Quadratzoll}}', |
949 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|Quadratseemeilen|Quadratseemeilen}}', |
950 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|Dunam|Dunam}}', |
951 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|Tsubo|Tsubo}}', |
952 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
953 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
954 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
955 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
956 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
957 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'mi²', |
958 | | - 'pfunc-convert-unit-area-acre-abbr' => 'acre', |
959 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'yd²', |
960 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'ft²', |
961 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'inch²', |
962 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'sm<sup>2</sup>', |
963 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
964 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
965 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|Sekunde|Sekunden}}', |
966 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2 Jahr|$2 Jahre}}', |
967 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|Tag|Tage}}', |
968 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|Stunde|Stunden}}', |
969 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|Minute|Minuten}}', |
970 | | - 'pfunc-convert-unit-time-second-abbr' => 'sek', |
971 | | - 'pfunc-convert-unit-time-year-abbr' => '$2a', |
972 | | - 'pfunc-convert-unit-time-day-abbr' => 'd', |
973 | | - 'pfunc-convert-unit-time-hour-abbr' => 'h', |
974 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
975 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|Kubikmeter|Kubikmeter}}', |
976 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|Kubikzentimeter|Kubikzentimeter}}', |
977 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|Kubikmillimeter|Kubikmillimeter}}', |
978 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|Kiloliter|Kiloliter}}', |
979 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|Liter|Liter}}', |
980 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|Zentiliter|Zentiliter}}', |
981 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|Milliliter|Milliliter}}', |
982 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|Kubikyard|Kubikyard}}', |
983 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|Kubikfuß|Kubikfuß}}', |
984 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|Kubikzoll|Kubikzoll}}', |
985 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|Barrel|Barrel}}', |
986 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|Bushel|Bushel}}', |
987 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|Gallone|Gallonen}}', |
988 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|Quart|Quart}}', |
989 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|Pinte|Pinten}}', |
990 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|Flüssigunze|Flüssigunzen}}', |
991 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|US-Barrel|US-Barrel}}', |
992 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|Barrel|Barrel}}', |
993 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|Barrel|Barrel}}', |
994 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|US-Gallone|US-Gallonen}}', |
995 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|US-Quart|US-Quart}}', |
996 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|US-Pinte|US-Pinten}}', |
997 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|US-Flüssigunze|US-Flüssigunzen}}', |
998 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|US-Trockenbarrel|US-Trockenbarrel}}', |
999 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|US-Bushel|US-Bushel}}', |
1000 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|US-Trockengallone|US-Trockengallonen}}', |
1001 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|US-Trockenquart|US-Trockenquart}}', |
1002 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|US-Trockenpinte|US-Trockenpinten}}', |
1003 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
1004 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
1005 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
1006 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2 l', |
1007 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'yd<sup>3</sup>', |
1008 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'ft<sup>3</sup>', |
1009 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'in<sup>3</sup>', |
1010 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl.', |
1011 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh.', |
1012 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal.', |
1013 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt.', |
1014 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt.', |
1015 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl.oz.', |
1016 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'US bbl.', |
1017 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'bbl.', |
1018 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'bbl.', |
1019 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'US gal.', |
1020 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'US qt.', |
1021 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'US pt.', |
1022 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'US fl.oz.', |
1023 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'US bbl.', |
1024 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'US bsh.', |
1025 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'US dry gal.', |
1026 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'US dry qt.', |
1027 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'US dry pt.', |
1028 | | - 'pfunc-convert-unit-speed-mile-hour' => 'Meilen pro Stunde', |
1029 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
1030 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mph', |
1031 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
1032 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2 Pascal|$2 Pascal}}', |
1033 | | - 'pfunc-convert-unit-pressure-bar' => 'Bar', |
1034 | | - 'pfunc-convert-unit-pressure-decibar' => 'Dezibar', |
1035 | | - 'pfunc-convert-unit-pressure-millibar' => 'Millibar', |
1036 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'Kilobarye', |
1037 | | - 'pfunc-convert-unit-pressure-barye' => 'Barye', |
1038 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|Atmosphäre|Atmosphären}}', |
1039 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|Torr|Torr}}', |
1040 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|Millimeter-Quecksilbersäule|Millimeter-Quecksilbersäule}}', |
1041 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|Zoll Quecksilber|Zoll Quecksilber}}', |
1042 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|Pfund pro Quadratzoll|Pfund pro Quadratzoll}}', |
1043 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2 Pa', |
1044 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'Bar', |
1045 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
1046 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
1047 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
1048 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
1049 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
1050 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
1051 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
1052 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
1053 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 908 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|Meter|Meter}}', |
| 909 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|Ångström|Ångström}}', |
| 910 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|Meile|Meilen}}', |
| 911 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|Furlong|Furlong}}', |
| 912 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|Chain|Chain}}', |
| 913 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|Rute|Ruten}}', |
| 914 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|Fathom|Fathom}}', |
| 915 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|Yard|Yard}}', |
| 916 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|Fuß|Fuß}}', |
| 917 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|Hand|Hand}}', |
| 918 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|Zoll|Zoll}}', |
| 919 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|Seemeile|Seemeilen}}', |
| 920 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|britische Seemeile (vor 1970)|britische Seemeilen (vor 1970)}}', |
| 921 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|US-Seemeile (vor 1954)|US-Seemeilen (vor 1954)}}', |
| 922 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsec|$3parsec}}', |
| 923 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3 Lichtjahr|$3 Lichtjahre}}', |
| 924 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomische Einheit|astronomische Einheiten}}', |
| 925 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 926 | + 'pfunc-convert-unit-length-chain-abbr' => '$1Chain', |
| 927 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 928 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1Faden', |
| 929 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 930 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 931 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 932 | + 'pfunc-convert-unit-length-inch-abbr' => '$1″', |
| 933 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 934 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1nmi (Brit)', |
| 935 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1nmi (US, vor 1954)', |
| 936 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 937 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3lj', |
| 938 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1AE', |
| 939 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|Quadratkilometer|Quadratkilometer}}', |
| 940 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|Quadratmeter|Quadratmeter}}', |
| 941 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|Quadratzentimeter|Quadratzentimeter}}', |
| 942 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|Quadratmillimeter|Quadratmillimeter}}', |
| 943 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|Hektar|Hektar}}', |
| 944 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|Quadratmeile|Quadratmeilen}}', |
| 945 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|Acre|Acre}}', |
| 946 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|Quadratyard|Quadratyard}}', |
| 947 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|Quadratfuß|Quadratfuß}}', |
| 948 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|Quadratzoll|Quadratzoll}}', |
| 949 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|Quadratseemeilen|Quadratseemeilen}}', |
| 950 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|Dunam|Dunam}}', |
| 951 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|Tsubo|Tsubo}}', |
| 952 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 953 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 954 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 955 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 956 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 957 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1mi²', |
| 958 | + 'pfunc-convert-unit-area-acre-abbr' => '$1acre', |
| 959 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1yd²', |
| 960 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1ft²', |
| 961 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1inch²', |
| 962 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1sm<sup>2</sup>', |
| 963 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 964 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 965 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|Sekunde|Sekunden}}', |
| 966 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3 Jahr|$3 Jahre}}', |
| 967 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|Tag|Tage}}', |
| 968 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|Stunde|Stunden}}', |
| 969 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|Minute|Minuten}}', |
| 970 | + 'pfunc-convert-unit-time-second-abbr' => '$1sek', |
| 971 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3a', |
| 972 | + 'pfunc-convert-unit-time-day-abbr' => '$1d', |
| 973 | + 'pfunc-convert-unit-time-hour-abbr' => '$1h', |
| 974 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 975 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|Kubikmeter|Kubikmeter}}', |
| 976 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|Kubikzentimeter|Kubikzentimeter}}', |
| 977 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|Kubikmillimeter|Kubikmillimeter}}', |
| 978 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|Kiloliter|Kiloliter}}', |
| 979 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|Liter|Liter}}', |
| 980 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|Zentiliter|Zentiliter}}', |
| 981 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|Milliliter|Milliliter}}', |
| 982 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|Kubikyard|Kubikyard}}', |
| 983 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|Kubikfuß|Kubikfuß}}', |
| 984 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|Kubikzoll|Kubikzoll}}', |
| 985 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|Barrel|Barrel}}', |
| 986 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|Bushel|Bushel}}', |
| 987 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|Gallone|Gallonen}}', |
| 988 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|Quart|Quart}}', |
| 989 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|Pinte|Pinten}}', |
| 990 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|Flüssigunze|Flüssigunzen}}', |
| 991 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|US-Barrel|US-Barrel}}', |
| 992 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|Barrel|Barrel}}', |
| 993 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|Barrel|Barrel}}', |
| 994 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|US-Gallone|US-Gallonen}}', |
| 995 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|US-Quart|US-Quart}}', |
| 996 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|US-Pinte|US-Pinten}}', |
| 997 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|US-Flüssigunze|US-Flüssigunzen}}', |
| 998 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|US-Trockenbarrel|US-Trockenbarrel}}', |
| 999 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|US-Bushel|US-Bushel}}', |
| 1000 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|US-Trockengallone|US-Trockengallonen}}', |
| 1001 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|US-Trockenquart|US-Trockenquart}}', |
| 1002 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|US-Trockenpinte|US-Trockenpinten}}', |
| 1003 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 1004 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 1005 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 1006 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3 l', |
| 1007 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1yd<sup>3</sup>', |
| 1008 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1ft<sup>3</sup>', |
| 1009 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1in<sup>3</sup>', |
| 1010 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl.', |
| 1011 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh.', |
| 1012 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal.', |
| 1013 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt.', |
| 1014 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt.', |
| 1015 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl.oz.', |
| 1016 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1US bbl.', |
| 1017 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1bbl.', |
| 1018 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1bbl.', |
| 1019 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1US gal.', |
| 1020 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1US qt.', |
| 1021 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1US pt.', |
| 1022 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1US fl.oz.', |
| 1023 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1US bbl.', |
| 1024 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1US bsh.', |
| 1025 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1US dry gal.', |
| 1026 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1US dry qt.', |
| 1027 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1US dry pt.', |
| 1028 | + 'pfunc-convert-unit-speed-mile-hour' => '$1Meilen pro Stunde', |
| 1029 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 1030 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mph', |
| 1031 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 1032 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3 Pascal|$3 Pascal}}', |
| 1033 | + 'pfunc-convert-unit-pressure-bar' => '$1Bar', |
| 1034 | + 'pfunc-convert-unit-pressure-decibar' => '$1Dezibar', |
| 1035 | + 'pfunc-convert-unit-pressure-millibar' => '$1Millibar', |
| 1036 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1Kilobarye', |
| 1037 | + 'pfunc-convert-unit-pressure-barye' => '$1Barye', |
| 1038 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|Atmosphäre|Atmosphären}}', |
| 1039 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|Torr|Torr}}', |
| 1040 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|Millimeter-Quecksilbersäule|Millimeter-Quecksilbersäule}}', |
| 1041 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|Zoll Quecksilber|Zoll Quecksilber}}', |
| 1042 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|Pfund pro Quadratzoll|Pfund pro Quadratzoll}}', |
| 1043 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3 Pa', |
| 1044 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1Bar', |
| 1045 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 1046 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 1047 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 1048 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 1049 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 1050 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 1051 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 1052 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 1053 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
1054 | 1054 | ); |
1055 | 1055 | |
1056 | 1056 | /** Swiss High German (Schweizer Hochdeutsch) |
— | — | @@ -1141,16 +1141,16 @@ |
1142 | 1142 | * @author Happy-melon |
1143 | 1143 | */ |
1144 | 1144 | $messages['en-gb'] = array( |
1145 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2metre|$2metres}}', |
1146 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|square kilometre|square kilometres}}', |
1147 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|square metre|square metres}}', |
1148 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|square centimetre|square centimetres}}', |
1149 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|square millimetre|square millimetres}}', |
1150 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|cubic metre|cubic metres}}', |
1151 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|cubic centimetre|cubic centimetres}}', |
1152 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|cubic millimetre|cubic millimetres}}', |
1153 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|$2litre|$2litres}}', |
1154 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|millimetre of mercury|millimetres of mercury}}', |
| 1145 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3metre|$3metres}}', |
| 1146 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|square kilometre|square kilometres}}', |
| 1147 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|square metre|square metres}}', |
| 1148 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|square centimetre|square centimetres}}', |
| 1149 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|square millimetre|square millimetres}}', |
| 1150 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|cubic metre|cubic metres}}', |
| 1151 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|cubic centimetre|cubic centimetres}}', |
| 1152 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|cubic millimetre|cubic millimetres}}', |
| 1153 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|$3litre|$3litres}}', |
| 1154 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|millimetre of mercury|millimetres of mercury}}', |
1155 | 1155 | ); |
1156 | 1156 | |
1157 | 1157 | /** Esperanto (Esperanto) |
— | — | @@ -1369,152 +1369,152 @@ |
1370 | 1370 | 'pfunc-convert-prefix-zepto' => 'zepto', |
1371 | 1371 | 'pfunc-convert-prefix-yocto' => 'yocto', |
1372 | 1372 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
1373 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2 mètre|$2 mètres}}', |
1374 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angström|angströms}}', |
1375 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|mile|miles}}', |
1376 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlongs}}', |
1377 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|chaîne|chaînes}}', |
1378 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|tige|tiges}}', |
1379 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|brasse|brasses}}', |
1380 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|yard|yards}}', |
1381 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|pied|pieds}}', |
1382 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|main|mains}}', |
1383 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|pouce|pouces}}', |
1384 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|mile nautique|miles nautiques}}', |
1385 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|mile nautique (britannique, avant 1970)|miles nautiques (britanniques, avant 1970)}}', |
1386 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|mile nautique (États-Unis, avant 1954)|miles nautiques (États-Unis, avant 1954)}}', |
1387 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsec|$2parsecs}}', |
1388 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2 année-lumière|$2 années-lumière}}', |
1389 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|unité astronomique|unités astronomiques}}', |
1390 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
1391 | | - 'pfunc-convert-unit-length-chain-abbr' => 'chaîne', |
1392 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
1393 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'brasse', |
1394 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
1395 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
1396 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
1397 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
1398 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
1399 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'nmi (Brit.)', |
1400 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'nmi (États-Unis avant 1954)', |
1401 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2 pc', |
1402 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2 ly', |
1403 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'AU', |
1404 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|kilomètre carré|kilomètres carrés}}', |
1405 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|mètre carré|mètres carrés}}', |
1406 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|centimètre carré|centimètres carrés}}', |
1407 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|millimètre carré|millimètres carrés}}', |
1408 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hectare|hectares}}', |
1409 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|mile carré|miles carrés}}', |
1410 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|acre|acres}}', |
1411 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|yard carré|yards carrés}}', |
1412 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|pied carré|pieds carrés}}', |
1413 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|pouce carré|pouces carrés}}', |
1414 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|mile nautique carré|miles nautiques carrés}}', |
1415 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunams}}', |
1416 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsubos}}', |
1417 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
1418 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
1419 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
1420 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
1421 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
1422 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'mi^2', |
1423 | | - 'pfunc-convert-unit-area-acre-abbr' => 'acre', |
1424 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'yd^2', |
1425 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'ft^2', |
1426 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'in^2', |
1427 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'nmi^2', |
1428 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
1429 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
1430 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|seconde|secondes}}', |
1431 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2 an|$2 ans}}', |
1432 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|jour|jours}}', |
1433 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|heure|heures}}', |
1434 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minute|minutes}}', |
1435 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
1436 | | - 'pfunc-convert-unit-time-year-abbr' => '$2an', |
1437 | | - 'pfunc-convert-unit-time-day-abbr' => 'j', |
1438 | | - 'pfunc-convert-unit-time-hour-abbr' => 'h', |
1439 | | - 'pfunc-convert-unit-time-minute-abbr' => 'm', |
1440 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|mètre cube|mètres cubes}}', |
1441 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|centimètre cube|centimètres cubes}}', |
1442 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|millimètre cube|millimètres cubes}}', |
1443 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|kilolitre|kilolitres}}', |
1444 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|litre|litres}}', |
1445 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|centilitre|centilitres}}', |
1446 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|millilitre|millilitres}}', |
1447 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|yard cube|yards cubes}}', |
1448 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|pied cube|pieds cubes}}', |
1449 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|pouce cube|pouces cubes}}', |
1450 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|baril|barils}}', |
1451 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|boisseau|boisseaux}}', |
1452 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|gallon|gallons}}', |
1453 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|litre|litres}}', |
1454 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|pinte|pintes}}', |
1455 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|once liquide|onces liquides}}', |
1456 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|baril US|barils US}}', |
1457 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|baril|barils}}', |
1458 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|baril|barils}}', |
1459 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|gallon US|gallons US}}', |
1460 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|litre US|litres US}}', |
1461 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|pinte US|pintes US}}', |
1462 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|once liquide US|onces liquides US}}', |
1463 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|baril sec US|barils secs US}}', |
1464 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|boisseau US|boisseaux US}}', |
1465 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|gallon sec US|gallons secs US}}', |
1466 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|litre sec US|litres secs US}}', |
1467 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|pinte sèche US|pintes sèches US}}', |
1468 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
1469 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
1470 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
1471 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
1472 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'yd^3', |
1473 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'ft^3', |
1474 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'in^3', |
1475 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl', |
1476 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh', |
1477 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
1478 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt', |
1479 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt', |
1480 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl oz', |
1481 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'US bbl', |
1482 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'bbl', |
1483 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'bbl', |
1484 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'US gal', |
1485 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'US qt', |
1486 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'US pt', |
1487 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'US fl oz', |
1488 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'US bbl', |
1489 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'US bsh', |
1490 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'US gal sec', |
1491 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'US qt sec', |
1492 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'US pt sec', |
1493 | | - 'pfunc-convert-unit-speed-mile-hour' => 'miles par heure', |
1494 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
1495 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'm/h', |
1496 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
1497 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2 pascal|$2 pascals}}', |
1498 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
1499 | | - 'pfunc-convert-unit-pressure-decibar' => 'decibar', |
1500 | | - 'pfunc-convert-unit-pressure-millibar' => 'millibar', |
1501 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobar', |
1502 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
1503 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosphère|atmosphères}}', |
1504 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|torr|torrs}}', |
1505 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|millimètre de mercure|millimètres de mercure}}', |
1506 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|pouce de mercure|pouces de mercure}}', |
1507 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|livre par pouce carré|livres par pouce carré}}', |
1508 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2 Pa', |
1509 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
1510 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
1511 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
1512 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
1513 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
1514 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
1515 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
1516 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
1517 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
1518 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 1373 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3 mètre|$3 mètres}}', |
| 1374 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angström|angströms}}', |
| 1375 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|mile|miles}}', |
| 1376 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlongs}}', |
| 1377 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|chaîne|chaînes}}', |
| 1378 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|tige|tiges}}', |
| 1379 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|brasse|brasses}}', |
| 1380 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|yard|yards}}', |
| 1381 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|pied|pieds}}', |
| 1382 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|main|mains}}', |
| 1383 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|pouce|pouces}}', |
| 1384 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|mile nautique|miles nautiques}}', |
| 1385 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|mile nautique (britannique, avant 1970)|miles nautiques (britanniques, avant 1970)}}', |
| 1386 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|mile nautique (États-Unis, avant 1954)|miles nautiques (États-Unis, avant 1954)}}', |
| 1387 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsec|$3parsecs}}', |
| 1388 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3 année-lumière|$3 années-lumière}}', |
| 1389 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|unité astronomique|unités astronomiques}}', |
| 1390 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 1391 | + 'pfunc-convert-unit-length-chain-abbr' => '$1chaîne', |
| 1392 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 1393 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1brasse', |
| 1394 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 1395 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 1396 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 1397 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 1398 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 1399 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1nmi (Brit.)', |
| 1400 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1nmi (États-Unis avant 1954)', |
| 1401 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3 pc', |
| 1402 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3 ly', |
| 1403 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1AU', |
| 1404 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|kilomètre carré|kilomètres carrés}}', |
| 1405 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|mètre carré|mètres carrés}}', |
| 1406 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|centimètre carré|centimètres carrés}}', |
| 1407 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|millimètre carré|millimètres carrés}}', |
| 1408 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hectare|hectares}}', |
| 1409 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|mile carré|miles carrés}}', |
| 1410 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|acre|acres}}', |
| 1411 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|yard carré|yards carrés}}', |
| 1412 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|pied carré|pieds carrés}}', |
| 1413 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|pouce carré|pouces carrés}}', |
| 1414 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|mile nautique carré|miles nautiques carrés}}', |
| 1415 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunams}}', |
| 1416 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsubos}}', |
| 1417 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 1418 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 1419 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 1420 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 1421 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 1422 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1mi^2', |
| 1423 | + 'pfunc-convert-unit-area-acre-abbr' => '$1acre', |
| 1424 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1yd^2', |
| 1425 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1ft^2', |
| 1426 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1in^2', |
| 1427 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1nmi^2', |
| 1428 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 1429 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 1430 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|seconde|secondes}}', |
| 1431 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3 an|$3 ans}}', |
| 1432 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|jour|jours}}', |
| 1433 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|heure|heures}}', |
| 1434 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minute|minutes}}', |
| 1435 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 1436 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3an', |
| 1437 | + 'pfunc-convert-unit-time-day-abbr' => '$1j', |
| 1438 | + 'pfunc-convert-unit-time-hour-abbr' => '$1h', |
| 1439 | + 'pfunc-convert-unit-time-minute-abbr' => '$1m', |
| 1440 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|mètre cube|mètres cubes}}', |
| 1441 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|centimètre cube|centimètres cubes}}', |
| 1442 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|millimètre cube|millimètres cubes}}', |
| 1443 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|kilolitre|kilolitres}}', |
| 1444 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|litre|litres}}', |
| 1445 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|centilitre|centilitres}}', |
| 1446 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|millilitre|millilitres}}', |
| 1447 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|yard cube|yards cubes}}', |
| 1448 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|pied cube|pieds cubes}}', |
| 1449 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|pouce cube|pouces cubes}}', |
| 1450 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|baril|barils}}', |
| 1451 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|boisseau|boisseaux}}', |
| 1452 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|gallon|gallons}}', |
| 1453 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|litre|litres}}', |
| 1454 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|pinte|pintes}}', |
| 1455 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|once liquide|onces liquides}}', |
| 1456 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|baril US|barils US}}', |
| 1457 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|baril|barils}}', |
| 1458 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|baril|barils}}', |
| 1459 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|gallon US|gallons US}}', |
| 1460 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|litre US|litres US}}', |
| 1461 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|pinte US|pintes US}}', |
| 1462 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|once liquide US|onces liquides US}}', |
| 1463 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|baril sec US|barils secs US}}', |
| 1464 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|boisseau US|boisseaux US}}', |
| 1465 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|gallon sec US|gallons secs US}}', |
| 1466 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|litre sec US|litres secs US}}', |
| 1467 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|pinte sèche US|pintes sèches US}}', |
| 1468 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 1469 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 1470 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 1471 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 1472 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1yd^3', |
| 1473 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1ft^3', |
| 1474 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1in^3', |
| 1475 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl', |
| 1476 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh', |
| 1477 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 1478 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt', |
| 1479 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt', |
| 1480 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl oz', |
| 1481 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1US bbl', |
| 1482 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1bbl', |
| 1483 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1bbl', |
| 1484 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1US gal', |
| 1485 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1US qt', |
| 1486 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1US pt', |
| 1487 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1US fl oz', |
| 1488 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1US bbl', |
| 1489 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1US bsh', |
| 1490 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1US gal sec', |
| 1491 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1US qt sec', |
| 1492 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1US pt sec', |
| 1493 | + 'pfunc-convert-unit-speed-mile-hour' => '$1miles par heure', |
| 1494 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 1495 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1m/h', |
| 1496 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 1497 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3 pascal|$3 pascals}}', |
| 1498 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 1499 | + 'pfunc-convert-unit-pressure-decibar' => '$1decibar', |
| 1500 | + 'pfunc-convert-unit-pressure-millibar' => '$1millibar', |
| 1501 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobar', |
| 1502 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 1503 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosphère|atmosphères}}', |
| 1504 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|torr|torrs}}', |
| 1505 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|millimètre de mercure|millimètres de mercure}}', |
| 1506 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|pouce de mercure|pouces de mercure}}', |
| 1507 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|livre par pouce carré|livres par pouce carré}}', |
| 1508 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3 Pa', |
| 1509 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 1510 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 1511 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 1512 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 1513 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 1514 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 1515 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 1516 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 1517 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 1518 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
1519 | 1519 | ); |
1520 | 1520 | |
1521 | 1521 | /** Franco-Provençal (Arpetan) |
— | — | @@ -1578,88 +1578,88 @@ |
1579 | 1579 | 'pfunc-convert-prefix-zepto' => 'zèpto', |
1580 | 1580 | 'pfunc-convert-prefix-yocto' => 'yocto', |
1581 | 1581 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
1582 | | - 'pfunc-convert-unit-length-metre' => '$2mètre{{PLURAL:$1||s}}', |
1583 | | - 'pfunc-convert-unit-length-angstrom' => 'ångström{{PLURAL:$1||s}}', |
1584 | | - 'pfunc-convert-unit-length-mile' => 'mile{{PLURAL:$1||s}}', |
1585 | | - 'pfunc-convert-unit-length-furlong' => 'furlong{{PLURAL:$1||s}}', |
1586 | | - 'pfunc-convert-unit-length-chain' => 'chên{{PLURAL:$1|a|es}}', |
1587 | | - 'pfunc-convert-unit-length-rod' => 'pèrche{{PLURAL:$1||s}}', |
1588 | | - 'pfunc-convert-unit-length-fathom' => 'braciê{{PLURAL:$1||s}}', |
1589 | | - 'pfunc-convert-unit-length-yard' => 'vèrge{{PLURAL:$1||s}}', |
1590 | | - 'pfunc-convert-unit-length-foot' => 'pied{{PLURAL:$1||s}}', |
1591 | | - 'pfunc-convert-unit-length-hand' => 'man{{PLURAL:$1||s}}', |
1592 | | - 'pfunc-convert-unit-length-inch' => 'pôjo{{PLURAL:$1||s}}', |
1593 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|mile marin|miles marins}}', |
1594 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|mile marin (prè-1970 britanico)|miles marins (prè-1970 britanicos)}}', |
1595 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|mile marin (prè-1954 des Ètats-Unis)|miles marins (prè-1954 des Ètats-Unis)}}', |
1596 | | - 'pfunc-convert-unit-length-parsec' => '$2parsec{{PLURAL:$1||s}}', |
1597 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2an|$2ans}}-lumiére', |
1598 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|unitât astronomica|unitâts astronomiques}}', |
1599 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
1600 | | - 'pfunc-convert-unit-length-chain-abbr' => 'chêna', |
1601 | | - 'pfunc-convert-unit-length-rod-abbr' => 'pèrche', |
1602 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'braciê', |
1603 | | - 'pfunc-convert-unit-length-yard-abbr' => 'vg', |
1604 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
1605 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
1606 | | - 'pfunc-convert-unit-length-inch-abbr' => 'po', |
1607 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
1608 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
1609 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2al', |
1610 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'UA', |
1611 | | - 'pfunc-convert-unit-area-hectare' => 'hèctâre{{PLURAL:$1||s}}', |
1612 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|mile carrâ|miles carrâs}}', |
1613 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|vèrge carrâ|vèrges carrâs}}', |
1614 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|pôjo carrâ|pôjos carrâs}}', |
1615 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
1616 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
1617 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
1618 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
1619 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
1620 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'mi<sup>2</sup>', |
1621 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'vg<sup>2</sup>', |
1622 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'po<sup>2</sup>', |
1623 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'nmi<sup>2</sup>', |
1624 | | - 'pfunc-convert-unit-time-second' => 'second{{PLURAL:$1|a|es}}', |
1625 | | - 'pfunc-convert-unit-time-year' => '$2an{{PLURAL:$1||s}}', |
1626 | | - 'pfunc-convert-unit-time-day' => 'jorn{{PLURAL:$1||s}}', |
1627 | | - 'pfunc-convert-unit-time-hour' => 'hor{{PLURAL:$1|a|es}}', |
1628 | | - 'pfunc-convert-unit-time-minute' => 'menut{{PLURAL:$1|a|es}}', |
1629 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
1630 | | - 'pfunc-convert-unit-time-year-abbr' => '$2a', |
1631 | | - 'pfunc-convert-unit-time-day-abbr' => 'j', |
1632 | | - 'pfunc-convert-unit-time-hour-abbr' => 'h', |
1633 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
1634 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
1635 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
1636 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
1637 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
1638 | | - 'pfunc-convert-unit-speed-mile-hour' => 'miles per hora', |
1639 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
1640 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mph', |
1641 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
1642 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascâl|$2pascâls}}', |
1643 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
1644 | | - 'pfunc-convert-unit-pressure-decibar' => 'dècibar', |
1645 | | - 'pfunc-convert-unit-pressure-millibar' => 'milibar', |
1646 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobarye', |
1647 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
1648 | | - 'pfunc-convert-unit-pressure-atmosphere' => 'atmosfér{{PLURAL:$1|a|es}}', |
1649 | | - 'pfunc-convert-unit-pressure-torr' => 'torr{{PLURAL:$1||s}}', |
1650 | | - 'pfunc-convert-unit-pressure-mmhg' => 'milimètre{{PLURAL:$1||s}} de mèrcure', |
1651 | | - 'pfunc-convert-unit-pressure-inhg' => 'pôjo{{PLURAL:$1||s}} de mèrcure', |
1652 | | - 'pfunc-convert-unit-pressure-psi' => 'livr{{PLURAL:$1|a|es}} per pôjo carrâ', |
1653 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
1654 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
1655 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
1656 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
1657 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
1658 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
1659 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
1660 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
1661 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
1662 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
1663 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 1582 | + 'pfunc-convert-unit-length-metre' => '$1$3mètre{{PLURAL:$2||s}}', |
| 1583 | + 'pfunc-convert-unit-length-angstrom' => '$1ångström{{PLURAL:$2||s}}', |
| 1584 | + 'pfunc-convert-unit-length-mile' => '$1mile{{PLURAL:$2||s}}', |
| 1585 | + 'pfunc-convert-unit-length-furlong' => '$1furlong{{PLURAL:$2||s}}', |
| 1586 | + 'pfunc-convert-unit-length-chain' => '$1chên{{PLURAL:$2|a|es}}', |
| 1587 | + 'pfunc-convert-unit-length-rod' => '$1pèrche{{PLURAL:$2||s}}', |
| 1588 | + 'pfunc-convert-unit-length-fathom' => '$1braciê{{PLURAL:$2||s}}', |
| 1589 | + 'pfunc-convert-unit-length-yard' => '$1vèrge{{PLURAL:$2||s}}', |
| 1590 | + 'pfunc-convert-unit-length-foot' => '$1pied{{PLURAL:$2||s}}', |
| 1591 | + 'pfunc-convert-unit-length-hand' => '$1man{{PLURAL:$2||s}}', |
| 1592 | + 'pfunc-convert-unit-length-inch' => '$1pôjo{{PLURAL:$2||s}}', |
| 1593 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|mile marin|miles marins}}', |
| 1594 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|mile marin (prè-1970 britanico)|miles marins (prè-1970 britanicos)}}', |
| 1595 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|mile marin (prè-1954 des Ètats-Unis)|miles marins (prè-1954 des Ètats-Unis)}}', |
| 1596 | + 'pfunc-convert-unit-length-parsec' => '$1$3parsec{{PLURAL:$2||s}}', |
| 1597 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3an|$3ans}}-lumiére', |
| 1598 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|unitât astronomica|unitâts astronomiques}}', |
| 1599 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 1600 | + 'pfunc-convert-unit-length-chain-abbr' => '$1chêna', |
| 1601 | + 'pfunc-convert-unit-length-rod-abbr' => '$1pèrche', |
| 1602 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1braciê', |
| 1603 | + 'pfunc-convert-unit-length-yard-abbr' => '$1vg', |
| 1604 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 1605 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 1606 | + 'pfunc-convert-unit-length-inch-abbr' => '$1po', |
| 1607 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 1608 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 1609 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3al', |
| 1610 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1UA', |
| 1611 | + 'pfunc-convert-unit-area-hectare' => '$1hèctâre{{PLURAL:$2||s}}', |
| 1612 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|mile carrâ|miles carrâs}}', |
| 1613 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|vèrge carrâ|vèrges carrâs}}', |
| 1614 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|pôjo carrâ|pôjos carrâs}}', |
| 1615 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 1616 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 1617 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 1618 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 1619 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 1620 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1mi<sup>2</sup>', |
| 1621 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1vg<sup>2</sup>', |
| 1622 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1po<sup>2</sup>', |
| 1623 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1nmi<sup>2</sup>', |
| 1624 | + 'pfunc-convert-unit-time-second' => '$1second{{PLURAL:$2|a|es}}', |
| 1625 | + 'pfunc-convert-unit-time-year' => '$1$3an{{PLURAL:$2||s}}', |
| 1626 | + 'pfunc-convert-unit-time-day' => '$1jorn{{PLURAL:$2||s}}', |
| 1627 | + 'pfunc-convert-unit-time-hour' => '$1hor{{PLURAL:$2|a|es}}', |
| 1628 | + 'pfunc-convert-unit-time-minute' => '$1menut{{PLURAL:$2|a|es}}', |
| 1629 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 1630 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3a', |
| 1631 | + 'pfunc-convert-unit-time-day-abbr' => '$1j', |
| 1632 | + 'pfunc-convert-unit-time-hour-abbr' => '$1h', |
| 1633 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 1634 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 1635 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 1636 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 1637 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 1638 | + 'pfunc-convert-unit-speed-mile-hour' => '$1miles per hora', |
| 1639 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 1640 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mph', |
| 1641 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 1642 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascâl|$3pascâls}}', |
| 1643 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 1644 | + 'pfunc-convert-unit-pressure-decibar' => '$1dècibar', |
| 1645 | + 'pfunc-convert-unit-pressure-millibar' => '$1milibar', |
| 1646 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobarye', |
| 1647 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 1648 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1atmosfér{{PLURAL:$2|a|es}}', |
| 1649 | + 'pfunc-convert-unit-pressure-torr' => '$1torr{{PLURAL:$2||s}}', |
| 1650 | + 'pfunc-convert-unit-pressure-mmhg' => '$1milimètre{{PLURAL:$2||s}} de mèrcure', |
| 1651 | + 'pfunc-convert-unit-pressure-inhg' => '$1pôjo{{PLURAL:$2||s}} de mèrcure', |
| 1652 | + 'pfunc-convert-unit-pressure-psi' => '$1livr{{PLURAL:$2|a|es}} per pôjo carrâ', |
| 1653 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 1654 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 1655 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 1656 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 1657 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 1658 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 1659 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 1660 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 1661 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 1662 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 1663 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
1664 | 1664 | ); |
1665 | 1665 | |
1666 | 1666 | /** Galician (Galego) |
— | — | @@ -1731,79 +1731,79 @@ |
1732 | 1732 | 'pfunc-convert-prefix-zepto' => 'zepto', |
1733 | 1733 | 'pfunc-convert-prefix-yocto' => 'yocto', |
1734 | 1734 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
1735 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2metro|$2metros}}', |
1736 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angstrom|angstroms}}', |
1737 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|milla|millas}}', |
1738 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlongs}}', |
1739 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|cadea|cadeas}}', |
1740 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|rod|rods}}', |
1741 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|braza|brazas}}', |
1742 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|iarda|iardas}}', |
1743 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|pé|pés}}', |
1744 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|palmo|palmos}}', |
1745 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|polgada|polgadas}}', |
1746 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|milla náutica|millas náuticas}}', |
1747 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsec|$2parsecs}}', |
1748 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2ano luz|$2anos luz}}', |
1749 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|unidade astronómica|unidades astronómicas}}', |
1750 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
1751 | | - 'pfunc-convert-unit-length-chain-abbr' => 'cadea', |
1752 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rod', |
1753 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'braza', |
1754 | | - 'pfunc-convert-unit-length-yard-abbr' => 'iarda', |
1755 | | - 'pfunc-convert-unit-length-foot-abbr' => 'pé', |
1756 | | - 'pfunc-convert-unit-length-hand-abbr' => 'palmo', |
1757 | | - 'pfunc-convert-unit-length-inch-abbr' => 'polgada', |
1758 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'milla náutica', |
1759 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2parsec', |
1760 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2ano luz', |
1761 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'UA', |
1762 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|quilómetro cadrado|quilómetros cadrados}}', |
1763 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|metro cadrado|metros cadrados}}', |
1764 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|centímetro cadrado|centímetros cadrados}}', |
1765 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|milímetro cadrado|milímetros cadrados}}', |
1766 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hectárea|hectáreas}}', |
1767 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
1768 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
1769 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
1770 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
1771 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
1772 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|segundo|segundos}}', |
1773 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2ano|$2anos}}', |
1774 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|día|días}}', |
1775 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|hora|horas}}', |
1776 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minuto|minutos}}', |
1777 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
1778 | | - 'pfunc-convert-unit-time-year-abbr' => '$2ano', |
1779 | | - 'pfunc-convert-unit-time-day-abbr' => 'día', |
1780 | | - 'pfunc-convert-unit-time-hour-abbr' => 'h', |
1781 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
1782 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|metro cúbico|metros cúbicos}}', |
1783 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|centímetro cúbico|centímetros cúbicos}}', |
1784 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|milímetro cúbico|milímetros cúbicos}}', |
1785 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|quilolitro|quilolitros}}', |
1786 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|litro|litros}}', |
1787 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|centilitro|centilitros}}', |
1788 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|mililitro|mililitros}}', |
1789 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
1790 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
1791 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
1792 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2L', |
1793 | | - 'pfunc-convert-unit-speed-mile-hour' => 'millas por hora', |
1794 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
1795 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
1796 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascal|$2pascais}}', |
1797 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
1798 | | - 'pfunc-convert-unit-pressure-decibar' => 'decibar', |
1799 | | - 'pfunc-convert-unit-pressure-millibar' => 'milibar', |
1800 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosfera|atmosferas}}', |
1801 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|milímetro de mercurio|milímetros de mercurio}}', |
1802 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
1803 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
1804 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
1805 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
1806 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
1807 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
| 1735 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3metro|$3metros}}', |
| 1736 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angstrom|angstroms}}', |
| 1737 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|milla|millas}}', |
| 1738 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlongs}}', |
| 1739 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|cadea|cadeas}}', |
| 1740 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|rod|rods}}', |
| 1741 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|braza|brazas}}', |
| 1742 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|iarda|iardas}}', |
| 1743 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|pé|pés}}', |
| 1744 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|palmo|palmos}}', |
| 1745 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|polgada|polgadas}}', |
| 1746 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|milla náutica|millas náuticas}}', |
| 1747 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsec|$3parsecs}}', |
| 1748 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3ano luz|$3anos luz}}', |
| 1749 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|unidade astronómica|unidades astronómicas}}', |
| 1750 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 1751 | + 'pfunc-convert-unit-length-chain-abbr' => '$1cadea', |
| 1752 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rod', |
| 1753 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1braza', |
| 1754 | + 'pfunc-convert-unit-length-yard-abbr' => '$1iarda', |
| 1755 | + 'pfunc-convert-unit-length-foot-abbr' => '$1pé', |
| 1756 | + 'pfunc-convert-unit-length-hand-abbr' => '$1palmo', |
| 1757 | + 'pfunc-convert-unit-length-inch-abbr' => '$1polgada', |
| 1758 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1milla náutica', |
| 1759 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3parsec', |
| 1760 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3ano luz', |
| 1761 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1UA', |
| 1762 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|quilómetro cadrado|quilómetros cadrados}}', |
| 1763 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|metro cadrado|metros cadrados}}', |
| 1764 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|centímetro cadrado|centímetros cadrados}}', |
| 1765 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|milímetro cadrado|milímetros cadrados}}', |
| 1766 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hectárea|hectáreas}}', |
| 1767 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 1768 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 1769 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 1770 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 1771 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 1772 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|segundo|segundos}}', |
| 1773 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3ano|$3anos}}', |
| 1774 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|día|días}}', |
| 1775 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|hora|horas}}', |
| 1776 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minuto|minutos}}', |
| 1777 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 1778 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3ano', |
| 1779 | + 'pfunc-convert-unit-time-day-abbr' => '$1día', |
| 1780 | + 'pfunc-convert-unit-time-hour-abbr' => '$1h', |
| 1781 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 1782 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|metro cúbico|metros cúbicos}}', |
| 1783 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|centímetro cúbico|centímetros cúbicos}}', |
| 1784 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|milímetro cúbico|milímetros cúbicos}}', |
| 1785 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|quilolitro|quilolitros}}', |
| 1786 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|litro|litros}}', |
| 1787 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|centilitro|centilitros}}', |
| 1788 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|mililitro|mililitros}}', |
| 1789 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 1790 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 1791 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 1792 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3L', |
| 1793 | + 'pfunc-convert-unit-speed-mile-hour' => '$1millas por hora', |
| 1794 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 1795 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 1796 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascal|$3pascais}}', |
| 1797 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 1798 | + 'pfunc-convert-unit-pressure-decibar' => '$1decibar', |
| 1799 | + 'pfunc-convert-unit-pressure-millibar' => '$1milibar', |
| 1800 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosfera|atmosferas}}', |
| 1801 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|milímetro de mercurio|milímetros de mercurio}}', |
| 1802 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 1803 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 1804 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 1805 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 1806 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 1807 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
1808 | 1808 | ); |
1809 | 1809 | |
1810 | 1810 | /** Ancient Greek (Ἀρχαία ἑλληνικὴ) |
— | — | @@ -1904,81 +1904,81 @@ |
1905 | 1905 | 'pfunc-convert-prefix-atto' => 'אטו', |
1906 | 1906 | 'pfunc-convert-prefix-zepto' => 'זפטו', |
1907 | 1907 | 'pfunc-convert-prefix-yocto' => 'יוקטו', |
1908 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'פרלונג', |
1909 | | - 'pfunc-convert-unit-length-chain-abbr' => 'שלשלת', |
1910 | | - 'pfunc-convert-unit-length-rod-abbr' => 'מַטֶּה', |
1911 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'פאתום', |
1912 | | - 'pfunc-convert-unit-length-yard-abbr' => 'יארד', |
1913 | | - 'pfunc-convert-unit-length-foot-abbr' => 'רגל', |
1914 | | - 'pfunc-convert-unit-length-hand-abbr' => 'כף־יד', |
1915 | | - 'pfunc-convert-unit-length-inch-abbr' => 'אינץ׳', |
1916 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'מיל ימי', |
1917 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'מיל ימי (אנגלי)', |
1918 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'מיל ימי (ארה״ב לפני 1954)', |
1919 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2 פארסק', |
1920 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2 שנות אור', |
1921 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'יחידה אסטרונומית', |
1922 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'קמ״ר', |
1923 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'מ״ר', |
1924 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'סמ״ר', |
1925 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'ממ״ר', |
1926 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'הקטאר', |
1927 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'מיל רבוע', |
1928 | | - 'pfunc-convert-unit-area-acre-abbr' => 'אקר', |
1929 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'יארד רבוע', |
1930 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'רגל רבועה', |
1931 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'אינץ׳ רבוע', |
1932 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'מיל ימי רבוע', |
1933 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'דונם', |
1934 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'צובו', |
1935 | | - 'pfunc-convert-unit-time-second-abbr' => 'שנייה', |
1936 | | - 'pfunc-convert-unit-time-day-abbr' => 'יום', |
1937 | | - 'pfunc-convert-unit-time-hour-abbr' => 'שעה', |
1938 | | - 'pfunc-convert-unit-time-minute-abbr' => 'דקה', |
1939 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'מטר מעוקב', |
1940 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'ס״מ מעוקב', |
1941 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'מ״מ מעוקב', |
1942 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2 ל׳', |
1943 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'יארד מעוקב', |
1944 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'רגל מעוקבת', |
1945 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'אינץ׳ מעוקב', |
1946 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'חבית', |
1947 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'בושל', |
1948 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'גלון', |
1949 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'קווארטה', |
1950 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'פיינט', |
1951 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'אונקייה', |
1952 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'חבית אמריקאית', |
1953 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'חבית', |
1954 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'חבית', |
1955 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'גלון אמריקאי', |
1956 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'קווארטה אמריקאית', |
1957 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'פיינט אמריקאי', |
1958 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'אונקייה אמריקאית', |
1959 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'חבית אמריקאית', |
1960 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'בושל אמריקאי', |
1961 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'גלון יבש אמריקאי', |
1962 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'קווארטה יבשה אמריקאית', |
1963 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'פיינט יבש אמריקאי', |
1964 | | - 'pfunc-convert-unit-speed-mile-hour' => 'מיל לשעה', |
1965 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
1966 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'מיל לשעה', |
1967 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
1968 | | - 'pfunc-convert-unit-pressure-bar' => 'בר', |
1969 | | - 'pfunc-convert-unit-pressure-decibar' => 'דציבר', |
1970 | | - 'pfunc-convert-unit-pressure-millibar' => 'מיליבר', |
1971 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'קילובָּרְיֶה', |
1972 | | - 'pfunc-convert-unit-pressure-barye' => 'בָּרְיֶה', |
1973 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'בר', |
1974 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'דציבר', |
1975 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'מיליבר', |
1976 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'קילובָּרְיֶה', |
1977 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'בָּרְיֶה', |
1978 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'אטמ׳', |
1979 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'טור', |
1980 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'מ״מ כספית', |
1981 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'אינץ׳ כספית', |
1982 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 1908 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1פרלונג', |
| 1909 | + 'pfunc-convert-unit-length-chain-abbr' => '$1שלשלת', |
| 1910 | + 'pfunc-convert-unit-length-rod-abbr' => '$1מַטֶּה', |
| 1911 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1פאתום', |
| 1912 | + 'pfunc-convert-unit-length-yard-abbr' => '$1יארד', |
| 1913 | + 'pfunc-convert-unit-length-foot-abbr' => '$1רגל', |
| 1914 | + 'pfunc-convert-unit-length-hand-abbr' => '$1כף־יד', |
| 1915 | + 'pfunc-convert-unit-length-inch-abbr' => '$1אינץ׳', |
| 1916 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1מיל ימי', |
| 1917 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1מיל ימי (אנגלי)', |
| 1918 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1מיל ימי (ארה״ב לפני 1954)', |
| 1919 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3 פארסק', |
| 1920 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3 שנות אור', |
| 1921 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1יחידה אסטרונומית', |
| 1922 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1קמ״ר', |
| 1923 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1מ״ר', |
| 1924 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1סמ״ר', |
| 1925 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1ממ״ר', |
| 1926 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1הקטאר', |
| 1927 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1מיל רבוע', |
| 1928 | + 'pfunc-convert-unit-area-acre-abbr' => '$1אקר', |
| 1929 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1יארד רבוע', |
| 1930 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1רגל רבועה', |
| 1931 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1אינץ׳ רבוע', |
| 1932 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1מיל ימי רבוע', |
| 1933 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1דונם', |
| 1934 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1צובו', |
| 1935 | + 'pfunc-convert-unit-time-second-abbr' => '$1שנייה', |
| 1936 | + 'pfunc-convert-unit-time-day-abbr' => '$1יום', |
| 1937 | + 'pfunc-convert-unit-time-hour-abbr' => '$1שעה', |
| 1938 | + 'pfunc-convert-unit-time-minute-abbr' => '$1דקה', |
| 1939 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1מטר מעוקב', |
| 1940 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1ס״מ מעוקב', |
| 1941 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1מ״מ מעוקב', |
| 1942 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3 ל׳', |
| 1943 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1יארד מעוקב', |
| 1944 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1רגל מעוקבת', |
| 1945 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1אינץ׳ מעוקב', |
| 1946 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1חבית', |
| 1947 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1בושל', |
| 1948 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1גלון', |
| 1949 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1קווארטה', |
| 1950 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1פיינט', |
| 1951 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1אונקייה', |
| 1952 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1חבית אמריקאית', |
| 1953 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1חבית', |
| 1954 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1חבית', |
| 1955 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1גלון אמריקאי', |
| 1956 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1קווארטה אמריקאית', |
| 1957 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1פיינט אמריקאי', |
| 1958 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1אונקייה אמריקאית', |
| 1959 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1חבית אמריקאית', |
| 1960 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1בושל אמריקאי', |
| 1961 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1גלון יבש אמריקאי', |
| 1962 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1קווארטה יבשה אמריקאית', |
| 1963 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1פיינט יבש אמריקאי', |
| 1964 | + 'pfunc-convert-unit-speed-mile-hour' => '$1מיל לשעה', |
| 1965 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 1966 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1מיל לשעה', |
| 1967 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 1968 | + 'pfunc-convert-unit-pressure-bar' => '$1בר', |
| 1969 | + 'pfunc-convert-unit-pressure-decibar' => '$1דציבר', |
| 1970 | + 'pfunc-convert-unit-pressure-millibar' => '$1מיליבר', |
| 1971 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1קילובָּרְיֶה', |
| 1972 | + 'pfunc-convert-unit-pressure-barye' => '$1בָּרְיֶה', |
| 1973 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1בר', |
| 1974 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1דציבר', |
| 1975 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1מיליבר', |
| 1976 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1קילובָּרְיֶה', |
| 1977 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1בָּרְיֶה', |
| 1978 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1אטמ׳', |
| 1979 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1טור', |
| 1980 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1מ״מ כספית', |
| 1981 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1אינץ׳ כספית', |
| 1982 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
1983 | 1983 | ); |
1984 | 1984 | |
1985 | 1985 | /** Hindi (हिन्दी) |
— | — | @@ -2078,30 +2078,30 @@ |
2079 | 2079 | 'pfunc-convert-dimension-density' => 'hustota', |
2080 | 2080 | 'pfunc-convert-dimension-fuelefficiencypositive' => 'Pozitiwna ćěriwowa eficienca', |
2081 | 2081 | 'pfunc-convert-dimension-fuelefficiencynegative' => 'Negatiwna ćěriwowa eficienca', |
2082 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|meter|metraj|metry|metrow}}', |
2083 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomiska jednotka|astronomiskej jednotce|astronomiske jednotki|astronomiskich jednotkow}}', |
2084 | | - 'pfunc-convert-unit-length-metre-abbr' => 'm', |
2085 | | - 'pfunc-convert-unit-length-angstrom-abbr' => 'Å', |
2086 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
2087 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
2088 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
2089 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
2090 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
2091 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'sm<sup>2</sup>', |
2092 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|sekunda|sekundźe|sekundy|sekundow}}', |
2093 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|lěto|lěće|lěta|lět}}', |
2094 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|dźeń|dnjej|dny|dnjow}}', |
2095 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|hodźina|hodźinje|hodźiny|hodźin}}', |
2096 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|mjeńšina|mjeńšinje|mjeńšiny|mjeńšin}}', |
2097 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
2098 | | - 'pfunc-convert-unit-time-year-abbr' => 'lěto', |
2099 | | - 'pfunc-convert-unit-time-day-abbr' => 'dźeń', |
2100 | | - 'pfunc-convert-unit-time-hour-abbr' => 'hodź.', |
2101 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
2102 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
2103 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
2104 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
2105 | | - 'pfunc-convert-unit-volume-litre-abbr' => 'l', |
| 2082 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|meter|metraj|metry|metrow}}', |
| 2083 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomiska jednotka|astronomiskej jednotce|astronomiske jednotki|astronomiskich jednotkow}}', |
| 2084 | + 'pfunc-convert-unit-length-metre-abbr' => '$1m', |
| 2085 | + 'pfunc-convert-unit-length-angstrom-abbr' => '$1Å', |
| 2086 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 2087 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 2088 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 2089 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 2090 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 2091 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1sm<sup>2</sup>', |
| 2092 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|sekunda|sekundźe|sekundy|sekundow}}', |
| 2093 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|lěto|lěće|lěta|lět}}', |
| 2094 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|dźeń|dnjej|dny|dnjow}}', |
| 2095 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|hodźina|hodźinje|hodźiny|hodźin}}', |
| 2096 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|mjeńšina|mjeńšinje|mjeńšiny|mjeńšin}}', |
| 2097 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 2098 | + 'pfunc-convert-unit-time-year-abbr' => '$1lěto', |
| 2099 | + 'pfunc-convert-unit-time-day-abbr' => '$1dźeń', |
| 2100 | + 'pfunc-convert-unit-time-hour-abbr' => '$1hodź.', |
| 2101 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 2102 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 2103 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 2104 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 2105 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1l', |
2106 | 2106 | ); |
2107 | 2107 | |
2108 | 2108 | /** Hungarian (Magyar) |
— | — | @@ -2165,13 +2165,13 @@ |
2166 | 2166 | 'pfunc-convert-prefix-atto' => 'atto', |
2167 | 2167 | 'pfunc-convert-prefix-zepto' => 'zepto', |
2168 | 2168 | 'pfunc-convert-prefix-yocto' => 'yokto', |
2169 | | - 'pfunc-convert-unit-length-metre' => '$2méter', |
2170 | | - 'pfunc-convert-unit-length-mile' => 'mérföld', |
2171 | | - 'pfunc-convert-unit-length-foot' => 'láb', |
2172 | | - 'pfunc-convert-unit-length-nauticalmile' => 'tengeri mérföld', |
2173 | | - 'pfunc-convert-unit-length-lightyear' => '$2fényév', |
2174 | | - 'pfunc-convert-unit-length-astronomicalunit' => 'csillagászati egység', |
2175 | | - 'pfunc-convert-unit-area-hectare' => 'hektár', |
| 2169 | + 'pfunc-convert-unit-length-metre' => '$1$3méter', |
| 2170 | + 'pfunc-convert-unit-length-mile' => '$1mérföld', |
| 2171 | + 'pfunc-convert-unit-length-foot' => '$1láb', |
| 2172 | + 'pfunc-convert-unit-length-nauticalmile' => '$1tengeri mérföld', |
| 2173 | + 'pfunc-convert-unit-length-lightyear' => '$1$3fényév', |
| 2174 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1csillagászati egység', |
| 2175 | + 'pfunc-convert-unit-area-hectare' => '$1hektár', |
2176 | 2176 | ); |
2177 | 2177 | |
2178 | 2178 | /** Interlingua (Interlingua) |
— | — | @@ -2241,12 +2241,12 @@ |
2242 | 2242 | 'pfunc-convert-prefix-atto' => 'atto', |
2243 | 2243 | 'pfunc-convert-prefix-zepto' => 'zepto', |
2244 | 2244 | 'pfunc-convert-prefix-yocto' => 'yocto', |
2245 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2metro|$2metros}}', |
2246 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|ångström|ångströmes}}', |
2247 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|millia|millias}}', |
2248 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlongs}}', |
2249 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|catena|catenas}}', |
2250 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|pertica|perticas}}', |
| 2245 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3metro|$3metros}}', |
| 2246 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|ångström|ångströmes}}', |
| 2247 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|millia|millias}}', |
| 2248 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlongs}}', |
| 2249 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|catena|catenas}}', |
| 2250 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|pertica|perticas}}', |
2251 | 2251 | ); |
2252 | 2252 | |
2253 | 2253 | /** Indonesian (Bahasa Indonesia) |
— | — | @@ -2349,36 +2349,36 @@ |
2350 | 2350 | 'pfunc-convert-prefix-zepto' => 'zepto', |
2351 | 2351 | 'pfunc-convert-prefix-yocto' => 'yocto', |
2352 | 2352 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
2353 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2metro|$2metri}}', |
2354 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|piede|piedi}}', |
2355 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|pollice|pollici}}', |
2356 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2anno luce|$2anni luce}}', |
2357 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
2358 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
2359 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
2360 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
2361 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|secondo|secondi}}', |
2362 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2anno|$2anni}}', |
2363 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|giorno|giorni}}', |
2364 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|ora|ore}}', |
2365 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minuto|minuti}}', |
2366 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
2367 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
2368 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|metro cubo|metri cubi}}', |
2369 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|litro|litri}}', |
2370 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
2371 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
2372 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
2373 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
2374 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
2375 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
2376 | | - 'pfunc-convert-unit-pressure-millibar' => 'millibar', |
2377 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|millimetro di mercurio|millimetri di mercurio}}', |
2378 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
2379 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
2380 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
2381 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
2382 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
| 2353 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3metro|$3metri}}', |
| 2354 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|piede|piedi}}', |
| 2355 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|pollice|pollici}}', |
| 2356 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3anno luce|$3anni luce}}', |
| 2357 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 2358 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 2359 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 2360 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 2361 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|secondo|secondi}}', |
| 2362 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3anno|$3anni}}', |
| 2363 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|giorno|giorni}}', |
| 2364 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|ora|ore}}', |
| 2365 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minuto|minuti}}', |
| 2366 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 2367 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 2368 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|metro cubo|metri cubi}}', |
| 2369 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|litro|litri}}', |
| 2370 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 2371 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 2372 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 2373 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 2374 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 2375 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 2376 | + 'pfunc-convert-unit-pressure-millibar' => '$1millibar', |
| 2377 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|millimetro di mercurio|millimetri di mercurio}}', |
| 2378 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 2379 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 2380 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 2381 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 2382 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
2383 | 2383 | ); |
2384 | 2384 | |
2385 | 2385 | /** Japanese (日本語) |
— | — | @@ -2597,11 +2597,11 @@ |
2598 | 2598 | 'pfunc-convert-prefix-atto' => 'Atto', |
2599 | 2599 | 'pfunc-convert-prefix-zepto' => 'Zäpto', |
2600 | 2600 | 'pfunc-convert-prefix-yocto' => 'Jokto', |
2601 | | - 'pfunc-convert-unit-length-metre' => 'Meeter', |
2602 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|Meil|Meile|Meile}}', |
2603 | | - 'pfunc-convert-unit-area-squarekilometre' => 'Quadraatkillomeetere', |
2604 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
2605 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm²', |
| 2601 | + 'pfunc-convert-unit-length-metre' => '$1Meeter', |
| 2602 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|Meil|Meile|Meile}}', |
| 2603 | + 'pfunc-convert-unit-area-squarekilometre' => '$1Quadraatkillomeetere', |
| 2604 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 2605 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m²', |
2606 | 2606 | ); |
2607 | 2607 | |
2608 | 2608 | /** Luxembourgish (Lëtzebuergesch) |
— | — | @@ -2643,29 +2643,29 @@ |
2644 | 2644 | 'pfunc-convert-dimension-power' => 'Leeschtung', |
2645 | 2645 | 'pfunc-convert-dimension-pressure' => 'Drock', |
2646 | 2646 | 'pfunc-convert-dimension-density' => 'Densitéit', |
2647 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|Meter|Meter}}', |
2648 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|Meil|Meilen}}', |
2649 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|Fouss|Féiss}}', |
2650 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|nautesch Meil|nautesch Meilen}}', |
2651 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2 Liichtjoer|$2 Liichtjoer}}', |
2652 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomesch Eenheet|astronomesch Eenheeten}}', |
2653 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|Quadratkilometer|Quadratkilometer}}', |
2654 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|Quadratmeter|Quadratmeter}}', |
2655 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|Quadratzentimeter|Quadratzentimeter}}', |
2656 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|Quadratmillimeter|Quadratmillimeter}}', |
2657 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|Hektar|Hektar}}', |
2658 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|Sekonn|Sekonnen}}', |
2659 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|Joer|Joer}}', |
2660 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|Dag|Deeg}}', |
2661 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|Stonn|Stonnen}}', |
2662 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|Minutt|Minutten}}', |
2663 | | - 'pfunc-convert-unit-time-day-abbr' => 'Dag', |
2664 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|Kubikmeter|Kubikmeter}}', |
2665 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|Fudder|Fudder}}', |
2666 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|Liter|Liter}}', |
2667 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|Milliliter|Milliliter}}', |
2668 | | - 'pfunc-convert-unit-speed-mile-hour' => 'Meile pro Stonn', |
2669 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|Atmosphäre|Atmosphären}}', |
| 2647 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|Meter|Meter}}', |
| 2648 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|Meil|Meilen}}', |
| 2649 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|Fouss|Féiss}}', |
| 2650 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|nautesch Meil|nautesch Meilen}}', |
| 2651 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3 Liichtjoer|$3 Liichtjoer}}', |
| 2652 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomesch Eenheet|astronomesch Eenheeten}}', |
| 2653 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|Quadratkilometer|Quadratkilometer}}', |
| 2654 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|Quadratmeter|Quadratmeter}}', |
| 2655 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|Quadratzentimeter|Quadratzentimeter}}', |
| 2656 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|Quadratmillimeter|Quadratmillimeter}}', |
| 2657 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|Hektar|Hektar}}', |
| 2658 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|Sekonn|Sekonnen}}', |
| 2659 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|Joer|Joer}}', |
| 2660 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|Dag|Deeg}}', |
| 2661 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|Stonn|Stonnen}}', |
| 2662 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|Minutt|Minutten}}', |
| 2663 | + 'pfunc-convert-unit-time-day-abbr' => '$1Dag', |
| 2664 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|Kubikmeter|Kubikmeter}}', |
| 2665 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|Fudder|Fudder}}', |
| 2666 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|Liter|Liter}}', |
| 2667 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|Milliliter|Milliliter}}', |
| 2668 | + 'pfunc-convert-unit-speed-mile-hour' => '$1Meile pro Stonn', |
| 2669 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|Atmosphäre|Atmosphären}}', |
2670 | 2670 | ); |
2671 | 2671 | |
2672 | 2672 | /** Limburgish (Limburgs) |
— | — | @@ -2798,154 +2798,154 @@ |
2799 | 2799 | 'pfunc-convert-prefix-atto-abbr' => 'а', |
2800 | 2800 | 'pfunc-convert-prefix-zepto-abbr' => 'з', |
2801 | 2801 | 'pfunc-convert-prefix-yocto-abbr' => 'ј', |
2802 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|метар|метри}}', |
2803 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|ангстрем|ангстреми}}', |
2804 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|милја|милји}}', |
2805 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|фурлонг|фурлонзи}}', |
2806 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|ланец|ланци}}', |
2807 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|прачка|прачки}}', |
2808 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|фатом|фатоми}}', |
2809 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|јарда|јарди}}', |
2810 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|стапка|стапки}}', |
2811 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|дланка|дланки}}', |
2812 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|инч|инчи}}', |
2813 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|наутичка милја|наутички милји}}', |
2814 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|наутичка милја (британска, пред 1970)|наутички милји (британска, пред 1970)}}', |
2815 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{PLURAL:$1|наутичка милја (американска, пред 1954)|наутички милји (американски, пред 1954)}}', |
2816 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2 парсек|$2 парсеци}}', |
2817 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|светлосна година|светлосни години}}', |
2818 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|астрономска единица|астрономски единици}}', |
2819 | | - 'pfunc-convert-unit-length-metre-abbr' => '$2 м', |
2820 | | - 'pfunc-convert-unit-length-mile-abbr' => 'ми', |
2821 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'фурлонг', |
2822 | | - 'pfunc-convert-unit-length-chain-abbr' => 'ланец', |
2823 | | - 'pfunc-convert-unit-length-rod-abbr' => 'пр', |
2824 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'фатом', |
2825 | | - 'pfunc-convert-unit-length-yard-abbr' => 'јд', |
2826 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ст', |
2827 | | - 'pfunc-convert-unit-length-hand-abbr' => 'дл', |
2828 | | - 'pfunc-convert-unit-length-inch-abbr' => 'ин', |
2829 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'нми', |
2830 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'нми (брит)', |
2831 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'нми (амер. пред 1954)', |
2832 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2 пс', |
2833 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2 сг', |
2834 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'ae', |
2835 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|квадратен километар|квадратни километри}}', |
2836 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|квадратен метар|квадратни метри}}', |
2837 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|квадратен сантиметар|квадратни сантиметри}}', |
2838 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|квадратен милиметар|квадратни милиметри}}', |
2839 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|хектар|хектари}}', |
2840 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|квадратна милја|квадратни милји}}', |
2841 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|акр|акри}}', |
2842 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|квадратна јарда|квадратни јарди}}', |
2843 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|квадратна стапка|квадратни стапки}}', |
2844 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|квадратен инч|квадратни инчи}}', |
2845 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|квадратна наутичка милја|квадратни наутички милји}}', |
2846 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|дунум|дунуми}}', |
2847 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|цубо|цуба}}', |
2848 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'км<sup>2</sup>', |
2849 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'м<sup>2</sup>', |
2850 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'см<sup>2</sup>', |
2851 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'мм<msup>2</sup>', |
2852 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ха', |
2853 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'ми<sup>2</sup>', |
2854 | | - 'pfunc-convert-unit-area-acre-abbr' => 'акр', |
2855 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'јд<sup>2</sup>', |
2856 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'ст<sup>2</sup>', |
2857 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'ин<sup>2</sup>', |
2858 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'нми<sup>2</sup>', |
2859 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'дунум', |
2860 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'цубо', |
2861 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|секунда|секунди}}', |
2862 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|година|години}}', |
2863 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|ден|дена}}', |
2864 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|час|часа}}', |
2865 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|минута|минути}}', |
2866 | | - 'pfunc-convert-unit-time-second-abbr' => 'с', |
2867 | | - 'pfunc-convert-unit-time-year-abbr' => '$2 г', |
2868 | | - 'pfunc-convert-unit-time-day-abbr' => 'ден', |
2869 | | - 'pfunc-convert-unit-time-hour-abbr' => 'ч', |
2870 | | - 'pfunc-convert-unit-time-minute-abbr' => 'мин', |
2871 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|кубен метар|кубни метри}}', |
2872 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|кубен сантиметар|кубни сантиметри}}', |
2873 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|кубен милиметар|кубни милиметри}}', |
2874 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|килолитар|килолитри}}', |
2875 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|литар|литри}}', |
2876 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|центилитар|центилитри}}', |
2877 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|милилитар|милилитри}}', |
2878 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|кубна јарда|кубни јарди}}', |
2879 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|кубна стапка|кубни стапки}}', |
2880 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|кубен инч|кубни инчи}}', |
2881 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|барел|барели}}', |
2882 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|бушел|бушели}}', |
2883 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|галон|галони}}', |
2884 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|кварта|кварти}}', |
2885 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|пинта|пинти}}', |
2886 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|течна унца|течни унци}}', |
2887 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|американски барел|американски барели}}', |
2888 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|барел|барели}}', |
2889 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|барел|барели}}', |
2890 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|американски галон|американски галони}}', |
2891 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|американска кварта|американски кварти}}', |
2892 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|американска пинта|американски пинти}}', |
2893 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|американска течна унца|американски течни унци}}', |
2894 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|американски сув барел|американски суви барели}}', |
2895 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|американски бушел|американски бушели}}', |
2896 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|американски сув галон|американски суви галони}}', |
2897 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|американска сува кварта|американски суви кварти}}', |
2898 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|американска сува пинта|американски суви пинти}}', |
2899 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'м<sup>3</sup>', |
2900 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'см<sup>3</sup>', |
2901 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'мм<sup>3</sup>', |
2902 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2 л', |
2903 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'јд<sup>3</sup>', |
2904 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'ст<sup>3</sup>', |
2905 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'ин<sup>3</sup>', |
2906 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'ббл', |
2907 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'бш', |
2908 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'гал', |
2909 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'кт', |
2910 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'пт', |
2911 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'тч уц', |
2912 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'ббл (САД)', |
2913 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'ббл', |
2914 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'ббл', |
2915 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'гал (САД)', |
2916 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'кт (САД)', |
2917 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'пт (САД)', |
2918 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'тч уц (САД)', |
2919 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'ббл (САД)', |
2920 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'бш (САД)', |
2921 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'сув гал (САД)', |
2922 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'сув кт (САД)', |
2923 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'сув пт (САД)', |
2924 | | - 'pfunc-convert-unit-speed-mile-hour' => 'милји на час', |
2925 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
2926 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'ми/ч', |
2927 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
2928 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|паскал|паскали}}', |
2929 | | - 'pfunc-convert-unit-pressure-bar' => 'бар', |
2930 | | - 'pfunc-convert-unit-pressure-decibar' => 'децибар', |
2931 | | - 'pfunc-convert-unit-pressure-millibar' => 'милибар', |
2932 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'килобарија', |
2933 | | - 'pfunc-convert-unit-pressure-barye' => 'барија', |
2934 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|атмосфера|атмосфери}}', |
2935 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|тор|тора}}', |
2936 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|милиметар живин столб|милиметри живин столб}}', |
2937 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|инч живин столб|инчи живин столб}}', |
2938 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|фунта на квадратен инч|фунти на квадратен инч}}', |
2939 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2 Па', |
2940 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'бар', |
2941 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'дбар', |
2942 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'мбар', |
2943 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'кБа', |
2944 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ба', |
2945 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'атм', |
2946 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'тор', |
2947 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'ммHg', |
2948 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'инHg', |
2949 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 2802 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|метар|метри}}', |
| 2803 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|ангстрем|ангстреми}}', |
| 2804 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|милја|милји}}', |
| 2805 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|фурлонг|фурлонзи}}', |
| 2806 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|ланец|ланци}}', |
| 2807 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|прачка|прачки}}', |
| 2808 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|фатом|фатоми}}', |
| 2809 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|јарда|јарди}}', |
| 2810 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|стапка|стапки}}', |
| 2811 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|дланка|дланки}}', |
| 2812 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|инч|инчи}}', |
| 2813 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|наутичка милја|наутички милји}}', |
| 2814 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|наутичка милја (британска, пред 1970)|наутички милји (британска, пред 1970)}}', |
| 2815 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{PLURAL:$2|наутичка милја (американска, пред 1954)|наутички милји (американски, пред 1954)}}', |
| 2816 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3 парсек|$3 парсеци}}', |
| 2817 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|светлосна година|светлосни години}}', |
| 2818 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|астрономска единица|астрономски единици}}', |
| 2819 | + 'pfunc-convert-unit-length-metre-abbr' => '$1$3 м', |
| 2820 | + 'pfunc-convert-unit-length-mile-abbr' => '$1ми', |
| 2821 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1фурлонг', |
| 2822 | + 'pfunc-convert-unit-length-chain-abbr' => '$1ланец', |
| 2823 | + 'pfunc-convert-unit-length-rod-abbr' => '$1пр', |
| 2824 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1фатом', |
| 2825 | + 'pfunc-convert-unit-length-yard-abbr' => '$1јд', |
| 2826 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ст', |
| 2827 | + 'pfunc-convert-unit-length-hand-abbr' => '$1дл', |
| 2828 | + 'pfunc-convert-unit-length-inch-abbr' => '$1ин', |
| 2829 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1нми', |
| 2830 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1нми (брит)', |
| 2831 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1нми (амер. пред 1954)', |
| 2832 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3 пс', |
| 2833 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3 сг', |
| 2834 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1ae', |
| 2835 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|квадратен километар|квадратни километри}}', |
| 2836 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|квадратен метар|квадратни метри}}', |
| 2837 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|квадратен сантиметар|квадратни сантиметри}}', |
| 2838 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|квадратен милиметар|квадратни милиметри}}', |
| 2839 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|хектар|хектари}}', |
| 2840 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|квадратна милја|квадратни милји}}', |
| 2841 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|акр|акри}}', |
| 2842 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|квадратна јарда|квадратни јарди}}', |
| 2843 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|квадратна стапка|квадратни стапки}}', |
| 2844 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|квадратен инч|квадратни инчи}}', |
| 2845 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|квадратна наутичка милја|квадратни наутички милји}}', |
| 2846 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|дунум|дунуми}}', |
| 2847 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|цубо|цуба}}', |
| 2848 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1км<sup>2</sup>', |
| 2849 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1м<sup>2</sup>', |
| 2850 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1см<sup>2</sup>', |
| 2851 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1мм<msup>2</sup>', |
| 2852 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ха', |
| 2853 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1ми<sup>2</sup>', |
| 2854 | + 'pfunc-convert-unit-area-acre-abbr' => '$1акр', |
| 2855 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1јд<sup>2</sup>', |
| 2856 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1ст<sup>2</sup>', |
| 2857 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1ин<sup>2</sup>', |
| 2858 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1нми<sup>2</sup>', |
| 2859 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1дунум', |
| 2860 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1цубо', |
| 2861 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|секунда|секунди}}', |
| 2862 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|година|години}}', |
| 2863 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|ден|дена}}', |
| 2864 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|час|часа}}', |
| 2865 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|минута|минути}}', |
| 2866 | + 'pfunc-convert-unit-time-second-abbr' => '$1с', |
| 2867 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3 г', |
| 2868 | + 'pfunc-convert-unit-time-day-abbr' => '$1ден', |
| 2869 | + 'pfunc-convert-unit-time-hour-abbr' => '$1ч', |
| 2870 | + 'pfunc-convert-unit-time-minute-abbr' => '$1мин', |
| 2871 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|кубен метар|кубни метри}}', |
| 2872 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|кубен сантиметар|кубни сантиметри}}', |
| 2873 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|кубен милиметар|кубни милиметри}}', |
| 2874 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|килолитар|килолитри}}', |
| 2875 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|литар|литри}}', |
| 2876 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|центилитар|центилитри}}', |
| 2877 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|милилитар|милилитри}}', |
| 2878 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|кубна јарда|кубни јарди}}', |
| 2879 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|кубна стапка|кубни стапки}}', |
| 2880 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|кубен инч|кубни инчи}}', |
| 2881 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|барел|барели}}', |
| 2882 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|бушел|бушели}}', |
| 2883 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|галон|галони}}', |
| 2884 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|кварта|кварти}}', |
| 2885 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|пинта|пинти}}', |
| 2886 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|течна унца|течни унци}}', |
| 2887 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|американски барел|американски барели}}', |
| 2888 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|барел|барели}}', |
| 2889 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|барел|барели}}', |
| 2890 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|американски галон|американски галони}}', |
| 2891 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|американска кварта|американски кварти}}', |
| 2892 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|американска пинта|американски пинти}}', |
| 2893 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|американска течна унца|американски течни унци}}', |
| 2894 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|американски сув барел|американски суви барели}}', |
| 2895 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|американски бушел|американски бушели}}', |
| 2896 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|американски сув галон|американски суви галони}}', |
| 2897 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|американска сува кварта|американски суви кварти}}', |
| 2898 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|американска сува пинта|американски суви пинти}}', |
| 2899 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1м<sup>3</sup>', |
| 2900 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1см<sup>3</sup>', |
| 2901 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1мм<sup>3</sup>', |
| 2902 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3 л', |
| 2903 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1јд<sup>3</sup>', |
| 2904 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1ст<sup>3</sup>', |
| 2905 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1ин<sup>3</sup>', |
| 2906 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1ббл', |
| 2907 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1бш', |
| 2908 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1гал', |
| 2909 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1кт', |
| 2910 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1пт', |
| 2911 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1тч уц', |
| 2912 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1ббл (САД)', |
| 2913 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1ббл', |
| 2914 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1ббл', |
| 2915 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1гал (САД)', |
| 2916 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1кт (САД)', |
| 2917 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1пт (САД)', |
| 2918 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1тч уц (САД)', |
| 2919 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1ббл (САД)', |
| 2920 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1бш (САД)', |
| 2921 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1сув гал (САД)', |
| 2922 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1сув кт (САД)', |
| 2923 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1сув пт (САД)', |
| 2924 | + 'pfunc-convert-unit-speed-mile-hour' => '$1милји на час', |
| 2925 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 2926 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1ми/ч', |
| 2927 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 2928 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|паскал|паскали}}', |
| 2929 | + 'pfunc-convert-unit-pressure-bar' => '$1бар', |
| 2930 | + 'pfunc-convert-unit-pressure-decibar' => '$1децибар', |
| 2931 | + 'pfunc-convert-unit-pressure-millibar' => '$1милибар', |
| 2932 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1килобарија', |
| 2933 | + 'pfunc-convert-unit-pressure-barye' => '$1барија', |
| 2934 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|атмосфера|атмосфери}}', |
| 2935 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|тор|тора}}', |
| 2936 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|милиметар живин столб|милиметри живин столб}}', |
| 2937 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|инч живин столб|инчи живин столб}}', |
| 2938 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|фунта на квадратен инч|фунти на квадратен инч}}', |
| 2939 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3 Па', |
| 2940 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1бар', |
| 2941 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1дбар', |
| 2942 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1мбар', |
| 2943 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1кБа', |
| 2944 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ба', |
| 2945 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1атм', |
| 2946 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1тор', |
| 2947 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1ммHg', |
| 2948 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1инHg', |
| 2949 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
2950 | 2950 | ); |
2951 | 2951 | |
2952 | 2952 | /** Malayalam (മലയാളം) |
— | — | @@ -3014,83 +3014,83 @@ |
3015 | 3015 | 'pfunc-convert-prefix-zepto' => 'സെപ്റ്റോ', |
3016 | 3016 | 'pfunc-convert-prefix-yocto' => 'യോക്റ്റോ', |
3017 | 3017 | 'pfunc-convert-prefix-milli-abbr' => 'മി.', |
3018 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2മീറ്റർ|$2 മീറ്ററുകൾ}}', |
3019 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|ആംസ്ട്രോം|ആംസ്ട്രോം}}', |
3020 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|മൈൽ|മൈൽ}}', |
3021 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|ഗജം|ഗജം}}', |
3022 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|അടി|അടി}}', |
3023 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|ഇഞ്ച്|ഇഞ്ച്}}', |
3024 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|നോട്ടിക്കൽ മൈൽ|നോട്ടിക്കൽ മൈൽ}}', |
3025 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2പാർസെക്|$2പാർസെക്}}', |
3026 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2പ്രകാശവർഷം|$2പ്രകാശവർഷങ്ങൾ}}', |
3027 | | - 'pfunc-convert-unit-length-yard-abbr' => 'ഗജം', |
3028 | | - 'pfunc-convert-unit-length-foot-abbr' => 'അടി', |
3029 | | - 'pfunc-convert-unit-length-inch-abbr' => 'ഇഞ്ച്', |
3030 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2പാ.സെ.', |
3031 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2പ്ര.വ.', |
3032 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|ചതുരശ്ര കിലോമീറ്റർ|ചതുരശ്ര കിലോമീറ്റർ}}', |
3033 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|ചതുരശ്ര മീറ്റർ|ചതുരശ്ര മീറ്റർ}}', |
3034 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|ചതുരശ്ര സെന്റീമീറ്റർ|ചതുരശ്ര സെന്റീമീറ്റർ}}', |
3035 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|ചതുരശ്ര മില്ലിമീറ്റർ|ചതുരശ്ര മില്ലിമീറ്റർ}}', |
3036 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|ഹെക്ടർ|ഹെക്ടർ}}', |
3037 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|ചതുരശ്ര മൈൽ|ചതുരശ്ര മൈൽ}}', |
3038 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|ഏക്കർ|ഏക്കർ}}', |
3039 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|ചതുരശ്ര ഗജം|ചതുരശ്ര ഗജം}}', |
3040 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|ചതുരശ്ര അടി|ചതുരശ്ര അടി}}', |
3041 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|ചതുരശ്ര ഇഞ്ച്|ചതുരശ്ര ഇഞ്ച്}}', |
3042 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|ചതുരശ്ര നോട്ടിക്കൽ മൈൽ|ചതുരശ്ര നോട്ടിക്കൽ മൈൽ}}', |
3043 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'കി.മീ.<sup>2</sup>', |
3044 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'മീ.<sup>2</sup>', |
3045 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'സെ.മീ.<sup>2</sup>', |
3046 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'മി.മീ.<sup>2</sup>', |
3047 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ഹെ.', |
3048 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'ചതു.മൈൽ', |
3049 | | - 'pfunc-convert-unit-area-acre-abbr' => 'ഏക്കർ', |
3050 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'ചതു.വാര', |
3051 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'ചതു.അടി', |
3052 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'ചതു.ഇഞ്ച്', |
3053 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|സെക്കന്റ്|സെക്കന്റ്}}', |
3054 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|ഒരു വർഷം|$2 വർഷം}}', |
3055 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|ദിവസം|ദിവസം}}', |
3056 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|മണിക്കൂർ|മണിക്കൂർ}}', |
3057 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|മിനിറ്റ്|മിനിറ്റ്}}', |
3058 | | - 'pfunc-convert-unit-time-second-abbr' => 'സെ.', |
3059 | | - 'pfunc-convert-unit-time-year-abbr' => '$2വർഷം', |
3060 | | - 'pfunc-convert-unit-time-day-abbr' => 'ദിവസം', |
3061 | | - 'pfunc-convert-unit-time-hour-abbr' => 'മണി.', |
3062 | | - 'pfunc-convert-unit-time-minute-abbr' => 'മിനി.', |
3063 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|ഘന മീറ്റർ|ഘന മീറ്റർ}}', |
3064 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|ഘന സെന്റീമീറ്റർ|ഘന സെന്റീമീറ്റർ}}', |
3065 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|ഘന മില്ലീമീറ്റർ|ഘന മില്ലീമീറ്റർ}}', |
3066 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|കിലോലിറ്റർ|കിലോലിറ്റർ}}', |
3067 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|ലിറ്റർ|ലിറ്റർ}}', |
3068 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|സെന്റിലിറ്റർ|സെന്റിലിറ്റർ}}', |
3069 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|മില്ലിലിറ്റർ|മില്ലിലിറ്റർ}}', |
3070 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|ഘന ഗജം|ഘന ഗജം}}', |
3071 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|ഘന അടി|ഘന അടി}}', |
3072 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|ഘന ഇഞ്ച്|ഘന ഇഞ്ച്}}', |
3073 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|ബാരൽ|ബാരൽ}}', |
3074 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|ബാരൽ|ബാരൽ}}', |
3075 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|ബാരൽ|ബാരൽ}}', |
3076 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'മീ.<sup>3</sup>', |
3077 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'സെ.മീ.<sup>3</sup>', |
3078 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'മി.മീ.<sup>3</sup>', |
3079 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2ലി.', |
3080 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'ഘന ഗജം', |
3081 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'ഘ. അടി.', |
3082 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'ഘ. ഇഞ്ച്.', |
3083 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'ബാരൽ', |
3084 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'ഗാലൺ', |
3085 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'ബാരൽ', |
3086 | | - 'pfunc-convert-unit-speed-mile-hour' => 'മൈൽ/മണിക്കൂർ', |
3087 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'മൈ./മണി.', |
3088 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2പാസ്കൽ|$2പാസ്കൽ}}', |
3089 | | - 'pfunc-convert-unit-pressure-bar' => 'ബാർ', |
3090 | | - 'pfunc-convert-unit-pressure-decibar' => 'ഡെസിബാർ', |
3091 | | - 'pfunc-convert-unit-pressure-millibar' => 'മില്ലിബാർ', |
3092 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|രസം മില്ലിമീറ്ററിൽ|രസം മില്ലിമീറ്ററിൽ}}', |
3093 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|രസം ഇഞ്ചിൽ|രസം ഇഞ്ചിൽ}}', |
3094 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2പാസ്ക.', |
| 3018 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3മീറ്റർ|$3 മീറ്ററുകൾ}}', |
| 3019 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|ആംസ്ട്രോം|ആംസ്ട്രോം}}', |
| 3020 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|മൈൽ|മൈൽ}}', |
| 3021 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|ഗജം|ഗജം}}', |
| 3022 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|അടി|അടി}}', |
| 3023 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|ഇഞ്ച്|ഇഞ്ച്}}', |
| 3024 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|നോട്ടിക്കൽ മൈൽ|നോട്ടിക്കൽ മൈൽ}}', |
| 3025 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3പാർസെക്|$3പാർസെക്}}', |
| 3026 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3പ്രകാശവർഷം|$3പ്രകാശവർഷങ്ങൾ}}', |
| 3027 | + 'pfunc-convert-unit-length-yard-abbr' => '$1ഗജം', |
| 3028 | + 'pfunc-convert-unit-length-foot-abbr' => '$1അടി', |
| 3029 | + 'pfunc-convert-unit-length-inch-abbr' => '$1ഇഞ്ച്', |
| 3030 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3പാ.സെ.', |
| 3031 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3പ്ര.വ.', |
| 3032 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|ചതുരശ്ര കിലോമീറ്റർ|ചതുരശ്ര കിലോമീറ്റർ}}', |
| 3033 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|ചതുരശ്ര മീറ്റർ|ചതുരശ്ര മീറ്റർ}}', |
| 3034 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|ചതുരശ്ര സെന്റീമീറ്റർ|ചതുരശ്ര സെന്റീമീറ്റർ}}', |
| 3035 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|ചതുരശ്ര മില്ലിമീറ്റർ|ചതുരശ്ര മില്ലിമീറ്റർ}}', |
| 3036 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|ഹെക്ടർ|ഹെക്ടർ}}', |
| 3037 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|ചതുരശ്ര മൈൽ|ചതുരശ്ര മൈൽ}}', |
| 3038 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|ഏക്കർ|ഏക്കർ}}', |
| 3039 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|ചതുരശ്ര ഗജം|ചതുരശ്ര ഗജം}}', |
| 3040 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|ചതുരശ്ര അടി|ചതുരശ്ര അടി}}', |
| 3041 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|ചതുരശ്ര ഇഞ്ച്|ചതുരശ്ര ഇഞ്ച്}}', |
| 3042 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|ചതുരശ്ര നോട്ടിക്കൽ മൈൽ|ചതുരശ്ര നോട്ടിക്കൽ മൈൽ}}', |
| 3043 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1കി.മീ.<sup>2</sup>', |
| 3044 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1മീ.<sup>2</sup>', |
| 3045 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1സെ.മീ.<sup>2</sup>', |
| 3046 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1മി.മീ.<sup>2</sup>', |
| 3047 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ഹെ.', |
| 3048 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1ചതു.മൈൽ', |
| 3049 | + 'pfunc-convert-unit-area-acre-abbr' => '$1ഏക്കർ', |
| 3050 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1ചതു.വാര', |
| 3051 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1ചതു.അടി', |
| 3052 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1ചതു.ഇഞ്ച്', |
| 3053 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|സെക്കന്റ്|സെക്കന്റ്}}', |
| 3054 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|ഒരു വർഷം|$3 വർഷം}}', |
| 3055 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|ദിവസം|ദിവസം}}', |
| 3056 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|മണിക്കൂർ|മണിക്കൂർ}}', |
| 3057 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|മിനിറ്റ്|മിനിറ്റ്}}', |
| 3058 | + 'pfunc-convert-unit-time-second-abbr' => '$1സെ.', |
| 3059 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3വർഷം', |
| 3060 | + 'pfunc-convert-unit-time-day-abbr' => '$1ദിവസം', |
| 3061 | + 'pfunc-convert-unit-time-hour-abbr' => '$1മണി.', |
| 3062 | + 'pfunc-convert-unit-time-minute-abbr' => '$1മിനി.', |
| 3063 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|ഘന മീറ്റർ|ഘന മീറ്റർ}}', |
| 3064 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|ഘന സെന്റീമീറ്റർ|ഘന സെന്റീമീറ്റർ}}', |
| 3065 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|ഘന മില്ലീമീറ്റർ|ഘന മില്ലീമീറ്റർ}}', |
| 3066 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|കിലോലിറ്റർ|കിലോലിറ്റർ}}', |
| 3067 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|ലിറ്റർ|ലിറ്റർ}}', |
| 3068 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|സെന്റിലിറ്റർ|സെന്റിലിറ്റർ}}', |
| 3069 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|മില്ലിലിറ്റർ|മില്ലിലിറ്റർ}}', |
| 3070 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|ഘന ഗജം|ഘന ഗജം}}', |
| 3071 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|ഘന അടി|ഘന അടി}}', |
| 3072 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|ഘന ഇഞ്ച്|ഘന ഇഞ്ച്}}', |
| 3073 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|ബാരൽ|ബാരൽ}}', |
| 3074 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|ബാരൽ|ബാരൽ}}', |
| 3075 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|ബാരൽ|ബാരൽ}}', |
| 3076 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1മീ.<sup>3</sup>', |
| 3077 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1സെ.മീ.<sup>3</sup>', |
| 3078 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1മി.മീ.<sup>3</sup>', |
| 3079 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3ലി.', |
| 3080 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1ഘന ഗജം', |
| 3081 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1ഘ. അടി.', |
| 3082 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1ഘ. ഇഞ്ച്.', |
| 3083 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1ബാരൽ', |
| 3084 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1ഗാലൺ', |
| 3085 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1ബാരൽ', |
| 3086 | + 'pfunc-convert-unit-speed-mile-hour' => '$1മൈൽ/മണിക്കൂർ', |
| 3087 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1മൈ./മണി.', |
| 3088 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3പാസ്കൽ|$3പാസ്കൽ}}', |
| 3089 | + 'pfunc-convert-unit-pressure-bar' => '$1ബാർ', |
| 3090 | + 'pfunc-convert-unit-pressure-decibar' => '$1ഡെസിബാർ', |
| 3091 | + 'pfunc-convert-unit-pressure-millibar' => '$1മില്ലിബാർ', |
| 3092 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|രസം മില്ലിമീറ്ററിൽ|രസം മില്ലിമീറ്ററിൽ}}', |
| 3093 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|രസം ഇഞ്ചിൽ|രസം ഇഞ്ചിൽ}}', |
| 3094 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3പാസ്ക.', |
3095 | 3095 | ); |
3096 | 3096 | |
3097 | 3097 | /** Marathi (मराठी) |
— | — | @@ -3190,152 +3190,152 @@ |
3191 | 3191 | 'pfunc-convert-prefix-zepto' => 'zepto', |
3192 | 3192 | 'pfunc-convert-prefix-yocto' => 'yokto', |
3193 | 3193 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
3194 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2meter|$2meter}}', |
3195 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angstrom|angstrom}}', |
3196 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|batu|batu}}', |
3197 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlong}}', |
3198 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|rantai|rantai}}', |
3199 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|pol|pol}}', |
3200 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|fatom|fatom}}', |
3201 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|ela|ela}}', |
3202 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|kaki|kaki}}', |
3203 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|tangan|tangan}}', |
3204 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|inci|inci}}', |
3205 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|batu nautika|batu nautika}}', |
3206 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|batu nautika (British pra-1970)|batu nautika (British pra-1970)}}', |
3207 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|batu nautika (AS pra-1954)|batu nautika (AS pra-1954)}}', |
3208 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsek|$2parsek}}', |
3209 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2tahun cahaya|$2tahun cahaya}}', |
3210 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|unit astronomi|unit astronomi}}', |
3211 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
3212 | | - 'pfunc-convert-unit-length-chain-abbr' => 'rantai', |
3213 | | - 'pfunc-convert-unit-length-rod-abbr' => 'pol', |
3214 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'fatom', |
3215 | | - 'pfunc-convert-unit-length-yard-abbr' => 'ela', |
3216 | | - 'pfunc-convert-unit-length-foot-abbr' => 'kaki', |
3217 | | - 'pfunc-convert-unit-length-hand-abbr' => 'tgn', |
3218 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
3219 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'batu n', |
3220 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'batu n (Brit)', |
3221 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'batu n (AS pra-1954)', |
3222 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
3223 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2tc', |
3224 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'AU', |
3225 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|kilometer persegi|kilometer persegi}}', |
3226 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|meter persegi|meter persegi}}', |
3227 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|sentimeter persegi|sentimeter persegi}}', |
3228 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|milimeter persegi|milimeter persegi}}', |
3229 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hektar|hektar}}', |
3230 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|batu persegi|batu persegi}}', |
3231 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|ekar|ekar}}', |
3232 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|ela persegi|ela persegi}}', |
3233 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|kaki persegi|kaki persegi}}', |
3234 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|inci persegi|inci persegi}}', |
3235 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|batu nautika persegi|batu nautika persegi}}', |
3236 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunam}}', |
3237 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsubo}}', |
3238 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
3239 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
3240 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
3241 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
3242 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
3243 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'batu<sup>2</sup>', |
3244 | | - 'pfunc-convert-unit-area-acre-abbr' => 'ekar', |
3245 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'ela<sup>2</sup>', |
3246 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'kaki<sup>2</sup>', |
3247 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'inci<sup>2</sup>', |
3248 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'batu n<sup>2</sup>', |
3249 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
3250 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
3251 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL: $1|saat|saat}}', |
3252 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL: $1|$2tahun|$2tahun}}', |
3253 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|hari|hari}}', |
3254 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|jam|jam}}', |
3255 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minit|minit}}', |
3256 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
3257 | | - 'pfunc-convert-unit-time-year-abbr' => '$2thn', |
3258 | | - 'pfunc-convert-unit-time-day-abbr' => 'hari', |
3259 | | - 'pfunc-convert-unit-time-hour-abbr' => 'jam', |
3260 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
3261 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|meter padu|meter padu}}', |
3262 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|sentimeter padu|sentimeter padu}}', |
3263 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|milimeter padu|milimeter padu}}', |
3264 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|kilolite|kiloliter}}', |
3265 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|liter|liter}}', |
3266 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|sentiliter|sentiliter}}', |
3267 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|mililiter|mililiter}}', |
3268 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|ela padu|ela padu}}', |
3269 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|kaki padu|kaki padu}}', |
3270 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|inci padu|inci padu}}', |
3271 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|tong|tong}}', |
3272 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|busyel|busyel}}', |
3273 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|gelen|gelen}}', |
3274 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|kuart|kuart}}', |
3275 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|pain|pain}}', |
3276 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|auns bendalir|auns bendalir}}', |
3277 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|tong AS|tong AS}}', |
3278 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|tong|tong}}', |
3279 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|tong|tong}}', |
3280 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|gelen AS|gelen AS}}', |
3281 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|kuart AS|kuart AS}}', |
3282 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|pain AS|pain AS}}', |
3283 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|auns bendalir AS|auns bendalir AS}}', |
3284 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|tong kering AS|tong kering AS}}', |
3285 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|busyel AS|busyel AS}}', |
3286 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|gelen kering AS|gelen kering AS}}', |
3287 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|kuart kering AS|kuart kering AS}}', |
3288 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|pain kering AS|pain kering AS}}', |
3289 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
3290 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
3291 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
3292 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
3293 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'ela<sup>3</sup>', |
3294 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'kaki<sup>3</sup>', |
3295 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'inci<sup>3</sup>', |
3296 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'tong', |
3297 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh', |
3298 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
3299 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt', |
3300 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt', |
3301 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl oz', |
3302 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'tong AS', |
3303 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'tong', |
3304 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'tong', |
3305 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'gal AS', |
3306 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'qt AS', |
3307 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'pt AS', |
3308 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'fl oz AS', |
3309 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'tong AS', |
3310 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'bsh AS', |
3311 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'gal kering AS', |
3312 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'qt kering AS', |
3313 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'pt kering AS', |
3314 | | - 'pfunc-convert-unit-speed-mile-hour' => 'batu sejam', |
3315 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
3316 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'bsj', |
3317 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
3318 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascal|$2pascal}}', |
3319 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
3320 | | - 'pfunc-convert-unit-pressure-decibar' => 'desibar', |
3321 | | - 'pfunc-convert-unit-pressure-millibar' => 'milibar', |
3322 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobarye', |
3323 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
3324 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosfera|atmosfera}}', |
3325 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|Torr|Torr}}', |
3326 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|milimeter raksa|milimeter raksa}}', |
3327 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|inci raksa|inci raksa}}', |
3328 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|paun seinci persegi|paun seinci persegi}}', |
3329 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
3330 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
3331 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
3332 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
3333 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
3334 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
3335 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
3336 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
3337 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
3338 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
3339 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 3194 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3meter|$3meter}}', |
| 3195 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angstrom|angstrom}}', |
| 3196 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|batu|batu}}', |
| 3197 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlong}}', |
| 3198 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|rantai|rantai}}', |
| 3199 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|pol|pol}}', |
| 3200 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|fatom|fatom}}', |
| 3201 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|ela|ela}}', |
| 3202 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|kaki|kaki}}', |
| 3203 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|tangan|tangan}}', |
| 3204 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|inci|inci}}', |
| 3205 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|batu nautika|batu nautika}}', |
| 3206 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|batu nautika (British pra-1970)|batu nautika (British pra-1970)}}', |
| 3207 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|batu nautika (AS pra-1954)|batu nautika (AS pra-1954)}}', |
| 3208 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsek|$3parsek}}', |
| 3209 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3tahun cahaya|$3tahun cahaya}}', |
| 3210 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|unit astronomi|unit astronomi}}', |
| 3211 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 3212 | + 'pfunc-convert-unit-length-chain-abbr' => '$1rantai', |
| 3213 | + 'pfunc-convert-unit-length-rod-abbr' => '$1pol', |
| 3214 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1fatom', |
| 3215 | + 'pfunc-convert-unit-length-yard-abbr' => '$1ela', |
| 3216 | + 'pfunc-convert-unit-length-foot-abbr' => '$1kaki', |
| 3217 | + 'pfunc-convert-unit-length-hand-abbr' => '$1tgn', |
| 3218 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 3219 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1batu n', |
| 3220 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1batu n (Brit)', |
| 3221 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1batu n (AS pra-1954)', |
| 3222 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 3223 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3tc', |
| 3224 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1AU', |
| 3225 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|kilometer persegi|kilometer persegi}}', |
| 3226 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|meter persegi|meter persegi}}', |
| 3227 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|sentimeter persegi|sentimeter persegi}}', |
| 3228 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|milimeter persegi|milimeter persegi}}', |
| 3229 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hektar|hektar}}', |
| 3230 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|batu persegi|batu persegi}}', |
| 3231 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|ekar|ekar}}', |
| 3232 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|ela persegi|ela persegi}}', |
| 3233 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|kaki persegi|kaki persegi}}', |
| 3234 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|inci persegi|inci persegi}}', |
| 3235 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|batu nautika persegi|batu nautika persegi}}', |
| 3236 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunam}}', |
| 3237 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsubo}}', |
| 3238 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 3239 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 3240 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 3241 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 3242 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 3243 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1batu<sup>2</sup>', |
| 3244 | + 'pfunc-convert-unit-area-acre-abbr' => '$1ekar', |
| 3245 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1ela<sup>2</sup>', |
| 3246 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1kaki<sup>2</sup>', |
| 3247 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1inci<sup>2</sup>', |
| 3248 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1batu n<sup>2</sup>', |
| 3249 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 3250 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 3251 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL: $2|saat|saat}}', |
| 3252 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL: $2|$3tahun|$3tahun}}', |
| 3253 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|hari|hari}}', |
| 3254 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|jam|jam}}', |
| 3255 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minit|minit}}', |
| 3256 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 3257 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3thn', |
| 3258 | + 'pfunc-convert-unit-time-day-abbr' => '$1hari', |
| 3259 | + 'pfunc-convert-unit-time-hour-abbr' => '$1jam', |
| 3260 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 3261 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|meter padu|meter padu}}', |
| 3262 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|sentimeter padu|sentimeter padu}}', |
| 3263 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|milimeter padu|milimeter padu}}', |
| 3264 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|kilolite|kiloliter}}', |
| 3265 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|liter|liter}}', |
| 3266 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|sentiliter|sentiliter}}', |
| 3267 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|mililiter|mililiter}}', |
| 3268 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|ela padu|ela padu}}', |
| 3269 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|kaki padu|kaki padu}}', |
| 3270 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|inci padu|inci padu}}', |
| 3271 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|tong|tong}}', |
| 3272 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|busyel|busyel}}', |
| 3273 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|gelen|gelen}}', |
| 3274 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|kuart|kuart}}', |
| 3275 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|pain|pain}}', |
| 3276 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|auns bendalir|auns bendalir}}', |
| 3277 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|tong AS|tong AS}}', |
| 3278 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|tong|tong}}', |
| 3279 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|tong|tong}}', |
| 3280 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|gelen AS|gelen AS}}', |
| 3281 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|kuart AS|kuart AS}}', |
| 3282 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|pain AS|pain AS}}', |
| 3283 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|auns bendalir AS|auns bendalir AS}}', |
| 3284 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|tong kering AS|tong kering AS}}', |
| 3285 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|busyel AS|busyel AS}}', |
| 3286 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|gelen kering AS|gelen kering AS}}', |
| 3287 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|kuart kering AS|kuart kering AS}}', |
| 3288 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|pain kering AS|pain kering AS}}', |
| 3289 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 3290 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 3291 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 3292 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 3293 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1ela<sup>3</sup>', |
| 3294 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1kaki<sup>3</sup>', |
| 3295 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1inci<sup>3</sup>', |
| 3296 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1tong', |
| 3297 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh', |
| 3298 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 3299 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt', |
| 3300 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt', |
| 3301 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl oz', |
| 3302 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1tong AS', |
| 3303 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1tong', |
| 3304 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1tong', |
| 3305 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1gal AS', |
| 3306 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1qt AS', |
| 3307 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1pt AS', |
| 3308 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1fl oz AS', |
| 3309 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1tong AS', |
| 3310 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1bsh AS', |
| 3311 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1gal kering AS', |
| 3312 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1qt kering AS', |
| 3313 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1pt kering AS', |
| 3314 | + 'pfunc-convert-unit-speed-mile-hour' => '$1batu sejam', |
| 3315 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 3316 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1bsj', |
| 3317 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 3318 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascal|$3pascal}}', |
| 3319 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 3320 | + 'pfunc-convert-unit-pressure-decibar' => '$1desibar', |
| 3321 | + 'pfunc-convert-unit-pressure-millibar' => '$1milibar', |
| 3322 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobarye', |
| 3323 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 3324 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosfera|atmosfera}}', |
| 3325 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|Torr|Torr}}', |
| 3326 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|milimeter raksa|milimeter raksa}}', |
| 3327 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|inci raksa|inci raksa}}', |
| 3328 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|paun seinci persegi|paun seinci persegi}}', |
| 3329 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 3330 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 3331 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 3332 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 3333 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 3334 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 3335 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 3336 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 3337 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 3338 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 3339 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
3340 | 3340 | ); |
3341 | 3341 | |
3342 | 3342 | /** Erzya (Эрзянь) |
— | — | @@ -3454,152 +3454,152 @@ |
3455 | 3455 | 'pfunc-convert-prefix-zepto' => 'zepto', |
3456 | 3456 | 'pfunc-convert-prefix-yocto' => 'yocto', |
3457 | 3457 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
3458 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|meter|meter}}', |
3459 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angstrom|angstrom}}', |
3460 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|mijl|mijl}}', |
3461 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlong}}', |
3462 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|chain|chains}}', |
3463 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|roede|roede}}', |
3464 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|vadem|vadem}}', |
3465 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|yard|yards}}', |
3466 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|voet|voet}}', |
3467 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|hand|handen}}', |
3468 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|inch|inches}}', |
3469 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|nautische mijl|nautische mijlen}}', |
3470 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|nautische mijl (Brits, voor 1970)|nautische mijlen (Brits, voor 1970)}}', |
3471 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|nautische mijl (VS, voor 1954)|nautische mijlen (VS, voor 1954)}}', |
3472 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2 parsec|$2 parsecs}}', |
3473 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2 lichtjaar|$2 lichtjaren}}', |
3474 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomische eenheid|astronomische eenheden}}', |
3475 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
3476 | | - 'pfunc-convert-unit-length-chain-abbr' => 'chain', |
3477 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
3478 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'fath', |
3479 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
3480 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
3481 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
3482 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
3483 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'NM', |
3484 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'MN (Brits)', |
3485 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'MN (VS voor 1954)', |
3486 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
3487 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2lj', |
3488 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'AE', |
3489 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|vierkante kilometer|vierkante kilometer}}', |
3490 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|vierkante meter|vierkante meter}}', |
3491 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|vierkante centimeter|vierkante centimeter}}', |
3492 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|vierkante millimeter|vierkante millimeter}}', |
3493 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hectare|hectare}}', |
3494 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|vierkante mijl|vierkante mijl}}', |
3495 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|acre|acres}}', |
3496 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|vierkante yard|vierkante yards}}', |
3497 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|voerkante foot|vierkante foot}}', |
3498 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|vierkante inch|vierkante inches}}', |
3499 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|vierkante nautische mijl|vierkante nautische mijlen}}', |
3500 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunams}}', |
3501 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsubo}}', |
3502 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
3503 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
3504 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
3505 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
3506 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
3507 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'sq mi', |
3508 | | - 'pfunc-convert-unit-area-acre-abbr' => 'acre', |
3509 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'sq yd', |
3510 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'sq ft', |
3511 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'sq in', |
3512 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'vierkante mijl', |
3513 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
3514 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
3515 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|seconde|seconden}}', |
3516 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2jaar|$2jaren}}', |
3517 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|dag|dagen}}', |
3518 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|uur|uur}}', |
3519 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minuut|minuten}}', |
3520 | | - 'pfunc-convert-unit-time-second-abbr' => 'sec.', |
3521 | | - 'pfunc-convert-unit-time-year-abbr' => '$2jaar', |
3522 | | - 'pfunc-convert-unit-time-day-abbr' => 'dag', |
3523 | | - 'pfunc-convert-unit-time-hour-abbr' => 'uur', |
3524 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
3525 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1| kubieke meter|kubieke meter}}', |
3526 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|kubieke centimeter|kubieke centimeter}}', |
3527 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|kubieke millimeter|kubieke millimeter}}', |
3528 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|kiloliter|kiloliter}}', |
3529 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|liter|liter}}', |
3530 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|centiliters|centiliter}}', |
3531 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|milliliter|milliliter}}', |
3532 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|kubieke yard|kubieke yard}}', |
3533 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|kubieke voet|kubieke voet}}', |
3534 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|kubieke inch|kubieke inch}}', |
3535 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|vat|vaten}}', |
3536 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|bushel|bushels}}', |
3537 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|gallon|gallon}}', |
3538 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|quart|quart}}', |
3539 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|pint|pints}}', |
3540 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|fluid ounce|fluid ounces}}', |
3541 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|VS-vat|VS-vaten}}', |
3542 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|vat|vaten}}', |
3543 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|vat|vaten}}', |
3544 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|VS-gallon|VS-gallon}}', |
3545 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|VS-quart|VS-quart}}', |
3546 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|VS-pint|VS-pints}}', |
3547 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|VS-fluid ounce|VS-fluid ounces}}', |
3548 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|VS-droog vat|VS-droge vaten}}', |
3549 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|VS-bushel|VS-bushels}}', |
3550 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|VS-droge gallon|VS-droge gallon}}', |
3551 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|VS-droge quart|VS-droge quart}}', |
3552 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|VS-droge pint|VS-droge pints}}', |
3553 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
3554 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
3555 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
3556 | | - 'pfunc-convert-unit-volume-litre-abbr' => 'l', |
3557 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'yd<sup>3</sup>', |
3558 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'ft<sup>3</sup>', |
3559 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'in<sup>3</sup>', |
3560 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl', |
3561 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh', |
3562 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
3563 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt', |
3564 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt', |
3565 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl.oz.', |
3566 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'VS bbl', |
3567 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'bbl', |
3568 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'bbl', |
3569 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'VS gal', |
3570 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'VS qt', |
3571 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'VS pt', |
3572 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'VS fl.oz.', |
3573 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'VS bbl', |
3574 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'VS bsh', |
3575 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'VS drg.gal', |
3576 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'VS drg.qt', |
3577 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'VS drg.pt', |
3578 | | - 'pfunc-convert-unit-speed-mile-hour' => 'mijl per uur', |
3579 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
3580 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mpu', |
3581 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
3582 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascal|$2pascal}}', |
3583 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
3584 | | - 'pfunc-convert-unit-pressure-decibar' => 'decibar', |
3585 | | - 'pfunc-convert-unit-pressure-millibar' => 'millibar', |
3586 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobarn', |
3587 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
3588 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosfeer|atmosfeer}}', |
3589 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|Torr|Torr}}', |
3590 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|millimeter kwik|millimeter kwik}}', |
3591 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|duim kwik|duimen kwik}}', |
3592 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|pond per vierkante inch|pond per vierkante inch}}', |
3593 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
3594 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
3595 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
3596 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
3597 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
3598 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
3599 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
3600 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
3601 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
3602 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
3603 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 3458 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|meter|meter}}', |
| 3459 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angstrom|angstrom}}', |
| 3460 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|mijl|mijl}}', |
| 3461 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlong}}', |
| 3462 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|chain|chains}}', |
| 3463 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|roede|roede}}', |
| 3464 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|vadem|vadem}}', |
| 3465 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|yard|yards}}', |
| 3466 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|voet|voet}}', |
| 3467 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|hand|handen}}', |
| 3468 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|inch|inches}}', |
| 3469 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|nautische mijl|nautische mijlen}}', |
| 3470 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|nautische mijl (Brits, voor 1970)|nautische mijlen (Brits, voor 1970)}}', |
| 3471 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|nautische mijl (VS, voor 1954)|nautische mijlen (VS, voor 1954)}}', |
| 3472 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3 parsec|$3 parsecs}}', |
| 3473 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3 lichtjaar|$3 lichtjaren}}', |
| 3474 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomische eenheid|astronomische eenheden}}', |
| 3475 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 3476 | + 'pfunc-convert-unit-length-chain-abbr' => '$1chain', |
| 3477 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 3478 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1fath', |
| 3479 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 3480 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 3481 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 3482 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 3483 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1NM', |
| 3484 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1MN (Brits)', |
| 3485 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1MN (VS voor 1954)', |
| 3486 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 3487 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3lj', |
| 3488 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1AE', |
| 3489 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|vierkante kilometer|vierkante kilometer}}', |
| 3490 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|vierkante meter|vierkante meter}}', |
| 3491 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|vierkante centimeter|vierkante centimeter}}', |
| 3492 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|vierkante millimeter|vierkante millimeter}}', |
| 3493 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hectare|hectare}}', |
| 3494 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|vierkante mijl|vierkante mijl}}', |
| 3495 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|acre|acres}}', |
| 3496 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|vierkante yard|vierkante yards}}', |
| 3497 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|voerkante foot|vierkante foot}}', |
| 3498 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|vierkante inch|vierkante inches}}', |
| 3499 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|vierkante nautische mijl|vierkante nautische mijlen}}', |
| 3500 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunams}}', |
| 3501 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsubo}}', |
| 3502 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 3503 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 3504 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 3505 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 3506 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 3507 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1sq mi', |
| 3508 | + 'pfunc-convert-unit-area-acre-abbr' => '$1acre', |
| 3509 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1sq yd', |
| 3510 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1sq ft', |
| 3511 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1sq in', |
| 3512 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1vierkante mijl', |
| 3513 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 3514 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 3515 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|seconde|seconden}}', |
| 3516 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3jaar|$3jaren}}', |
| 3517 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|dag|dagen}}', |
| 3518 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|uur|uur}}', |
| 3519 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minuut|minuten}}', |
| 3520 | + 'pfunc-convert-unit-time-second-abbr' => '$1sec.', |
| 3521 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3jaar', |
| 3522 | + 'pfunc-convert-unit-time-day-abbr' => '$1dag', |
| 3523 | + 'pfunc-convert-unit-time-hour-abbr' => '$1uur', |
| 3524 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 3525 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2| kubieke meter|kubieke meter}}', |
| 3526 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|kubieke centimeter|kubieke centimeter}}', |
| 3527 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|kubieke millimeter|kubieke millimeter}}', |
| 3528 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|kiloliter|kiloliter}}', |
| 3529 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|liter|liter}}', |
| 3530 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|centiliters|centiliter}}', |
| 3531 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|milliliter|milliliter}}', |
| 3532 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|kubieke yard|kubieke yard}}', |
| 3533 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|kubieke voet|kubieke voet}}', |
| 3534 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|kubieke inch|kubieke inch}}', |
| 3535 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|vat|vaten}}', |
| 3536 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|bushel|bushels}}', |
| 3537 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|gallon|gallon}}', |
| 3538 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|quart|quart}}', |
| 3539 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|pint|pints}}', |
| 3540 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|fluid ounce|fluid ounces}}', |
| 3541 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|VS-vat|VS-vaten}}', |
| 3542 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|vat|vaten}}', |
| 3543 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|vat|vaten}}', |
| 3544 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|VS-gallon|VS-gallon}}', |
| 3545 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|VS-quart|VS-quart}}', |
| 3546 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|VS-pint|VS-pints}}', |
| 3547 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|VS-fluid ounce|VS-fluid ounces}}', |
| 3548 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|VS-droog vat|VS-droge vaten}}', |
| 3549 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|VS-bushel|VS-bushels}}', |
| 3550 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|VS-droge gallon|VS-droge gallon}}', |
| 3551 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|VS-droge quart|VS-droge quart}}', |
| 3552 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|VS-droge pint|VS-droge pints}}', |
| 3553 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 3554 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 3555 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 3556 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1l', |
| 3557 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1yd<sup>3</sup>', |
| 3558 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1ft<sup>3</sup>', |
| 3559 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1in<sup>3</sup>', |
| 3560 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl', |
| 3561 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh', |
| 3562 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 3563 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt', |
| 3564 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt', |
| 3565 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl.oz.', |
| 3566 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1VS bbl', |
| 3567 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1bbl', |
| 3568 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1bbl', |
| 3569 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1VS gal', |
| 3570 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1VS qt', |
| 3571 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1VS pt', |
| 3572 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1VS fl.oz.', |
| 3573 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1VS bbl', |
| 3574 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1VS bsh', |
| 3575 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1VS drg.gal', |
| 3576 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1VS drg.qt', |
| 3577 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1VS drg.pt', |
| 3578 | + 'pfunc-convert-unit-speed-mile-hour' => '$1mijl per uur', |
| 3579 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 3580 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mpu', |
| 3581 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 3582 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascal|$3pascal}}', |
| 3583 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 3584 | + 'pfunc-convert-unit-pressure-decibar' => '$1decibar', |
| 3585 | + 'pfunc-convert-unit-pressure-millibar' => '$1millibar', |
| 3586 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobarn', |
| 3587 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 3588 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosfeer|atmosfeer}}', |
| 3589 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|Torr|Torr}}', |
| 3590 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|millimeter kwik|millimeter kwik}}', |
| 3591 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|duim kwik|duimen kwik}}', |
| 3592 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|pond per vierkante inch|pond per vierkante inch}}', |
| 3593 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 3594 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 3595 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 3596 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 3597 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 3598 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 3599 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 3600 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 3601 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 3602 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 3603 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
3604 | 3604 | ); |
3605 | 3605 | |
3606 | 3606 | /** Norwegian Nynorsk (Norsk (nynorsk)) |
— | — | @@ -3760,100 +3760,100 @@ |
3761 | 3761 | 'pfunc-convert-prefix-zepto' => 'zepto', |
3762 | 3762 | 'pfunc-convert-prefix-yocto' => 'jokto', |
3763 | 3763 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
3764 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2 metr|$2 metry|$2 metrów}}', |
3765 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angstrem|angstremy|angstremów}}', |
3766 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|mila|mile|mil}}', |
3767 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlongi|furlongów}}', |
3768 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|łańcuch|łańcuchy|łańcuchów}}', |
3769 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|pręt|pręty|prętów}}', |
3770 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|sążeń|sążnie|sążni}}', |
3771 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|jard|jardy|jardów}}', |
3772 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|stopa|stopy|stóp}}', |
3773 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|dłoń|dłonie|dłoni}}', |
3774 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|cal|cale|cali}}', |
3775 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|mila morska|mile morskie|mil morskich}}', |
3776 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|mila morska brytyjska|mile morskie brytyjskie|mil morskich brytyjskich}} sprzed 1970 roku', |
3777 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|mila morska amerykańska|mile morskie amerykańskie|mil morskich amerykańskich}} sprzed 1954 roku', |
3778 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2 parsek|$2 parseki|$2 parseków}}', |
3779 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2 rok świetlny|$2 lata świetlne|$2 lat świetlnych}}', |
3780 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|jednostka astronomiczna|jednostki astronomiczne|jednostek astronomicznych}}', |
3781 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
3782 | | - 'pfunc-convert-unit-length-chain-abbr' => 'łańcuch', |
3783 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
3784 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'sążeń', |
3785 | | - 'pfunc-convert-unit-length-yard-abbr' => 'jard', |
3786 | | - 'pfunc-convert-unit-length-foot-abbr' => 'stopa', |
3787 | | - 'pfunc-convert-unit-length-hand-abbr' => 'dłoń', |
3788 | | - 'pfunc-convert-unit-length-inch-abbr' => 'cal', |
3789 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'INM', |
3790 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'angielska mila morska', |
3791 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'amerykańska mila morska sprzed 1954 roku', |
3792 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2 pc', |
3793 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2 lat świetlnych', |
3794 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'j.a.', |
3795 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|kilometr kwadratowy|kilometry kwadratowe|kilometrów kwadratowych}}', |
3796 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|metr kwadratowy|metry kwadratowe|metrów kwadratowych}}', |
3797 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|centymetr kwadratowy|centymetry kwadratowe|centymetrów kwadratowych}}', |
3798 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|milimetr kwadratowy|milimetry kwadratowe|milimetrów kwadratowych}}', |
3799 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hektar|hektary|hektarów}}', |
3800 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|mila kwadratowa|mile kwadratowe|mil kwadratowych}}', |
3801 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|akr|akry|akrów}}', |
3802 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|jard kwadratowy|jardy kwadratowe|jardów kwadratowych}}', |
3803 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|stopa kwadratowa|stopy kwadratowe|stóp kwadratowych}}', |
3804 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|cal kwadratowy|cale kwadratowe|cali kwadratowych}}', |
3805 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|mila morska kwadratowa|mile morskie kwadratowe|mil morskich kwadratowych}}', |
3806 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunamy|dunamów}}', |
3807 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsubo|tsubo}}', |
3808 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
3809 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
3810 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
3811 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
3812 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
3813 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'mila<sup>2</sup>', |
3814 | | - 'pfunc-convert-unit-area-acre-abbr' => 'akr', |
3815 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'jard<sup>2</sup>', |
3816 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'stopa<sup>2</sup>', |
3817 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'cal<sup>2</sup>', |
3818 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'mila morska<sup>2</sup>', |
3819 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
3820 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
3821 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|sekunda|sekundy|sekund}}', |
3822 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2 rok|$2 lata|$2 lat}}', |
3823 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|dzień|dni}}', |
3824 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|godzina|godziny|godzin}}', |
3825 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minuta|minuty|minut}}', |
3826 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
3827 | | - 'pfunc-convert-unit-time-year-abbr' => '$2 jard', |
3828 | | - 'pfunc-convert-unit-time-day-abbr' => 'doba', |
3829 | | - 'pfunc-convert-unit-time-hour-abbr' => 'h', |
3830 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
3831 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|metr sześcienny|metry sześcienne|metrów sześciennych}}', |
3832 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|centymetr sześcienny|centymetry sześcienne|centymetrów sześciennych}}', |
3833 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|milimetr sześcienny|milimetry sześcienne|milimetrów sześciennych}}', |
3834 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|tysiąc litrów|tysiące litrów|tysięcy litrów}}', |
3835 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|litr|litry|litrów}}', |
3836 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|dziesiąta część|dziesiąte części|dziesiątych części}} litra', |
3837 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|mililitr|mililitry|mililitrów}}', |
3838 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|jard|jardów}}', |
3839 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
3840 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
3841 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
3842 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2 l', |
3843 | | - 'pfunc-convert-unit-speed-mile-hour' => 'mil na godzinę', |
3844 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2paskal|$2paskali}}', |
3845 | | - 'pfunc-convert-unit-pressure-bar' => 'barów', |
3846 | | - 'pfunc-convert-unit-pressure-decibar' => 'decybarów', |
3847 | | - 'pfunc-convert-unit-pressure-millibar' => 'millibarów', |
3848 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobarów', |
3849 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosfera|atmosfer}}', |
3850 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|milimtr słupka rtęci|milimetrów słupka rtęci}}', |
3851 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|cal słupka rtęci|cali słupka rtęci}}', |
3852 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
3853 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar.', |
3854 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
3855 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
3856 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
3857 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
| 3764 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3 metr|$3 metry|$3 metrów}}', |
| 3765 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angstrem|angstremy|angstremów}}', |
| 3766 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|mila|mile|mil}}', |
| 3767 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlongi|furlongów}}', |
| 3768 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|łańcuch|łańcuchy|łańcuchów}}', |
| 3769 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|pręt|pręty|prętów}}', |
| 3770 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|sążeń|sążnie|sążni}}', |
| 3771 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|jard|jardy|jardów}}', |
| 3772 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|stopa|stopy|stóp}}', |
| 3773 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|dłoń|dłonie|dłoni}}', |
| 3774 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|cal|cale|cali}}', |
| 3775 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|mila morska|mile morskie|mil morskich}}', |
| 3776 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|mila morska brytyjska|mile morskie brytyjskie|mil morskich brytyjskich}} sprzed 1970 roku', |
| 3777 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|mila morska amerykańska|mile morskie amerykańskie|mil morskich amerykańskich}} sprzed 1954 roku', |
| 3778 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3 parsek|$3 parseki|$3 parseków}}', |
| 3779 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3 rok świetlny|$3 lata świetlne|$3 lat świetlnych}}', |
| 3780 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|jednostka astronomiczna|jednostki astronomiczne|jednostek astronomicznych}}', |
| 3781 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 3782 | + 'pfunc-convert-unit-length-chain-abbr' => '$1łańcuch', |
| 3783 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 3784 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1sążeń', |
| 3785 | + 'pfunc-convert-unit-length-yard-abbr' => '$1jard', |
| 3786 | + 'pfunc-convert-unit-length-foot-abbr' => '$1stopa', |
| 3787 | + 'pfunc-convert-unit-length-hand-abbr' => '$1dłoń', |
| 3788 | + 'pfunc-convert-unit-length-inch-abbr' => '$1cal', |
| 3789 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1INM', |
| 3790 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1angielska mila morska', |
| 3791 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1amerykańska mila morska sprzed 1954 roku', |
| 3792 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3 pc', |
| 3793 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3 lat świetlnych', |
| 3794 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1j.a.', |
| 3795 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|kilometr kwadratowy|kilometry kwadratowe|kilometrów kwadratowych}}', |
| 3796 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|metr kwadratowy|metry kwadratowe|metrów kwadratowych}}', |
| 3797 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|centymetr kwadratowy|centymetry kwadratowe|centymetrów kwadratowych}}', |
| 3798 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|milimetr kwadratowy|milimetry kwadratowe|milimetrów kwadratowych}}', |
| 3799 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hektar|hektary|hektarów}}', |
| 3800 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|mila kwadratowa|mile kwadratowe|mil kwadratowych}}', |
| 3801 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|akr|akry|akrów}}', |
| 3802 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|jard kwadratowy|jardy kwadratowe|jardów kwadratowych}}', |
| 3803 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|stopa kwadratowa|stopy kwadratowe|stóp kwadratowych}}', |
| 3804 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|cal kwadratowy|cale kwadratowe|cali kwadratowych}}', |
| 3805 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|mila morska kwadratowa|mile morskie kwadratowe|mil morskich kwadratowych}}', |
| 3806 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunamy|dunamów}}', |
| 3807 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsubo|tsubo}}', |
| 3808 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 3809 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 3810 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 3811 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 3812 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 3813 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1mila<sup>2</sup>', |
| 3814 | + 'pfunc-convert-unit-area-acre-abbr' => '$1akr', |
| 3815 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1jard<sup>2</sup>', |
| 3816 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1stopa<sup>2</sup>', |
| 3817 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1cal<sup>2</sup>', |
| 3818 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1mila morska<sup>2</sup>', |
| 3819 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 3820 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 3821 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|sekunda|sekundy|sekund}}', |
| 3822 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3 rok|$3 lata|$3 lat}}', |
| 3823 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|dzień|dni}}', |
| 3824 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|godzina|godziny|godzin}}', |
| 3825 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minuta|minuty|minut}}', |
| 3826 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 3827 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3 jard', |
| 3828 | + 'pfunc-convert-unit-time-day-abbr' => '$1doba', |
| 3829 | + 'pfunc-convert-unit-time-hour-abbr' => '$1h', |
| 3830 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 3831 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|metr sześcienny|metry sześcienne|metrów sześciennych}}', |
| 3832 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|centymetr sześcienny|centymetry sześcienne|centymetrów sześciennych}}', |
| 3833 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|milimetr sześcienny|milimetry sześcienne|milimetrów sześciennych}}', |
| 3834 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|tysiąc litrów|tysiące litrów|tysięcy litrów}}', |
| 3835 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|litr|litry|litrów}}', |
| 3836 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|dziesiąta część|dziesiąte części|dziesiątych części}} litra', |
| 3837 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|mililitr|mililitry|mililitrów}}', |
| 3838 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|jard|jardów}}', |
| 3839 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 3840 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 3841 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 3842 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3 l', |
| 3843 | + 'pfunc-convert-unit-speed-mile-hour' => '$1mil na godzinę', |
| 3844 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3paskal|$3paskali}}', |
| 3845 | + 'pfunc-convert-unit-pressure-bar' => '$1barów', |
| 3846 | + 'pfunc-convert-unit-pressure-decibar' => '$1decybarów', |
| 3847 | + 'pfunc-convert-unit-pressure-millibar' => '$1millibarów', |
| 3848 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobarów', |
| 3849 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosfera|atmosfer}}', |
| 3850 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|milimtr słupka rtęci|milimetrów słupka rtęci}}', |
| 3851 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|cal słupka rtęci|cali słupka rtęci}}', |
| 3852 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 3853 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar.', |
| 3854 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 3855 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 3856 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 3857 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
3858 | 3858 | ); |
3859 | 3859 | |
3860 | 3860 | /** Piedmontese (Piemontèis) |
— | — | @@ -3924,93 +3924,93 @@ |
3925 | 3925 | 'pfunc-convert-prefix-atto' => 'اٹو', |
3926 | 3926 | 'pfunc-convert-prefix-zepto' => 'زپٹو', |
3927 | 3927 | 'pfunc-convert-prefix-yocto' => 'یوکٹو', |
3928 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2میٹر}}', |
3929 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'فرلانگ', |
3930 | | - 'pfunc-convert-unit-length-chain-abbr' => 'زنجیر', |
3931 | | - 'pfunc-convert-unit-length-rod-abbr' => 'رداس', |
3932 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'فیدم', |
3933 | | - 'pfunc-convert-unit-length-yard-abbr' => 'گز', |
3934 | | - 'pfunc-convert-unit-length-foot-abbr' => 'فٹ', |
3935 | | - 'pfunc-convert-unit-length-hand-abbr' => 'کینٹہ', |
3936 | | - 'pfunc-convert-unit-length-inch-abbr' => 'انچ', |
3937 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'سمندری میل', |
3938 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'سمندری میل (برطانیہ)', |
3939 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'سمندری میل (امریکہ 1954 توں پہلے)', |
3940 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2کمپیوٹر', |
3941 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2ly', |
3942 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'اسمانی ناپ', |
3943 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|مربع کلومیٹر|مربع کلومیٹر}}', |
3944 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|مربع میٹر|مربع میٹر}}', |
3945 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|مربع سینٹیمیٹر|مربع سینٹیمیٹر}}', |
3946 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|مربع میلیمیٹر|مربع میلیمیٹر}}', |
3947 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|ہیکٹر|ہیکٹر}}', |
3948 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|مربع میلیمیٹر|مربع میل}}', |
3949 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|ایکڑ|ایکڑ}}', |
3950 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|مربع گز|مربع گز}}', |
3951 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|مربع فٹ|مربع فٹ}}', |
3952 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|مربع انچ|مربع انچ}}', |
3953 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|مربع سمندری میل|مربع سمندری میل}}', |
3954 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|ڈنام|ڈنام}}', |
3955 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|زوبو|زوبو}}', |
3956 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'کلومیٹر<sup>2</sup>', |
3957 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
3958 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
3959 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
3960 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ہیکٹر', |
3961 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'مربع میل', |
3962 | | - 'pfunc-convert-unit-area-acre-abbr' => 'ایکڑ', |
3963 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'مربع گز', |
3964 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'مربع فٹ', |
3965 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'مربع انچ', |
3966 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'مربع سمندری میل', |
3967 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'دونام', |
3968 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'سوبو', |
3969 | | - 'pfunc-convert-unit-time-second' => '$1 {{PLURAL:$1|سکنٹ|سکنٹاں}}', |
3970 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2ورہ|$2ورے}}', |
3971 | | - 'pfunc-convert-unit-time-day' => ' {{PLURAL:$1|دن|دناں}}', |
3972 | | - 'pfunc-convert-unit-time-hour' => ' {{PLURAL:$1|کینٹا|کینٹے}}', |
3973 | | - 'pfunc-convert-unit-time-minute' => ' {{PLURAL:$1|منٹ|منٹاں}}', |
3974 | | - 'pfunc-convert-unit-time-second-abbr' => 'سکنث', |
3975 | | - 'pfunc-convert-unit-time-year-abbr' => '$2ورہ', |
3976 | | - 'pfunc-convert-unit-time-day-abbr' => 'دیاڑھ', |
3977 | | - 'pfunc-convert-unit-time-hour-abbr' => 'کینٹہ', |
3978 | | - 'pfunc-convert-unit-time-minute-abbr' => 'منٹ', |
3979 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|مربع میٹر|مربع میٹر}}', |
3980 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|مربع سینٹیمیٹر|مربع سینٹیمیٹر}}', |
3981 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|مربع میلیمیٹر|مربع میلیمیٹر}}', |
3982 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|کلولٹر|کلولٹر}}', |
3983 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|لٹر|لٹر}}', |
3984 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|سینٹیلٹر}}', |
3985 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|ملیلٹر}}', |
3986 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|مربع گز}}', |
3987 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|مربع فٹ}}', |
3988 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|مربع انچ}}', |
3989 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|بیرل}}', |
3990 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|بشل}}', |
3991 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|گیلن}}', |
3992 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|کوارٹز}}', |
3993 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|پنٹ}}', |
3994 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|پانیسر اونس}}', |
3995 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|بیرل}}', |
3996 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|بیرل}}', |
3997 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|بیرل}}', |
3998 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|گیلن}}', |
3999 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|کوارٹز}}', |
4000 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|پنٹ}}', |
4001 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|پانیسر اونس}}', |
4002 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|بیرل}}', |
4003 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|بشل}}', |
4004 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|گیلن}}', |
4005 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|کوارٹز}}', |
4006 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|پنٹ}}', |
4007 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>2</sup>', |
4008 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'سینٹی میٹر<sup>3</sup>', |
4009 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'ملی میٹر<sup>3</sup>', |
4010 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2ly', |
4011 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'مربع گز', |
4012 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'مربع فٹ', |
4013 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'مکعب انچ', |
4014 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl', |
| 3928 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3میٹر}}', |
| 3929 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1فرلانگ', |
| 3930 | + 'pfunc-convert-unit-length-chain-abbr' => '$1زنجیر', |
| 3931 | + 'pfunc-convert-unit-length-rod-abbr' => '$1رداس', |
| 3932 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1فیدم', |
| 3933 | + 'pfunc-convert-unit-length-yard-abbr' => '$1گز', |
| 3934 | + 'pfunc-convert-unit-length-foot-abbr' => '$1فٹ', |
| 3935 | + 'pfunc-convert-unit-length-hand-abbr' => '$1کینٹہ', |
| 3936 | + 'pfunc-convert-unit-length-inch-abbr' => '$1انچ', |
| 3937 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1سمندری میل', |
| 3938 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1سمندری میل (برطانیہ)', |
| 3939 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1سمندری میل (امریکہ 1954 توں پہلے)', |
| 3940 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3کمپیوٹر', |
| 3941 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3ly', |
| 3942 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1اسمانی ناپ', |
| 3943 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|مربع کلومیٹر|مربع کلومیٹر}}', |
| 3944 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|مربع میٹر|مربع میٹر}}', |
| 3945 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|مربع سینٹیمیٹر|مربع سینٹیمیٹر}}', |
| 3946 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|مربع میلیمیٹر|مربع میلیمیٹر}}', |
| 3947 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|ہیکٹر|ہیکٹر}}', |
| 3948 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|مربع میلیمیٹر|مربع میل}}', |
| 3949 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|ایکڑ|ایکڑ}}', |
| 3950 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|مربع گز|مربع گز}}', |
| 3951 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|مربع فٹ|مربع فٹ}}', |
| 3952 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|مربع انچ|مربع انچ}}', |
| 3953 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|مربع سمندری میل|مربع سمندری میل}}', |
| 3954 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|ڈنام|ڈنام}}', |
| 3955 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|زوبو|زوبو}}', |
| 3956 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1کلومیٹر<sup>2</sup>', |
| 3957 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 3958 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 3959 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 3960 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ہیکٹر', |
| 3961 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1مربع میل', |
| 3962 | + 'pfunc-convert-unit-area-acre-abbr' => '$1ایکڑ', |
| 3963 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1مربع گز', |
| 3964 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1مربع فٹ', |
| 3965 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1مربع انچ', |
| 3966 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1مربع سمندری میل', |
| 3967 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1دونام', |
| 3968 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1سوبو', |
| 3969 | + 'pfunc-convert-unit-time-second' => '$1$2 {{PLURAL:$2|سکنٹ|سکنٹاں}}', |
| 3970 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3ورہ|$3ورے}}', |
| 3971 | + 'pfunc-convert-unit-time-day' => '$1 {{PLURAL:$2|دن|دناں}}', |
| 3972 | + 'pfunc-convert-unit-time-hour' => '$1 {{PLURAL:$2|کینٹا|کینٹے}}', |
| 3973 | + 'pfunc-convert-unit-time-minute' => '$1 {{PLURAL:$2|منٹ|منٹاں}}', |
| 3974 | + 'pfunc-convert-unit-time-second-abbr' => '$1سکنث', |
| 3975 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3ورہ', |
| 3976 | + 'pfunc-convert-unit-time-day-abbr' => '$1دیاڑھ', |
| 3977 | + 'pfunc-convert-unit-time-hour-abbr' => '$1کینٹہ', |
| 3978 | + 'pfunc-convert-unit-time-minute-abbr' => '$1منٹ', |
| 3979 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|مربع میٹر|مربع میٹر}}', |
| 3980 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|مربع سینٹیمیٹر|مربع سینٹیمیٹر}}', |
| 3981 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|مربع میلیمیٹر|مربع میلیمیٹر}}', |
| 3982 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|کلولٹر|کلولٹر}}', |
| 3983 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|لٹر|لٹر}}', |
| 3984 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|سینٹیلٹر}}', |
| 3985 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|ملیلٹر}}', |
| 3986 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|مربع گز}}', |
| 3987 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|مربع فٹ}}', |
| 3988 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|مربع انچ}}', |
| 3989 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|بیرل}}', |
| 3990 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|بشل}}', |
| 3991 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|گیلن}}', |
| 3992 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|کوارٹز}}', |
| 3993 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|پنٹ}}', |
| 3994 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|پانیسر اونس}}', |
| 3995 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|بیرل}}', |
| 3996 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|بیرل}}', |
| 3997 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|بیرل}}', |
| 3998 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|گیلن}}', |
| 3999 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|کوارٹز}}', |
| 4000 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|پنٹ}}', |
| 4001 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|پانیسر اونس}}', |
| 4002 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|بیرل}}', |
| 4003 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|بشل}}', |
| 4004 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|گیلن}}', |
| 4005 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|کوارٹز}}', |
| 4006 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|پنٹ}}', |
| 4007 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>2</sup>', |
| 4008 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1سینٹی میٹر<sup>3</sup>', |
| 4009 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1ملی میٹر<sup>3</sup>', |
| 4010 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3ly', |
| 4011 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1مربع گز', |
| 4012 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1مربع فٹ', |
| 4013 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1مکعب انچ', |
| 4014 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl', |
4015 | 4015 | ); |
4016 | 4016 | |
4017 | 4017 | /** Pashto (پښتو) |
— | — | @@ -4247,152 +4247,152 @@ |
4248 | 4248 | 'pfunc-convert-prefix-zepto' => 'зепто', |
4249 | 4249 | 'pfunc-convert-prefix-yocto' => 'йокто', |
4250 | 4250 | 'pfunc-convert-prefix-milli-abbr' => 'м', |
4251 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2метр|$2метра|$2метров}}', |
4252 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|ангстрем|ангстрема|ангстрем}}', |
4253 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|миля|мили|миль}}', |
4254 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|фурлонг|фурлонга|фурлонгов}}', |
4255 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|чейн|чейна|чейнов}}', |
4256 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|род|рода|родов}}', |
4257 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|фатом|фатома|фатомов}}', |
4258 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|ярд|ярда|ярдов}}', |
4259 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|фут|фута|футов}}', |
4260 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|хэнд|хэнда|хэндов}}', |
4261 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|дюйм|дюйма|дюймов}}', |
4262 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|морская миля|морские мили|морских милей}}', |
4263 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|морская миля (британская до 1970)|морские мили (британских до 1970)|морских миль (британских до 1970)}}', |
4264 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|морская миля (США до 1970)|морские мили (США до 1970)|морских миль (США до 1970)}}', |
4265 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2парсек|$2парсека|$2парсек}}', |
4266 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2 световой год|$2 световых года|$2 световых лет}}', |
4267 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|астрономическая единица|астрономические единицы|астрономических единиц}}', |
4268 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'фурлонг', |
4269 | | - 'pfunc-convert-unit-length-chain-abbr' => 'чейн', |
4270 | | - 'pfunc-convert-unit-length-rod-abbr' => 'род', |
4271 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'фатом', |
4272 | | - 'pfunc-convert-unit-length-yard-abbr' => 'ярд', |
4273 | | - 'pfunc-convert-unit-length-foot-abbr' => 'фут', |
4274 | | - 'pfunc-convert-unit-length-hand-abbr' => 'хэнд', |
4275 | | - 'pfunc-convert-unit-length-inch-abbr' => 'дюйм', |
4276 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'морская миля', |
4277 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'брит. морская миля', |
4278 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'морская миля (США до 1954)', |
4279 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2 пк', |
4280 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2 св. г.', |
4281 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'а. е.', |
4282 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|квадратный километр|квадратных километра|квадратных километров}}', |
4283 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|квадратный метр|квадратных метра|квадратных метров}}', |
4284 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|квадратный сантиметр|квадратных сантиметра|квадратных сантиметров}}', |
4285 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|квадратный миллиметр|квадратных миллиметра|квадратных миллиметров}}', |
4286 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|гектар|гектара|гектар}}', |
4287 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|квадратная миля|квадратных мили|квадратных миль}}', |
4288 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|акр|акра|акров}}', |
4289 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|квадратный ярд|квадратных ярда|квадратных ярдов}}', |
4290 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|квадратный фут|квадратных фута|квадратных футов}}', |
4291 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|квадратный дюйм|квадратных дюйма|квадратных дюймов}}', |
4292 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|квадратная морская миля|квадратные морские мили|квадратных морских миль}}', |
4293 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|дунам|дунама|дунамов}}', |
4294 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|цубо|цубо|цубо}}', |
4295 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'км<sup>2</sup>', |
4296 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'м<sup>2</sup>', |
4297 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'см<sup>2</sup>', |
4298 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'мм<sup>2</sup>', |
4299 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'га', |
4300 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'кв. ми', |
4301 | | - 'pfunc-convert-unit-area-acre-abbr' => 'акр', |
4302 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'кв. ярд', |
4303 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'кв. м', |
4304 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'кв. дюйм', |
4305 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'кв. м. ми', |
4306 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'дунам', |
4307 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'цубо', |
4308 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|секунда|секунды|секунд}}', |
4309 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2год|$2года|$2лет}}', |
4310 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|день|дня|дней}}', |
4311 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|час|часа|часов}}', |
4312 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|минута|минуты|минут}}', |
4313 | | - 'pfunc-convert-unit-time-second-abbr' => 'с', |
4314 | | - 'pfunc-convert-unit-time-year-abbr' => '$2 г', |
4315 | | - 'pfunc-convert-unit-time-day-abbr' => 'дн', |
4316 | | - 'pfunc-convert-unit-time-hour-abbr' => 'ч.', |
4317 | | - 'pfunc-convert-unit-time-minute-abbr' => 'м.', |
4318 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|кубический метр|кубических метра|кубических метров}}', |
4319 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|кубический сантиметр|кубических сантиметра|кубических сантиметров}}', |
4320 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|кубический миллиметр|кубических миллиметра|кубических миллиметров}}', |
4321 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|килолитр|килолитра|килолитров}}', |
4322 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|литр|литра|литров}}', |
4323 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|сантилитр|сантилитра|сантилитров}}', |
4324 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|миллилитр|миллилитра|миллилитров}}', |
4325 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|кубический ярд|кубических ярда|кубических ярдов}}', |
4326 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|кубический фут|кубических фута|кубических футов}}', |
4327 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|кубический дюйм|кубических дюйма|кубических дюймов}}', |
4328 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|баррель|барреля|баррелей}}', |
4329 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|бушель|бушеля|бушелей}}', |
4330 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|галлон|галлона|галлонов}}', |
4331 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|кварта|кварты|кварт}}', |
4332 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|пинта|пинты|пинт}}', |
4333 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|жидкая унция|жидких унции|жидких унций}}', |
4334 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|баррель США|барреля США|баррелей США}}', |
4335 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|баррель|барреля|баррелей}}', |
4336 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|баррель|барреля|баррелей}}', |
4337 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|галлон США|галлона США|галлонов США}}', |
4338 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|кварта США|кварты США|кварт США}}', |
4339 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|пинта США|пинты США|пинт США}}', |
4340 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|жидкая унция США|жидких унции США|жидких унций США}}', |
4341 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|сухой баррель США|сухих барреля США|сухих баррелей США}}', |
4342 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|бушель США|бушеля США|бушелей США}}', |
4343 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|сухой галлон США|сухих галлона США|сухих галлонов США}}', |
4344 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|сухая кварта США|сухие кварты США|сухих кварт США}}', |
4345 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|сухая пинта США|сухих пинты США|сухих пинт США}}', |
4346 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'м<sup>3</sup>', |
4347 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'см<sup>3</sup>', |
4348 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'мм<sup>3</sup>', |
4349 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2 л', |
4350 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'куб. ярд', |
4351 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'куб. фут', |
4352 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'куб. дюйм', |
4353 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'бр.', |
4354 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'бш.', |
4355 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'гал.', |
4356 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'кв.', |
4357 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'пт.', |
4358 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'жид. унц.', |
4359 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'бр. США', |
4360 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'бр.', |
4361 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'бр.', |
4362 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'гал. США', |
4363 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'кт. США', |
4364 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'пт. США', |
4365 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'жид. унц. США', |
4366 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'бр. США', |
4367 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'вш. США', |
4368 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'сух. гал. США', |
4369 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'сух. кт. США', |
4370 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'сух. пт. США', |
4371 | | - 'pfunc-convert-unit-speed-mile-hour' => 'миль/час', |
4372 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
4373 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'миль/ч', |
4374 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
4375 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2паскаль|$2паскаля|$2паскалей}}', |
4376 | | - 'pfunc-convert-unit-pressure-bar' => 'бар', |
4377 | | - 'pfunc-convert-unit-pressure-decibar' => 'децибар', |
4378 | | - 'pfunc-convert-unit-pressure-millibar' => 'миллибар', |
4379 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'килобария', |
4380 | | - 'pfunc-convert-unit-pressure-barye' => 'бария', |
4381 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|атмосфера|атмосферы|атмосфер}}', |
4382 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|торр|торра|торр}}', |
4383 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|миллиметр ртутного столба|миллиметра ртутного столба|миллиметров ртутного столба}}', |
4384 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|дюйм ртутного столба|дюйма ртутного столба|дюймов ртутного столба}}', |
4385 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|фунт на квадратный дюйм|фунта на квадратный дюйм|фунтов на квадратный дюйм}}', |
4386 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Па', |
4387 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'бар', |
4388 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'дбар', |
4389 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'мбар', |
4390 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'КБа', |
4391 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ба', |
4392 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'атм', |
4393 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'торр', |
4394 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'мм рт. ст.', |
4395 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'дюйм. рт. ст.', |
4396 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'фунт. на кв. дюйм', |
| 4251 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3метр|$3метра|$3метров}}', |
| 4252 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|ангстрем|ангстрема|ангстрем}}', |
| 4253 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|миля|мили|миль}}', |
| 4254 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|фурлонг|фурлонга|фурлонгов}}', |
| 4255 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|чейн|чейна|чейнов}}', |
| 4256 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|род|рода|родов}}', |
| 4257 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|фатом|фатома|фатомов}}', |
| 4258 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|ярд|ярда|ярдов}}', |
| 4259 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|фут|фута|футов}}', |
| 4260 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|хэнд|хэнда|хэндов}}', |
| 4261 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|дюйм|дюйма|дюймов}}', |
| 4262 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|морская миля|морские мили|морских милей}}', |
| 4263 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|морская миля (британская до 1970)|морские мили (британских до 1970)|морских миль (британских до 1970)}}', |
| 4264 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|морская миля (США до 1970)|морские мили (США до 1970)|морских миль (США до 1970)}}', |
| 4265 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3парсек|$3парсека|$3парсек}}', |
| 4266 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3 световой год|$3 световых года|$3 световых лет}}', |
| 4267 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|астрономическая единица|астрономические единицы|астрономических единиц}}', |
| 4268 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1фурлонг', |
| 4269 | + 'pfunc-convert-unit-length-chain-abbr' => '$1чейн', |
| 4270 | + 'pfunc-convert-unit-length-rod-abbr' => '$1род', |
| 4271 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1фатом', |
| 4272 | + 'pfunc-convert-unit-length-yard-abbr' => '$1ярд', |
| 4273 | + 'pfunc-convert-unit-length-foot-abbr' => '$1фут', |
| 4274 | + 'pfunc-convert-unit-length-hand-abbr' => '$1хэнд', |
| 4275 | + 'pfunc-convert-unit-length-inch-abbr' => '$1дюйм', |
| 4276 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1морская миля', |
| 4277 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1брит. морская миля', |
| 4278 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1морская миля (США до 1954)', |
| 4279 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3 пк', |
| 4280 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3 св. г.', |
| 4281 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1а. е.', |
| 4282 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|квадратный километр|квадратных километра|квадратных километров}}', |
| 4283 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|квадратный метр|квадратных метра|квадратных метров}}', |
| 4284 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|квадратный сантиметр|квадратных сантиметра|квадратных сантиметров}}', |
| 4285 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|квадратный миллиметр|квадратных миллиметра|квадратных миллиметров}}', |
| 4286 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|гектар|гектара|гектар}}', |
| 4287 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|квадратная миля|квадратных мили|квадратных миль}}', |
| 4288 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|акр|акра|акров}}', |
| 4289 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|квадратный ярд|квадратных ярда|квадратных ярдов}}', |
| 4290 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|квадратный фут|квадратных фута|квадратных футов}}', |
| 4291 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|квадратный дюйм|квадратных дюйма|квадратных дюймов}}', |
| 4292 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|квадратная морская миля|квадратные морские мили|квадратных морских миль}}', |
| 4293 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|дунам|дунама|дунамов}}', |
| 4294 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|цубо|цубо|цубо}}', |
| 4295 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1км<sup>2</sup>', |
| 4296 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1м<sup>2</sup>', |
| 4297 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1см<sup>2</sup>', |
| 4298 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1мм<sup>2</sup>', |
| 4299 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1га', |
| 4300 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1кв. ми', |
| 4301 | + 'pfunc-convert-unit-area-acre-abbr' => '$1акр', |
| 4302 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1кв. ярд', |
| 4303 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1кв. м', |
| 4304 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1кв. дюйм', |
| 4305 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1кв. м. ми', |
| 4306 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1дунам', |
| 4307 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1цубо', |
| 4308 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|секунда|секунды|секунд}}', |
| 4309 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3год|$3года|$3лет}}', |
| 4310 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|день|дня|дней}}', |
| 4311 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|час|часа|часов}}', |
| 4312 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|минута|минуты|минут}}', |
| 4313 | + 'pfunc-convert-unit-time-second-abbr' => '$1с', |
| 4314 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3 г', |
| 4315 | + 'pfunc-convert-unit-time-day-abbr' => '$1дн', |
| 4316 | + 'pfunc-convert-unit-time-hour-abbr' => '$1ч.', |
| 4317 | + 'pfunc-convert-unit-time-minute-abbr' => '$1м.', |
| 4318 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|кубический метр|кубических метра|кубических метров}}', |
| 4319 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|кубический сантиметр|кубических сантиметра|кубических сантиметров}}', |
| 4320 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|кубический миллиметр|кубических миллиметра|кубических миллиметров}}', |
| 4321 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|килолитр|килолитра|килолитров}}', |
| 4322 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|литр|литра|литров}}', |
| 4323 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|сантилитр|сантилитра|сантилитров}}', |
| 4324 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|миллилитр|миллилитра|миллилитров}}', |
| 4325 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|кубический ярд|кубических ярда|кубических ярдов}}', |
| 4326 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|кубический фут|кубических фута|кубических футов}}', |
| 4327 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|кубический дюйм|кубических дюйма|кубических дюймов}}', |
| 4328 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|баррель|барреля|баррелей}}', |
| 4329 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|бушель|бушеля|бушелей}}', |
| 4330 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|галлон|галлона|галлонов}}', |
| 4331 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|кварта|кварты|кварт}}', |
| 4332 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|пинта|пинты|пинт}}', |
| 4333 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|жидкая унция|жидких унции|жидких унций}}', |
| 4334 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|баррель США|барреля США|баррелей США}}', |
| 4335 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|баррель|барреля|баррелей}}', |
| 4336 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|баррель|барреля|баррелей}}', |
| 4337 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|галлон США|галлона США|галлонов США}}', |
| 4338 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|кварта США|кварты США|кварт США}}', |
| 4339 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|пинта США|пинты США|пинт США}}', |
| 4340 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|жидкая унция США|жидких унции США|жидких унций США}}', |
| 4341 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|сухой баррель США|сухих барреля США|сухих баррелей США}}', |
| 4342 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|бушель США|бушеля США|бушелей США}}', |
| 4343 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|сухой галлон США|сухих галлона США|сухих галлонов США}}', |
| 4344 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|сухая кварта США|сухие кварты США|сухих кварт США}}', |
| 4345 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|сухая пинта США|сухих пинты США|сухих пинт США}}', |
| 4346 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1м<sup>3</sup>', |
| 4347 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1см<sup>3</sup>', |
| 4348 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1мм<sup>3</sup>', |
| 4349 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3 л', |
| 4350 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1куб. ярд', |
| 4351 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1куб. фут', |
| 4352 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1куб. дюйм', |
| 4353 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1бр.', |
| 4354 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1бш.', |
| 4355 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1гал.', |
| 4356 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1кв.', |
| 4357 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1пт.', |
| 4358 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1жид. унц.', |
| 4359 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1бр. США', |
| 4360 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1бр.', |
| 4361 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1бр.', |
| 4362 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1гал. США', |
| 4363 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1кт. США', |
| 4364 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1пт. США', |
| 4365 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1жид. унц. США', |
| 4366 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1бр. США', |
| 4367 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1вш. США', |
| 4368 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1сух. гал. США', |
| 4369 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1сух. кт. США', |
| 4370 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1сух. пт. США', |
| 4371 | + 'pfunc-convert-unit-speed-mile-hour' => '$1миль/час', |
| 4372 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 4373 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1миль/ч', |
| 4374 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 4375 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3паскаль|$3паскаля|$3паскалей}}', |
| 4376 | + 'pfunc-convert-unit-pressure-bar' => '$1бар', |
| 4377 | + 'pfunc-convert-unit-pressure-decibar' => '$1децибар', |
| 4378 | + 'pfunc-convert-unit-pressure-millibar' => '$1миллибар', |
| 4379 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1килобария', |
| 4380 | + 'pfunc-convert-unit-pressure-barye' => '$1бария', |
| 4381 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|атмосфера|атмосферы|атмосфер}}', |
| 4382 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|торр|торра|торр}}', |
| 4383 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|миллиметр ртутного столба|миллиметра ртутного столба|миллиметров ртутного столба}}', |
| 4384 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|дюйм ртутного столба|дюйма ртутного столба|дюймов ртутного столба}}', |
| 4385 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|фунт на квадратный дюйм|фунта на квадратный дюйм|фунтов на квадратный дюйм}}', |
| 4386 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Па', |
| 4387 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1бар', |
| 4388 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1дбар', |
| 4389 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1мбар', |
| 4390 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1КБа', |
| 4391 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ба', |
| 4392 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1атм', |
| 4393 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1торр', |
| 4394 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1мм рт. ст.', |
| 4395 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1дюйм. рт. ст.', |
| 4396 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1фунт. на кв. дюйм', |
4397 | 4397 | ); |
4398 | 4398 | |
4399 | 4399 | /** Rusyn (Русиньскый) |
— | — | @@ -4591,154 +4591,154 @@ |
4592 | 4592 | 'pfunc-convert-prefix-zepto' => 'zepto', |
4593 | 4593 | 'pfunc-convert-prefix-yocto' => 'jokto', |
4594 | 4594 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
4595 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|meter|metra|metri|metrov}}', |
4596 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|angstrem|angstrema|angstremi|angstremov}}', |
4597 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|milja|milji|milje|milj}}', |
4598 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlonga|furlongi|furlongov}}', |
4599 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|veriga|verigi|verige|verig}}', |
4600 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|palica|palici|palice|palic}}', |
4601 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|seženj|sežnja|sežnji|sežnjev}}', |
4602 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|jard|jarda|jardi|jardov}}', |
4603 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|čevelj|čevlja|čevlji|čeljev}}', |
4604 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|dlan|dlani}}', |
4605 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|palec|palca|palci|palcev}}', |
4606 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|navtična milja|navtični milji|navtične milje|navtičnih milj}}', |
4607 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|navtična milja|navtični milji|navtične milje|navtičnih milj}} (britanska, pred 1970)', |
4608 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|navtična milja|navtični milji|navtične milje|navtičnih milj}} (ZDA, pred 1954)', |
4609 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|parsek|parseka|parseki|persekov}}', |
4610 | | - 'pfunc-convert-unit-length-lightyear' => '$2 {{PLURAL:$1|svetlobno leto|svetlobni leti|svetlobna leta|svetlobnih let}}', |
4611 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomska enota|astronomski enoti|astronomske enote|astronomskih enot}}', |
4612 | | - 'pfunc-convert-unit-length-metre-abbr' => 'm', |
4613 | | - 'pfunc-convert-unit-length-angstrom-abbr' => 'Å', |
4614 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
4615 | | - 'pfunc-convert-unit-length-chain-abbr' => 'veriga', |
4616 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
4617 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'seženj', |
4618 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
4619 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
4620 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
4621 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
4622 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
4623 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'nmi (Brit)', |
4624 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'nmi (ZDA, pred 1954)', |
4625 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2 pc', |
4626 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2 sv. l.', |
4627 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'a.e.', |
4628 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|kvadratni kilometer|kvadratna kilometra|kvadratni kilometri|kvadratnih kilometrov}}', |
4629 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|kvadratni meter|kvadratna metra|kvadratni metri|kvadratnih metrov}}', |
4630 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|kvadratni centimeter|kvadratna centimetra|kvadratni centimetri|kvadratnih centimetrov}}', |
4631 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|kvadratni milimeter|kvadratna milimetra|kvadratni milimetri|kvadratnih milimetrov}}', |
4632 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hektar|hektara|hektare|hektarov}}', |
4633 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|kvadratna milja|kvadratni milji|kvadratne milje|kvadratnih milj}}', |
4634 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|aker|akra|akri|akrov}}', |
4635 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|kvadratni jard|kvadratna jarda|kvadratni jardi|kvadratnih jardov}}', |
4636 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|kvadratni čevelj|kvadratna čevlja|kvadratni čevlji|kvadratnih čevljev}}', |
4637 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|kvadratni palec|kvadratna palca|kvadratni palci|kvadratnih palcev}}', |
4638 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|kvadratna navtična milja|kvadratni navtični milji|kvadratne navtične milje|kvadratnih navtičnih milj}}', |
4639 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunama|dunami|dunamov}}', |
4640 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsuba|tsubi|tsubov}}', |
4641 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
4642 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
4643 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
4644 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
4645 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
4646 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'kv. mi', |
4647 | | - 'pfunc-convert-unit-area-acre-abbr' => 'aker', |
4648 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'kv. yd', |
4649 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'kv. ft', |
4650 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'kv. in', |
4651 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'kv nmi', |
4652 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
4653 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
4654 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|sekunda|sekundi|sekunde|sekund}}', |
4655 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|leto|leti|leta|let}}', |
4656 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|dan|dneva|dnevi|dni}}', |
4657 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|ura|uri|ure|ur}}', |
4658 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minuta|minuti|minute|minut}}', |
4659 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
4660 | | - 'pfunc-convert-unit-time-year-abbr' => 'leto', |
4661 | | - 'pfunc-convert-unit-time-day-abbr' => 'dan', |
4662 | | - 'pfunc-convert-unit-time-hour-abbr' => 'ura', |
4663 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
4664 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|kubični meter|kubična metra|kubični metri|kubičnih metrov}}', |
4665 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|kubični centimeter|kubična centimetra|kubični centimetri|kubičnih centimetrov}}', |
4666 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|kubični milimeter|kubična milimetra|kubični milimetri|kubičnih milimetrov}}', |
4667 | | - 'pfunc-convert-unit-volume-kilolitre' => 'kilo{{PLURAL:$1|liter|litra|litri|litrov}}', |
4668 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|liter|litra|litri|litrov}}', |
4669 | | - 'pfunc-convert-unit-volume-centilitre' => 'centi{{PLURAL:$1|liter|litra|litri|litrov}}', |
4670 | | - 'pfunc-convert-unit-volume-millilitre' => 'mili{{PLURAL:$1|liter|litra|litri|litrov}}', |
4671 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|kubični jard|kubična jarda|kubični jardi|kubičnih jardov}}', |
4672 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|kubični čevelj|kubična čevlja|kubični čevlji|kubičnih čevljev}}', |
4673 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|kubični palec|kubična palca|kubični palci|kubičnih palcev}}', |
4674 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|sod|soda|sodi|sodov}}', |
4675 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1|bušel|bušla|bušli|bušlov}}', |
4676 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|galona|galoni|galone|galon}}', |
4677 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|kvart|kvarta|kvarti|kvartov}}', |
4678 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|pint|pinta|pinti|pintov}}', |
4679 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1|tekočinska unča|tekočinski unči|tekočinske unče|tekočinskih unč}}', |
4680 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1|ameriški sod|ameriška soda|ameriški sodi|ameriških sodov}}', |
4681 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1|sod|soda|sodi|sodov}}', |
4682 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1|sod|soda|sodi|sodov}}', |
4683 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|ameriška galona|ameriški galoni|ameriške galone|ameriških galon}}', |
4684 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|ameriški kvart|ameriška kvarta|ameriški kvarti|ameriških kvartov}}', |
4685 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|ameriški pint|ameriška pinta|ameriški pinti|ameriških pintov}}', |
4686 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1|ameriška tekočinska unča|ameriški tekočinski unči|ameriške tekočinske unče|ameriških tekočinskih unč}}', |
4687 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1|ameriški suhi sod|ameriška suha soda|ameriški suhi sodi|ameriških suhih sodov}}', |
4688 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1|ameriški bušel|ameriška bušla|ameriški bušli|ameriških bušlov}}', |
4689 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|ameriška suha galona|ameriški suhi galoni|ameriške suhe galone|ameriških suhih galon}}', |
4690 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|ameriški suhi kvart|ameriška suha kvarta|ameriški suhi kvarti|ameriških suhih kvartov}}', |
4691 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|ameriški suhi pint|ameriška suha pinta|ameriški suhi pinti|ameriških suhih pintov}}', |
4692 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
4693 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
4694 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
4695 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2 l', |
4696 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'kub. yd', |
4697 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'kub. ft', |
4698 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'kub. in', |
4699 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl', |
4700 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh', |
4701 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
4702 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt', |
4703 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt', |
4704 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl oz', |
4705 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'am. bbl', |
4706 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'bbl', |
4707 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'bbl', |
4708 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'am. gal', |
4709 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'am. qt', |
4710 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'am. pt', |
4711 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'am. fl oz', |
4712 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'am. bbl', |
4713 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'am. bsh', |
4714 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'am. suha gal', |
4715 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'am. suhi qt', |
4716 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'am. suhi pt', |
4717 | | - 'pfunc-convert-unit-speed-mile-hour' => 'milje na uro', |
4718 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
4719 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mph', |
4720 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
4721 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|paskal|paskala|paskali|paskalov}}', |
4722 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
4723 | | - 'pfunc-convert-unit-pressure-decibar' => 'decibar', |
4724 | | - 'pfunc-convert-unit-pressure-millibar' => 'milibar', |
4725 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilobarye', |
4726 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
4727 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosfera|atmosferi|atmosfere|atmosfer}}', |
4728 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|torr|torra|torri|torrov}}', |
4729 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|milimeter|milimetra|milimetri|milimetrov}} živega srebra', |
4730 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|palec|palca|palci|palcev}} živega srebra', |
4731 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1|funt|funta|funti|funtov}} na kvadratni palec', |
4732 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => 'Pa', |
4733 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
4734 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
4735 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
4736 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
4737 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
4738 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
4739 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
4740 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
4741 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
4742 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 4595 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|meter|metra|metri|metrov}}', |
| 4596 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|angstrem|angstrema|angstremi|angstremov}}', |
| 4597 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|milja|milji|milje|milj}}', |
| 4598 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlonga|furlongi|furlongov}}', |
| 4599 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|veriga|verigi|verige|verig}}', |
| 4600 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|palica|palici|palice|palic}}', |
| 4601 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|seženj|sežnja|sežnji|sežnjev}}', |
| 4602 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|jard|jarda|jardi|jardov}}', |
| 4603 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|čevelj|čevlja|čevlji|čeljev}}', |
| 4604 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|dlan|dlani}}', |
| 4605 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|palec|palca|palci|palcev}}', |
| 4606 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|navtična milja|navtični milji|navtične milje|navtičnih milj}}', |
| 4607 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|navtična milja|navtični milji|navtične milje|navtičnih milj}} (britanska, pred 1970)', |
| 4608 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|navtična milja|navtični milji|navtične milje|navtičnih milj}} (ZDA, pred 1954)', |
| 4609 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|parsek|parseka|parseki|persekov}}', |
| 4610 | + 'pfunc-convert-unit-length-lightyear' => '$1$3 {{PLURAL:$2|svetlobno leto|svetlobni leti|svetlobna leta|svetlobnih let}}', |
| 4611 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomska enota|astronomski enoti|astronomske enote|astronomskih enot}}', |
| 4612 | + 'pfunc-convert-unit-length-metre-abbr' => '$1m', |
| 4613 | + 'pfunc-convert-unit-length-angstrom-abbr' => '$1Å', |
| 4614 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 4615 | + 'pfunc-convert-unit-length-chain-abbr' => '$1veriga', |
| 4616 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 4617 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1seženj', |
| 4618 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 4619 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 4620 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 4621 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 4622 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 4623 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1nmi (Brit)', |
| 4624 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1nmi (ZDA, pred 1954)', |
| 4625 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3 pc', |
| 4626 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3 sv. l.', |
| 4627 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1a.e.', |
| 4628 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|kvadratni kilometer|kvadratna kilometra|kvadratni kilometri|kvadratnih kilometrov}}', |
| 4629 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|kvadratni meter|kvadratna metra|kvadratni metri|kvadratnih metrov}}', |
| 4630 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|kvadratni centimeter|kvadratna centimetra|kvadratni centimetri|kvadratnih centimetrov}}', |
| 4631 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|kvadratni milimeter|kvadratna milimetra|kvadratni milimetri|kvadratnih milimetrov}}', |
| 4632 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hektar|hektara|hektare|hektarov}}', |
| 4633 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|kvadratna milja|kvadratni milji|kvadratne milje|kvadratnih milj}}', |
| 4634 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|aker|akra|akri|akrov}}', |
| 4635 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|kvadratni jard|kvadratna jarda|kvadratni jardi|kvadratnih jardov}}', |
| 4636 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|kvadratni čevelj|kvadratna čevlja|kvadratni čevlji|kvadratnih čevljev}}', |
| 4637 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|kvadratni palec|kvadratna palca|kvadratni palci|kvadratnih palcev}}', |
| 4638 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|kvadratna navtična milja|kvadratni navtični milji|kvadratne navtične milje|kvadratnih navtičnih milj}}', |
| 4639 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunama|dunami|dunamov}}', |
| 4640 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsuba|tsubi|tsubov}}', |
| 4641 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 4642 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 4643 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 4644 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 4645 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 4646 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1kv. mi', |
| 4647 | + 'pfunc-convert-unit-area-acre-abbr' => '$1aker', |
| 4648 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1kv. yd', |
| 4649 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1kv. ft', |
| 4650 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1kv. in', |
| 4651 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1kv nmi', |
| 4652 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 4653 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 4654 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|sekunda|sekundi|sekunde|sekund}}', |
| 4655 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|leto|leti|leta|let}}', |
| 4656 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|dan|dneva|dnevi|dni}}', |
| 4657 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|ura|uri|ure|ur}}', |
| 4658 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minuta|minuti|minute|minut}}', |
| 4659 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 4660 | + 'pfunc-convert-unit-time-year-abbr' => '$1leto', |
| 4661 | + 'pfunc-convert-unit-time-day-abbr' => '$1dan', |
| 4662 | + 'pfunc-convert-unit-time-hour-abbr' => '$1ura', |
| 4663 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 4664 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|kubični meter|kubična metra|kubični metri|kubičnih metrov}}', |
| 4665 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|kubični centimeter|kubična centimetra|kubični centimetri|kubičnih centimetrov}}', |
| 4666 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|kubični milimeter|kubična milimetra|kubični milimetri|kubičnih milimetrov}}', |
| 4667 | + 'pfunc-convert-unit-volume-kilolitre' => '$1kilo{{PLURAL:$2|liter|litra|litri|litrov}}', |
| 4668 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|liter|litra|litri|litrov}}', |
| 4669 | + 'pfunc-convert-unit-volume-centilitre' => '$1centi{{PLURAL:$2|liter|litra|litri|litrov}}', |
| 4670 | + 'pfunc-convert-unit-volume-millilitre' => '$1mili{{PLURAL:$2|liter|litra|litri|litrov}}', |
| 4671 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|kubični jard|kubična jarda|kubični jardi|kubičnih jardov}}', |
| 4672 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|kubični čevelj|kubična čevlja|kubični čevlji|kubičnih čevljev}}', |
| 4673 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|kubični palec|kubična palca|kubični palci|kubičnih palcev}}', |
| 4674 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|sod|soda|sodi|sodov}}', |
| 4675 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2|bušel|bušla|bušli|bušlov}}', |
| 4676 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|galona|galoni|galone|galon}}', |
| 4677 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|kvart|kvarta|kvarti|kvartov}}', |
| 4678 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|pint|pinta|pinti|pintov}}', |
| 4679 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2|tekočinska unča|tekočinski unči|tekočinske unče|tekočinskih unč}}', |
| 4680 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2|ameriški sod|ameriška soda|ameriški sodi|ameriških sodov}}', |
| 4681 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2|sod|soda|sodi|sodov}}', |
| 4682 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2|sod|soda|sodi|sodov}}', |
| 4683 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|ameriška galona|ameriški galoni|ameriške galone|ameriških galon}}', |
| 4684 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|ameriški kvart|ameriška kvarta|ameriški kvarti|ameriških kvartov}}', |
| 4685 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|ameriški pint|ameriška pinta|ameriški pinti|ameriških pintov}}', |
| 4686 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2|ameriška tekočinska unča|ameriški tekočinski unči|ameriške tekočinske unče|ameriških tekočinskih unč}}', |
| 4687 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2|ameriški suhi sod|ameriška suha soda|ameriški suhi sodi|ameriških suhih sodov}}', |
| 4688 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2|ameriški bušel|ameriška bušla|ameriški bušli|ameriških bušlov}}', |
| 4689 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|ameriška suha galona|ameriški suhi galoni|ameriške suhe galone|ameriških suhih galon}}', |
| 4690 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|ameriški suhi kvart|ameriška suha kvarta|ameriški suhi kvarti|ameriških suhih kvartov}}', |
| 4691 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|ameriški suhi pint|ameriška suha pinta|ameriški suhi pinti|ameriških suhih pintov}}', |
| 4692 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 4693 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 4694 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 4695 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3 l', |
| 4696 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1kub. yd', |
| 4697 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1kub. ft', |
| 4698 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1kub. in', |
| 4699 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl', |
| 4700 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh', |
| 4701 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 4702 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt', |
| 4703 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt', |
| 4704 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl oz', |
| 4705 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1am. bbl', |
| 4706 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1bbl', |
| 4707 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1bbl', |
| 4708 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1am. gal', |
| 4709 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1am. qt', |
| 4710 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1am. pt', |
| 4711 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1am. fl oz', |
| 4712 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1am. bbl', |
| 4713 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1am. bsh', |
| 4714 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1am. suha gal', |
| 4715 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1am. suhi qt', |
| 4716 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1am. suhi pt', |
| 4717 | + 'pfunc-convert-unit-speed-mile-hour' => '$1milje na uro', |
| 4718 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 4719 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mph', |
| 4720 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 4721 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|paskal|paskala|paskali|paskalov}}', |
| 4722 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 4723 | + 'pfunc-convert-unit-pressure-decibar' => '$1decibar', |
| 4724 | + 'pfunc-convert-unit-pressure-millibar' => '$1milibar', |
| 4725 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilobarye', |
| 4726 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 4727 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosfera|atmosferi|atmosfere|atmosfer}}', |
| 4728 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|torr|torra|torri|torrov}}', |
| 4729 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|milimeter|milimetra|milimetri|milimetrov}} živega srebra', |
| 4730 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|palec|palca|palci|palcev}} živega srebra', |
| 4731 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2|funt|funta|funti|funtov}} na kvadratni palec', |
| 4732 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1Pa', |
| 4733 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 4734 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 4735 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 4736 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 4737 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 4738 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 4739 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 4740 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 4741 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 4742 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
4743 | 4743 | ); |
4744 | 4744 | |
4745 | 4745 | /** Albanian (Shqip) |
— | — | @@ -4919,110 +4919,110 @@ |
4920 | 4920 | 'pfunc-convert-prefix-atto' => 'atto', |
4921 | 4921 | 'pfunc-convert-prefix-zepto' => 'zepto', |
4922 | 4922 | 'pfunc-convert-prefix-yocto' => 'yokto', |
4923 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1|$2meter|$2meter}}', |
4924 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1|ångström|ångström}}', |
4925 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1|engelsk mil|engelska mil}}', |
4926 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1|furlong|furlonger}}', |
4927 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1|chain|chains}}', |
4928 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1|stång|stänger}}', |
4929 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1|famn|famnar}}', |
4930 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1|yard|yards}}', |
4931 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1|fot|fot}}', |
4932 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1|hand|händer}}', |
4933 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1|tum|tum}}', |
4934 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1|nautisk mil|nautiska mil}}', |
4935 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1|nautisk mil (innan 1970, brittisk)|nautiska mil (innan 1970, brittisk)}}', |
4936 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1|nautisk mil (innan 1954, USA)|nautiska mil (innan 1954, USA)}}', |
4937 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1|$2parsec|$2parsec}}', |
4938 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1|$2ljusår|$2ljusår}}', |
4939 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1|astronomisk enhet|astronomiska enheter}}', |
4940 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
4941 | | - 'pfunc-convert-unit-length-chain-abbr' => 'chain', |
4942 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'famn', |
4943 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
4944 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
4945 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
4946 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
4947 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
4948 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'nmi (Storbr.)', |
4949 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'nmi (innan 1954, USA)', |
4950 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
4951 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'AU', |
4952 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1|kvadratkilometer|kvadratkilometer}}', |
4953 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1|kvadratmeter|kvadratmeter}}', |
4954 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1|kvadratcentimeter|kvadratcentimeter}}', |
4955 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1|kvadratmillimeter|kvadratmillimeter}}', |
4956 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1|hektar|hektar}}', |
4957 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1|kvadratmil|kvadratmil}}', |
4958 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1|tunnland|tunnland}}', |
4959 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1|kvadratyard|kvadratyard}}', |
4960 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1|kvadratfot|kvadratfötter}}', |
4961 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1|kvadrattum|kvadrattum}}', |
4962 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1|kvadratisk nautisk mil|kvadratiska nautiska mil}}', |
4963 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1|dunam|dunam}}', |
4964 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1|tsubo|tsubo}}', |
4965 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km<sup>2</sup>', |
4966 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm<sup>2</sup>', |
4967 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm<sup>2</sup>', |
4968 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm<sup>2</sup>', |
4969 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
4970 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'kv mil', |
4971 | | - 'pfunc-convert-unit-area-acre-abbr' => 'tunnland', |
4972 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'kv yd', |
4973 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'kv ft', |
4974 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'kv in', |
4975 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'kv nmi', |
4976 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
4977 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
4978 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1|sekund|sekunder}}', |
4979 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1|$2år|$2år}}', |
4980 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1|dag|dagar}}', |
4981 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1|timme|timmar}}', |
4982 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1|minut|minuter}}', |
4983 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
4984 | | - 'pfunc-convert-unit-time-day-abbr' => 'dag', |
4985 | | - 'pfunc-convert-unit-time-hour-abbr' => 'tim', |
4986 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
4987 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1|kubikmeter|kubikmeter}}', |
4988 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1|kubikcentimeter|kubikcentimeter}}', |
4989 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1|kubikmillimeter|kubikmillimeter}}', |
4990 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1|kiloliter|kiloliter}}', |
4991 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1|liter|liter}}', |
4992 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1|centiliter|centiliter}}', |
4993 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1|milliliter|milliliter}}', |
4994 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1|kubikyard|kubikyards}}', |
4995 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1|kubikfot|kubikfötter}}', |
4996 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1|kubiktum|kubiktum}}', |
4997 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1|fat|fat}}', |
4998 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1|gallon|gallons}}', |
4999 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1|quart|quarts}}', |
5000 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1|pint|pints}}', |
5001 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1|gallon (USA, våt)|gallon (USA, våt)}}', |
5002 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1|quart (USA, våt)|quart (USA, våt)}}', |
5003 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1|pint (USA, våt)|pint (USA, våt)}}', |
5004 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1|gallon (USA, torr)|gallon (USA, torr)}}', |
5005 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1|quart (USA, torr)|quart (USA, torr)}}', |
5006 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1|pint (USA, torr)|pint (USA, torr)}}', |
5007 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
5008 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm<sup>3</sup>', |
5009 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm<sup>3</sup>', |
5010 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
5011 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
5012 | | - 'pfunc-convert-unit-speed-mile-hour' => 'miles per timme', |
5013 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mph', |
5014 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1|$2pascal|$2pascal}}', |
5015 | | - 'pfunc-convert-unit-pressure-bar' => 'bar', |
5016 | | - 'pfunc-convert-unit-pressure-millibar' => 'millibar', |
5017 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1|atmosfär|atmosfärer}}', |
5018 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1|torr|torr}}', |
5019 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1|millimeter kvicksilver|millimeter kvicksilver}}', |
5020 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1|tum kvicksilver|tum kvicksilver}}', |
5021 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
5022 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
5023 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
5024 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
5025 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
5026 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 4923 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2|$3meter|$3meter}}', |
| 4924 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2|ångström|ångström}}', |
| 4925 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2|engelsk mil|engelska mil}}', |
| 4926 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2|furlong|furlonger}}', |
| 4927 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2|chain|chains}}', |
| 4928 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2|stång|stänger}}', |
| 4929 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2|famn|famnar}}', |
| 4930 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2|yard|yards}}', |
| 4931 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2|fot|fot}}', |
| 4932 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2|hand|händer}}', |
| 4933 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2|tum|tum}}', |
| 4934 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2|nautisk mil|nautiska mil}}', |
| 4935 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2|nautisk mil (innan 1970, brittisk)|nautiska mil (innan 1970, brittisk)}}', |
| 4936 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2|nautisk mil (innan 1954, USA)|nautiska mil (innan 1954, USA)}}', |
| 4937 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2|$3parsec|$3parsec}}', |
| 4938 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2|$3ljusår|$3ljusår}}', |
| 4939 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2|astronomisk enhet|astronomiska enheter}}', |
| 4940 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 4941 | + 'pfunc-convert-unit-length-chain-abbr' => '$1chain', |
| 4942 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1famn', |
| 4943 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 4944 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 4945 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 4946 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 4947 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 4948 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1nmi (Storbr.)', |
| 4949 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1nmi (innan 1954, USA)', |
| 4950 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 4951 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1AU', |
| 4952 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2|kvadratkilometer|kvadratkilometer}}', |
| 4953 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2|kvadratmeter|kvadratmeter}}', |
| 4954 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2|kvadratcentimeter|kvadratcentimeter}}', |
| 4955 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2|kvadratmillimeter|kvadratmillimeter}}', |
| 4956 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2|hektar|hektar}}', |
| 4957 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2|kvadratmil|kvadratmil}}', |
| 4958 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2|tunnland|tunnland}}', |
| 4959 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2|kvadratyard|kvadratyard}}', |
| 4960 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2|kvadratfot|kvadratfötter}}', |
| 4961 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2|kvadrattum|kvadrattum}}', |
| 4962 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2|kvadratisk nautisk mil|kvadratiska nautiska mil}}', |
| 4963 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2|dunam|dunam}}', |
| 4964 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2|tsubo|tsubo}}', |
| 4965 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km<sup>2</sup>', |
| 4966 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m<sup>2</sup>', |
| 4967 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm<sup>2</sup>', |
| 4968 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm<sup>2</sup>', |
| 4969 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 4970 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1kv mil', |
| 4971 | + 'pfunc-convert-unit-area-acre-abbr' => '$1tunnland', |
| 4972 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1kv yd', |
| 4973 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1kv ft', |
| 4974 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1kv in', |
| 4975 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1kv nmi', |
| 4976 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 4977 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 4978 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2|sekund|sekunder}}', |
| 4979 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2|$3år|$3år}}', |
| 4980 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2|dag|dagar}}', |
| 4981 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2|timme|timmar}}', |
| 4982 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2|minut|minuter}}', |
| 4983 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 4984 | + 'pfunc-convert-unit-time-day-abbr' => '$1dag', |
| 4985 | + 'pfunc-convert-unit-time-hour-abbr' => '$1tim', |
| 4986 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 4987 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2|kubikmeter|kubikmeter}}', |
| 4988 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2|kubikcentimeter|kubikcentimeter}}', |
| 4989 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2|kubikmillimeter|kubikmillimeter}}', |
| 4990 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2|kiloliter|kiloliter}}', |
| 4991 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2|liter|liter}}', |
| 4992 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2|centiliter|centiliter}}', |
| 4993 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2|milliliter|milliliter}}', |
| 4994 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2|kubikyard|kubikyards}}', |
| 4995 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2|kubikfot|kubikfötter}}', |
| 4996 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2|kubiktum|kubiktum}}', |
| 4997 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2|fat|fat}}', |
| 4998 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2|gallon|gallons}}', |
| 4999 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2|quart|quarts}}', |
| 5000 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2|pint|pints}}', |
| 5001 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2|gallon (USA, våt)|gallon (USA, våt)}}', |
| 5002 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2|quart (USA, våt)|quart (USA, våt)}}', |
| 5003 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2|pint (USA, våt)|pint (USA, våt)}}', |
| 5004 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2|gallon (USA, torr)|gallon (USA, torr)}}', |
| 5005 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2|quart (USA, torr)|quart (USA, torr)}}', |
| 5006 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2|pint (USA, torr)|pint (USA, torr)}}', |
| 5007 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
| 5008 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm<sup>3</sup>', |
| 5009 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm<sup>3</sup>', |
| 5010 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 5011 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 5012 | + 'pfunc-convert-unit-speed-mile-hour' => '$1miles per timme', |
| 5013 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mph', |
| 5014 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2|$3pascal|$3pascal}}', |
| 5015 | + 'pfunc-convert-unit-pressure-bar' => '$1bar', |
| 5016 | + 'pfunc-convert-unit-pressure-millibar' => '$1millibar', |
| 5017 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2|atmosfär|atmosfärer}}', |
| 5018 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2|torr|torr}}', |
| 5019 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2|millimeter kvicksilver|millimeter kvicksilver}}', |
| 5020 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2|tum kvicksilver|tum kvicksilver}}', |
| 5021 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 5022 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 5023 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 5024 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 5025 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 5026 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
5027 | 5027 | ); |
5028 | 5028 | |
5029 | 5029 | /** Telugu (తెలుగు) |
— | — | @@ -5316,152 +5316,152 @@ |
5317 | 5317 | 'pfunc-convert-prefix-zepto' => 'zéptô', |
5318 | 5318 | 'pfunc-convert-prefix-yocto' => 'yóctô', |
5319 | 5319 | 'pfunc-convert-prefix-milli-abbr' => 'm', |
5320 | | - 'pfunc-convert-unit-length-metre' => '{{PLURAL:$1}}$2mét', |
5321 | | - 'pfunc-convert-unit-length-angstrom' => '{{PLURAL:$1}}ångström', |
5322 | | - 'pfunc-convert-unit-length-mile' => '{{PLURAL:$1}}dặm', |
5323 | | - 'pfunc-convert-unit-length-furlong' => '{{PLURAL:$1}}furlong', |
5324 | | - 'pfunc-convert-unit-length-chain' => '{{PLURAL:$1}}chain', |
5325 | | - 'pfunc-convert-unit-length-rod' => '{{PLURAL:$1}}rod', |
5326 | | - 'pfunc-convert-unit-length-fathom' => '{{PLURAL:$1}}fathom', |
5327 | | - 'pfunc-convert-unit-length-yard' => '{{PLURAL:$1}}yard', |
5328 | | - 'pfunc-convert-unit-length-foot' => '{{PLURAL:$1}}foot', |
5329 | | - 'pfunc-convert-unit-length-hand' => '{{PLURAL:$1}}hand', |
5330 | | - 'pfunc-convert-unit-length-inch' => '{{PLURAL:$1}}inch', |
5331 | | - 'pfunc-convert-unit-length-nauticalmile' => '{{PLURAL:$1}}hải lý', |
5332 | | - 'pfunc-convert-unit-length-nauticalmileuk' => '{{PLURAL:$1}}hải lý (Anh trước 1970)', |
5333 | | - 'pfunc-convert-unit-length-nauticalmileus' => '{{PLURAL:$1}}hải lý (Mỹ trước 1954)', |
5334 | | - 'pfunc-convert-unit-length-parsec' => '{{PLURAL:$1}}$2parsec', |
5335 | | - 'pfunc-convert-unit-length-lightyear' => '{{PLURAL:$1}}$2 năm ánh sáng', |
5336 | | - 'pfunc-convert-unit-length-astronomicalunit' => '{{PLURAL:$1}}đơn vị thiên văn', |
5337 | | - 'pfunc-convert-unit-length-furlong-abbr' => 'furlong', |
5338 | | - 'pfunc-convert-unit-length-chain-abbr' => 'chain', |
5339 | | - 'pfunc-convert-unit-length-rod-abbr' => 'rd', |
5340 | | - 'pfunc-convert-unit-length-fathom-abbr' => 'fathom', |
5341 | | - 'pfunc-convert-unit-length-yard-abbr' => 'yd', |
5342 | | - 'pfunc-convert-unit-length-foot-abbr' => 'ft', |
5343 | | - 'pfunc-convert-unit-length-hand-abbr' => 'h', |
5344 | | - 'pfunc-convert-unit-length-inch-abbr' => 'in', |
5345 | | - 'pfunc-convert-unit-length-nauticalmile-abbr' => 'nmi', |
5346 | | - 'pfunc-convert-unit-length-nauticalmileuk-abbr' => 'nmi (Anh)', |
5347 | | - 'pfunc-convert-unit-length-nauticalmileus-abbr' => 'nmi (Mỹ trước 1954)', |
5348 | | - 'pfunc-convert-unit-length-parsec-abbr' => '$2pc', |
5349 | | - 'pfunc-convert-unit-length-lightyear-abbr' => '$2ly', |
5350 | | - 'pfunc-convert-unit-length-astronomicalunit-abbr' => 'ua', |
5351 | | - 'pfunc-convert-unit-area-squarekilometre' => '{{PLURAL:$1}}kilômét vuông', |
5352 | | - 'pfunc-convert-unit-area-squaremetre' => '{{PLURAL:$1}}mét vuông', |
5353 | | - 'pfunc-convert-unit-area-squarecentimetre' => '{{PLURAL:$1}}xentimét vuông', |
5354 | | - 'pfunc-convert-unit-area-squaremillimetre' => '{{PLURAL:$1}}millimét vuông', |
5355 | | - 'pfunc-convert-unit-area-hectare' => '{{PLURAL:$1}}hecta', |
5356 | | - 'pfunc-convert-unit-area-squaremile' => '{{PLURAL:$1}}dặm vuông', |
5357 | | - 'pfunc-convert-unit-area-acre' => '{{PLURAL:$1}}mẫu Anh', |
5358 | | - 'pfunc-convert-unit-area-squareyard' => '{{PLURAL:$1}}yard vuông', |
5359 | | - 'pfunc-convert-unit-area-squarefoot' => '{{PLURAL:$1}}foot vuông', |
5360 | | - 'pfunc-convert-unit-area-squareinch' => '{{PLURAL:$1}}inch vuông', |
5361 | | - 'pfunc-convert-unit-area-squarenauticalmile' => '{{PLURAL:$1}}hải lý vuông', |
5362 | | - 'pfunc-convert-unit-area-dunam' => '{{PLURAL:$1}}dunam', |
5363 | | - 'pfunc-convert-unit-area-tsubo' => '{{PLURAL:$1}}tsubo', |
5364 | | - 'pfunc-convert-unit-area-squarekilometre-abbr' => 'km²', |
5365 | | - 'pfunc-convert-unit-area-squaremetre-abbr' => 'm²', |
5366 | | - 'pfunc-convert-unit-area-squarecentimetre-abbr' => 'cm²', |
5367 | | - 'pfunc-convert-unit-area-squaremillimetre-abbr' => 'mm²', |
5368 | | - 'pfunc-convert-unit-area-hectare-abbr' => 'ha', |
5369 | | - 'pfunc-convert-unit-area-squaremile-abbr' => 'sq mi', |
5370 | | - 'pfunc-convert-unit-area-acre-abbr' => 'mẫu', |
5371 | | - 'pfunc-convert-unit-area-squareyard-abbr' => 'sq yd', |
5372 | | - 'pfunc-convert-unit-area-squarefoot-abbr' => 'sq ft', |
5373 | | - 'pfunc-convert-unit-area-squareinch-abbr' => 'sq in', |
5374 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => 'sq nmi', |
5375 | | - 'pfunc-convert-unit-area-dunam-abbr' => 'dunam', |
5376 | | - 'pfunc-convert-unit-area-tsubo-abbr' => 'tsubo', |
5377 | | - 'pfunc-convert-unit-time-second' => '{{PLURAL:$1}}giây', |
5378 | | - 'pfunc-convert-unit-time-year' => '{{PLURAL:$1}}$2 năm', |
5379 | | - 'pfunc-convert-unit-time-day' => '{{PLURAL:$1}}ngày', |
5380 | | - 'pfunc-convert-unit-time-hour' => '{{PLURAL:$1}}giờ', |
5381 | | - 'pfunc-convert-unit-time-minute' => '{{PLURAL:$1}}phút', |
5382 | | - 'pfunc-convert-unit-time-second-abbr' => 's', |
5383 | | - 'pfunc-convert-unit-time-year-abbr' => '$2yr', |
5384 | | - 'pfunc-convert-unit-time-day-abbr' => 'ngày', |
5385 | | - 'pfunc-convert-unit-time-hour-abbr' => 'h', |
5386 | | - 'pfunc-convert-unit-time-minute-abbr' => 'min', |
5387 | | - 'pfunc-convert-unit-volume-cubicmetre' => '{{PLURAL:$1}}mét khối', |
5388 | | - 'pfunc-convert-unit-volume-cubiccentimetre' => '{{PLURAL:$1}}xentimét khối', |
5389 | | - 'pfunc-convert-unit-volume-cubicmillimetre' => '{{PLURAL:$1}}milimét khối', |
5390 | | - 'pfunc-convert-unit-volume-kilolitre' => '{{PLURAL:$1}}kilôlít', |
5391 | | - 'pfunc-convert-unit-volume-litre' => '{{PLURAL:$1}}lít', |
5392 | | - 'pfunc-convert-unit-volume-centilitre' => '{{PLURAL:$1}}xentilít', |
5393 | | - 'pfunc-convert-unit-volume-millilitre' => '{{PLURAL:$1}}mililít', |
5394 | | - 'pfunc-convert-unit-volume-cubicyard' => '{{PLURAL:$1}}yard khối', |
5395 | | - 'pfunc-convert-unit-volume-cubicfoot' => '{{PLURAL:$1}}foot khối', |
5396 | | - 'pfunc-convert-unit-volume-cubicinch' => '{{PLURAL:$1}}inch khối', |
5397 | | - 'pfunc-convert-unit-volume-barrel' => '{{PLURAL:$1}}thùng', |
5398 | | - 'pfunc-convert-unit-volume-bushel' => '{{PLURAL:$1}}giạ', |
5399 | | - 'pfunc-convert-unit-volume-gallon' => '{{PLURAL:$1}}gallon', |
5400 | | - 'pfunc-convert-unit-volume-quart' => '{{PLURAL:$1}}quart', |
5401 | | - 'pfunc-convert-unit-volume-pint' => '{{PLURAL:$1}}pint', |
5402 | | - 'pfunc-convert-unit-volume-fluidounce' => '{{PLURAL:$1}}aoxơ chất lỏng', |
5403 | | - 'pfunc-convert-unit-volume-barrelus' => '{{PLURAL:$1}}thùng Mỹ', |
5404 | | - 'pfunc-convert-unit-volume-barreloil' => '{{PLURAL:$1}}thùng', |
5405 | | - 'pfunc-convert-unit-volume-barrelbeer' => '{{PLURAL:$1}}thùng', |
5406 | | - 'pfunc-convert-unit-volume-usgallon' => '{{PLURAL:$1}}gallon Mỹ', |
5407 | | - 'pfunc-convert-unit-volume-usquart' => '{{PLURAL:$1}}quart Mỹ', |
5408 | | - 'pfunc-convert-unit-volume-uspint' => '{{PLURAL:$1}}pint Mỹ', |
5409 | | - 'pfunc-convert-unit-volume-usfluidounce' => '{{PLURAL:$1}}aoxơ chất lỏng Mỹ', |
5410 | | - 'pfunc-convert-unit-volume-usdrybarrel' => '{{PLURAL:$1}}thùng chất khô Mỹ', |
5411 | | - 'pfunc-convert-unit-volume-usbushel' => '{{PLURAL:$1}}thùng Mỹ', |
5412 | | - 'pfunc-convert-unit-volume-usdrygallon' => '{{PLURAL:$1}}gallon chất khô Mỹ', |
5413 | | - 'pfunc-convert-unit-volume-usdryquart' => '{{PLURAL:$1}}quart chất khô Mỹ', |
5414 | | - 'pfunc-convert-unit-volume-usdrypint' => '{{PLURAL:$1}}pint chất khô Mỹ', |
5415 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm³', |
5416 | | - 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => 'cm³', |
5417 | | - 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => 'mm³', |
5418 | | - 'pfunc-convert-unit-volume-litre-abbr' => '$2l', |
5419 | | - 'pfunc-convert-unit-volume-cubicyard-abbr' => 'cu yd', |
5420 | | - 'pfunc-convert-unit-volume-cubicfoot-abbr' => 'cu ft', |
5421 | | - 'pfunc-convert-unit-volume-cubicinch-abbr' => 'cu in', |
5422 | | - 'pfunc-convert-unit-volume-barrel-abbr' => 'bbl', |
5423 | | - 'pfunc-convert-unit-volume-bushel-abbr' => 'bsh', |
5424 | | - 'pfunc-convert-unit-volume-gallon-abbr' => 'gal', |
5425 | | - 'pfunc-convert-unit-volume-quart-abbr' => 'qt', |
5426 | | - 'pfunc-convert-unit-volume-pint-abbr' => 'pt', |
5427 | | - 'pfunc-convert-unit-volume-fluidounce-abbr' => 'fl oz', |
5428 | | - 'pfunc-convert-unit-volume-barrelus-abbr' => 'bbl Mỹ', |
5429 | | - 'pfunc-convert-unit-volume-barreloil-abbr' => 'bbl', |
5430 | | - 'pfunc-convert-unit-volume-barrelbeer-abbr' => 'bbl', |
5431 | | - 'pfunc-convert-unit-volume-usgallon-abbr' => 'gal Mỹ', |
5432 | | - 'pfunc-convert-unit-volume-usquart-abbr' => 'qt Mỹ', |
5433 | | - 'pfunc-convert-unit-volume-uspint-abbr' => 'pt Mỹ', |
5434 | | - 'pfunc-convert-unit-volume-usfluidounce-abbr' => 'fl oz Mỹ', |
5435 | | - 'pfunc-convert-unit-volume-usdrybarrel-abbr' => 'bbl Mỹ', |
5436 | | - 'pfunc-convert-unit-volume-usbushel-abbr' => 'bsh Mỹ', |
5437 | | - 'pfunc-convert-unit-volume-usdrygallon-abbr' => 'dry gal Mỹ', |
5438 | | - 'pfunc-convert-unit-volume-usdryquart-abbr' => 'dry qt Mỹ', |
5439 | | - 'pfunc-convert-unit-volume-usdrypint-abbr' => 'dry pt Mỹ', |
5440 | | - 'pfunc-convert-unit-speed-mile-hour' => 'dặm một giờ', |
5441 | | - 'pfunc-convert-unit-speed-speedoflight' => 'c', |
5442 | | - 'pfunc-convert-unit-speed-mile-hour-abbr' => 'mph', |
5443 | | - 'pfunc-convert-unit-speed-speedoflight-abbr' => 'c', |
5444 | | - 'pfunc-convert-unit-pressure-pascal' => '{{PLURAL:$1}}$2pascal', |
5445 | | - 'pfunc-convert-unit-pressure-bar' => 'ba', |
5446 | | - 'pfunc-convert-unit-pressure-decibar' => 'đêxiba', |
5447 | | - 'pfunc-convert-unit-pressure-millibar' => 'miliba', |
5448 | | - 'pfunc-convert-unit-pressure-kilobarye' => 'kilôbarye', |
5449 | | - 'pfunc-convert-unit-pressure-barye' => 'barye', |
5450 | | - 'pfunc-convert-unit-pressure-atmosphere' => '{{PLURAL:$1}}atmôtphe', |
5451 | | - 'pfunc-convert-unit-pressure-torr' => '{{PLURAL:$1}}torr', |
5452 | | - 'pfunc-convert-unit-pressure-mmhg' => '{{PLURAL:$1}}milimét thủy ngân', |
5453 | | - 'pfunc-convert-unit-pressure-inhg' => '{{PLURAL:$1}}inch thủy ngân', |
5454 | | - 'pfunc-convert-unit-pressure-psi' => '{{PLURAL:$1}}pound một inch vuông', |
5455 | | - 'pfunc-convert-unit-pressure-pascal-abbr' => '$2Pa', |
5456 | | - 'pfunc-convert-unit-pressure-bar-abbr' => 'bar', |
5457 | | - 'pfunc-convert-unit-pressure-decibar-abbr' => 'dbar', |
5458 | | - 'pfunc-convert-unit-pressure-millibar-abbr' => 'mbar', |
5459 | | - 'pfunc-convert-unit-pressure-kilobarye-abbr' => 'kBa', |
5460 | | - 'pfunc-convert-unit-pressure-barye-abbr' => 'Ba', |
5461 | | - 'pfunc-convert-unit-pressure-atmosphere-abbr' => 'atm', |
5462 | | - 'pfunc-convert-unit-pressure-torr-abbr' => 'Torr', |
5463 | | - 'pfunc-convert-unit-pressure-mmhg-abbr' => 'mmHg', |
5464 | | - 'pfunc-convert-unit-pressure-inhg-abbr' => 'inHg', |
5465 | | - 'pfunc-convert-unit-pressure-psi-abbr' => 'psi', |
| 5320 | + 'pfunc-convert-unit-length-metre' => '$1{{PLURAL:$2}}$3mét', |
| 5321 | + 'pfunc-convert-unit-length-angstrom' => '$1{{PLURAL:$2}}ångström', |
| 5322 | + 'pfunc-convert-unit-length-mile' => '$1{{PLURAL:$2}}dặm', |
| 5323 | + 'pfunc-convert-unit-length-furlong' => '$1{{PLURAL:$2}}furlong', |
| 5324 | + 'pfunc-convert-unit-length-chain' => '$1{{PLURAL:$2}}chain', |
| 5325 | + 'pfunc-convert-unit-length-rod' => '$1{{PLURAL:$2}}rod', |
| 5326 | + 'pfunc-convert-unit-length-fathom' => '$1{{PLURAL:$2}}fathom', |
| 5327 | + 'pfunc-convert-unit-length-yard' => '$1{{PLURAL:$2}}yard', |
| 5328 | + 'pfunc-convert-unit-length-foot' => '$1{{PLURAL:$2}}foot', |
| 5329 | + 'pfunc-convert-unit-length-hand' => '$1{{PLURAL:$2}}hand', |
| 5330 | + 'pfunc-convert-unit-length-inch' => '$1{{PLURAL:$2}}inch', |
| 5331 | + 'pfunc-convert-unit-length-nauticalmile' => '$1{{PLURAL:$2}}hải lý', |
| 5332 | + 'pfunc-convert-unit-length-nauticalmileuk' => '$1{{PLURAL:$2}}hải lý (Anh trước 1970)', |
| 5333 | + 'pfunc-convert-unit-length-nauticalmileus' => '$1{{PLURAL:$2}}hải lý (Mỹ trước 1954)', |
| 5334 | + 'pfunc-convert-unit-length-parsec' => '$1{{PLURAL:$2}}$3parsec', |
| 5335 | + 'pfunc-convert-unit-length-lightyear' => '$1{{PLURAL:$2}}$3 năm ánh sáng', |
| 5336 | + 'pfunc-convert-unit-length-astronomicalunit' => '$1{{PLURAL:$2}}đơn vị thiên văn', |
| 5337 | + 'pfunc-convert-unit-length-furlong-abbr' => '$1furlong', |
| 5338 | + 'pfunc-convert-unit-length-chain-abbr' => '$1chain', |
| 5339 | + 'pfunc-convert-unit-length-rod-abbr' => '$1rd', |
| 5340 | + 'pfunc-convert-unit-length-fathom-abbr' => '$1fathom', |
| 5341 | + 'pfunc-convert-unit-length-yard-abbr' => '$1yd', |
| 5342 | + 'pfunc-convert-unit-length-foot-abbr' => '$1ft', |
| 5343 | + 'pfunc-convert-unit-length-hand-abbr' => '$1h', |
| 5344 | + 'pfunc-convert-unit-length-inch-abbr' => '$1in', |
| 5345 | + 'pfunc-convert-unit-length-nauticalmile-abbr' => '$1nmi', |
| 5346 | + 'pfunc-convert-unit-length-nauticalmileuk-abbr' => '$1nmi (Anh)', |
| 5347 | + 'pfunc-convert-unit-length-nauticalmileus-abbr' => '$1nmi (Mỹ trước 1954)', |
| 5348 | + 'pfunc-convert-unit-length-parsec-abbr' => '$1$3pc', |
| 5349 | + 'pfunc-convert-unit-length-lightyear-abbr' => '$1$3ly', |
| 5350 | + 'pfunc-convert-unit-length-astronomicalunit-abbr' => '$1ua', |
| 5351 | + 'pfunc-convert-unit-area-squarekilometre' => '$1{{PLURAL:$2}}kilômét vuông', |
| 5352 | + 'pfunc-convert-unit-area-squaremetre' => '$1{{PLURAL:$2}}mét vuông', |
| 5353 | + 'pfunc-convert-unit-area-squarecentimetre' => '$1{{PLURAL:$2}}xentimét vuông', |
| 5354 | + 'pfunc-convert-unit-area-squaremillimetre' => '$1{{PLURAL:$2}}millimét vuông', |
| 5355 | + 'pfunc-convert-unit-area-hectare' => '$1{{PLURAL:$2}}hecta', |
| 5356 | + 'pfunc-convert-unit-area-squaremile' => '$1{{PLURAL:$2}}dặm vuông', |
| 5357 | + 'pfunc-convert-unit-area-acre' => '$1{{PLURAL:$2}}mẫu Anh', |
| 5358 | + 'pfunc-convert-unit-area-squareyard' => '$1{{PLURAL:$2}}yard vuông', |
| 5359 | + 'pfunc-convert-unit-area-squarefoot' => '$1{{PLURAL:$2}}foot vuông', |
| 5360 | + 'pfunc-convert-unit-area-squareinch' => '$1{{PLURAL:$2}}inch vuông', |
| 5361 | + 'pfunc-convert-unit-area-squarenauticalmile' => '$1{{PLURAL:$2}}hải lý vuông', |
| 5362 | + 'pfunc-convert-unit-area-dunam' => '$1{{PLURAL:$2}}dunam', |
| 5363 | + 'pfunc-convert-unit-area-tsubo' => '$1{{PLURAL:$2}}tsubo', |
| 5364 | + 'pfunc-convert-unit-area-squarekilometre-abbr' => '$1km²', |
| 5365 | + 'pfunc-convert-unit-area-squaremetre-abbr' => '$1m²', |
| 5366 | + 'pfunc-convert-unit-area-squarecentimetre-abbr' => '$1cm²', |
| 5367 | + 'pfunc-convert-unit-area-squaremillimetre-abbr' => '$1mm²', |
| 5368 | + 'pfunc-convert-unit-area-hectare-abbr' => '$1ha', |
| 5369 | + 'pfunc-convert-unit-area-squaremile-abbr' => '$1sq mi', |
| 5370 | + 'pfunc-convert-unit-area-acre-abbr' => '$1mẫu', |
| 5371 | + 'pfunc-convert-unit-area-squareyard-abbr' => '$1sq yd', |
| 5372 | + 'pfunc-convert-unit-area-squarefoot-abbr' => '$1sq ft', |
| 5373 | + 'pfunc-convert-unit-area-squareinch-abbr' => '$1sq in', |
| 5374 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1sq nmi', |
| 5375 | + 'pfunc-convert-unit-area-dunam-abbr' => '$1dunam', |
| 5376 | + 'pfunc-convert-unit-area-tsubo-abbr' => '$1tsubo', |
| 5377 | + 'pfunc-convert-unit-time-second' => '$1{{PLURAL:$2}}giây', |
| 5378 | + 'pfunc-convert-unit-time-year' => '$1{{PLURAL:$2}}$3 năm', |
| 5379 | + 'pfunc-convert-unit-time-day' => '$1{{PLURAL:$2}}ngày', |
| 5380 | + 'pfunc-convert-unit-time-hour' => '$1{{PLURAL:$2}}giờ', |
| 5381 | + 'pfunc-convert-unit-time-minute' => '$1{{PLURAL:$2}}phút', |
| 5382 | + 'pfunc-convert-unit-time-second-abbr' => '$1s', |
| 5383 | + 'pfunc-convert-unit-time-year-abbr' => '$1$3yr', |
| 5384 | + 'pfunc-convert-unit-time-day-abbr' => '$1ngày', |
| 5385 | + 'pfunc-convert-unit-time-hour-abbr' => '$1h', |
| 5386 | + 'pfunc-convert-unit-time-minute-abbr' => '$1min', |
| 5387 | + 'pfunc-convert-unit-volume-cubicmetre' => '$1{{PLURAL:$2}}mét khối', |
| 5388 | + 'pfunc-convert-unit-volume-cubiccentimetre' => '$1{{PLURAL:$2}}xentimét khối', |
| 5389 | + 'pfunc-convert-unit-volume-cubicmillimetre' => '$1{{PLURAL:$2}}milimét khối', |
| 5390 | + 'pfunc-convert-unit-volume-kilolitre' => '$1{{PLURAL:$2}}kilôlít', |
| 5391 | + 'pfunc-convert-unit-volume-litre' => '$1{{PLURAL:$2}}lít', |
| 5392 | + 'pfunc-convert-unit-volume-centilitre' => '$1{{PLURAL:$2}}xentilít', |
| 5393 | + 'pfunc-convert-unit-volume-millilitre' => '$1{{PLURAL:$2}}mililít', |
| 5394 | + 'pfunc-convert-unit-volume-cubicyard' => '$1{{PLURAL:$2}}yard khối', |
| 5395 | + 'pfunc-convert-unit-volume-cubicfoot' => '$1{{PLURAL:$2}}foot khối', |
| 5396 | + 'pfunc-convert-unit-volume-cubicinch' => '$1{{PLURAL:$2}}inch khối', |
| 5397 | + 'pfunc-convert-unit-volume-barrel' => '$1{{PLURAL:$2}}thùng', |
| 5398 | + 'pfunc-convert-unit-volume-bushel' => '$1{{PLURAL:$2}}giạ', |
| 5399 | + 'pfunc-convert-unit-volume-gallon' => '$1{{PLURAL:$2}}gallon', |
| 5400 | + 'pfunc-convert-unit-volume-quart' => '$1{{PLURAL:$2}}quart', |
| 5401 | + 'pfunc-convert-unit-volume-pint' => '$1{{PLURAL:$2}}pint', |
| 5402 | + 'pfunc-convert-unit-volume-fluidounce' => '$1{{PLURAL:$2}}aoxơ chất lỏng', |
| 5403 | + 'pfunc-convert-unit-volume-barrelus' => '$1{{PLURAL:$2}}thùng Mỹ', |
| 5404 | + 'pfunc-convert-unit-volume-barreloil' => '$1{{PLURAL:$2}}thùng', |
| 5405 | + 'pfunc-convert-unit-volume-barrelbeer' => '$1{{PLURAL:$2}}thùng', |
| 5406 | + 'pfunc-convert-unit-volume-usgallon' => '$1{{PLURAL:$2}}gallon Mỹ', |
| 5407 | + 'pfunc-convert-unit-volume-usquart' => '$1{{PLURAL:$2}}quart Mỹ', |
| 5408 | + 'pfunc-convert-unit-volume-uspint' => '$1{{PLURAL:$2}}pint Mỹ', |
| 5409 | + 'pfunc-convert-unit-volume-usfluidounce' => '$1{{PLURAL:$2}}aoxơ chất lỏng Mỹ', |
| 5410 | + 'pfunc-convert-unit-volume-usdrybarrel' => '$1{{PLURAL:$2}}thùng chất khô Mỹ', |
| 5411 | + 'pfunc-convert-unit-volume-usbushel' => '$1{{PLURAL:$2}}thùng Mỹ', |
| 5412 | + 'pfunc-convert-unit-volume-usdrygallon' => '$1{{PLURAL:$2}}gallon chất khô Mỹ', |
| 5413 | + 'pfunc-convert-unit-volume-usdryquart' => '$1{{PLURAL:$2}}quart chất khô Mỹ', |
| 5414 | + 'pfunc-convert-unit-volume-usdrypint' => '$1{{PLURAL:$2}}pint chất khô Mỹ', |
| 5415 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m³', |
| 5416 | + 'pfunc-convert-unit-volume-cubiccentimetre-abbr' => '$1cm³', |
| 5417 | + 'pfunc-convert-unit-volume-cubicmillimetre-abbr' => '$1mm³', |
| 5418 | + 'pfunc-convert-unit-volume-litre-abbr' => '$1$3l', |
| 5419 | + 'pfunc-convert-unit-volume-cubicyard-abbr' => '$1cu yd', |
| 5420 | + 'pfunc-convert-unit-volume-cubicfoot-abbr' => '$1cu ft', |
| 5421 | + 'pfunc-convert-unit-volume-cubicinch-abbr' => '$1cu in', |
| 5422 | + 'pfunc-convert-unit-volume-barrel-abbr' => '$1bbl', |
| 5423 | + 'pfunc-convert-unit-volume-bushel-abbr' => '$1bsh', |
| 5424 | + 'pfunc-convert-unit-volume-gallon-abbr' => '$1gal', |
| 5425 | + 'pfunc-convert-unit-volume-quart-abbr' => '$1qt', |
| 5426 | + 'pfunc-convert-unit-volume-pint-abbr' => '$1pt', |
| 5427 | + 'pfunc-convert-unit-volume-fluidounce-abbr' => '$1fl oz', |
| 5428 | + 'pfunc-convert-unit-volume-barrelus-abbr' => '$1bbl Mỹ', |
| 5429 | + 'pfunc-convert-unit-volume-barreloil-abbr' => '$1bbl', |
| 5430 | + 'pfunc-convert-unit-volume-barrelbeer-abbr' => '$1bbl', |
| 5431 | + 'pfunc-convert-unit-volume-usgallon-abbr' => '$1gal Mỹ', |
| 5432 | + 'pfunc-convert-unit-volume-usquart-abbr' => '$1qt Mỹ', |
| 5433 | + 'pfunc-convert-unit-volume-uspint-abbr' => '$1pt Mỹ', |
| 5434 | + 'pfunc-convert-unit-volume-usfluidounce-abbr' => '$1fl oz Mỹ', |
| 5435 | + 'pfunc-convert-unit-volume-usdrybarrel-abbr' => '$1bbl Mỹ', |
| 5436 | + 'pfunc-convert-unit-volume-usbushel-abbr' => '$1bsh Mỹ', |
| 5437 | + 'pfunc-convert-unit-volume-usdrygallon-abbr' => '$1dry gal Mỹ', |
| 5438 | + 'pfunc-convert-unit-volume-usdryquart-abbr' => '$1dry qt Mỹ', |
| 5439 | + 'pfunc-convert-unit-volume-usdrypint-abbr' => '$1dry pt Mỹ', |
| 5440 | + 'pfunc-convert-unit-speed-mile-hour' => '$1dặm một giờ', |
| 5441 | + 'pfunc-convert-unit-speed-speedoflight' => '$1c', |
| 5442 | + 'pfunc-convert-unit-speed-mile-hour-abbr' => '$1mph', |
| 5443 | + 'pfunc-convert-unit-speed-speedoflight-abbr' => '$1c', |
| 5444 | + 'pfunc-convert-unit-pressure-pascal' => '$1{{PLURAL:$2}}$3pascal', |
| 5445 | + 'pfunc-convert-unit-pressure-bar' => '$1ba', |
| 5446 | + 'pfunc-convert-unit-pressure-decibar' => '$1đêxiba', |
| 5447 | + 'pfunc-convert-unit-pressure-millibar' => '$1miliba', |
| 5448 | + 'pfunc-convert-unit-pressure-kilobarye' => '$1kilôbarye', |
| 5449 | + 'pfunc-convert-unit-pressure-barye' => '$1barye', |
| 5450 | + 'pfunc-convert-unit-pressure-atmosphere' => '$1{{PLURAL:$2}}atmôtphe', |
| 5451 | + 'pfunc-convert-unit-pressure-torr' => '$1{{PLURAL:$2}}torr', |
| 5452 | + 'pfunc-convert-unit-pressure-mmhg' => '$1{{PLURAL:$2}}milimét thủy ngân', |
| 5453 | + 'pfunc-convert-unit-pressure-inhg' => '$1{{PLURAL:$2}}inch thủy ngân', |
| 5454 | + 'pfunc-convert-unit-pressure-psi' => '$1{{PLURAL:$2}}pound một inch vuông', |
| 5455 | + 'pfunc-convert-unit-pressure-pascal-abbr' => '$1$3Pa', |
| 5456 | + 'pfunc-convert-unit-pressure-bar-abbr' => '$1bar', |
| 5457 | + 'pfunc-convert-unit-pressure-decibar-abbr' => '$1dbar', |
| 5458 | + 'pfunc-convert-unit-pressure-millibar-abbr' => '$1mbar', |
| 5459 | + 'pfunc-convert-unit-pressure-kilobarye-abbr' => '$1kBa', |
| 5460 | + 'pfunc-convert-unit-pressure-barye-abbr' => '$1Ba', |
| 5461 | + 'pfunc-convert-unit-pressure-atmosphere-abbr' => '$1atm', |
| 5462 | + 'pfunc-convert-unit-pressure-torr-abbr' => '$1Torr', |
| 5463 | + 'pfunc-convert-unit-pressure-mmhg-abbr' => '$1mmHg', |
| 5464 | + 'pfunc-convert-unit-pressure-inhg-abbr' => '$1inHg', |
| 5465 | + 'pfunc-convert-unit-pressure-psi-abbr' => '$1psi', |
5466 | 5466 | ); |
5467 | 5467 | |
5468 | 5468 | /** Volapük (Volapük) |
— | — | @@ -5550,8 +5550,8 @@ |
5551 | 5551 | 'pfunc-convert-dimension-time' => '时间', |
5552 | 5552 | 'pfunc-convert-dimension-mass' => '重量', |
5553 | 5553 | 'pfunc-convert-dimension-speed' => '速度', |
5554 | | - 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '平方海里', |
5555 | | - 'pfunc-convert-unit-volume-cubicmetre-abbr' => 'm<sup>3</sup>', |
| 5554 | + 'pfunc-convert-unit-area-squarenauticalmile-abbr' => '$1平方海里', |
| 5555 | + 'pfunc-convert-unit-volume-cubicmetre-abbr' => '$1m<sup>3</sup>', |
5556 | 5556 | ); |
5557 | 5557 | |
5558 | 5558 | /** Traditional Chinese (中文(繁體)) |