Skip to content

Commit b89d101

Browse files
authored
Merge pull request #2526 from booleanbetrayal/patch-1
feat(locale): add Swahili localization support
2 parents 05b0ec9 + a637012 commit b89d101

File tree

1 file changed

+83
-0
lines changed

1 file changed

+83
-0
lines changed

lib/locales/sw.js

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/**
2+
* Copyright 2012-2018, Plotly, Inc.
3+
* All rights reserved.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
module.exports = {
12+
moduleType: 'locale',
13+
name: 'sw',
14+
dictionary: {
15+
'Autoscale': 'Kigezo - otomatiki',
16+
'Box Select': 'Teua kisanduku',
17+
'Click to enter Colorscale title': 'Bonyeza kuandika kichwa cha Colorscale',
18+
'Click to enter Component A title': 'Bonyeza kuandika kichwa cha sehemu A',
19+
'Click to enter Component B title': 'Bonyeza kuandika kichwa cha sehemu B',
20+
'Click to enter Component C title': 'Bonyeza kuandika kichwa cha sehemu C',
21+
'Click to enter Plot title': 'Bonyeza kuandika kichwa cha Plot',
22+
'Click to enter X axis title': 'Bonyeza kuandika kichwa cha mhimili wa X',
23+
'Click to enter Y axis title': 'Bonyeza kuandika kichwa cha mhimili wa Y',
24+
'Click to enter radial axis title': 'Bonyeza kuandika kichwa cha mhimili wa radial',
25+
'Compare data on hover': 'Linganisha data kwa kuelea kielekezi',
26+
'Double-click on legend to isolate one trace': 'Bonyeza mara mbili juu ya hadithi ili kutenganisha moja kwa moja',
27+
'Double-click to zoom back out': 'Bonyeza mara mbili ili kuvuta nje',
28+
'Download plot as a png': 'Pakua mpango kama png',
29+
'Edit in Chart Studio': 'Hariri katika Chart studio',
30+
'IE only supports svg. Changing format to svg.': 'IE inatumia tu svg. Tunabadilisha muundo kuwa svg.',
31+
'Lasso Select': 'Kuteua lasso',
32+
'Orbital rotation': 'Mzunguko wa mazao',
33+
'Pan': 'Tandaza',
34+
'Produced with Plotly': 'Ilitengenezwa na Plotly',
35+
'Reset': 'Weka upya',
36+
'Reset axes': 'Weka upya axes',
37+
'Reset camera to default': 'Rudisha kamera kwenye uhifadhi wa default',
38+
'Reset camera to last save': 'Rudisha kamera kwenye uhifadhi wa mwisho',
39+
'Reset view': 'Weka upya mtazamo',
40+
'Reset views': 'Weka upya maoni',
41+
'Show closest data on hover': 'Onyesha data iliyo karibu zaidi kielekezi kinapoelea',
42+
'Snapshot succeeded': 'Snapshot ilifanikiwa',
43+
'Sorry, there was a problem downloading your snapshot!': 'Samahani, kulikuwa na shida kupakua picha yako!',
44+
'Taking snapshot - this may take a few seconds': 'Kuchukua snapshot - hii inaweza kuchukua sekunde chache',
45+
'Toggle Spike Lines': 'Badilisha Mistari ya Spike',
46+
'Toggle show closest data on hover': 'Badilisha mabadiliko ya karibu zaidi kwenye hover',
47+
'Turntable rotation': 'Zunguka kwa mhimili wa Z',
48+
'Zoom': 'Vuta',
49+
'Zoom in': 'Vuta nje',
50+
'Zoom out': 'Vuta ndani',
51+
'close:': 'funga:',
52+
'high:': 'juu:',
53+
'incoming flow count:': 'hesabu ya mtiririko unaokuja:',
54+
'kde:': 'kde:',
55+
'lat:': 'lat:',
56+
'lon:': 'lon:',
57+
'low:': 'chini:',
58+
'lower fence:': 'fensi ya chini:',
59+
'max:': 'upeo:',
60+
'mean ± σ:': 'maana ± σ:',
61+
'mean:': 'maana:',
62+
'median:': 'wastani:',
63+
'min:': 'kidogo:',
64+
'new text': 'nakala mpya',
65+
'open:': 'fungua:',
66+
'outgoing flow count:': 'hesabu ya mtiririko unaotoka:',
67+
'q1:': 'q1:',
68+
'q3:': 'q3:',
69+
'source:': 'chanzo:',
70+
'target:': 'lengo:',
71+
'trace': 'fuatilia',
72+
'upper fence:': 'Fensi ya juu:'
73+
},
74+
format: {
75+
days: ['Jumapili', 'Jumatatu', 'Jumanne', 'Jumatano', 'Alhamisi', 'Ijumaa', 'Jumamosi'],
76+
shortDays: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
77+
months: ['Januari', 'Februari', 'Machi', 'Aprili', 'Mei', 'Juni', 'Julai', 'Agosti', 'Septemba', 'Oktoba', 'Novemba', 'Desemba'],
78+
shortMonths: ['Jan', 'Feb', 'Mar', 'Apr', 'Mei', 'Jun', 'Jul', 'Ago', 'Sep', 'Okt', 'Nov', 'Des'],
79+
date: '%d/%m/%Y',
80+
decimal: '.',
81+
thousands: ','
82+
}
83+
};

0 commit comments

Comments
 (0)